]> git.lizzy.rs Git - rust.git/blob - src/abi.rs
Reduce duplication in abi.rs a bit
[rust.git] / src / abi.rs
1 use std::borrow::Cow;
2 use std::iter;
3
4 use rustc::hir;
5 use rustc_target::spec::abi::Abi;
6
7 use crate::prelude::*;
8
9 #[derive(Copy, Clone, Debug)]
10 enum PassMode {
11     NoPass,
12     ByVal(Type),
13     ByRef,
14 }
15
16 impl PassMode {
17     fn get_param_ty(self, fx: &FunctionCx<impl Backend>) -> Type {
18         match self {
19             PassMode::NoPass => unimplemented!("pass mode nopass"),
20             PassMode::ByVal(clif_type) => clif_type,
21             PassMode::ByRef => fx.pointer_type,
22         }
23     }
24 }
25
26 fn get_pass_mode<'a, 'tcx: 'a>(
27     tcx: TyCtxt<'a, 'tcx, 'tcx>,
28     abi: Abi,
29     ty: Ty<'tcx>,
30     is_return: bool,
31 ) -> PassMode {
32     assert!(!tcx
33         .layout_of(ParamEnv::reveal_all().and(ty))
34         .unwrap()
35         .is_unsized());
36     if let ty::Never = ty.sty {
37         if is_return {
38             PassMode::NoPass
39         } else {
40             PassMode::ByRef
41         }
42     } else if ty.sty == tcx.mk_unit().sty {
43         if is_return {
44             PassMode::NoPass
45         } else {
46             PassMode::ByRef
47         }
48     } else if let Some(ret_ty) = crate::common::clif_type_from_ty(tcx, ty) {
49         PassMode::ByVal(ret_ty)
50     } else {
51         if abi == Abi::C {
52             unimpl!(
53                 "Non scalars are not yet supported for \"C\" abi ({:?}) is_return: {:?}",
54                 ty,
55                 is_return
56             );
57         }
58         PassMode::ByRef
59     }
60 }
61
62 fn adjust_arg_for_abi<'a, 'tcx: 'a>(
63     fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
64     sig: FnSig<'tcx>,
65     arg: CValue<'tcx>,
66 ) -> Value {
67     match get_pass_mode(fx.tcx, sig.abi, arg.layout().ty, false) {
68         PassMode::NoPass => unimplemented!("pass mode nopass"),
69         PassMode::ByVal(_) => arg.load_value(fx),
70         PassMode::ByRef => arg.force_stack(fx),
71     }
72 }
73
74 fn clif_sig_from_fn_ty<'a, 'tcx: 'a>(
75     tcx: TyCtxt<'a, 'tcx, 'tcx>,
76     fn_ty: Ty<'tcx>,
77 ) -> Signature {
78     let sig = ty_fn_sig(tcx, fn_ty);
79     if sig.variadic {
80         unimpl!("Variadic function are not yet supported");
81     }
82     let (call_conv, inputs, output): (CallConv, Vec<Ty>, Ty) = match sig.abi {
83         Abi::Rust => (CallConv::SystemV, sig.inputs().to_vec(), sig.output()),
84         Abi::C => (CallConv::SystemV, sig.inputs().to_vec(), sig.output()),
85         Abi::RustCall => {
86             assert_eq!(sig.inputs().len(), 2);
87             let extra_args = match sig.inputs().last().unwrap().sty {
88                 ty::Tuple(ref tupled_arguments) => tupled_arguments,
89                 _ => bug!("argument to function with \"rust-call\" ABI is not a tuple"),
90             };
91             let mut inputs: Vec<Ty> = vec![sig.inputs()[0]];
92             inputs.extend(extra_args.into_iter());
93             (CallConv::SystemV, inputs, sig.output())
94         }
95         Abi::System => bug!("system abi should be selected elsewhere"),
96         Abi::RustIntrinsic => (CallConv::SystemV, sig.inputs().to_vec(), sig.output()),
97         _ => unimplemented!("unsupported abi {:?}", sig.abi),
98     };
99
100     let inputs = inputs
101         .into_iter()
102         .filter_map(|ty| match get_pass_mode(tcx, sig.abi, ty, false) {
103             PassMode::ByVal(clif_ty) => Some(clif_ty),
104             PassMode::NoPass => unimplemented!("pass mode nopass"),
105             PassMode::ByRef => Some(pointer_ty(tcx)),
106         });
107
108     let (params, returns) = match get_pass_mode(tcx, sig.abi, output, true) {
109         PassMode::NoPass => (inputs.map(AbiParam::new).collect(), vec![]),
110         PassMode::ByVal(ret_ty) => (
111             inputs.map(AbiParam::new).collect(),
112             vec![AbiParam::new(ret_ty)],
113         ),
114         PassMode::ByRef => {
115             (
116                 Some(pointer_ty(tcx)) // First param is place to put return val
117                     .into_iter()
118                     .chain(inputs)
119                     .map(AbiParam::new)
120                     .collect(),
121                 vec![],
122             )
123         }
124     };
125
126     Signature {
127         params,
128         returns,
129         call_conv,
130     }
131 }
132
133 pub fn ty_fn_sig<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, ty: Ty<'tcx>) -> ty::FnSig<'tcx> {
134     let sig = match ty.sty {
135         ty::FnDef(..) |
136         // Shims currently have type TyFnPtr. Not sure this should remain.
137         ty::FnPtr(_) => ty.fn_sig(tcx),
138         ty::Closure(def_id, substs) => {
139             let sig = substs.closure_sig(def_id, tcx);
140
141             let env_ty = tcx.closure_env_ty(def_id, substs).unwrap();
142             sig.map_bound(|sig| tcx.mk_fn_sig(
143                 iter::once(*env_ty.skip_binder()).chain(sig.inputs().iter().cloned()),
144                 sig.output(),
145                 sig.variadic,
146                 sig.unsafety,
147                 sig.abi
148             ))
149         }
150         ty::Generator(def_id, substs, _) => {
151             let sig = substs.poly_sig(def_id, tcx);
152
153             let env_region = ty::ReLateBound(ty::INNERMOST, ty::BrEnv);
154             let env_ty = tcx.mk_mut_ref(tcx.mk_region(env_region), ty);
155
156             sig.map_bound(|sig| {
157                 let state_did = tcx.lang_items().gen_state().unwrap();
158                 let state_adt_ref = tcx.adt_def(state_did);
159                 let state_substs = tcx.intern_substs(&[
160                     sig.yield_ty.into(),
161                     sig.return_ty.into(),
162                 ]);
163                 let ret_ty = tcx.mk_adt(state_adt_ref, state_substs);
164
165                 tcx.mk_fn_sig(iter::once(env_ty),
166                     ret_ty,
167                     false,
168                     hir::Unsafety::Normal,
169                     Abi::Rust
170                 )
171             })
172         }
173         _ => bug!("unexpected type {:?} to ty_fn_sig", ty)
174     };
175     tcx.normalize_erasing_late_bound_regions(ParamEnv::reveal_all(), &sig)
176 }
177
178 pub fn get_function_name_and_sig<'a, 'tcx>(
179     tcx: TyCtxt<'a, 'tcx, 'tcx>,
180     inst: Instance<'tcx>,
181 ) -> (String, Signature) {
182     assert!(!inst.substs.needs_infer() && !inst.substs.has_param_types());
183     let fn_ty = inst.ty(tcx);
184     let sig = clif_sig_from_fn_ty(tcx, fn_ty);
185     (tcx.symbol_name(inst).as_str().to_string(), sig)
186 }
187
188 impl<'a, 'tcx: 'a, B: Backend + 'a> FunctionCx<'a, 'tcx, B> {
189     /// Instance must be monomorphized
190     pub fn get_function_id(&mut self, inst: Instance<'tcx>) -> FuncId {
191         let (name, sig) = get_function_name_and_sig(self.tcx, inst);
192         self.module
193             .declare_function(&name, Linkage::Import, &sig)
194             .unwrap()
195     }
196
197     /// Instance must be monomorphized
198     pub fn get_function_ref(&mut self, inst: Instance<'tcx>) -> FuncRef {
199         let func_id = self.get_function_id(inst);
200         self.module
201             .declare_func_in_func(func_id, &mut self.bcx.func)
202     }
203
204     fn lib_call(
205         &mut self,
206         name: &str,
207         input_tys: Vec<types::Type>,
208         output_ty: Option<types::Type>,
209         args: &[Value],
210     ) -> Option<Value> {
211         let sig = Signature {
212             params: input_tys.iter().cloned().map(AbiParam::new).collect(),
213             returns: output_ty
214                 .map(|output_ty| vec![AbiParam::new(output_ty)])
215                 .unwrap_or(Vec::new()),
216             call_conv: CallConv::SystemV,
217         };
218         let func_id = self
219             .module
220             .declare_function(&name, Linkage::Import, &sig)
221             .unwrap();
222         let func_ref = self
223             .module
224             .declare_func_in_func(func_id, &mut self.bcx.func);
225         let call_inst = self.bcx.ins().call(func_ref, args);
226         if output_ty.is_none() {
227             return None;
228         }
229         let results = self.bcx.inst_results(call_inst);
230         assert_eq!(results.len(), 1);
231         Some(results[0])
232     }
233
234     pub fn easy_call(
235         &mut self,
236         name: &str,
237         args: &[CValue<'tcx>],
238         return_ty: Ty<'tcx>,
239     ) -> CValue<'tcx> {
240         let (input_tys, args): (Vec<_>, Vec<_>) = args
241             .into_iter()
242             .map(|arg| {
243                 (
244                     self.clif_type(arg.layout().ty).unwrap(),
245                     arg.load_value(self),
246                 )
247             })
248             .unzip();
249         let return_layout = self.layout_of(return_ty);
250         let return_ty = if let ty::Tuple(tup) = return_ty.sty {
251             if !tup.is_empty() {
252                 bug!("easy_call( (...) -> <non empty tuple> ) is not allowed");
253             }
254             None
255         } else {
256             Some(self.clif_type(return_ty).unwrap())
257         };
258         if let Some(val) = self.lib_call(name, input_tys, return_ty, &args) {
259             CValue::ByVal(val, return_layout)
260         } else {
261             CValue::ByRef(self.bcx.ins().iconst(self.pointer_type, 0), return_layout)
262         }
263     }
264
265     fn self_sig(&self) -> FnSig<'tcx> {
266         ty_fn_sig(self.tcx, self.instance.ty(self.tcx))
267     }
268
269     fn return_type(&self) -> Ty<'tcx> {
270         self.self_sig().output()
271     }
272 }
273
274 fn add_local_comment<'a, 'tcx: 'a>(
275     fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
276     msg: &str,
277     local: mir::Local,
278     local_field: Option<usize>,
279     param: Option<Value>,
280     pass_mode: Option<PassMode>,
281     ssa: crate::analyze::Flags,
282     ty: Ty<'tcx>,
283 ) {
284     let local_field = if let Some(local_field) = local_field {
285         Cow::Owned(format!(".{}", local_field))
286     } else {
287         Cow::Borrowed("")
288     };
289     let param = if let Some(param) = param {
290         Cow::Owned(format!("= {:?}", param))
291     } else {
292         Cow::Borrowed("-")
293     };
294     let pass_mode = if let Some(pass_mode) = pass_mode {
295         Cow::Owned(format!("{:?}", pass_mode))
296     } else {
297         Cow::Borrowed("-")
298     };
299     fx.add_global_comment(format!(
300         "{msg:5} {local:>3}{local_field:<5} {param:10} {pass_mode:20} {ssa:10} {ty:?}",
301         msg=msg, local=format!("{:?}", local), local_field=local_field, param=param, pass_mode=pass_mode, ssa=format!("{:?}", ssa), ty=ty,
302     ));
303 }
304
305 fn add_local_header_comment(fx: &mut FunctionCx<impl Backend>) {
306     fx.add_global_comment(format!("msg   loc.idx    param    pass mode            ssa flags  ty"));
307 }
308
309 fn local_place<'a, 'tcx: 'a>(
310     fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
311     local: Local,
312     layout: TyLayout<'tcx>,
313     is_ssa: bool,
314 ) -> CPlace<'tcx> {
315     let place = if is_ssa {
316         fx.bcx.declare_var(mir_var(local), fx.clif_type(layout.ty).unwrap());
317         CPlace::Var(local, layout)
318     } else {
319         let stack_slot = fx.bcx.create_stack_slot(StackSlotData {
320             kind: StackSlotKind::ExplicitSlot,
321             size: layout.size.bytes() as u32,
322             offset: None,
323         });
324
325         CPlace::from_stack_slot(fx, stack_slot, layout.ty)
326     };
327
328     debug_assert!(fx.local_map.insert(local, place).is_none());
329     fx.local_map[&local]
330 }
331
332 fn param_to_cvalue<'a, 'tcx: 'a>(fx: &FunctionCx<'a, 'tcx, impl Backend>, ebb_param: Value, layout: TyLayout<'tcx>) -> CValue<'tcx> {
333     match get_pass_mode(fx.tcx, fx.self_sig().abi, layout.ty, false) {
334         PassMode::NoPass => unimplemented!("pass mode nopass"),
335         PassMode::ByVal(_) => CValue::ByVal(ebb_param, layout),
336         PassMode::ByRef => CValue::ByRef(ebb_param, layout),
337     }
338 }
339
340 pub fn codegen_fn_prelude<'a, 'tcx: 'a>(
341     fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
342     start_ebb: Ebb,
343 ) {
344     let ssa_analyzed = crate::analyze::analyze(fx);
345     fx.add_global_comment(format!("ssa {:?}", ssa_analyzed));
346
347     let ret_layout = fx.layout_of(fx.return_type());
348     let output_pass_mode = get_pass_mode(fx.tcx, fx.self_sig().abi, fx.return_type(), true);
349     let ret_param = match output_pass_mode {
350         PassMode::NoPass => None,
351         PassMode::ByVal(_) => None,
352         PassMode::ByRef => Some(fx.bcx.append_ebb_param(start_ebb, fx.pointer_type)),
353     };
354
355     enum ArgKind {
356         Normal(Value),
357         Spread(Vec<Value>),
358     }
359
360     let func_params = fx
361         .mir
362         .args_iter()
363         .map(|local| {
364             let arg_ty = fx.monomorphize(&fx.mir.local_decls[local].ty);
365
366             // Adapted from https://github.com/rust-lang/rust/blob/145155dc96757002c7b2e9de8489416e2fdbbd57/src/librustc_codegen_llvm/mir/mod.rs#L442-L482
367             if Some(local) == fx.mir.spread_arg {
368                 // This argument (e.g. the last argument in the "rust-call" ABI)
369                 // is a tuple that was spread at the ABI level and now we have
370                 // to reconstruct it into a tuple local variable, from multiple
371                 // individual function arguments.
372
373                 let tupled_arg_tys = match arg_ty.sty {
374                     ty::Tuple(ref tys) => tys,
375                     _ => bug!("spread argument isn't a tuple?! but {:?}", arg_ty),
376                 };
377
378                 let mut ebb_params = Vec::new();
379                 for (i, arg_ty) in tupled_arg_tys.iter().enumerate() {
380                     let pass_mode = get_pass_mode(fx.tcx, fx.self_sig().abi, arg_ty, false);;
381                     let clif_type = pass_mode.get_param_ty(fx);
382                     let ebb_param = fx.bcx.append_ebb_param(start_ebb, clif_type);
383                     add_local_comment(fx, "arg", local, Some(i), Some(ebb_param), Some(pass_mode), ssa_analyzed[&local], arg_ty);
384                     ebb_params.push(ebb_param);
385                 }
386
387                 (local, ArgKind::Spread(ebb_params), arg_ty)
388             } else {
389                 let clif_type =
390                     get_pass_mode(fx.tcx, fx.self_sig().abi, arg_ty, false).get_param_ty(fx);
391                 let ebb_param = fx.bcx.append_ebb_param(start_ebb, clif_type);
392                 let pass_mode = get_pass_mode(fx.tcx, fx.self_sig().abi, arg_ty, false);
393                 add_local_comment(fx, "arg", local, None, Some(ebb_param), Some(pass_mode), ssa_analyzed[&local], arg_ty);
394                 (
395                     local,
396                     ArgKind::Normal(ebb_param),
397                     arg_ty,
398                 )
399             }
400         })
401         .collect::<Vec<(Local, ArgKind, Ty)>>();
402
403     fx.bcx.switch_to_block(start_ebb);
404
405     match output_pass_mode {
406         PassMode::NoPass => {
407             let null = fx.bcx.ins().iconst(fx.pointer_type, 0);
408             fx.local_map.insert(
409                 RETURN_PLACE,
410                 CPlace::Addr(null, None, fx.layout_of(fx.return_type())),
411             );
412         }
413         PassMode::ByVal(ret_ty) => {
414             fx.bcx.declare_var(mir_var(RETURN_PLACE), ret_ty);
415             fx.local_map
416                 .insert(RETURN_PLACE, CPlace::Var(RETURN_PLACE, ret_layout));
417         }
418         PassMode::ByRef => {
419             fx.local_map.insert(
420                 RETURN_PLACE,
421                 CPlace::Addr(ret_param.unwrap(), None, ret_layout),
422             );
423         }
424     }
425
426     add_local_header_comment(fx);
427     add_local_comment(fx, "ret", RETURN_PLACE, None, ret_param, Some(output_pass_mode), ssa_analyzed[&RETURN_PLACE], ret_layout.ty);
428
429     for (local, arg_kind, ty) in func_params {
430         let layout = fx.layout_of(ty);
431
432         let is_ssa = !ssa_analyzed
433             .get(&local)
434             .unwrap()
435             .contains(crate::analyze::Flags::NOT_SSA);
436
437         let place = local_place(fx, local, layout, is_ssa);
438
439         match arg_kind {
440             ArgKind::Normal(ebb_param) => {
441                 let cvalue = param_to_cvalue(fx, ebb_param, layout);
442                 place.write_cvalue(fx, cvalue);
443             }
444             ArgKind::Spread(ebb_params) => {
445                 for (i, ebb_param) in ebb_params.into_iter().enumerate() {
446                     let sub_place = place.place_field(fx, mir::Field::new(i));
447                     let cvalue = param_to_cvalue(fx, ebb_param, sub_place.layout());
448                     sub_place.write_cvalue(fx, cvalue);
449                 }
450             }
451         }
452     }
453
454     for local in fx.mir.vars_and_temps_iter() {
455         let ty = fx.mir.local_decls[local].ty;
456         let layout = fx.layout_of(ty);
457
458         add_local_comment(fx, "local", local, None, None, None, ssa_analyzed[&local], ty);
459
460         let is_ssa = !ssa_analyzed
461             .get(&local)
462             .unwrap()
463             .contains(crate::analyze::Flags::NOT_SSA);
464
465         local_place(fx, local, layout, is_ssa);
466     }
467
468     fx.bcx
469         .ins()
470         .jump(*fx.ebb_map.get(&START_BLOCK).unwrap(), &[]);
471 }
472
473 pub fn codegen_terminator_call<'a, 'tcx: 'a>(
474     fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
475     func: &Operand<'tcx>,
476     args: &[Operand<'tcx>],
477     destination: &Option<(Place<'tcx>, BasicBlock)>,
478 ) {
479     let fn_ty = fx.monomorphize(&func.ty(fx.mir, fx.tcx));
480     let sig = ty_fn_sig(fx.tcx, fn_ty);
481
482     // Unpack arguments tuple for closures
483     let args = if sig.abi == Abi::RustCall {
484         assert_eq!(args.len(), 2, "rust-call abi requires two arguments");
485         let self_arg = trans_operand(fx, &args[0]);
486         let pack_arg = trans_operand(fx, &args[1]);
487         let mut args = Vec::new();
488         args.push(self_arg);
489         match pack_arg.layout().ty.sty {
490             ty::Tuple(ref tupled_arguments) => {
491                 for (i, _) in tupled_arguments.iter().enumerate() {
492                     args.push(pack_arg.value_field(fx, mir::Field::new(i)));
493                 }
494             }
495             _ => bug!("argument to function with \"rust-call\" ABI is not a tuple"),
496         }
497         args
498     } else {
499         args.into_iter()
500             .map(|arg| trans_operand(fx, arg))
501             .collect::<Vec<_>>()
502     };
503
504     let destination = destination
505         .as_ref()
506         .map(|&(ref place, bb)| (trans_place(fx, place), bb));
507
508     if let ty::FnDef(def_id, substs) = fn_ty.sty {
509         let instance = ty::Instance::resolve(
510             fx.tcx,
511             ty::ParamEnv::reveal_all(),
512             def_id,
513             substs,
514         ).unwrap();
515
516         match instance.def {
517             InstanceDef::Intrinsic(_) => {
518                 crate::intrinsics::codegen_intrinsic_call(fx, def_id, substs, args, destination);
519                 return;
520             }
521             InstanceDef::DropGlue(_, None) => {
522                 // empty drop glue - a nop.
523                 let (_, dest) = destination.expect("Non terminating drop_in_place_real???");
524                 let ret_ebb = fx.get_ebb(dest);
525                 fx.bcx.ins().jump(ret_ebb, &[]);
526                 return;
527             }
528             _ => {}
529         }
530     }
531
532     codegen_call_inner(
533         fx,
534         Some(func),
535         fn_ty,
536         args,
537         destination.map(|(place, _)| place),
538     );
539
540     if let Some((_, dest)) = destination {
541         let ret_ebb = fx.get_ebb(dest);
542         fx.bcx.ins().jump(ret_ebb, &[]);
543     } else {
544         trap_unreachable(&mut fx.bcx);
545     }
546 }
547
548 pub fn codegen_call_inner<'a, 'tcx: 'a>(
549     fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
550     func: Option<&Operand<'tcx>>,
551     fn_ty: Ty<'tcx>,
552     args: Vec<CValue<'tcx>>,
553     ret_place: Option<CPlace<'tcx>>,
554 ) {
555     let sig = ty_fn_sig(fx.tcx, fn_ty);
556
557     let ret_layout = fx.layout_of(sig.output());
558
559     let output_pass_mode = get_pass_mode(fx.tcx, sig.abi, sig.output(), true);
560     let return_ptr = match output_pass_mode {
561         PassMode::NoPass => None,
562         PassMode::ByRef => match ret_place {
563             Some(ret_place) => Some(ret_place.expect_addr()),
564             None => Some(fx.bcx.ins().iconst(fx.pointer_type, 0)),
565         },
566         PassMode::ByVal(_) => None,
567     };
568
569     let instance = match fn_ty.sty {
570         ty::FnDef(def_id, substs) => {
571             Some(Instance::resolve(fx.tcx, ParamEnv::reveal_all(), def_id, substs).unwrap())
572         }
573         _ => None,
574     };
575
576     let func_ref: Option<Value>; // Indirect call target
577
578     let first_arg = {
579         if let Some(Instance {
580             def: InstanceDef::Virtual(_, idx),
581             ..
582         }) = instance
583         {
584             let (ptr, method) = crate::vtable::get_ptr_and_method_ref(fx, args[0], idx);
585             func_ref = Some(method);
586             Some(ptr)
587         } else {
588             func_ref = if instance.is_none() {
589                 let func = trans_operand(fx, func.expect("indirect call without func Operand"));
590                 Some(func.load_value(fx))
591             } else {
592                 None
593             };
594
595             args.get(0).map(|arg| adjust_arg_for_abi(fx, sig, *arg))
596         }
597         .into_iter()
598     };
599
600     let call_args: Vec<Value> = return_ptr
601         .into_iter()
602         .chain(first_arg)
603         .chain(
604             args.into_iter()
605                 .skip(1)
606                 .map(|arg| adjust_arg_for_abi(fx, sig, arg)),
607         )
608         .collect::<Vec<_>>();
609
610     let sig = fx.bcx.import_signature(clif_sig_from_fn_ty(fx.tcx, fn_ty));
611     let call_inst = if let Some(func_ref) = func_ref {
612         fx.bcx.ins().call_indirect(sig, func_ref, &call_args)
613     } else {
614         let func_ref = fx.get_function_ref(instance.expect("non-indirect call on non-FnDef type"));
615         fx.bcx.ins().call(func_ref, &call_args)
616     };
617
618     match output_pass_mode {
619         PassMode::NoPass => {}
620         PassMode::ByVal(_) => {
621             if let Some(ret_place) = ret_place {
622                 let results = fx.bcx.inst_results(call_inst);
623                 ret_place.write_cvalue(fx, CValue::ByVal(results[0], ret_layout));
624             }
625         }
626         PassMode::ByRef => {}
627     }
628 }
629
630 pub fn codegen_return(fx: &mut FunctionCx<impl Backend>) {
631     match get_pass_mode(fx.tcx, fx.self_sig().abi, fx.return_type(), true) {
632         PassMode::NoPass | PassMode::ByRef => {
633             fx.bcx.ins().return_(&[]);
634         }
635         PassMode::ByVal(_) => {
636             let place = fx.get_local_place(RETURN_PLACE);
637             let ret_val = place.to_cvalue(fx).load_value(fx);
638             fx.bcx.ins().return_(&[ret_val]);
639         }
640     }
641 }