2018-10-20 11:41:26 -05:00
|
|
|
use crate::prelude::*;
|
|
|
|
|
|
|
|
/// Create the `main` function which will initialize the rust runtime and call
|
|
|
|
/// users main function.
|
2019-06-16 04:13:49 -05:00
|
|
|
pub fn maybe_create_entry_wrapper(
|
|
|
|
tcx: TyCtxt<'_>,
|
2018-10-20 11:41:26 -05:00
|
|
|
module: &mut Module<impl Backend + 'static>,
|
|
|
|
) {
|
2018-11-07 06:29:38 -06:00
|
|
|
use rustc::middle::lang_items::StartFnLangItem;
|
|
|
|
use rustc::session::config::EntryFnType;
|
2018-10-20 11:41:26 -05:00
|
|
|
|
2019-01-26 04:59:34 -06:00
|
|
|
let (main_def_id, use_start_lang_item) = match tcx.entry_fn(LOCAL_CRATE) {
|
|
|
|
Some((def_id, entry_ty)) => (
|
|
|
|
def_id,
|
2018-10-20 11:41:26 -05:00
|
|
|
match entry_ty {
|
|
|
|
EntryFnType::Main => true,
|
|
|
|
EntryFnType::Start => false,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
|
|
|
|
create_entry_fn(tcx, module, main_def_id, use_start_lang_item);;
|
|
|
|
|
2019-06-16 04:13:49 -05:00
|
|
|
fn create_entry_fn(
|
|
|
|
tcx: TyCtxt<'_>,
|
2018-10-20 11:41:26 -05:00
|
|
|
m: &mut Module<impl Backend + 'static>,
|
|
|
|
rust_main_def_id: DefId,
|
|
|
|
use_start_lang_item: bool,
|
|
|
|
) {
|
|
|
|
let main_ret_ty = tcx.fn_sig(rust_main_def_id).output();
|
|
|
|
// Given that `main()` has no arguments,
|
|
|
|
// then its return type cannot have
|
|
|
|
// late-bound regions, since late-bound
|
|
|
|
// regions must appear in the argument
|
|
|
|
// listing.
|
2018-11-03 12:22:05 -05:00
|
|
|
let main_ret_ty = tcx.erase_regions(&main_ret_ty.no_bound_vars().unwrap());
|
2018-10-20 11:41:26 -05:00
|
|
|
|
|
|
|
let cmain_sig = Signature {
|
|
|
|
params: vec![
|
2018-11-03 07:14:28 -05:00
|
|
|
AbiParam::new(m.target_config().pointer_type()),
|
|
|
|
AbiParam::new(m.target_config().pointer_type()),
|
2018-10-20 11:41:26 -05:00
|
|
|
],
|
2018-11-07 06:32:02 -06:00
|
|
|
returns: vec![AbiParam::new(
|
|
|
|
m.target_config().pointer_type(), /*isize*/
|
|
|
|
)],
|
2018-10-20 11:41:26 -05:00
|
|
|
call_conv: CallConv::SystemV,
|
|
|
|
};
|
|
|
|
|
|
|
|
let cmain_func_id = m
|
|
|
|
.declare_function("main", Linkage::Export, &cmain_sig)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let instance = Instance::mono(tcx, rust_main_def_id);
|
|
|
|
|
2019-02-11 12:18:52 -06:00
|
|
|
let (main_name, main_sig) = get_function_name_and_sig(tcx, instance, false);
|
2018-10-20 11:41:26 -05:00
|
|
|
let main_func_id = m
|
|
|
|
.declare_function(&main_name, Linkage::Import, &main_sig)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut ctx = Context::new();
|
|
|
|
ctx.func = Function::with_name_signature(ExternalName::user(0, 0), cmain_sig.clone());
|
|
|
|
{
|
|
|
|
let mut func_ctx = FunctionBuilderContext::new();
|
|
|
|
let mut bcx: FunctionBuilder = FunctionBuilder::new(&mut ctx.func, &mut func_ctx);
|
|
|
|
|
|
|
|
let ebb = bcx.create_ebb();
|
|
|
|
bcx.switch_to_block(ebb);
|
2018-11-03 07:14:28 -05:00
|
|
|
let arg_argc = bcx.append_ebb_param(ebb, m.target_config().pointer_type());
|
|
|
|
let arg_argv = bcx.append_ebb_param(ebb, m.target_config().pointer_type());
|
2018-10-20 11:41:26 -05:00
|
|
|
|
|
|
|
let main_func_ref = m.declare_func_in_func(main_func_id, &mut bcx.func);
|
|
|
|
|
|
|
|
let call_inst = if use_start_lang_item {
|
|
|
|
let start_def_id = tcx.require_lang_item(StartFnLangItem);
|
|
|
|
let start_instance = Instance::resolve(
|
|
|
|
tcx,
|
|
|
|
ParamEnv::reveal_all(),
|
|
|
|
start_def_id,
|
|
|
|
tcx.intern_substs(&[main_ret_ty.into()]),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2019-01-02 05:20:32 -06:00
|
|
|
let start_func_id = import_function(tcx, m, start_instance);
|
2018-10-20 11:41:26 -05:00
|
|
|
|
2018-11-07 06:32:02 -06:00
|
|
|
let main_val = bcx
|
|
|
|
.ins()
|
|
|
|
.func_addr(m.target_config().pointer_type(), main_func_ref);
|
2018-10-20 11:41:26 -05:00
|
|
|
|
|
|
|
let func_ref = m.declare_func_in_func(start_func_id, &mut bcx.func);
|
|
|
|
bcx.ins().call(func_ref, &[main_val, arg_argc, arg_argv])
|
|
|
|
} else {
|
|
|
|
// using user-defined start fn
|
|
|
|
bcx.ins().call(main_func_ref, &[arg_argc, arg_argv])
|
|
|
|
};
|
|
|
|
|
|
|
|
let result = bcx.inst_results(call_inst)[0];
|
|
|
|
bcx.ins().return_(&[result]);
|
|
|
|
bcx.seal_all_blocks();
|
|
|
|
bcx.finalize();
|
|
|
|
}
|
|
|
|
m.define_function(cmain_func_id, &mut ctx).unwrap();
|
|
|
|
}
|
|
|
|
}
|