rust/src/driver/mod.rs

86 lines
2.8 KiB
Rust
Raw Normal View History

//! Drivers are responsible for calling [`codegen_mono_item`] and performing any further actions
//! like JIT executing or writing object files.
2019-05-04 09:54:25 -05:00
use std::any::Any;
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::*;
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;
pub(crate) fn codegen_crate(
tcx: TyCtxt<'_>,
2019-05-04 09:54:25 -05:00
metadata: EncodedMetadata,
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();
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
#[cfg(feature = "jit")]
let _: ! = jit::run_jit(tcx, config.codegen_mode);
#[cfg(not(feature = "jit"))]
tcx.sess
.fatal("jit support was disabled when compiling rustc_codegen_cranelift");
}
}
2019-05-04 09:54:25 -05:00
}
fn predefine_mono_items<'tcx>(
cx: &mut crate::CodegenCx<'tcx, impl Module>,
mono_items: &[(MonoItem<'tcx>, (RLinkage, Visibility))],
2019-05-04 09:54:25 -05:00
) {
cx.tcx.sess.time("predefine functions", || {
for &(mono_item, (linkage, visibility)) in mono_items {
match mono_item {
MonoItem::Fn(instance) => {
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);
let linkage = crate::linkage::get_clif_linkage(mono_item, linkage, visibility);
cx.module.declare_function(&name, linkage, &sig).unwrap();
}
MonoItem::Static(_) | MonoItem::GlobalAsm(_) => {}
}
2019-05-04 09:54:25 -05:00
}
});
}
fn time<R>(tcx: TyCtxt<'_>, name: &'static str, f: impl FnOnce() -> R) -> R {
if std::env::var("CG_CLIF_DISPLAY_CG_TIME")
.as_ref()
.map(|val| &**val)
== Ok("1")
{
println!("[{:<30}: {}] start", tcx.crate_name(LOCAL_CRATE), name);
2020-03-12 05:17:19 -05:00
let before = std::time::Instant::now();
let res = tcx.sess.time(name, f);
2020-03-12 05:17:19 -05:00
let after = std::time::Instant::now();
println!(
"[{:<30}: {}] end time: {:?}",
tcx.crate_name(LOCAL_CRATE),
name,
after - before
);
2020-03-12 05:17:19 -05:00
res
} else {
tcx.sess.time(name, f)
2020-03-12 05:17:19 -05:00
}
2019-05-04 09:54:25 -05:00
}