rust/src/driver.rs

400 lines
14 KiB
Rust
Raw Normal View History

2019-05-04 09:54:25 -05:00
use std::any::Any;
use std::ffi::CString;
use std::os::raw::{c_char, c_int};
use rustc::middle::cstore::EncodedMetadata;
use rustc::mir::mono::{Linkage as RLinkage, Visibility};
use rustc::session::config::{DebugInfo, OutputType};
use rustc_codegen_ssa::back::linker::LinkerInfo;
use rustc_codegen_ssa::CrateInfo;
use crate::prelude::*;
2019-10-18 10:19:13 -05:00
use crate::backend::{Emit, WriteDebugInfo};
pub fn codegen_crate(
tcx: TyCtxt<'_>,
2019-05-04 09:54:25 -05:00
metadata: EncodedMetadata,
need_metadata_module: bool,
2019-05-04 09:54:25 -05:00
) -> Box<dyn Any> {
tcx.sess.abort_if_errors();
2019-08-11 10:33:52 -05:00
if std::env::var("SHOULD_RUN").is_ok()
&& tcx.sess.crate_types.get().contains(&CrateType::Executable)
{
#[cfg(not(target_arch = "wasm32"))]
let _: ! = run_jit(tcx);
#[cfg(target_arch = "wasm32")]
panic!("jit not supported on wasm");
}
run_aot(tcx, metadata, need_metadata_module)
}
#[cfg(not(target_arch = "wasm32"))]
fn run_jit(tcx: TyCtxt<'_>) -> ! {
use cranelift_simplejit::{SimpleJITBackend, SimpleJITBuilder};
// Rustc opens us without the RTLD_GLOBAL flag, so __cg_clif_global_atomic_mutex will not be
// exported. We fix this by opening ourself again as global.
// FIXME remove once atomic_shim is gone
let cg_dylib = std::ffi::OsString::from(&tcx.sess.opts.debugging_opts.codegen_backend.as_ref().unwrap());
std::mem::forget(libloading::os::unix::Library::open(Some(cg_dylib), libc::RTLD_NOW | libc::RTLD_GLOBAL).unwrap());
let imported_symbols = load_imported_symbols_for_jit(tcx);
2019-08-11 10:06:18 -05:00
let mut jit_builder = SimpleJITBuilder::with_isa(
crate::build_isa(tcx.sess, false),
cranelift_module::default_libcall_names(),
);
jit_builder.symbols(imported_symbols);
let mut jit_module: Module<SimpleJITBackend> = Module::new(jit_builder);
assert_eq!(pointer_ty(tcx), jit_module.target_config().pointer_type());
let sig = Signature {
params: vec![
AbiParam::new(jit_module.target_config().pointer_type()),
AbiParam::new(jit_module.target_config().pointer_type()),
],
returns: vec![AbiParam::new(
jit_module.target_config().pointer_type(), /*isize*/
)],
call_conv: CallConv::triple_default(&crate::target_triple(tcx.sess)),
};
let main_func_id = jit_module
.declare_function("main", Linkage::Import, &sig)
.unwrap();
2020-03-07 04:54:35 -06:00
let (_, cgus) = tcx.collect_and_partition_mono_items(LOCAL_CRATE);
let mono_items = cgus
.iter()
.map(|cgu| cgu.items_in_deterministic_order(tcx).into_iter())
.flatten()
.collect::<FxHashMap<_, (_, _)>>();
codegen_mono_items(tcx, &mut jit_module, None, mono_items);
crate::main_shim::maybe_create_entry_wrapper(tcx, &mut jit_module);
crate::allocator::codegen(tcx, &mut jit_module);
2020-03-07 04:54:35 -06:00
jit_module.finalize_definitions();
tcx.sess.abort_if_errors();
let finalized_main: *const u8 = jit_module.get_finalized_function(main_func_id);
println!("Rustc codegen cranelift will JIT run the executable, because the SHOULD_RUN env var is set");
let f: extern "C" fn(c_int, *const *const c_char) -> c_int =
unsafe { ::std::mem::transmute(finalized_main) };
let args = ::std::env::var("JIT_ARGS").unwrap_or_else(|_| String::new());
let args = args
.split(" ")
.chain(Some(&*tcx.crate_name(LOCAL_CRATE).as_str().to_string()))
.map(|arg| CString::new(arg).unwrap())
.collect::<Vec<_>>();
let argv = args.iter().map(|arg| arg.as_ptr()).collect::<Vec<_>>();
// TODO: Rust doesn't care, but POSIX argv has a NULL sentinel at the end
let ret = f(args.len() as c_int, argv.as_ptr());
jit_module.finish();
std::process::exit(ret);
}
fn load_imported_symbols_for_jit(tcx: TyCtxt<'_>) -> Vec<(String, *const u8)> {
use rustc::middle::dependency_format::Linkage;
let mut dylib_paths = Vec::new();
let crate_info = CrateInfo::new(tcx);
let formats = tcx.dependency_formats(LOCAL_CRATE);
let data = &formats
.iter()
.find(|(crate_type, _data)| *crate_type == CrateType::Executable)
.unwrap()
.1;
for &(cnum, _) in &crate_info.used_crates_dynamic {
let src = &crate_info.used_crate_source[&cnum];
match data[cnum.as_usize() - 1] {
Linkage::NotLinked | Linkage::IncludedFromDylib => {}
Linkage::Static => {
let name = tcx.crate_name(cnum);
2019-08-31 12:28:09 -05:00
let mut err = tcx
.sess
.struct_err(&format!("Can't load static lib {}", name.as_str()));
err.note("rustc_codegen_cranelift can only load dylibs in JIT mode.");
err.emit();
}
Linkage::Dynamic => {
dylib_paths.push(src.dylib.as_ref().unwrap().0.clone());
}
}
}
let mut imported_symbols = Vec::new();
for path in dylib_paths {
use object::Object;
let lib = libloading::Library::new(&path).unwrap();
let obj = std::fs::read(path).unwrap();
let obj = object::File::parse(&obj).unwrap();
imported_symbols.extend(obj.dynamic_symbols().filter_map(|(_idx, symbol)| {
let name = symbol.name().unwrap().to_string();
if name.is_empty() || !symbol.is_global() || symbol.is_undefined() {
return None;
}
2020-02-22 08:57:53 -06:00
let dlsym_name = if cfg!(target_os = "macos") {
// On macOS `dlsym` expects the name without leading `_`.
assert!(name.starts_with("_"), "{:?}", name);
&name[1..]
} else {
&name
};
let symbol: libloading::Symbol<*const u8> =
2020-02-22 08:57:53 -06:00
unsafe { lib.get(dlsym_name.as_bytes()) }.unwrap();
Some((name, *symbol))
}));
std::mem::forget(lib)
}
tcx.sess.abort_if_errors();
imported_symbols
}
fn run_aot(
tcx: TyCtxt<'_>,
metadata: EncodedMetadata,
need_metadata_module: bool,
) -> Box<CodegenResults> {
let new_module = |name: String| {
2019-10-18 10:19:13 -05:00
let module = crate::backend::make_module(tcx.sess, name);
assert_eq!(pointer_ty(tcx), module.target_config().pointer_type());
module
};
2019-10-18 10:19:13 -05:00
fn emit_module<B: Backend>(
tcx: TyCtxt<'_>,
name: String,
kind: ModuleKind,
mut module: Module<B>,
debug: Option<DebugContext>,
) -> CompiledModule
where B::Product: Emit + WriteDebugInfo,
{
module.finalize_definitions();
2019-10-18 10:19:13 -05:00
let mut product = module.finish();
if let Some(mut debug) = debug {
2019-10-18 10:19:13 -05:00
debug.emit(&mut product);
}
let tmp_file = tcx
.output_filenames(LOCAL_CRATE)
2019-10-18 10:19:13 -05:00
.temp_path(OutputType::Object, Some(&name));
let obj = product.emit();
std::fs::write(&tmp_file, obj).unwrap();
CompiledModule {
2019-10-19 03:52:56 -05:00
name,
kind,
object: Some(tmp_file),
bytecode: None,
bytecode_compressed: None,
}
};
2020-03-07 04:54:35 -06:00
let (_, cgus) = tcx.collect_and_partition_mono_items(LOCAL_CRATE);
let mono_items = cgus
.iter()
.map(|cgu| cgu.items_in_deterministic_order(tcx).into_iter())
.flatten()
.collect::<FxHashMap<_, (_, _)>>();
2019-10-18 10:19:13 -05:00
let mut module = new_module("some_file".to_string());
let mut debug = if tcx.sess.opts.debuginfo != DebugInfo::None {
let debug = DebugContext::new(
tcx,
2019-10-18 10:19:13 -05:00
module.target_config().pointer_type().bytes() as u8,
);
Some(debug)
2019-05-04 09:54:25 -05:00
} else {
None
};
2020-03-07 04:54:35 -06:00
codegen_mono_items(tcx, &mut module, debug.as_mut(), mono_items);
crate::main_shim::maybe_create_entry_wrapper(tcx, &mut module);
tcx.sess.abort_if_errors();
2019-09-14 08:15:06 -05:00
let mut allocator_module = new_module("allocator_shim".to_string());
let created_alloc_shim = crate::allocator::codegen(tcx, &mut allocator_module);
rustc_incremental::assert_dep_graph(tcx);
rustc_incremental::save_dep_graph(tcx);
rustc_incremental::finalize_session_directory(tcx.sess, tcx.crate_hash(LOCAL_CRATE));
let metadata_module = if need_metadata_module {
let _timer = tcx.prof.generic_activity("codegen crate metadata");
let (metadata_cgu_name, tmp_file) = tcx.sess.time("write compressed metadata", || {
use rustc::mir::mono::CodegenUnitNameBuilder;
let cgu_name_builder = &mut CodegenUnitNameBuilder::new(tcx);
let metadata_cgu_name = cgu_name_builder
.build_cgu_name(LOCAL_CRATE, &["crate"], Some("metadata"))
.as_str()
.to_string();
let tmp_file = tcx
.output_filenames(LOCAL_CRATE)
.temp_path(OutputType::Metadata, Some(&metadata_cgu_name));
2019-10-18 10:19:13 -05:00
let obj = crate::backend::with_object(tcx.sess, &metadata_cgu_name, |object| {
crate::metadata::write_metadata(tcx, object);
});
std::fs::write(&tmp_file, obj).unwrap();
(metadata_cgu_name, tmp_file)
});
2019-03-27 13:24:42 -05:00
Some(CompiledModule {
2019-03-27 13:24:42 -05:00
name: metadata_cgu_name,
kind: ModuleKind::Metadata,
object: Some(tmp_file),
bytecode: None,
bytecode_compressed: None,
})
} else {
None
2019-03-27 13:24:42 -05:00
};
Box::new(CodegenResults {
crate_name: tcx.crate_name(LOCAL_CRATE),
modules: vec![emit_module(
2019-10-18 10:19:13 -05:00
tcx,
"some_file".to_string(),
ModuleKind::Regular,
2019-10-18 10:19:13 -05:00
module,
debug,
)],
allocator_module: if created_alloc_shim {
Some(emit_module(
2019-10-18 10:19:13 -05:00
tcx,
"allocator_shim".to_string(),
ModuleKind::Allocator,
allocator_module,
None,
))
2019-05-04 09:54:25 -05:00
} else {
None
},
metadata_module,
crate_hash: tcx.crate_hash(LOCAL_CRATE),
metadata,
windows_subsystem: None, // Windows is not yet supported
linker_info: LinkerInfo::new(tcx),
crate_info: CrateInfo::new(tcx),
})
2019-05-04 09:54:25 -05:00
}
fn codegen_mono_items<'tcx>(
tcx: TyCtxt<'tcx>,
2019-05-04 09:54:25 -05:00
module: &mut Module<impl Backend + 'static>,
debug_context: Option<&mut DebugContext<'tcx>>,
mono_items: FxHashMap<MonoItem<'tcx>, (RLinkage, Visibility)>,
) {
let mut cx = CodegenCx::new(tcx, module, debug_context);
2020-01-10 07:15:14 -06:00
time(tcx.sess, "codegen mono items", move || {
tcx.sess.time("predefine functions", || {
for (&mono_item, &(linkage, visibility)) in &mono_items {
match mono_item {
MonoItem::Fn(instance) => {
let (name, sig) =
get_function_name_and_sig(tcx, cx.module.isa().triple(), instance, false);
let linkage = crate::linkage::get_clif_linkage(mono_item, linkage, visibility);
cx.module.declare_function(&name, linkage, &sig).unwrap();
}
MonoItem::Static(_) | MonoItem::GlobalAsm(_) => {}
}
}
2020-01-10 07:15:14 -06:00
});
2019-05-04 09:54:25 -05:00
for (mono_item, (linkage, visibility)) in mono_items {
crate::unimpl::try_unimpl(tcx, || {
2019-05-04 09:54:25 -05:00
let linkage = crate::linkage::get_clif_linkage(mono_item, linkage, visibility);
trans_mono_item(&mut cx, mono_item, linkage);
});
}
2020-01-10 07:15:14 -06:00
tcx.sess.time("finalize CodegenCx", || cx.finalize());
2019-05-04 09:54:25 -05:00
});
}
fn trans_mono_item<'clif, 'tcx, B: Backend + 'static>(
cx: &mut crate::CodegenCx<'clif, 'tcx, B>,
2019-05-04 09:54:25 -05:00
mono_item: MonoItem<'tcx>,
linkage: Linkage,
) {
let tcx = cx.tcx;
match mono_item {
MonoItem::Fn(inst) => {
let _inst_guard =
PrintOnPanic(|| format!("{:?} {}", inst, tcx.symbol_name(inst).name.as_str()));
2019-05-04 09:54:25 -05:00
debug_assert!(!inst.substs.needs_infer());
let _mir_guard = PrintOnPanic(|| {
match inst.def {
InstanceDef::Item(_)
| InstanceDef::DropGlue(_, _)
| InstanceDef::Virtual(_, _) => {
2019-05-04 09:54:25 -05:00
let mut mir = ::std::io::Cursor::new(Vec::new());
crate::rustc_mir::util::write_mir_pretty(
tcx,
Some(inst.def_id()),
&mut mir,
)
.unwrap();
String::from_utf8(mir.into_inner()).unwrap()
}
_ => {
// FIXME fix write_mir_pretty for these instances
format!("{:#?}", tcx.instance_mir(inst.def))
}
}
});
2020-01-10 07:15:14 -06:00
cx.tcx.sess.time("codegen fn", || crate::base::trans_fn(cx, inst, linkage));
2019-05-04 09:54:25 -05:00
}
MonoItem::Static(def_id) => {
2019-08-18 09:52:07 -05:00
crate::constant::codegen_static(&mut cx.constants_cx, def_id);
2019-05-04 09:54:25 -05:00
}
2020-01-25 10:24:45 -06:00
MonoItem::GlobalAsm(hir_id) => {
let item = tcx.hir().expect_item(hir_id);
if let rustc_hir::ItemKind::GlobalAsm(rustc_hir::GlobalAsm { asm }) = item.kind {
// FIXME implement global asm using an external assembler
if asm.as_str().contains("__rust_probestack") {
return;
} else {
tcx
.sess
.fatal(&format!("Unimplemented global asm mono item \"{}\"", asm));
}
} else {
bug!("Expected GlobalAsm found {:?}", item);
}
}
2019-05-04 09:54:25 -05:00
}
}
2020-01-11 07:27:26 -06:00
fn time<R>(sess: &Session, name: &'static str, f: impl FnOnce() -> R) -> R {
2019-05-04 09:54:25 -05:00
println!("[{}] start", name);
let before = std::time::Instant::now();
2020-01-10 07:15:14 -06:00
let res = sess.time(name, f);
2019-05-04 09:54:25 -05:00
let after = std::time::Instant::now();
println!("[{}] end time: {:?}", name, after - before);
res
}