2018-08-11 05:04:54 -05:00
|
|
|
#![feature(rustc_private, macro_at_most_once_rep, iterator_find_map)]
|
2018-06-30 09:27:11 -05:00
|
|
|
#![allow(intra_doc_link_resolution_failure)]
|
2018-06-17 11:05:11 -05:00
|
|
|
|
|
|
|
extern crate syntax;
|
2018-06-18 11:39:07 -05:00
|
|
|
#[macro_use]
|
2018-06-17 11:05:11 -05:00
|
|
|
extern crate rustc;
|
|
|
|
extern crate rustc_codegen_utils;
|
|
|
|
extern crate rustc_incremental;
|
2018-07-31 05:25:16 -05:00
|
|
|
extern crate rustc_mir;
|
|
|
|
extern crate rustc_target;
|
2018-07-24 07:10:53 -05:00
|
|
|
#[macro_use]
|
2018-06-17 11:05:11 -05:00
|
|
|
extern crate rustc_data_structures;
|
|
|
|
|
2018-07-24 07:10:53 -05:00
|
|
|
extern crate ar;
|
2018-08-09 03:46:56 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate bitflags;
|
2018-07-24 07:10:53 -05:00
|
|
|
extern crate faerie;
|
|
|
|
//extern crate goblin;
|
2018-07-14 04:59:42 -05:00
|
|
|
extern crate cranelift;
|
2018-07-31 05:25:16 -05:00
|
|
|
extern crate cranelift_faerie;
|
2018-07-14 04:59:42 -05:00
|
|
|
extern crate cranelift_module;
|
|
|
|
extern crate cranelift_simplejit;
|
2018-07-31 05:25:16 -05:00
|
|
|
extern crate target_lexicon;
|
2018-07-23 04:17:39 -05:00
|
|
|
|
|
|
|
use std::any::Any;
|
|
|
|
use std::fs::File;
|
2018-07-31 05:25:16 -05:00
|
|
|
use std::path::Path;
|
|
|
|
use std::sync::{mpsc, Arc};
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
use rustc::dep_graph::DepGraph;
|
|
|
|
use rustc::middle::cstore::MetadataLoader;
|
2018-08-11 08:05:57 -05:00
|
|
|
use rustc::session::{config::OutputFilenames, CompileIncomplete};
|
2018-06-23 11:26:54 -05:00
|
|
|
use rustc::ty::query::Providers;
|
2018-07-23 04:17:39 -05:00
|
|
|
use rustc_codegen_utils::codegen_backend::CodegenBackend;
|
2018-07-31 05:25:16 -05:00
|
|
|
use rustc_codegen_utils::link::{build_link_meta, out_filename};
|
2018-07-24 07:10:53 -05:00
|
|
|
use rustc_data_structures::owning_ref::{self, OwningRef};
|
2018-07-31 05:25:16 -05:00
|
|
|
use syntax::symbol::Symbol;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-07-23 04:17:39 -05:00
|
|
|
use cranelift::codegen::settings;
|
|
|
|
use cranelift_faerie::*;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-08-08 08:38:03 -05:00
|
|
|
struct NonFatal(pub String);
|
|
|
|
|
|
|
|
macro_rules! unimpl {
|
|
|
|
($($tt:tt)*) => {
|
|
|
|
panic!(::NonFatal(format!($($tt)*)));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-07-19 12:33:42 -05:00
|
|
|
mod abi;
|
2018-08-09 03:46:56 -05:00
|
|
|
mod analyze;
|
2018-06-17 11:05:11 -05:00
|
|
|
mod base;
|
2018-06-22 12:18:53 -05:00
|
|
|
mod common;
|
2018-07-31 05:25:16 -05:00
|
|
|
mod constant;
|
2018-07-14 04:59:42 -05:00
|
|
|
mod pretty_clif;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
|
|
|
mod prelude {
|
2018-06-30 09:37:02 -05:00
|
|
|
pub use std::any::Any;
|
2018-07-16 08:13:37 -05:00
|
|
|
pub use std::collections::{HashMap, HashSet};
|
2018-06-22 12:18:53 -05:00
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
pub use rustc::hir::def_id::{DefId, LOCAL_CRATE};
|
2018-06-23 11:26:54 -05:00
|
|
|
pub use rustc::mir;
|
2018-07-16 08:13:37 -05:00
|
|
|
pub use rustc::mir::interpret::AllocId;
|
2018-07-31 05:25:16 -05:00
|
|
|
pub use rustc::mir::*;
|
2018-08-11 08:05:57 -05:00
|
|
|
pub use rustc::session::{config::CrateType, Session};
|
2018-07-31 05:25:16 -05:00
|
|
|
pub use rustc::ty::layout::{self, LayoutOf, Size, TyLayout};
|
2018-06-23 11:54:15 -05:00
|
|
|
pub use rustc::ty::{
|
|
|
|
self, subst::Substs, FnSig, Instance, InstanceDef, ParamEnv, PolyFnSig, Ty, TyCtxt,
|
2018-07-31 05:25:16 -05:00
|
|
|
TypeAndMut, TypeFoldable, TypeVariants,
|
2018-06-17 11:05:11 -05:00
|
|
|
};
|
2018-06-23 11:54:15 -05:00
|
|
|
pub use rustc_data_structures::{indexed_vec::Idx, sync::Lrc};
|
2018-07-31 05:25:16 -05:00
|
|
|
pub use rustc_mir::monomorphize::{collector, MonoItem};
|
|
|
|
pub use syntax::ast::{FloatTy, IntTy, UintTy};
|
|
|
|
pub use syntax::codemap::DUMMY_SP;
|
2018-06-22 12:18:53 -05:00
|
|
|
|
2018-07-14 04:59:42 -05:00
|
|
|
pub use cranelift::codegen::ir::{
|
2018-07-31 05:25:16 -05:00
|
|
|
condcodes::IntCC, function::Function, ExternalName, FuncRef, Inst, StackSlot,
|
2018-06-22 12:18:53 -05:00
|
|
|
};
|
2018-07-14 04:59:42 -05:00
|
|
|
pub use cranelift::codegen::Context;
|
|
|
|
pub use cranelift::prelude::*;
|
2018-07-31 05:25:16 -05:00
|
|
|
pub use cranelift_module::{
|
|
|
|
Backend, DataContext, DataId, FuncId, Linkage, Module, Writability,
|
|
|
|
};
|
|
|
|
pub use cranelift_simplejit::{SimpleJITBackend, SimpleJITBuilder};
|
2018-06-22 12:18:53 -05:00
|
|
|
|
2018-07-30 09:57:40 -05:00
|
|
|
pub use crate::abi::*;
|
2018-07-31 05:25:16 -05:00
|
|
|
pub use crate::base::{trans_operand, trans_place};
|
2018-07-30 09:57:40 -05:00
|
|
|
pub use crate::common::Variable;
|
|
|
|
pub use crate::common::*;
|
2018-06-30 09:37:02 -05:00
|
|
|
|
2018-07-30 09:57:40 -05:00
|
|
|
pub use crate::CodegenCx;
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
2018-07-30 09:57:40 -05:00
|
|
|
use crate::prelude::*;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-06-30 09:37:02 -05:00
|
|
|
pub struct CodegenCx<'a, 'tcx: 'a, B: Backend + 'a> {
|
|
|
|
pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
pub module: &'a mut Module<B>,
|
2018-07-16 08:13:37 -05:00
|
|
|
pub constants: HashMap<AllocId, DataId>,
|
2018-08-11 05:04:54 -05:00
|
|
|
pub defined_functions: Vec<FuncId>,
|
2018-06-30 09:37:02 -05:00
|
|
|
}
|
|
|
|
|
2018-07-23 04:17:39 -05:00
|
|
|
struct CraneliftMetadataLoader;
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-07-23 04:17:39 -05:00
|
|
|
impl MetadataLoader for CraneliftMetadataLoader {
|
2018-07-31 05:25:16 -05:00
|
|
|
fn get_rlib_metadata(
|
|
|
|
&self,
|
|
|
|
_target: &rustc_target::spec::Target,
|
|
|
|
path: &Path,
|
|
|
|
) -> Result<owning_ref::ErasedBoxRef<[u8]>, String> {
|
|
|
|
let mut archive = ar::Archive::new(File::open(path).map_err(|e| format!("{:?}", e))?);
|
2018-07-24 07:10:53 -05:00
|
|
|
// Iterate over all entries in the archive:
|
|
|
|
while let Some(entry_result) = archive.next_entry() {
|
2018-07-31 05:25:16 -05:00
|
|
|
let mut entry = entry_result.map_err(|e| format!("{:?}", e))?;
|
2018-07-24 07:10:53 -05:00
|
|
|
if entry.header().identifier() == b".rustc.clif_metadata" {
|
|
|
|
let mut buf = Vec::new();
|
2018-07-31 05:25:16 -05:00
|
|
|
::std::io::copy(&mut entry, &mut buf).map_err(|e| format!("{:?}", e))?;
|
2018-07-24 07:10:53 -05:00
|
|
|
let buf: OwningRef<Vec<u8>, [u8]> = OwningRef::new(buf).into();
|
|
|
|
return Ok(rustc_erase_owner!(buf.map_owner_box()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Err("couldn't find metadata entry".to_string())
|
|
|
|
//self.get_dylib_metadata(target, path)
|
2018-07-23 04:17:39 -05:00
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
fn get_dylib_metadata(
|
|
|
|
&self,
|
|
|
|
_target: &rustc_target::spec::Target,
|
|
|
|
_path: &Path,
|
|
|
|
) -> Result<owning_ref::ErasedBoxRef<[u8]>, String> {
|
2018-07-24 07:10:53 -05:00
|
|
|
//use goblin::Object;
|
|
|
|
|
|
|
|
//let buffer = ::std::fs::read(path).map_err(|e|format!("{:?}", e))?;
|
|
|
|
/*match Object::parse(&buffer).map_err(|e|format!("{:?}", e))? {
|
|
|
|
Object::Elf(elf) => {
|
|
|
|
println!("elf: {:#?}", &elf);
|
|
|
|
},
|
|
|
|
Object::PE(pe) => {
|
|
|
|
println!("pe: {:#?}", &pe);
|
|
|
|
},
|
|
|
|
Object::Mach(mach) => {
|
|
|
|
println!("mach: {:#?}", &mach);
|
|
|
|
},
|
|
|
|
Object::Archive(archive) => {
|
|
|
|
return Err(format!("archive: {:#?}", &archive));
|
|
|
|
},
|
|
|
|
Object::Unknown(magic) => {
|
|
|
|
return Err(format!("unknown magic: {:#x}", magic))
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
Err("dylib metadata loading is not yet supported".to_string())
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 04:17:39 -05:00
|
|
|
struct CraneliftCodegenBackend;
|
|
|
|
|
|
|
|
struct OngoingCodegen {
|
2018-07-24 07:10:53 -05:00
|
|
|
product: cranelift_faerie::FaerieProduct,
|
|
|
|
metadata: Vec<u8>,
|
2018-07-23 04:17:39 -05:00
|
|
|
crate_name: Symbol,
|
|
|
|
}
|
|
|
|
|
2018-07-14 04:59:42 -05:00
|
|
|
impl CodegenBackend for CraneliftCodegenBackend {
|
2018-06-17 11:05:11 -05:00
|
|
|
fn init(&self, sess: &Session) {
|
|
|
|
for cty in sess.opts.crate_types.iter() {
|
|
|
|
match *cty {
|
2018-08-07 09:43:09 -05:00
|
|
|
CrateType::Rlib | CrateType::Dylib | CrateType::Executable => {}
|
2018-06-17 11:05:11 -05:00
|
|
|
_ => {
|
2018-07-31 05:25:16 -05:00
|
|
|
sess.parse_sess.span_diagnostic.warn(&format!(
|
|
|
|
"LLVM unsupported, so output type {} is not supported",
|
|
|
|
cty
|
|
|
|
));
|
|
|
|
}
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn metadata_loader(&self) -> Box<MetadataLoader + Sync> {
|
2018-07-23 04:17:39 -05:00
|
|
|
Box::new(CraneliftMetadataLoader)
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn provide(&self, providers: &mut Providers) {
|
|
|
|
rustc_codegen_utils::symbol_names::provide(providers);
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
providers.target_features_whitelist = |_tcx, _cnum| Lrc::new(Default::default());
|
2018-06-17 11:05:11 -05:00
|
|
|
providers.is_reachable_non_generic = |_tcx, _defid| true;
|
|
|
|
providers.exported_symbols = |_tcx, _crate| Arc::new(Vec::new());
|
|
|
|
}
|
|
|
|
fn provide_extern(&self, providers: &mut Providers) {
|
|
|
|
providers.is_reachable_non_generic = |_tcx, _defid| true;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn codegen_crate<'a, 'tcx>(
|
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2018-07-31 05:25:16 -05:00
|
|
|
_rx: mpsc::Receiver<Box<Any + Send>>,
|
2018-06-17 11:05:11 -05:00
|
|
|
) -> Box<Any> {
|
|
|
|
use rustc_mir::monomorphize::item::MonoItem;
|
|
|
|
|
|
|
|
rustc_codegen_utils::check_for_rustc_errors_attr(tcx);
|
|
|
|
rustc_codegen_utils::symbol_names_test::report_symbol_names(tcx);
|
|
|
|
rustc_incremental::assert_dep_graph(tcx);
|
|
|
|
rustc_incremental::assert_module_sources::assert_module_sources(tcx);
|
2018-07-31 05:25:16 -05:00
|
|
|
rustc_mir::monomorphize::assert_symbols_are_distinct(
|
|
|
|
tcx,
|
|
|
|
collector::collect_crate_mono_items(tcx, collector::MonoItemCollectionMode::Eager)
|
|
|
|
.0
|
|
|
|
.iter(),
|
2018-06-17 11:05:11 -05:00
|
|
|
);
|
|
|
|
//::rustc::middle::dependency_format::calculate(tcx);
|
|
|
|
let _ = tcx.link_args(LOCAL_CRATE);
|
|
|
|
let _ = tcx.native_libraries(LOCAL_CRATE);
|
|
|
|
for mono_item in
|
2018-07-31 05:25:16 -05:00
|
|
|
collector::collect_crate_mono_items(tcx, collector::MonoItemCollectionMode::Eager).0
|
|
|
|
{
|
2018-06-17 11:05:11 -05:00
|
|
|
match mono_item {
|
|
|
|
MonoItem::Fn(inst) => {
|
|
|
|
let def_id = inst.def_id();
|
2018-07-31 05:25:16 -05:00
|
|
|
if def_id.is_local() {
|
2018-06-17 11:05:11 -05:00
|
|
|
let _ = inst.def.is_inline(tcx);
|
|
|
|
let _ = tcx.codegen_fn_attrs(def_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tcx.sess.abort_if_errors();
|
|
|
|
|
2018-06-30 09:37:02 -05:00
|
|
|
let link_meta = ::build_link_meta(tcx.crate_hash(LOCAL_CRATE));
|
|
|
|
let metadata = tcx.encode_metadata(&link_meta);
|
|
|
|
|
2018-07-23 04:17:39 -05:00
|
|
|
let mut flags_builder = settings::builder();
|
|
|
|
flags_builder.enable("is_pic").unwrap();
|
|
|
|
let flags = settings::Flags::new(flags_builder);
|
2018-07-31 05:25:16 -05:00
|
|
|
let isa = cranelift::codegen::isa::lookup(target_lexicon::Triple::host())
|
|
|
|
.unwrap()
|
|
|
|
.finish(flags);
|
2018-06-30 09:37:02 -05:00
|
|
|
let mut module: Module<SimpleJITBackend> = Module::new(SimpleJITBuilder::new());
|
|
|
|
let mut context = Context::new();
|
|
|
|
|
2018-08-11 05:04:54 -05:00
|
|
|
let defined_functions = {
|
2018-08-09 08:30:26 -05:00
|
|
|
use std::io::Write;
|
2018-06-30 09:37:02 -05:00
|
|
|
let mut cx = CodegenCx {
|
|
|
|
tcx,
|
|
|
|
module: &mut module,
|
2018-07-16 08:13:37 -05:00
|
|
|
constants: HashMap::new(),
|
2018-08-11 05:04:54 -05:00
|
|
|
defined_functions: Vec::new(),
|
2018-06-30 09:37:02 -05:00
|
|
|
};
|
|
|
|
|
2018-08-09 08:30:26 -05:00
|
|
|
let mut log = ::std::fs::File::create("../target/log.txt").unwrap();
|
|
|
|
|
2018-06-30 09:37:02 -05:00
|
|
|
for mono_item in
|
2018-07-31 05:25:16 -05:00
|
|
|
collector::collect_crate_mono_items(tcx, collector::MonoItemCollectionMode::Eager).0
|
|
|
|
{
|
2018-08-08 08:38:03 -05:00
|
|
|
let cx = &mut cx;
|
|
|
|
let context = &mut context;
|
|
|
|
let res = ::std::panic::catch_unwind(::std::panic::AssertUnwindSafe(move || {
|
|
|
|
base::trans_mono_item(cx, context, mono_item);
|
|
|
|
}));
|
|
|
|
if let Err(err) = res {
|
|
|
|
match err.downcast::<NonFatal>() {
|
2018-08-09 08:30:26 -05:00
|
|
|
Ok(non_fatal) => {
|
|
|
|
writeln!(log, "{}", &non_fatal.0);
|
|
|
|
tcx.sess.err(&non_fatal.0)
|
|
|
|
}
|
2018-08-08 08:38:03 -05:00
|
|
|
Err(err) => ::std::panic::resume_unwind(err),
|
|
|
|
}
|
|
|
|
}
|
2018-06-30 09:37:02 -05:00
|
|
|
}
|
2018-08-11 06:59:34 -05:00
|
|
|
|
2018-08-11 05:04:54 -05:00
|
|
|
std::mem::replace(&mut cx.defined_functions, Vec::new())
|
|
|
|
};
|
2018-06-30 09:37:02 -05:00
|
|
|
|
|
|
|
tcx.sess.warn("Compiled everything");
|
|
|
|
|
2018-07-18 06:43:17 -05:00
|
|
|
// TODO: this doesn't work most of the time
|
2018-08-11 08:05:57 -05:00
|
|
|
if tcx.sess.crate_types.get().contains(&CrateType::Executable) {
|
|
|
|
let start_wrapper = tcx.lang_items().start_fn().expect("no start lang item");
|
2018-08-11 05:04:54 -05:00
|
|
|
|
2018-08-11 08:05:57 -05:00
|
|
|
let (name, sig) =
|
|
|
|
crate::abi::get_function_name_and_sig(tcx, Instance::mono(tcx, start_wrapper));
|
2018-08-11 05:04:54 -05:00
|
|
|
let called_func_id = module
|
|
|
|
.declare_function(&name, Linkage::Import, &sig)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
for func_id in defined_functions {
|
|
|
|
if func_id != called_func_id {
|
|
|
|
module.finalize_function(func_id);
|
2018-07-18 06:43:17 -05:00
|
|
|
}
|
2018-06-30 09:37:02 -05:00
|
|
|
}
|
2018-08-11 05:04:54 -05:00
|
|
|
tcx.sess.warn("Finalized everything");
|
|
|
|
|
|
|
|
let finalized_function: *const u8 = module.finalize_function(called_func_id);
|
2018-08-11 08:05:57 -05:00
|
|
|
let f: extern "C" fn(*const u8, isize, *const *const u8) -> isize =
|
2018-08-11 05:04:54 -05:00
|
|
|
unsafe { ::std::mem::transmute(finalized_function) };
|
2018-08-11 08:05:57 -05:00
|
|
|
let res = f(0 as *const u8, 0, 0 as *const _);
|
2018-08-11 05:04:54 -05:00
|
|
|
tcx.sess.warn(&format!("main returned {}", res));
|
2018-06-30 09:37:02 -05:00
|
|
|
|
2018-07-18 06:43:17 -05:00
|
|
|
module.finish();
|
|
|
|
}
|
2018-06-30 09:37:02 -05:00
|
|
|
|
2018-07-24 07:10:53 -05:00
|
|
|
let mut translated_module: Module<FaerieBackend> = Module::new(
|
2018-07-23 04:17:39 -05:00
|
|
|
FaerieBuilder::new(
|
|
|
|
isa,
|
|
|
|
"some_file.o".to_string(),
|
|
|
|
FaerieTrapCollection::Disabled,
|
2018-07-31 05:25:16 -05:00
|
|
|
FaerieBuilder::default_libcall_names(),
|
|
|
|
).unwrap(),
|
2018-07-23 04:17:39 -05:00
|
|
|
);
|
|
|
|
|
2018-07-30 09:57:40 -05:00
|
|
|
Box::new(OngoingCodegen {
|
2018-07-24 07:10:53 -05:00
|
|
|
product: translated_module.finish(),
|
|
|
|
metadata: metadata.raw_data,
|
2018-06-30 09:37:02 -05:00
|
|
|
crate_name: tcx.crate_name(LOCAL_CRATE),
|
|
|
|
})
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn join_codegen_and_link(
|
|
|
|
&self,
|
|
|
|
ongoing_codegen: Box<Any>,
|
|
|
|
sess: &Session,
|
|
|
|
_dep_graph: &DepGraph,
|
|
|
|
outputs: &OutputFilenames,
|
|
|
|
) -> Result<(), CompileIncomplete> {
|
2018-07-31 05:25:16 -05:00
|
|
|
let ongoing_codegen = *ongoing_codegen
|
|
|
|
.downcast::<OngoingCodegen>()
|
2018-07-23 04:17:39 -05:00
|
|
|
.expect("Expected CraneliftCodegenBackend's OngoingCodegen, found Box<Any>");
|
2018-07-24 07:10:53 -05:00
|
|
|
|
|
|
|
let mut artifact = ongoing_codegen.product.artifact;
|
|
|
|
let metadata = ongoing_codegen.metadata;
|
|
|
|
|
2018-07-31 05:25:16 -05:00
|
|
|
artifact
|
|
|
|
.declare_with(
|
|
|
|
".rustc.clif_metadata",
|
|
|
|
faerie::artifact::Decl::Data {
|
|
|
|
global: true,
|
|
|
|
writeable: false,
|
|
|
|
},
|
|
|
|
metadata.clone(),
|
|
|
|
).unwrap();
|
2018-07-24 07:10:53 -05:00
|
|
|
|
2018-06-17 11:05:11 -05:00
|
|
|
for &crate_type in sess.opts.crate_types.iter() {
|
2018-08-11 08:05:57 -05:00
|
|
|
match crate_type {
|
|
|
|
CrateType::Executable => {
|
|
|
|
sess.warn("Rustc codegen cranelift doesn't produce executables, but is a JIT for them");
|
|
|
|
},
|
|
|
|
CrateType::Rlib /* | CrateType::Dylib */ => {
|
|
|
|
let output_name = out_filename(
|
|
|
|
sess,
|
|
|
|
crate_type,
|
|
|
|
&outputs,
|
|
|
|
&ongoing_codegen.crate_name.as_str(),
|
|
|
|
);
|
|
|
|
let file = File::create(&output_name).unwrap();
|
|
|
|
let mut builder = ar::Builder::new(file);
|
|
|
|
builder
|
|
|
|
.append(
|
|
|
|
&ar::Header::new(b".rustc.clif_metadata".to_vec(), metadata.len() as u64),
|
|
|
|
::std::io::Cursor::new(metadata.clone()),
|
|
|
|
).unwrap();
|
|
|
|
//artifact.write(file).unwrap();
|
|
|
|
}
|
|
|
|
_ => sess.fatal(&format!("Unsupported crate type: {:?}", crate_type)),
|
2018-06-17 11:05:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-14 04:59:42 -05:00
|
|
|
/// This is the entrypoint for a hot plugged rustc_codegen_cranelift
|
2018-06-17 11:05:11 -05:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn __rustc_codegen_backend() -> Box<CodegenBackend> {
|
2018-07-23 04:17:39 -05:00
|
|
|
Box::new(CraneliftCodegenBackend)
|
2018-06-18 11:39:07 -05:00
|
|
|
}
|