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
|
|
|
|
2019-02-05 13:37:15 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2019-10-08 00:14:42 +00:00
|
|
|
#![feature(bool_to_option)]
|
2019-05-29 01:46:55 +00:00
|
|
|
#![feature(const_cstr_unchecked)]
|
2018-06-27 14:57:25 +00:00
|
|
|
#![feature(crate_visibility_modifier)]
|
2018-06-27 10:12:47 +00:00
|
|
|
#![feature(extern_types)]
|
2018-06-27 14:57:25 +00:00
|
|
|
#![feature(in_band_lifetimes)]
|
2018-09-26 21:26:46 +00:00
|
|
|
#![feature(nll)]
|
2019-03-29 16:23:52 +00:00
|
|
|
#![feature(trusted_len)]
|
2020-01-05 01:10:23 +00:00
|
|
|
#![recursion_limit = "256"]
|
2014-11-16 01:30:33 +00:00
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
use back::write::{create_informational_target_machine, create_target_machine};
|
2016-07-21 16:49:59 +00:00
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
pub use llvm_util::target_features;
|
2020-02-29 17:37:32 +00:00
|
|
|
use rustc_ast::expand::allocator::AllocatorKind;
|
2019-12-22 22:42:04 +00:00
|
|
|
use rustc_codegen_ssa::back::lto::{LtoModuleCodegen, SerializedModule, ThinModule};
|
|
|
|
use rustc_codegen_ssa::back::write::{CodegenContext, FatLTOInput, ModuleConfig};
|
2018-11-16 11:45:28 +00:00
|
|
|
use rustc_codegen_ssa::traits::*;
|
2020-03-11 11:49:08 +00:00
|
|
|
use rustc_codegen_ssa::ModuleCodegen;
|
2020-01-28 13:16:14 +00:00
|
|
|
use rustc_codegen_ssa::{CodegenResults, CompiledModule};
|
2019-10-22 15:51:35 +00:00
|
|
|
use rustc_errors::{FatalError, Handler};
|
2020-03-29 15:19:48 +00:00
|
|
|
use rustc_middle::dep_graph::{DepGraph, WorkProduct};
|
|
|
|
use rustc_middle::middle::cstore::{EncodedMetadata, MetadataLoaderDyn};
|
|
|
|
use rustc_middle::ty::{self, TyCtxt};
|
|
|
|
use rustc_middle::util::common::ErrorReported;
|
2020-03-11 11:49:08 +00:00
|
|
|
use rustc_serialize::json;
|
|
|
|
use rustc_session::config::{self, OptLevel, OutputFilenames, PrintRequest};
|
|
|
|
use rustc_session::Session;
|
|
|
|
use rustc_span::symbol::Symbol;
|
|
|
|
|
2017-07-23 15:14:38 +00:00
|
|
|
use std::any::Any;
|
2019-08-27 19:25:35 +00:00
|
|
|
use std::ffi::CStr;
|
2019-12-21 10:37:15 +00:00
|
|
|
use std::fs;
|
2019-12-22 22:42:04 +00:00
|
|
|
use std::sync::Arc;
|
2017-08-29 00:06:03 +00:00
|
|
|
|
2017-12-27 18:03:48 +00:00
|
|
|
mod back {
|
2019-03-30 14:30:07 +00:00
|
|
|
pub mod archive;
|
2017-10-20 01:44:33 +00:00
|
|
|
pub mod bytecode;
|
2018-08-17 14:07:23 +00:00
|
|
|
pub mod lto;
|
2020-02-11 21:37:16 +00:00
|
|
|
mod profiling;
|
2014-11-16 01:30:33 +00:00
|
|
|
pub mod write;
|
|
|
|
}
|
|
|
|
|
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.
|
2019-12-22 22:42:04 +00:00
|
|
|
#[path = "llvm/mod.rs"]
|
|
|
|
mod llvm_;
|
|
|
|
pub mod llvm {
|
|
|
|
pub use super::llvm_::*;
|
|
|
|
}
|
2018-09-06 17:23:42 +00:00
|
|
|
|
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;
|
2018-10-23 23:13:33 +00:00
|
|
|
mod va_arg;
|
2019-12-22 22:42:04 +00:00
|
|
|
mod value;
|
2016-03-22 17:23:36 +00:00
|
|
|
|
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 {
|
2019-06-13 21:48:52 +00:00
|
|
|
fn new_metadata(&self, tcx: TyCtxt<'_>, mod_name: &str) -> ModuleLlvm {
|
2019-02-20 20:27:00 +00:00
|
|
|
ModuleLlvm::new_metadata(tcx, mod_name)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2019-02-20 20:27:00 +00:00
|
|
|
|
2019-06-13 21:48:52 +00:00
|
|
|
fn write_compressed_metadata<'tcx>(
|
2018-09-25 15:52:03 +00:00
|
|
|
&self,
|
2019-06-13 21:48:52 +00:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2019-04-26 07:22:36 +00:00
|
|
|
metadata: &EncodedMetadata,
|
2019-06-11 21:11:55 +00:00
|
|
|
llvm_module: &mut ModuleLlvm,
|
2019-04-26 07:22:36 +00:00
|
|
|
) {
|
|
|
|
base::write_compressed_metadata(tcx, metadata, llvm_module)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2019-06-13 21:48:52 +00:00
|
|
|
fn codegen_allocator<'tcx>(
|
2019-02-25 07:40:18 +00:00
|
|
|
&self,
|
2019-06-13 21:48:52 +00:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2019-02-25 07:40:18 +00:00
|
|
|
mods: &mut ModuleLlvm,
|
2019-06-11 21:11:55 +00:00
|
|
|
kind: AllocatorKind,
|
2019-02-25 07:40:18 +00:00
|
|
|
) {
|
2018-10-23 15:01:35 +00:00
|
|
|
unsafe { allocator::codegen(tcx, mods, kind) }
|
|
|
|
}
|
2019-09-25 17:14:43 +00:00
|
|
|
fn compile_codegen_unit(
|
2019-12-22 22:42:04 +00:00
|
|
|
&self,
|
|
|
|
tcx: TyCtxt<'_>,
|
2019-10-21 06:14:03 +00:00
|
|
|
cgu_name: Symbol,
|
2020-01-05 01:10:23 +00:00
|
|
|
) -> (ModuleCodegen<ModuleLlvm>, u64) {
|
|
|
|
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,
|
2018-10-27 12:29:06 +00:00
|
|
|
optlvl: OptLevel,
|
2019-12-22 22:42:04 +00:00
|
|
|
find_features: bool,
|
|
|
|
) -> Arc<dyn Fn() -> Result<&'static mut llvm::TargetMachine, String> + Send + Sync> {
|
2018-10-27 12:29:06 +00:00
|
|
|
back::write::target_machine_factory(sess, optlvl, 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 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) {
|
2019-12-22 22:42:04 +00:00
|
|
|
unsafe {
|
|
|
|
llvm::LLVMRustPrintPassTimings();
|
|
|
|
}
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2018-12-03 19:45:03 +00:00
|
|
|
fn run_fat_lto(
|
2018-10-23 15:01:35 +00:00
|
|
|
cgcx: &CodegenContext<Self>,
|
2019-02-11 15:46:04 +00:00
|
|
|
modules: Vec<FatLTOInput<Self>>,
|
|
|
|
cached_modules: Vec<(SerializedModule<Self::ModuleBuffer>, WorkProduct)>,
|
2018-12-03 19:50:39 +00:00
|
|
|
) -> Result<LtoModuleCodegen<Self>, FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::lto::run_fat(cgcx, modules, cached_modules)
|
2018-12-03 19:45:03 +00:00
|
|
|
}
|
|
|
|
fn run_thin_lto(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
2018-12-04 15:24:20 +00:00
|
|
|
modules: Vec<(String, Self::ThinBuffer)>,
|
2018-12-03 19:45:03 +00:00
|
|
|
cached_modules: Vec<(SerializedModule<Self::ModuleBuffer>, WorkProduct)>,
|
|
|
|
) -> Result<(Vec<LtoModuleCodegen<Self>>, Vec<WorkProduct>), FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::lto::run_thin(cgcx, modules, cached_modules)
|
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,
|
|
|
|
) -> Result<(), FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::write::optimize(cgcx, diag_handler, module, config)
|
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>,
|
|
|
|
) -> Result<ModuleCodegen<Self::Module>, FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::lto::optimize_thin_module(thin, cgcx)
|
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,
|
|
|
|
) -> Result<CompiledModule, FatalError> {
|
2019-02-13 13:13:30 +00:00
|
|
|
back::write::codegen(cgcx, diag_handler, module, config)
|
2018-09-25 15:52:03 +00:00
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
fn prepare_thin(module: ModuleCodegen<Self::Module>) -> (String, Self::ThinBuffer) {
|
2019-02-11 15:46:04 +00:00
|
|
|
back::lto::prepare_thin(module)
|
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
fn serialize_module(module: ModuleCodegen<Self::Module>) -> (String, Self::ModuleBuffer) {
|
2019-02-11 15:46:04 +00:00
|
|
|
(module.name, back::lto::ModuleBuffer::new(module.module_llvm.llmod()))
|
2018-12-04 15:24:20 +00:00
|
|
|
}
|
2018-10-23 15:01:35 +00:00
|
|
|
fn run_lto_pass_manager(
|
|
|
|
cgcx: &CodegenContext<Self>,
|
|
|
|
module: &ModuleCodegen<Self::Module>,
|
|
|
|
config: &ModuleConfig,
|
2019-12-22 22:42:04 +00:00
|
|
|
thin: bool,
|
2018-10-23 15:01:35 +00:00
|
|
|
) {
|
|
|
|
back::lto::run_pass_manager(cgcx, module, config, thin)
|
2018-09-26 15:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-16 11:37:55 +00:00
|
|
|
unsafe impl Send for LlvmCodegenBackend {} // Llvm is on a per-thread basis
|
|
|
|
unsafe impl 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> {
|
2019-11-17 17:54:13 +00:00
|
|
|
Box::new(LlvmCodegenBackend(()))
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-16 11:37:55 +00:00
|
|
|
impl 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);
|
|
|
|
}
|
2019-09-13 09:36:35 +00:00
|
|
|
println!();
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
|
|
|
PrintRequest::CodeModels => {
|
|
|
|
println!("Available code models:");
|
2019-12-22 22:42:04 +00:00
|
|
|
for &(name, _) in back::write::CODE_GEN_MODEL_ARGS.iter() {
|
2017-10-30 17:42:21 +00:00
|
|
|
println!(" {}", name);
|
|
|
|
}
|
2019-09-13 09:36:35 +00:00
|
|
|
println!();
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
|
|
|
PrintRequest::TlsModels => {
|
|
|
|
println!("Available TLS models:");
|
2019-12-22 22:42:04 +00:00
|
|
|
for &(name, _) in back::write::TLS_MODEL_ARGS.iter() {
|
2017-10-30 17:42:21 +00:00
|
|
|
println!(" {}", name);
|
|
|
|
}
|
2019-09-13 09:36:35 +00:00
|
|
|
println!();
|
2017-10-30 17:42:21 +00:00
|
|
|
}
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
fn target_features(&self, sess: &Session) -> Vec<Symbol> {
|
|
|
|
target_features(sess)
|
|
|
|
}
|
|
|
|
|
2019-10-17 18:26:13 +00:00
|
|
|
fn metadata_loader(&self) -> Box<MetadataLoaderDyn> {
|
2019-11-17 17:54:13 +00:00
|
|
|
Box::new(metadata::LlvmMetadataLoader)
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 07:40:18 +00:00
|
|
|
fn provide(&self, providers: &mut ty::query::Providers<'_>) {
|
2018-01-05 21:26:26 +00:00
|
|
|
attributes::provide(providers);
|
2017-09-23 12:46:15 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 07:40:18 +00:00
|
|
|
fn provide_extern(&self, providers: &mut ty::query::Providers<'_>) {
|
2018-02-10 22:28:17 +00:00
|
|
|
attributes::provide_extern(providers);
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 12:59:10 +00:00
|
|
|
fn codegen_crate<'tcx>(
|
2017-10-30 17:42:21 +00:00
|
|
|
&self,
|
2019-06-13 21:48:52 +00:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2019-04-26 07:22:36 +00:00
|
|
|
metadata: EncodedMetadata,
|
|
|
|
need_metadata_module: bool,
|
2018-07-11 10:49:11 +00:00
|
|
|
) -> Box<dyn Any> {
|
2019-11-17 17:54:13 +00:00
|
|
|
Box::new(rustc_codegen_ssa::base::codegen_crate(
|
2019-12-22 22:42:04 +00:00
|
|
|
LlvmCodegenBackend(()),
|
|
|
|
tcx,
|
|
|
|
metadata,
|
|
|
|
need_metadata_module,
|
2019-11-17 17:54:13 +00:00
|
|
|
))
|
2017-09-16 15:27:29 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 13:16:14 +00:00
|
|
|
fn join_codegen(
|
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,
|
2020-01-28 13:16:14 +00:00
|
|
|
) -> Result<Box<dyn Any>, ErrorReported> {
|
2019-12-22 22:42:04 +00:00
|
|
|
let (codegen_results, work_products) = ongoing_codegen
|
|
|
|
.downcast::<rustc_codegen_ssa::back::write::OngoingCodegen<LlvmCodegenBackend>>()
|
|
|
|
.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
|
|
|
|
2020-01-07 20:34:08 +00:00
|
|
|
sess.time("serialize_work_products", move || {
|
2019-12-22 22:42:04 +00:00
|
|
|
rustc_incremental::save_work_product_index(sess, &dep_graph, work_products)
|
|
|
|
});
|
2017-10-30 17:42:21 +00:00
|
|
|
|
|
|
|
sess.compile_status()?;
|
|
|
|
|
2020-01-28 13:16:14 +00:00
|
|
|
Ok(Box::new(codegen_results))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn link(
|
|
|
|
&self,
|
|
|
|
sess: &Session,
|
|
|
|
codegen_results: Box<dyn Any>,
|
|
|
|
outputs: &OutputFilenames,
|
|
|
|
) -> Result<(), ErrorReported> {
|
|
|
|
let codegen_results = codegen_results
|
|
|
|
.downcast::<CodegenResults>()
|
|
|
|
.expect("Expected CodegenResults, found Box<Any>");
|
2017-10-30 17:42:21 +00:00
|
|
|
|
2019-12-21 10:37:15 +00:00
|
|
|
if sess.opts.debugging_opts.no_link {
|
|
|
|
// FIXME: use a binary format to encode the `.rlink` file
|
|
|
|
let rlink_data = json::encode(&codegen_results).map_err(|err| {
|
|
|
|
sess.fatal(&format!("failed to encode rlink: {}", err));
|
|
|
|
})?;
|
2020-01-23 10:48:48 +00:00
|
|
|
let rlink_file = outputs.with_extension(config::RLINK_EXT);
|
2019-12-21 10:37:15 +00:00
|
|
|
fs::write(&rlink_file, rlink_data).map_err(|err| {
|
|
|
|
sess.fatal(&format!("failed to write file {}: {}", rlink_file.display(), err));
|
|
|
|
})?;
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
// Run the linker on any artifacts that resulted from the LLVM run.
|
|
|
|
// This should produce either a finished executable or library.
|
2020-01-07 20:34:08 +00:00
|
|
|
sess.time("link_crate", || {
|
2019-03-30 14:30:07 +00:00
|
|
|
use crate::back::archive::LlvmArchiveBuilder;
|
2019-12-22 22:42:04 +00:00
|
|
|
use rustc_codegen_ssa::back::link::link_binary;
|
2019-03-30 14:30:07 +00:00
|
|
|
|
|
|
|
let target_cpu = crate::llvm_util::target_cpu(sess);
|
|
|
|
link_binary::<LlvmArchiveBuilder<'_>>(
|
|
|
|
sess,
|
|
|
|
&codegen_results,
|
|
|
|
outputs,
|
|
|
|
&codegen_results.crate_name.as_str(),
|
|
|
|
target_cpu,
|
|
|
|
);
|
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
|
|
|
|
2020-01-31 23:58:28 +00:00
|
|
|
sess.time("llvm_dump_timing_file", || {
|
|
|
|
if sess.opts.debugging_opts.llvm_time_trace {
|
|
|
|
llvm_util::time_trace_profiler_finish("llvm_timings.json");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-30 17:42:21 +00:00
|
|
|
Ok(())
|
2017-09-16 15:27:29 +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
|
|
|
}
|
|
|
|
|
2019-12-22 22:42:04 +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 {
|
2019-06-13 21:48:52 +00:00
|
|
|
fn new(tcx: TyCtxt<'_>, mod_name: &str) -> Self {
|
2018-06-27 14:57:25 +00:00
|
|
|
unsafe {
|
2018-10-27 12:29:06 +00:00
|
|
|
let llcx = llvm::LLVMRustContextCreate(tcx.sess.fewer_names());
|
|
|
|
let llmod_raw = context::create_module(tcx, llcx, mod_name) as *const _;
|
2019-12-22 22:42:04 +00:00
|
|
|
ModuleLlvm { llmod_raw, llcx, tm: create_target_machine(tcx, false) }
|
2018-06-27 14:57:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 21:48:52 +00:00
|
|
|
fn new_metadata(tcx: TyCtxt<'_>, mod_name: &str) -> Self {
|
2019-02-20 20:27:00 +00:00
|
|
|
unsafe {
|
|
|
|
let llcx = llvm::LLVMRustContextCreate(tcx.sess.fewer_names());
|
|
|
|
let llmod_raw = context::create_module(tcx, llcx, mod_name) as *const _;
|
|
|
|
ModuleLlvm {
|
|
|
|
llmod_raw,
|
|
|
|
llcx,
|
|
|
|
tm: create_informational_target_machine(&tcx.sess, false),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-11 15:46:04 +00:00
|
|
|
fn parse(
|
|
|
|
cgcx: &CodegenContext<LlvmCodegenBackend>,
|
2019-08-27 19:25:35 +00:00
|
|
|
name: &CStr,
|
|
|
|
buffer: &[u8],
|
2019-02-11 15:46:04 +00:00
|
|
|
handler: &Handler,
|
|
|
|
) -> Result<Self, FatalError> {
|
|
|
|
unsafe {
|
|
|
|
let llcx = llvm::LLVMRustContextCreate(cgcx.fewer_names);
|
2019-08-27 19:25:35 +00:00
|
|
|
let llmod_raw = back::lto::parse_module(llcx, name, buffer, handler)?;
|
2019-02-11 15:46:04 +00:00
|
|
|
let tm = match (cgcx.tm_factory.0)() {
|
|
|
|
Ok(m) => m,
|
|
|
|
Err(e) => {
|
|
|
|
handler.struct_err(&e).emit();
|
2019-12-22 22:42:04 +00:00
|
|
|
return Err(FatalError);
|
2019-02-11 15:46:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
Ok(ModuleLlvm { llmod_raw, llcx, tm })
|
2019-02-11 15:46:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-27 14:57:25 +00:00
|
|
|
fn llmod(&self) -> &llvm::Module {
|
2019-12-22 22:42:04 +00:00
|
|
|
unsafe { &*self.llmod_raw }
|
2018-06-27 14:57:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|