2020-11-27 13:48:53 -06:00
|
|
|
//! Drivers are responsible for calling [`codegen_mono_item`] and performing any further actions
|
2020-09-23 08:13:49 -05:00
|
|
|
//! like JIT executing or writing object files.
|
|
|
|
|
2019-05-04 09:54:25 -05:00
|
|
|
use std::any::Any;
|
|
|
|
|
2020-03-31 06:20:19 -05:00
|
|
|
use rustc_middle::middle::cstore::EncodedMetadata;
|
|
|
|
use rustc_middle::mir::mono::{Linkage as RLinkage, MonoItem, Visibility};
|
2019-05-04 09:54:25 -05:00
|
|
|
|
|
|
|
use crate::prelude::*;
|
2020-12-27 03:30:38 -06:00
|
|
|
use crate::CodegenMode;
|
2019-05-04 09:54:25 -05:00
|
|
|
|
2020-03-12 05:48:17 -05:00
|
|
|
mod aot;
|
2020-07-09 07:23:00 -05:00
|
|
|
#[cfg(feature = "jit")]
|
2020-03-12 05:44:27 -05:00
|
|
|
mod jit;
|
|
|
|
|
2020-03-27 06:14:45 -05:00
|
|
|
pub(crate) fn codegen_crate(
|
2019-06-16 04:13:49 -05:00
|
|
|
tcx: TyCtxt<'_>,
|
2019-05-04 09:54:25 -05:00
|
|
|
metadata: EncodedMetadata,
|
2019-05-11 05:23:40 -05:00
|
|
|
need_metadata_module: bool,
|
2020-09-29 11:41:59 -05:00
|
|
|
config: crate::BackendConfig,
|
2019-05-04 09:54:25 -05:00
|
|
|
) -> Box<dyn Any> {
|
|
|
|
tcx.sess.abort_if_errors();
|
|
|
|
|
2020-12-27 03:30:38 -06:00
|
|
|
match config.codegen_mode {
|
|
|
|
CodegenMode::Aot => aot::run_aot(tcx, metadata, need_metadata_module),
|
|
|
|
CodegenMode::Jit | CodegenMode::JitLazy => {
|
|
|
|
let is_executable = tcx
|
|
|
|
.sess
|
|
|
|
.crate_types()
|
|
|
|
.contains(&rustc_session::config::CrateType::Executable);
|
|
|
|
if !is_executable {
|
|
|
|
tcx.sess.fatal("can't jit non-executable crate");
|
|
|
|
}
|
2020-09-29 11:41:59 -05:00
|
|
|
|
2020-12-27 03:30:38 -06:00
|
|
|
#[cfg(feature = "jit")]
|
|
|
|
let _: ! = jit::run_jit(tcx, config.codegen_mode);
|
2019-05-11 05:23:40 -05:00
|
|
|
|
2020-12-27 03:30:38 -06:00
|
|
|
#[cfg(not(feature = "jit"))]
|
|
|
|
tcx.sess
|
|
|
|
.fatal("jit support was disabled when compiling rustc_codegen_cranelift");
|
|
|
|
}
|
2019-05-11 05:23:40 -05:00
|
|
|
}
|
2019-05-04 09:54:25 -05:00
|
|
|
}
|
|
|
|
|
2020-11-27 13:48:53 -06:00
|
|
|
fn predefine_mono_items<'tcx>(
|
2020-10-01 03:38:23 -05:00
|
|
|
cx: &mut crate::CodegenCx<'tcx, impl Module>,
|
2020-11-27 13:48:53 -06:00
|
|
|
mono_items: &[(MonoItem<'tcx>, (RLinkage, Visibility))],
|
2019-05-04 09:54:25 -05:00
|
|
|
) {
|
2020-08-22 08:49:16 -05:00
|
|
|
cx.tcx.sess.time("predefine functions", || {
|
2020-11-27 13:48:53 -06:00
|
|
|
for &(mono_item, (linkage, visibility)) in mono_items {
|
2020-03-07 05:16:32 -06:00
|
|
|
match mono_item {
|
|
|
|
MonoItem::Fn(instance) => {
|
2021-02-01 03:11:46 -06:00
|
|
|
let name = cx.tcx.symbol_name(instance).name.to_string();
|
|
|
|
let _inst_guard = crate::PrintOnPanic(|| format!("{:?} {}", instance, name));
|
|
|
|
let sig = get_function_sig(cx.tcx, cx.module.isa().triple(), instance);
|
2020-03-07 05:16:32 -06:00
|
|
|
let linkage = crate::linkage::get_clif_linkage(mono_item, linkage, visibility);
|
2020-08-22 08:49:16 -05:00
|
|
|
cx.module.declare_function(&name, linkage, &sig).unwrap();
|
2019-10-04 07:39:14 -05:00
|
|
|
}
|
2020-03-07 05:16:32 -06:00
|
|
|
MonoItem::Static(_) | MonoItem::GlobalAsm(_) => {}
|
2019-10-04 07:39:14 -05:00
|
|
|
}
|
2019-05-04 09:54:25 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-12 05:40:42 -05:00
|
|
|
fn time<R>(tcx: TyCtxt<'_>, name: &'static str, f: impl FnOnce() -> R) -> R {
|
2020-08-28 05:10:48 -05:00
|
|
|
if std::env::var("CG_CLIF_DISPLAY_CG_TIME")
|
|
|
|
.as_ref()
|
|
|
|
.map(|val| &**val)
|
|
|
|
== Ok("1")
|
|
|
|
{
|
2020-03-12 05:40:42 -05:00
|
|
|
println!("[{:<30}: {}] start", tcx.crate_name(LOCAL_CRATE), name);
|
2020-03-12 05:17:19 -05:00
|
|
|
let before = std::time::Instant::now();
|
2020-03-12 05:40:42 -05:00
|
|
|
let res = tcx.sess.time(name, f);
|
2020-03-12 05:17:19 -05:00
|
|
|
let after = std::time::Instant::now();
|
2020-08-28 05:10:48 -05:00
|
|
|
println!(
|
|
|
|
"[{:<30}: {}] end time: {:?}",
|
|
|
|
tcx.crate_name(LOCAL_CRATE),
|
|
|
|
name,
|
|
|
|
after - before
|
|
|
|
);
|
2020-03-12 05:17:19 -05:00
|
|
|
res
|
|
|
|
} else {
|
2020-03-12 05:40:42 -05:00
|
|
|
tcx.sess.time(name, f)
|
2020-03-12 05:17:19 -05:00
|
|
|
}
|
2019-05-04 09:54:25 -05:00
|
|
|
}
|