2014-11-16 01:30:33 +00:00
|
|
|
// 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-11-26 02:17:11 +00:00
|
|
|
//! The Rust compiler.
|
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2015-08-09 21:15:05 +00:00
|
|
|
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
2015-05-15 23:04:01 +00:00
|
|
|
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
|
2015-08-09 21:15:05 +00:00
|
|
|
html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2015-02-10 21:52:44 +00:00
|
|
|
#![feature(box_patterns)]
|
2015-01-30 20:26:44 +00:00
|
|
|
#![feature(box_syntax)]
|
2018-06-27 14:57:25 +00:00
|
|
|
#![feature(crate_visibility_modifier)]
|
2015-09-27 20:20:49 +00:00
|
|
|
#![feature(custom_attribute)]
|
2018-06-27 10:12:47 +00:00
|
|
|
#![feature(extern_types)]
|
2018-06-27 14:57:25 +00:00
|
|
|
#![feature(in_band_lifetimes)]
|
2015-09-27 20:20:49 +00:00
|
|
|
#![allow(unused_attributes)]
|
2015-01-23 02:22:03 +00:00
|
|
|
#![feature(libc)]
|
2018-09-26 21:26:46 +00:00
|
|
|
#![feature(nll)]
|
2015-01-30 20:26:44 +00:00
|
|
|
#![feature(quote)]
|
2018-04-22 16:40:54 +00:00
|
|
|
#![feature(range_contains)]
|
2015-01-30 20:26:44 +00:00
|
|
|
#![feature(rustc_diagnostic_macros)]
|
2018-03-30 09:23:27 +00:00
|
|
|
#![feature(slice_sort_by_cached_key)]
|
2017-10-30 17:42:21 +00:00
|
|
|
#![feature(optin_builtin_traits)]
|
2018-05-29 17:41:36 +00:00
|
|
|
#![feature(concat_idents)]
|
|
|
|
#![feature(link_args)]
|
|
|
|
#![feature(static_nobundle)]
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2018-06-27 14:57:25 +00:00
|
|
|
use back::write::create_target_machine;
|
2017-04-13 18:58:20 +00:00
|
|
|
use syntax_pos::symbol::Symbol;
|
2016-07-21 16:49:59 +00:00
|
|
|
|
2017-06-08 21:10:36 +00:00
|
|
|
extern crate flate2;
|
2018-10-03 14:56:24 +00:00
|
|
|
#[macro_use] extern crate bitflags;
|
2014-11-16 01:30:33 +00:00
|
|
|
extern crate libc;
|
2016-03-28 23:46:02 +00:00
|
|
|
#[macro_use] extern crate rustc;
|
2017-10-23 03:01:00 +00:00
|
|
|
extern crate jobserver;
|
|
|
|
extern crate num_cpus;
|
2017-10-25 13:39:54 +00:00
|
|
|
extern crate rustc_mir;
|
2017-06-03 21:54:08 +00:00
|
|
|
extern crate rustc_allocator;
|
2017-10-09 00:14:00 +00:00
|
|
|
extern crate rustc_apfloat;
|
2017-12-08 19:18:21 +00:00
|
|
|
extern crate rustc_target;
|
2018-03-03 05:17:06 +00:00
|
|
|
#[macro_use] extern crate rustc_data_structures;
|
2017-10-23 03:01:00 +00:00
|
|
|
extern crate rustc_demangle;
|
2016-03-28 21:36:56 +00:00
|
|
|
extern crate rustc_incremental;
|
2018-05-29 17:41:36 +00:00
|
|
|
extern crate rustc_llvm;
|
2015-07-16 23:46:36 +00:00
|
|
|
extern crate rustc_platform_intrinsics as intrinsics;
|
2018-05-08 13:10:16 +00:00
|
|
|
extern crate rustc_codegen_utils;
|
2018-10-01 16:07:04 +00:00
|
|
|
extern crate rustc_codegen_ssa;
|
2018-08-03 21:31:03 +00:00
|
|
|
extern crate rustc_fs_util;
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2015-01-06 17:24:46 +00:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
#[macro_use] extern crate syntax;
|
2016-06-21 22:08:13 +00:00
|
|
|
extern crate syntax_pos;
|
|
|
|
extern crate rustc_errors as errors;
|
2017-02-03 14:58:13 +00:00
|
|
|
extern crate serialize;
|
2017-09-23 04:34:27 +00:00
|
|
|
extern crate cc; // Used to locate MSVC
|
2018-05-08 20:11:58 +00:00
|
|
|
extern crate tempfile;
|
2018-08-20 15:13:01 +00:00
|
|
|
extern crate memmap;
|
2015-01-01 04:43:46 +00:00
|
|
|
|
2018-10-03 14:56:24 +00:00
|
|
|
use rustc_codegen_ssa::interfaces::*;
|
2018-10-23 15:01:35 +00:00
|
|
|
use rustc_codegen_ssa::back::write::{CodegenContext, ModuleConfig};
|
|
|
|
use rustc_codegen_ssa::back::lto::{SerializedModule, LtoModuleCodegen, ThinModule};
|
|
|
|
use rustc_codegen_ssa::CompiledModule;
|
|
|
|
use errors::{FatalError, Handler};
|
|
|
|
use rustc::dep_graph::WorkProduct;
|
|
|
|
use rustc::util::time_graph::Timeline;
|
2018-09-27 13:31:20 +00:00
|
|
|
use syntax_pos::symbol::InternedString;
|
|
|
|
use rustc::mir::mono::Stats;
|
2018-01-22 15:29:24 +00:00
|
|
|
pub use llvm_util::target_features;
|
2017-07-23 15:14:38 +00:00
|
|
|
use std::any::Any;
|
2018-10-23 15:01:35 +00:00
|
|
|
use std::sync::{mpsc, Arc};
|
2017-08-29 00:06:03 +00:00
|
|
|
|
2017-07-23 15:14:38 +00:00
|
|
|
use rustc::dep_graph::DepGraph;
|
2018-09-25 15:52:03 +00:00
|
|
|
use rustc::middle::allocator::AllocatorKind;
|
|
|
|
use rustc::middle::cstore::{EncodedMetadata, MetadataLoader};
|
2017-10-30 17:42:21 +00:00
|
|
|
use rustc::session::{Session, CompileIncomplete};
|
|
|
|
use rustc::session::config::{OutputFilenames, OutputType, PrintRequest};
|
2017-07-23 15:14:38 +00:00
|
|
|
use rustc::ty::{self, TyCtxt};
|
2018-06-23 11:52:52 +00:00
|
|
|
use rustc::util::time_graph;
|
2018-05-19 17:50:58 +00:00
|
|
|
use rustc::util::profiling::ProfileCategory;
|
2017-10-25 14:14:51 +00:00
|
|
|
use rustc_mir::monomorphize;
|
2018-10-23 15:01:35 +00:00
|
|
|
use rustc_codegen_ssa::ModuleCodegen;
|
2018-05-08 13:10:16 +00:00
|
|
|
use rustc_codegen_utils::codegen_backend::CodegenBackend;
|
2017-10-19 09:01:31 +00:00
|
|
|
|
2017-09-12 19:18:11 +00:00
|
|
|
mod diagnostics;
|
|
|
|
|
2017-12-27 18:03:48 +00:00
|
|
|
mod back {
|
2017-05-27 18:13:32 +00:00
|
|
|
mod archive;
|
2017-10-20 01:44:33 +00:00
|
|
|
pub mod bytecode;
|
2014-11-16 01:30:33 +00:00
|
|
|
pub mod link;
|
2018-08-17 14:07:23 +00:00
|
|
|
pub mod lto;
|
2014-11-16 01:30:33 +00:00
|
|
|
pub mod write;
|
2017-08-19 00:09:55 +00:00
|
|
|
mod rpath;
|
2018-06-01 17:20:00 +00:00
|
|
|
pub mod wasm;
|
2014-11-16 01:30:33 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 17:23:36 +00:00
|
|
|
mod abi;
|
2017-06-03 21:54:08 +00:00
|
|
|
mod allocator;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod asm;
|
|
|
|
mod attributes;
|
|
|
|
mod base;
|
|
|
|
mod builder;
|
|
|
|
mod callee;
|
|
|
|
mod common;
|
|
|
|
mod consts;
|
|
|
|
mod context;
|
|
|
|
mod debuginfo;
|
|
|
|
mod declare;
|
|
|
|
mod intrinsic;
|
2018-09-06 17:23:42 +00:00
|
|
|
|
|
|
|
// 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_::*; }
|
|
|
|
|
2017-04-30 18:33:25 +00:00
|
|
|
mod llvm_util;
|
2017-04-26 21:22:45 +00:00
|
|
|
mod metadata;
|
2018-05-08 13:10:16 +00:00
|
|
|
mod mono_item;
|
2016-03-22 17:23:36 +00:00
|
|
|
mod type_;
|
|
|
|
mod type_of;
|
|
|
|
mod value;
|
|
|
|
|
2018-10-23 15:01:35 +00:00
|
|
|
#[derive(Clone)]
|
2018-05-08 13:10:16 +00:00
|
|
|
pub struct LlvmCodegenBackend(());
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2018-10-04 13:23:10 +00:00
|
|
|
impl ExtraBackendMethods for LlvmCodegenBackend {
|
2018-09-25 15:52:03 +00:00
|
|
|
fn new_metadata(&self, sess: &Session, mod_name: &str) -> ModuleLlvm {
|
|
|
|
ModuleLlvm::new(sess, mod_name)
|
|
|
|
}
|
2018-09-26 15:00:01 +00:00
|
|
|
fn write_metadata<'b, 'gcx>(
|
2018-09-25 15:52:03 +00:00
|
|
|
&self,
|
2018-09-26 15:00:01 +00:00
|
|
|
tcx: TyCtxt<'b, 'gcx, 'gcx>,
|
2018-09-25 15:52:03 +00:00
|
|
|
metadata: &ModuleLlvm
|
|
|
|
) -> EncodedMetadata {
|
|
|
|
base::write_metadata(tcx, metadata)
|
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn codegen_allocator(&self, tcx: TyCtxt, mods: &ModuleLlvm, kind: AllocatorKind) {
|
|
|
|
unsafe { allocator::codegen(tcx, mods, kind) }
|
|
|
|
}
|
|
|
|
fn compile_codegen_unit<'a, 'tcx: 'a>(
|
2018-09-25 15:52:03 +00:00
|
|
|
&self,
|
2018-10-23 15:01:35 +00:00
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
cgu_name: InternedString,
|
|
|
|
) -> Stats {
|
|
|
|
base::compile_codegen_unit(tcx, cgu_name)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn target_machine_factory(
|
2018-09-25 15:52:03 +00:00
|
|
|
&self,
|
2018-10-23 15:01:35 +00:00
|
|
|
sess: &Session,
|
|
|
|
find_features: bool
|
|
|
|
) -> Arc<dyn Fn() ->
|
|
|
|
Result<&'static mut llvm::TargetMachine, String> + Send + Sync> {
|
|
|
|
back::write::target_machine_factory(sess, find_features)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn target_cpu<'b>(&self, sess: &'b Session) -> &'b str {
|
|
|
|
llvm_util::target_cpu(sess)
|
2018-10-03 11:49:57 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for &'static mut llvm::TargetMachine {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
// This method should never be called. It is put here because in
|
|
|
|
// rustc_codegen_ssa::back::write::CodegenContext, the TargetMachine is contained in a
|
|
|
|
// closure returned by a function under an Arc. The clone-deriving algorithm works when the
|
|
|
|
// struct contains the original LLVM TargetMachine type but not any more when supplied with
|
|
|
|
// a generic type. Hence this dummy Clone implementation.
|
|
|
|
panic!()
|
2018-10-03 11:49:57 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl WriteBackendMethods for LlvmCodegenBackend {
|
|
|
|
type Module = ModuleLlvm;
|
|
|
|
type ModuleBuffer = back::lto::ModuleBuffer;
|
|
|
|
type Context = llvm::Context;
|
|
|
|
type TargetMachine = &'static mut llvm::TargetMachine;
|
|
|
|
type ThinData = back::lto::ThinData;
|
|
|
|
type ThinBuffer = back::lto::ThinBuffer;
|
|
|
|
fn print_pass_timings(&self) {
|
|
|
|
unsafe { llvm::LLVMRustPrintPassTimings(); }
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn run_lto(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
|
|
|
modules: Vec<ModuleCodegen<Self::Module>>,
|
|
|
|
cached_modules: Vec<(SerializedModule<Self::ModuleBuffer>, WorkProduct)>,
|
|
|
|
timeline: &mut Timeline
|
|
|
|
) -> Result<(Vec<LtoModuleCodegen<Self>>, Vec<WorkProduct>), FatalError> {
|
|
|
|
back::lto::run(cgcx, modules, cached_modules, timeline)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe fn optimize(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
|
|
|
diag_handler: &Handler,
|
|
|
|
module: &ModuleCodegen<Self::Module>,
|
|
|
|
config: &ModuleConfig,
|
|
|
|
timeline: &mut Timeline
|
|
|
|
) -> Result<(), FatalError> {
|
|
|
|
back::write::optimize(cgcx, diag_handler, module, config, timeline)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe fn optimize_thin(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
|
|
|
thin: &mut ThinModule<Self>,
|
|
|
|
timeline: &mut Timeline
|
|
|
|
) -> Result<ModuleCodegen<Self::Module>, FatalError> {
|
|
|
|
back::lto::optimize_thin_module(thin, cgcx, timeline)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe fn codegen(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
|
|
|
diag_handler: &Handler,
|
|
|
|
module: ModuleCodegen<Self::Module>,
|
|
|
|
config: &ModuleConfig,
|
|
|
|
timeline: &mut Timeline
|
|
|
|
) -> Result<CompiledModule, FatalError> {
|
|
|
|
back::write::codegen(cgcx, diag_handler, module, config, timeline)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn run_lto_pass_manager(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
|
|
|
module: &ModuleCodegen<Self::Module>,
|
|
|
|
config: &ModuleConfig,
|
|
|
|
thin: bool
|
|
|
|
) {
|
|
|
|
back::lto::run_pass_manager(cgcx, module, config, thin)
|
2018-09-26 15:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe impl<'a> Send for LlvmCodegenBackend {} // Llvm is on a per-thread basis
|
|
|
|
unsafe impl<'a> Sync for LlvmCodegenBackend {}
|
2017-10-30 17:42:21 +00:00
|
|
|
|
2018-05-08 13:10:16 +00:00
|
|
|
impl LlvmCodegenBackend {
|
2018-07-11 10:49:11 +00:00
|
|
|
pub fn new() -> Box<dyn CodegenBackend> {
|
2018-05-08 13:10:16 +00:00
|
|
|
box LlvmCodegenBackend(())
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 15:01:35 +00:00
|
|
|
impl<'a> CodegenBackend for LlvmCodegenBackend {
|
2018-01-22 15:29:24 +00:00
|
|
|
fn init(&self, sess: &Session) {
|
|
|
|
llvm_util::init(sess); // Make sure llvm is inited
|
|
|
|
}
|
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
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),
|
|
|
|
}
|
|
|
|
}
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2018-01-22 15:29:24 +00:00
|
|
|
fn print_passes(&self) {
|
|
|
|
llvm_util::print_passes();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_version(&self) {
|
|
|
|
llvm_util::print_version();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn diagnostics(&self) -> &[(&'static str, &'static str)] {
|
|
|
|
&DIAGNOSTICS
|
|
|
|
}
|
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
fn target_features(&self, sess: &Session) -> Vec<Symbol> {
|
|
|
|
target_features(sess)
|
|
|
|
}
|
|
|
|
|
2018-07-11 10:49:11 +00:00
|
|
|
fn metadata_loader(&self) -> Box<dyn MetadataLoader + Sync> {
|
2017-09-16 15:27:29 +00:00
|
|
|
box metadata::LlvmMetadataLoader
|
|
|
|
}
|
|
|
|
|
2018-06-13 13:44:43 +00:00
|
|
|
fn provide(&self, providers: &mut ty::query::Providers) {
|
2018-10-20 12:45:08 +00:00
|
|
|
rustc_codegen_utils::symbol_names::provide(providers);
|
2018-10-23 15:01:35 +00:00
|
|
|
rustc_codegen_ssa::back::symbol_export::provide(providers);
|
2018-10-03 14:56:24 +00:00
|
|
|
rustc_codegen_ssa::base::provide_both(providers);
|
2018-01-05 21:26:26 +00:00
|
|
|
attributes::provide(providers);
|
2017-09-23 12:46:15 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 13:44:43 +00:00
|
|
|
fn provide_extern(&self, providers: &mut ty::query::Providers) {
|
2018-10-23 15:01:35 +00:00
|
|
|
rustc_codegen_ssa::back::symbol_export::provide_extern(providers);
|
2018-10-03 14:56:24 +00:00
|
|
|
rustc_codegen_ssa::base::provide_both(providers);
|
2018-02-10 22:28:17 +00:00
|
|
|
attributes::provide_extern(providers);
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 15:01:35 +00:00
|
|
|
fn codegen_crate<'b, 'tcx>(
|
2017-10-30 17:42:21 +00:00
|
|
|
&self,
|
2018-10-23 15:01:35 +00:00
|
|
|
tcx: TyCtxt<'b, 'tcx, 'tcx>,
|
2018-07-11 10:49:11 +00:00
|
|
|
rx: mpsc::Receiver<Box<dyn Any + Send>>
|
|
|
|
) -> Box<dyn Any> {
|
2018-10-03 14:56:24 +00:00
|
|
|
box rustc_codegen_ssa::base::codegen_crate(LlvmCodegenBackend(()), tcx, rx)
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
|
2018-05-08 13:10:16 +00:00
|
|
|
fn join_codegen_and_link(
|
2017-10-30 17:42:21 +00:00
|
|
|
&self,
|
2018-07-11 10:49:11 +00:00
|
|
|
ongoing_codegen: Box<dyn Any>,
|
2017-09-16 15:27:29 +00:00
|
|
|
sess: &Session,
|
2017-10-30 17:42:21 +00:00
|
|
|
dep_graph: &DepGraph,
|
|
|
|
outputs: &OutputFilenames,
|
|
|
|
) -> Result<(), CompileIncomplete>{
|
|
|
|
use rustc::util::common::time;
|
2018-10-23 15:01:35 +00:00
|
|
|
let (codegen_results, work_products) =
|
|
|
|
ongoing_codegen.downcast::
|
|
|
|
<rustc_codegen_ssa::back::write::OngoingCodegen<LlvmCodegenBackend>>()
|
2018-05-08 13:10:16 +00:00
|
|
|
.expect("Expected LlvmCodegenBackend's OngoingCodegen, found Box<Any>")
|
|
|
|
.join(sess);
|
2017-10-30 17:42:21 +00:00
|
|
|
if sess.opts.debugging_opts.incremental_info {
|
2018-10-23 15:01:35 +00:00
|
|
|
rustc_codegen_ssa::back::write::dump_incremental_data(&codegen_results);
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2017-12-03 13:21:23 +00:00
|
|
|
time(sess,
|
2017-10-30 17:42:21 +00:00
|
|
|
"serialize work products",
|
2018-05-09 15:16:08 +00:00
|
|
|
move || rustc_incremental::save_work_product_index(sess, &dep_graph, work_products));
|
2017-10-30 17:42:21 +00:00
|
|
|
|
|
|
|
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.
|
2018-05-19 17:50:58 +00:00
|
|
|
sess.profiler(|p| p.start_activity(ProfileCategory::Linking));
|
2017-12-03 13:21:23 +00:00
|
|
|
time(sess, "linking", || {
|
2018-10-23 15:01:35 +00:00
|
|
|
back::link::link_binary(sess, &codegen_results,
|
|
|
|
outputs, &codegen_results.crate_name.as_str());
|
2017-10-30 17:42:21 +00:00
|
|
|
});
|
2018-05-19 17:50:58 +00:00
|
|
|
sess.profiler(|p| p.end_activity(ProfileCategory::Linking));
|
2017-10-30 17:42:21 +00:00
|
|
|
|
|
|
|
// Now that we won't touch anything in the incremental compilation directory
|
|
|
|
// any more, we can finalize it (which involves renaming it)
|
2018-10-23 15:01:35 +00:00
|
|
|
rustc_incremental::finalize_session_directory(sess, codegen_results.crate_hash);
|
2017-09-16 15:27:29 +00:00
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
Ok(())
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-08 13:10:16 +00:00
|
|
|
/// This is the entrypoint for a hot plugged rustc_codegen_llvm
|
2018-01-04 11:40:11 +00:00
|
|
|
#[no_mangle]
|
2018-07-11 10:49:11 +00:00
|
|
|
pub fn __rustc_codegen_backend() -> Box<dyn CodegenBackend> {
|
2018-05-08 13:10:16 +00:00
|
|
|
LlvmCodegenBackend::new()
|
2018-01-04 11:40:11 +00:00
|
|
|
}
|
2018-01-01 11:17:07 +00:00
|
|
|
|
2018-09-25 15:52:03 +00:00
|
|
|
pub struct ModuleLlvm {
|
2018-06-27 14:57:25 +00:00
|
|
|
llcx: &'static mut llvm::Context,
|
|
|
|
llmod_raw: *const llvm::Module,
|
|
|
|
tm: &'static mut llvm::TargetMachine,
|
2016-03-22 17:23:36 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 23:04:20 +00:00
|
|
|
unsafe impl Send for ModuleLlvm { }
|
|
|
|
unsafe impl Sync for ModuleLlvm { }
|
2017-07-23 15:14:38 +00:00
|
|
|
|
2018-09-06 23:04:20 +00:00
|
|
|
impl ModuleLlvm {
|
2018-06-27 14:57:25 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 23:04:20 +00:00
|
|
|
impl Drop for ModuleLlvm {
|
2017-07-23 15:14:38 +00:00
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
2018-06-27 14:57:25 +00:00
|
|
|
llvm::LLVMContextDispose(&mut *(self.llcx as *mut _));
|
|
|
|
llvm::LLVMRustDisposeTargetMachine(&mut *(self.tm as *mut _));
|
2017-07-23 15:14:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2018-05-08 13:10:16 +00:00
|
|
|
__build_diagnostic_array! { librustc_codegen_llvm, DIAGNOSTICS }
|