2019-02-05 13:37:15 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2018-10-01 16:07:04 +00:00
|
|
|
|
|
|
|
#![feature(box_patterns)]
|
|
|
|
#![feature(box_syntax)]
|
2019-02-10 22:23:00 +00:00
|
|
|
#![feature(core_intrinsics)]
|
2018-10-01 16:07:04 +00:00
|
|
|
#![feature(custom_attribute)]
|
2018-10-02 08:49:54 +00:00
|
|
|
#![feature(libc)]
|
2018-10-03 11:49:57 +00:00
|
|
|
#![feature(rustc_diagnostic_macros)]
|
2019-02-10 22:23:00 +00:00
|
|
|
#![feature(stmt_expr_attributes)]
|
2019-03-14 14:12:56 +00:00
|
|
|
#![feature(try_blocks)]
|
2018-10-03 11:49:57 +00:00
|
|
|
#![feature(in_band_lifetimes)]
|
2018-10-01 16:07:04 +00:00
|
|
|
#![feature(nll)]
|
2019-03-29 16:23:52 +00:00
|
|
|
#![feature(trusted_len)]
|
2018-10-01 16:07:04 +00:00
|
|
|
#![allow(unused_attributes)]
|
|
|
|
#![allow(dead_code)]
|
2019-02-09 14:31:47 +00:00
|
|
|
#![deny(rust_2018_idioms)]
|
2019-04-15 11:35:08 +00:00
|
|
|
#![deny(internal)]
|
2019-02-09 14:31:47 +00:00
|
|
|
#![allow(explicit_outlives_requirements)]
|
2018-10-01 16:07:04 +00:00
|
|
|
|
2018-12-13 15:57:25 +00:00
|
|
|
#![recursion_limit="256"]
|
|
|
|
|
2018-10-04 13:23:10 +00:00
|
|
|
//! This crate contains codegen code that is used by all codegen backends (LLVM and others).
|
|
|
|
//! The backend-agnostic functions of this crate use functions defined in various traits that
|
|
|
|
//! have to be implemented by each backends.
|
|
|
|
|
2018-10-03 11:49:57 +00:00
|
|
|
#[macro_use] extern crate log;
|
2019-02-09 14:31:47 +00:00
|
|
|
#[macro_use] extern crate rustc;
|
2019-02-10 22:23:00 +00:00
|
|
|
#[macro_use] extern crate rustc_data_structures;
|
2018-10-03 11:49:57 +00:00
|
|
|
#[macro_use] extern crate syntax;
|
2018-10-01 16:07:04 +00:00
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use rustc::dep_graph::WorkProduct;
|
|
|
|
use rustc::session::config::{OutputFilenames, OutputType};
|
2018-10-03 11:49:57 +00:00
|
|
|
use rustc::middle::lang_items::LangItem;
|
|
|
|
use rustc::hir::def_id::CrateNum;
|
|
|
|
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
|
|
|
use rustc_data_structures::sync::Lrc;
|
2018-10-23 15:01:35 +00:00
|
|
|
use rustc_data_structures::svh::Svh;
|
2018-10-03 11:49:57 +00:00
|
|
|
use rustc::middle::cstore::{LibSource, CrateSource, NativeLibrary};
|
2018-10-23 15:01:35 +00:00
|
|
|
use syntax_pos::symbol::Symbol;
|
2018-10-03 11:49:57 +00:00
|
|
|
|
2018-11-27 02:59:49 +00:00
|
|
|
// N.B., this module needs to be declared first so diagnostics are
|
2018-10-03 11:49:57 +00:00
|
|
|
// registered before they are used.
|
2019-04-16 22:35:54 +00:00
|
|
|
mod error_codes;
|
2018-10-01 16:07:04 +00:00
|
|
|
|
|
|
|
pub mod common;
|
2018-11-16 11:45:28 +00:00
|
|
|
pub mod traits;
|
2018-10-03 11:49:57 +00:00
|
|
|
pub mod mir;
|
|
|
|
pub mod debuginfo;
|
|
|
|
pub mod base;
|
|
|
|
pub mod callee;
|
|
|
|
pub mod glue;
|
|
|
|
pub mod meth;
|
|
|
|
pub mod mono_item;
|
2018-10-23 15:01:35 +00:00
|
|
|
pub mod back;
|
2018-10-01 16:07:04 +00:00
|
|
|
|
|
|
|
pub struct ModuleCodegen<M> {
|
|
|
|
/// The name of the module. When the crate may be saved between
|
|
|
|
/// compilations, incremental compilation requires that name be
|
2019-02-08 13:53:55 +00:00
|
|
|
/// unique amongst **all** crates. Therefore, it should contain
|
2018-10-01 16:07:04 +00:00
|
|
|
/// something unique to this crate (e.g., a module path) as well
|
|
|
|
/// as the crate name and disambiguator.
|
|
|
|
/// We currently generate these names via CodegenUnit::build_cgu_name().
|
|
|
|
pub name: String,
|
|
|
|
pub module_llvm: M,
|
|
|
|
pub kind: ModuleKind,
|
|
|
|
}
|
|
|
|
|
2019-03-30 12:03:52 +00:00
|
|
|
pub const METADATA_FILENAME: &str = "rust.metadata.bin";
|
2018-10-01 16:07:04 +00:00
|
|
|
pub const RLIB_BYTECODE_EXTENSION: &str = "bc.z";
|
|
|
|
|
|
|
|
impl<M> ModuleCodegen<M> {
|
|
|
|
pub fn into_compiled_module(self,
|
|
|
|
emit_obj: bool,
|
|
|
|
emit_bc: bool,
|
|
|
|
emit_bc_compressed: bool,
|
|
|
|
outputs: &OutputFilenames) -> CompiledModule {
|
|
|
|
let object = if emit_obj {
|
|
|
|
Some(outputs.temp_path(OutputType::Object, Some(&self.name)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let bytecode = if emit_bc {
|
|
|
|
Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let bytecode_compressed = if emit_bc_compressed {
|
|
|
|
Some(outputs.temp_path(OutputType::Bitcode, Some(&self.name))
|
|
|
|
.with_extension(RLIB_BYTECODE_EXTENSION))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
CompiledModule {
|
|
|
|
name: self.name.clone(),
|
|
|
|
kind: self.kind,
|
|
|
|
object,
|
|
|
|
bytecode,
|
|
|
|
bytecode_compressed,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CompiledModule {
|
|
|
|
pub name: String,
|
|
|
|
pub kind: ModuleKind,
|
|
|
|
pub object: Option<PathBuf>,
|
|
|
|
pub bytecode: Option<PathBuf>,
|
|
|
|
pub bytecode_compressed: Option<PathBuf>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CachedModuleCodegen {
|
|
|
|
pub name: String,
|
|
|
|
pub source: WorkProduct,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
pub enum ModuleKind {
|
|
|
|
Regular,
|
|
|
|
Metadata,
|
|
|
|
Allocator,
|
|
|
|
}
|
|
|
|
|
2019-02-09 14:31:47 +00:00
|
|
|
bitflags::bitflags! {
|
2018-10-03 11:49:57 +00:00
|
|
|
pub struct MemFlags: u8 {
|
|
|
|
const VOLATILE = 1 << 0;
|
|
|
|
const NONTEMPORAL = 1 << 1;
|
|
|
|
const UNALIGNED = 1 << 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Misc info we load from metadata to persist beyond the tcx.
|
2018-10-03 14:56:24 +00:00
|
|
|
pub struct CrateInfo {
|
|
|
|
pub panic_runtime: Option<CrateNum>,
|
|
|
|
pub compiler_builtins: Option<CrateNum>,
|
|
|
|
pub profiler_runtime: Option<CrateNum>,
|
|
|
|
pub sanitizer_runtime: Option<CrateNum>,
|
|
|
|
pub is_no_builtins: FxHashSet<CrateNum>,
|
|
|
|
pub native_libraries: FxHashMap<CrateNum, Lrc<Vec<NativeLibrary>>>,
|
|
|
|
pub crate_name: FxHashMap<CrateNum, String>,
|
|
|
|
pub used_libraries: Lrc<Vec<NativeLibrary>>,
|
|
|
|
pub link_args: Lrc<Vec<String>>,
|
|
|
|
pub used_crate_source: FxHashMap<CrateNum, Lrc<CrateSource>>,
|
|
|
|
pub used_crates_static: Vec<(CrateNum, LibSource)>,
|
|
|
|
pub used_crates_dynamic: Vec<(CrateNum, LibSource)>,
|
|
|
|
pub lang_item_to_crate: FxHashMap<LangItem, CrateNum>,
|
|
|
|
pub missing_lang_items: FxHashMap<CrateNum, Vec<LangItem>>,
|
2018-10-03 11:49:57 +00:00
|
|
|
}
|
2018-10-01 16:07:04 +00:00
|
|
|
|
2018-10-23 15:01:35 +00:00
|
|
|
|
|
|
|
pub struct CodegenResults {
|
|
|
|
pub crate_name: Symbol,
|
|
|
|
pub modules: Vec<CompiledModule>,
|
|
|
|
pub allocator_module: Option<CompiledModule>,
|
|
|
|
pub metadata_module: CompiledModule,
|
|
|
|
pub crate_hash: Svh,
|
|
|
|
pub metadata: rustc::middle::cstore::EncodedMetadata,
|
|
|
|
pub windows_subsystem: Option<String>,
|
|
|
|
pub linker_info: back::linker::LinkerInfo,
|
|
|
|
pub crate_info: CrateInfo,
|
|
|
|
}
|
|
|
|
|
2018-10-01 16:07:04 +00:00
|
|
|
__build_diagnostic_array! { librustc_codegen_ssa, DIAGNOSTICS }
|