// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! The Rust compiler. //! //! # Note //! //! This API is completely unstable and subject to change. #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://doc.rust-lang.org/favicon.ico", html_root_url = "https://doc.rust-lang.org/nightly/")] #![feature(box_patterns)] #![feature(box_syntax)] #![feature(crate_visibility_modifier)] #![feature(custom_attribute)] #![feature(extern_types)] #![feature(in_band_lifetimes)] #![allow(unused_attributes)] #![feature(libc)] #![feature(nll)] #![feature(quote)] #![feature(range_contains)] #![feature(rustc_diagnostic_macros)] #![feature(slice_sort_by_cached_key)] #![feature(optin_builtin_traits)] #![feature(concat_idents)] #![feature(link_args)] #![feature(static_nobundle)] use back::write::create_target_machine; use syntax_pos::symbol::Symbol; #[macro_use] extern crate bitflags; extern crate flate2; extern crate libc; #[macro_use] extern crate rustc; extern crate jobserver; extern crate num_cpus; extern crate rustc_mir; extern crate rustc_allocator; extern crate rustc_apfloat; extern crate rustc_target; #[macro_use] extern crate rustc_data_structures; extern crate rustc_demangle; extern crate rustc_incremental; extern crate rustc_llvm; extern crate rustc_platform_intrinsics as intrinsics; extern crate rustc_codegen_utils; extern crate rustc_fs_util; #[macro_use] extern crate log; #[macro_use] extern crate syntax; extern crate syntax_pos; extern crate rustc_errors as errors; extern crate serialize; extern crate cc; // Used to locate MSVC extern crate tempfile; extern crate memmap; use interfaces::*; use time_graph::TimeGraph; use std::sync::mpsc::Receiver; use back::write::{self, OngoingCodegen}; use syntax_pos::symbol::InternedString; use rustc::mir::mono::Stats; pub use llvm_util::target_features; use std::any::Any; use std::sync::mpsc; use rustc_data_structures::sync::Lrc; use rustc::dep_graph::DepGraph; use rustc::hir::def_id::CrateNum; use rustc::middle::allocator::AllocatorKind; use rustc::middle::cstore::{EncodedMetadata, MetadataLoader}; use rustc::middle::cstore::{NativeLibrary, CrateSource, LibSource}; use rustc::middle::lang_items::LangItem; use rustc::session::{Session, CompileIncomplete}; use rustc::session::config::{OutputFilenames, OutputType, PrintRequest}; use rustc::ty::{self, TyCtxt}; use rustc::util::time_graph; use rustc::util::nodemap::{FxHashSet, FxHashMap}; use rustc::util::profiling::ProfileCategory; use rustc_mir::monomorphize; use rustc_codegen_utils::{ModuleCodegen, CompiledModule}; use rustc_codegen_utils::codegen_backend::CodegenBackend; use rustc_data_structures::svh::Svh; mod diagnostics; mod back { mod archive; pub mod bytecode; pub mod link; pub mod lto; pub mod write; mod rpath; pub mod wasm; } mod interfaces; mod abi; mod allocator; mod asm; mod attributes; mod base; mod builder; mod callee; mod common; mod consts; mod context; mod debuginfo; mod declare; mod glue; mod intrinsic; // The following is a work around that replaces `pub mod llvm;` and that fixes issue 53912. #[path = "llvm/mod.rs"] mod llvm_; pub mod llvm { pub use super::llvm_::*; } mod llvm_util; mod metadata; mod meth; mod mir; mod mono_item; mod type_; mod type_of; mod value; pub struct LlvmCodegenBackend(()); impl BackendMethods for LlvmCodegenBackend { type Module = ModuleLlvm; type OngoingCodegen = OngoingCodegen; fn new_metadata(&self, sess: &Session, mod_name: &str) -> ModuleLlvm { ModuleLlvm::new(sess, mod_name) } fn write_metadata<'b, 'gcx>( &self, tcx: TyCtxt<'b, 'gcx, 'gcx>, metadata: &ModuleLlvm ) -> EncodedMetadata { base::write_metadata(tcx, metadata) } fn start_async_codegen( &self, tcx: TyCtxt, time_graph: Option, metadata: EncodedMetadata, coordinator_receive: Receiver>, total_cgus: usize ) -> OngoingCodegen { write::start_async_codegen(tcx, time_graph, metadata, coordinator_receive, total_cgus) } fn submit_pre_codegened_module_to_llvm( &self, codegen: &OngoingCodegen, tcx: TyCtxt, module: ModuleCodegen ) { codegen.submit_pre_codegened_module_to_llvm(tcx, module) } fn codegen_aborted(codegen: OngoingCodegen) { codegen.codegen_aborted(); } fn codegen_finished(&self, codegen: &OngoingCodegen, tcx: TyCtxt) { codegen.codegen_finished(tcx) } fn check_for_errors(&self, codegen: &OngoingCodegen, sess: &Session) { codegen.check_for_errors(sess) } fn codegen_allocator(&self, tcx: TyCtxt, mods: &ModuleLlvm, kind: AllocatorKind) { unsafe { allocator::codegen(tcx, mods, kind) } } fn wait_for_signal_to_codegen_item(&self, codegen: &OngoingCodegen) { codegen.wait_for_signal_to_codegen_item() } fn compile_codegen_unit<'a, 'tcx: 'a>( &self, tcx: TyCtxt<'a, 'tcx, 'tcx>, cgu_name: InternedString, ) -> Stats { base::compile_codegen_unit(tcx, cgu_name) } } impl !Send for LlvmCodegenBackend {} // Llvm is on a per-thread basis impl !Sync for LlvmCodegenBackend {} impl LlvmCodegenBackend { pub fn new() -> Box { box LlvmCodegenBackend(()) } } impl CodegenBackend for LlvmCodegenBackend { fn init(&self, sess: &Session) { llvm_util::init(sess); // Make sure llvm is inited } fn print(&self, req: PrintRequest, sess: &Session) { match req { PrintRequest::RelocationModels => { println!("Available relocation models:"); for &(name, _) in back::write::RELOC_MODEL_ARGS.iter() { println!(" {}", name); } println!(""); } PrintRequest::CodeModels => { println!("Available code models:"); for &(name, _) in back::write::CODE_GEN_MODEL_ARGS.iter(){ println!(" {}", name); } println!(""); } PrintRequest::TlsModels => { println!("Available TLS models:"); for &(name, _) in back::write::TLS_MODEL_ARGS.iter(){ println!(" {}", name); } println!(""); } req => llvm_util::print(req, sess), } } fn print_passes(&self) { llvm_util::print_passes(); } fn print_version(&self) { llvm_util::print_version(); } fn diagnostics(&self) -> &[(&'static str, &'static str)] { &DIAGNOSTICS } fn target_features(&self, sess: &Session) -> Vec { target_features(sess) } fn metadata_loader(&self) -> Box { box metadata::LlvmMetadataLoader } fn provide(&self, providers: &mut ty::query::Providers) { rustc_codegen_utils::symbol_export::provide(providers); rustc_codegen_utils::symbol_names::provide(providers); base::provide_both(providers); attributes::provide(providers); } fn provide_extern(&self, providers: &mut ty::query::Providers) { rustc_codegen_utils::symbol_export::provide_extern(providers); base::provide_both(providers); attributes::provide_extern(providers); } fn codegen_crate<'a, 'tcx>( &self, tcx: TyCtxt<'a, 'tcx, 'tcx>, rx: mpsc::Receiver> ) -> Box { box base::codegen_crate(LlvmCodegenBackend(()), tcx, rx) } fn join_codegen_and_link( &self, ongoing_codegen: Box, sess: &Session, dep_graph: &DepGraph, outputs: &OutputFilenames, ) -> Result<(), CompileIncomplete>{ use rustc::util::common::time; let (ongoing_codegen, work_products) = ongoing_codegen.downcast::<::back::write::OngoingCodegen>() .expect("Expected LlvmCodegenBackend's OngoingCodegen, found Box") .join(sess); if sess.opts.debugging_opts.incremental_info { back::write::dump_incremental_data(&ongoing_codegen); } time(sess, "serialize work products", move || rustc_incremental::save_work_product_index(sess, &dep_graph, work_products)); sess.compile_status()?; if !sess.opts.output_types.keys().any(|&i| i == OutputType::Exe || i == OutputType::Metadata) { return Ok(()); } // Run the linker on any artifacts that resulted from the LLVM run. // This should produce either a finished executable or library. sess.profiler(|p| p.start_activity(ProfileCategory::Linking)); time(sess, "linking", || { back::link::link_binary(sess, &ongoing_codegen, outputs, &ongoing_codegen.crate_name.as_str()); }); sess.profiler(|p| p.end_activity(ProfileCategory::Linking)); // Now that we won't touch anything in the incremental compilation directory // any more, we can finalize it (which involves renaming it) rustc_incremental::finalize_session_directory(sess, ongoing_codegen.crate_hash); Ok(()) } } /// This is the entrypoint for a hot plugged rustc_codegen_llvm #[no_mangle] pub fn __rustc_codegen_backend() -> Box { LlvmCodegenBackend::new() } pub struct ModuleLlvm { llcx: &'static mut llvm::Context, llmod_raw: *const llvm::Module, tm: &'static mut llvm::TargetMachine, } unsafe impl Send for ModuleLlvm { } unsafe impl Sync for ModuleLlvm { } impl ModuleLlvm { fn new(sess: &Session, mod_name: &str) -> Self { unsafe { let llcx = llvm::LLVMRustContextCreate(sess.fewer_names()); let llmod_raw = context::create_module(sess, llcx, mod_name) as *const _; ModuleLlvm { llmod_raw, llcx, tm: create_target_machine(sess, false), } } } fn llmod(&self) -> &llvm::Module { unsafe { &*self.llmod_raw } } } impl Drop for ModuleLlvm { fn drop(&mut self) { unsafe { llvm::LLVMContextDispose(&mut *(self.llcx as *mut _)); llvm::LLVMRustDisposeTargetMachine(&mut *(self.tm as *mut _)); } } } struct CodegenResults { crate_name: Symbol, modules: Vec, allocator_module: Option, metadata_module: CompiledModule, crate_hash: Svh, metadata: rustc::middle::cstore::EncodedMetadata, windows_subsystem: Option, linker_info: rustc_codegen_utils::linker::LinkerInfo, crate_info: CrateInfo, } /// Misc info we load from metadata to persist beyond the tcx struct CrateInfo { panic_runtime: Option, compiler_builtins: Option, profiler_runtime: Option, sanitizer_runtime: Option, is_no_builtins: FxHashSet, native_libraries: FxHashMap>>, crate_name: FxHashMap, used_libraries: Lrc>, link_args: Lrc>, used_crate_source: FxHashMap>, used_crates_static: Vec<(CrateNum, LibSource)>, used_crates_dynamic: Vec<(CrateNum, LibSource)>, wasm_imports: FxHashMap, lang_item_to_crate: FxHashMap, missing_lang_items: FxHashMap>, } __build_diagnostic_array! { librustc_codegen_llvm, DIAGNOSTICS }