]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_cranelift/src/main_shim.rs
Rollup merge of #103837 - GuillaumeGomez:migrate-sidebar-links-color-gui-test, r...
[rust.git] / compiler / rustc_codegen_cranelift / src / main_shim.rs
1 use rustc_hir::LangItem;
2 use rustc_middle::ty::subst::GenericArg;
3 use rustc_middle::ty::AssocKind;
4 use rustc_session::config::{sigpipe, EntryFnType};
5 use rustc_span::symbol::Ident;
6
7 use crate::prelude::*;
8
9 /// Create the `main` function which will initialize the rust runtime and call
10 /// users main function.
11 pub(crate) fn maybe_create_entry_wrapper(
12     tcx: TyCtxt<'_>,
13     module: &mut impl Module,
14     unwind_context: &mut UnwindContext,
15     is_jit: bool,
16     is_primary_cgu: bool,
17 ) {
18     let (main_def_id, (is_main_fn, sigpipe)) = match tcx.entry_fn(()) {
19         Some((def_id, entry_ty)) => (
20             def_id,
21             match entry_ty {
22                 EntryFnType::Main { sigpipe } => (true, sigpipe),
23                 EntryFnType::Start => (false, sigpipe::DEFAULT),
24             },
25         ),
26         None => return,
27     };
28
29     if main_def_id.is_local() {
30         let instance = Instance::mono(tcx, main_def_id).polymorphize(tcx);
31         if !is_jit && module.get_name(&*tcx.symbol_name(instance).name).is_none() {
32             return;
33         }
34     } else if !is_primary_cgu {
35         return;
36     }
37
38     create_entry_fn(tcx, module, unwind_context, main_def_id, is_jit, is_main_fn, sigpipe);
39
40     fn create_entry_fn(
41         tcx: TyCtxt<'_>,
42         m: &mut impl Module,
43         unwind_context: &mut UnwindContext,
44         rust_main_def_id: DefId,
45         ignore_lang_start_wrapper: bool,
46         is_main_fn: bool,
47         sigpipe: u8,
48     ) {
49         let main_ret_ty = tcx.fn_sig(rust_main_def_id).output();
50         // Given that `main()` has no arguments,
51         // then its return type cannot have
52         // late-bound regions, since late-bound
53         // regions must appear in the argument
54         // listing.
55         let main_ret_ty = tcx.normalize_erasing_regions(
56             ty::ParamEnv::reveal_all(),
57             main_ret_ty.no_bound_vars().unwrap(),
58         );
59
60         let cmain_sig = Signature {
61             params: vec![
62                 AbiParam::new(m.target_config().pointer_type()),
63                 AbiParam::new(m.target_config().pointer_type()),
64             ],
65             returns: vec![AbiParam::new(m.target_config().pointer_type() /*isize*/)],
66             call_conv: CallConv::triple_default(m.isa().triple()),
67         };
68
69         let cmain_func_id = m.declare_function("main", Linkage::Export, &cmain_sig).unwrap();
70
71         let instance = Instance::mono(tcx, rust_main_def_id).polymorphize(tcx);
72
73         let main_name = tcx.symbol_name(instance).name;
74         let main_sig = get_function_sig(tcx, m.isa().triple(), instance);
75         let main_func_id = m.declare_function(main_name, Linkage::Import, &main_sig).unwrap();
76
77         let mut ctx = Context::new();
78         ctx.func.signature = cmain_sig;
79         {
80             let mut func_ctx = FunctionBuilderContext::new();
81             let mut bcx = FunctionBuilder::new(&mut ctx.func, &mut func_ctx);
82
83             let block = bcx.create_block();
84             bcx.switch_to_block(block);
85             let arg_argc = bcx.append_block_param(block, m.target_config().pointer_type());
86             let arg_argv = bcx.append_block_param(block, m.target_config().pointer_type());
87             let arg_sigpipe = bcx.ins().iconst(types::I8, sigpipe as i64);
88
89             let main_func_ref = m.declare_func_in_func(main_func_id, &mut bcx.func);
90
91             let result = if is_main_fn && ignore_lang_start_wrapper {
92                 // regular main fn, but ignoring #[lang = "start"] as we are running in the jit
93                 // FIXME set program arguments somehow
94                 let call_inst = bcx.ins().call(main_func_ref, &[]);
95                 let call_results = bcx.func.dfg.inst_results(call_inst).to_owned();
96
97                 let termination_trait = tcx.require_lang_item(LangItem::Termination, None);
98                 let report = tcx
99                     .associated_items(termination_trait)
100                     .find_by_name_and_kind(
101                         tcx,
102                         Ident::from_str("report"),
103                         AssocKind::Fn,
104                         termination_trait,
105                     )
106                     .unwrap();
107                 let report = Instance::resolve(
108                     tcx,
109                     ParamEnv::reveal_all(),
110                     report.def_id,
111                     tcx.mk_substs([GenericArg::from(main_ret_ty)].iter()),
112                 )
113                 .unwrap()
114                 .unwrap()
115                 .polymorphize(tcx);
116
117                 let report_name = tcx.symbol_name(report).name;
118                 let report_sig = get_function_sig(tcx, m.isa().triple(), report);
119                 let report_func_id =
120                     m.declare_function(report_name, Linkage::Import, &report_sig).unwrap();
121                 let report_func_ref = m.declare_func_in_func(report_func_id, &mut bcx.func);
122
123                 // FIXME do proper abi handling instead of expecting the pass mode to be identical
124                 // for returns and arguments.
125                 let report_call_inst = bcx.ins().call(report_func_ref, &call_results);
126                 let res = bcx.func.dfg.inst_results(report_call_inst)[0];
127                 match m.target_config().pointer_type() {
128                     types::I32 => res,
129                     types::I64 => bcx.ins().sextend(types::I64, res),
130                     _ => unimplemented!("16bit systems are not yet supported"),
131                 }
132             } else if is_main_fn {
133                 let start_def_id = tcx.require_lang_item(LangItem::Start, None);
134                 let start_instance = Instance::resolve(
135                     tcx,
136                     ParamEnv::reveal_all(),
137                     start_def_id,
138                     tcx.intern_substs(&[main_ret_ty.into()]),
139                 )
140                 .unwrap()
141                 .unwrap()
142                 .polymorphize(tcx);
143                 let start_func_id = import_function(tcx, m, start_instance);
144
145                 let main_val = bcx.ins().func_addr(m.target_config().pointer_type(), main_func_ref);
146
147                 let func_ref = m.declare_func_in_func(start_func_id, &mut bcx.func);
148                 let call_inst =
149                     bcx.ins().call(func_ref, &[main_val, arg_argc, arg_argv, arg_sigpipe]);
150                 bcx.inst_results(call_inst)[0]
151             } else {
152                 // using user-defined start fn
153                 let call_inst = bcx.ins().call(main_func_ref, &[arg_argc, arg_argv]);
154                 bcx.inst_results(call_inst)[0]
155             };
156
157             bcx.ins().return_(&[result]);
158             bcx.seal_all_blocks();
159             bcx.finalize();
160         }
161         m.define_function(cmain_func_id, &mut ctx).unwrap();
162         unwind_context.add_function(cmain_func_id, &ctx, m.isa());
163     }
164 }