2020-09-23 19:51:56 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
2019-10-08 00:14:42 +00:00
|
|
|
#![feature(bool_to_option)]
|
2018-10-01 16:07:04 +00:00
|
|
|
#![feature(box_patterns)]
|
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-07-31 19:00:35 +00:00
|
|
|
#![feature(associated_type_bounds)]
|
2019-12-22 22:42:04 +00:00
|
|
|
#![recursion_limit = "256"]
|
2018-12-13 15:57:25 +00:00
|
|
|
|
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.
|
|
|
|
|
2020-06-11 14:49:57 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
2019-12-22 22:42:04 +00:00
|
|
|
#[macro_use]
|
2020-08-05 11:35:53 +00:00
|
|
|
extern crate tracing;
|
2019-12-22 22:42:04 +00:00
|
|
|
#[macro_use]
|
2020-03-29 14:41:09 +00:00
|
|
|
extern crate rustc_middle;
|
2018-10-01 16:07:04 +00:00
|
|
|
|
2020-12-19 11:36:35 +00:00
|
|
|
use rustc_ast as ast;
|
2018-10-03 11:49:57 +00:00
|
|
|
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
2019-12-22 22:42:04 +00:00
|
|
|
use rustc_data_structures::sync::Lrc;
|
2020-01-05 01:37:57 +00:00
|
|
|
use rustc_hir::def_id::CrateNum;
|
2020-03-31 19:38:14 +00:00
|
|
|
use rustc_hir::LangItem;
|
2020-03-29 14:41:09 +00:00
|
|
|
use rustc_middle::dep_graph::WorkProduct;
|
2020-12-19 11:36:35 +00:00
|
|
|
use rustc_middle::middle::cstore::{self, CrateSource, LibSource};
|
2020-03-29 14:41:09 +00:00
|
|
|
use rustc_middle::middle::dependency_format::Dependencies;
|
|
|
|
use rustc_middle::ty::query::Providers;
|
2020-03-11 11:49:08 +00:00
|
|
|
use rustc_session::config::{OutputFilenames, OutputType, RUST_CGU_EXT};
|
2020-12-19 11:36:35 +00:00
|
|
|
use rustc_session::utils::NativeLibKind;
|
2019-12-31 17:15:40 +00:00
|
|
|
use rustc_span::symbol::Symbol;
|
2019-12-22 22:42:04 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2018-10-03 11:49:57 +00:00
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
pub mod back;
|
|
|
|
pub mod base;
|
2018-10-01 16:07:04 +00:00
|
|
|
pub mod common;
|
2020-06-22 06:29:08 +00:00
|
|
|
pub mod coverageinfo;
|
2018-10-03 11:49:57 +00:00
|
|
|
pub mod debuginfo;
|
|
|
|
pub mod glue;
|
|
|
|
pub mod meth;
|
2019-12-22 22:42:04 +00:00
|
|
|
pub mod mir;
|
2018-10-03 11:49:57 +00:00
|
|
|
pub mod mono_item;
|
2020-10-04 09:12:56 +00:00
|
|
|
pub mod target_features;
|
2019-12-22 22:42:04 +00:00
|
|
|
pub mod traits;
|
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-11-09 00:06:22 +00:00
|
|
|
// FIXME(eddyb) maybe include the crate name in this?
|
|
|
|
pub const METADATA_FILENAME: &str = "lib.rmeta";
|
2018-10-01 16:07:04 +00:00
|
|
|
|
|
|
|
impl<M> ModuleCodegen<M> {
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn into_compiled_module(
|
|
|
|
self,
|
|
|
|
emit_obj: bool,
|
2020-09-23 16:33:54 +00:00
|
|
|
emit_dwarf_obj: bool,
|
2019-12-22 22:42:04 +00:00
|
|
|
emit_bc: bool,
|
|
|
|
outputs: &OutputFilenames,
|
|
|
|
) -> CompiledModule {
|
|
|
|
let object = emit_obj.then(|| outputs.temp_path(OutputType::Object, Some(&self.name)));
|
2020-09-23 16:33:54 +00:00
|
|
|
let dwarf_object = emit_dwarf_obj.then(|| outputs.temp_path_dwo(Some(&self.name)));
|
2019-12-22 22:42:04 +00:00
|
|
|
let bytecode = emit_bc.then(|| outputs.temp_path(OutputType::Bitcode, Some(&self.name)));
|
2018-10-01 16:07:04 +00:00
|
|
|
|
2020-09-23 16:33:54 +00:00
|
|
|
CompiledModule { name: self.name.clone(), kind: self.kind, object, dwarf_object, bytecode }
|
2018-10-01 16:07:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 14:49:57 +00:00
|
|
|
#[derive(Debug, Encodable, Decodable)]
|
2018-10-01 16:07:04 +00:00
|
|
|
pub struct CompiledModule {
|
|
|
|
pub name: String,
|
|
|
|
pub kind: ModuleKind,
|
|
|
|
pub object: Option<PathBuf>,
|
2020-09-23 16:33:54 +00:00
|
|
|
pub dwarf_object: Option<PathBuf>,
|
2018-10-01 16:07:04 +00:00
|
|
|
pub bytecode: Option<PathBuf>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CachedModuleCodegen {
|
|
|
|
pub name: String,
|
|
|
|
pub source: WorkProduct,
|
|
|
|
}
|
|
|
|
|
2020-06-11 14:49:57 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Encodable, Decodable)]
|
2018-10-01 16:07:04 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-19 11:36:35 +00:00
|
|
|
#[derive(Clone, Debug, Encodable, Decodable, HashStable)]
|
|
|
|
pub struct NativeLib {
|
|
|
|
pub kind: NativeLibKind,
|
|
|
|
pub name: Option<Symbol>,
|
|
|
|
pub cfg: Option<ast::MetaItem>,
|
2021-03-25 04:45:09 +00:00
|
|
|
pub verbatim: Option<bool>,
|
2020-12-19 11:36:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&cstore::NativeLib> for NativeLib {
|
|
|
|
fn from(lib: &cstore::NativeLib) -> Self {
|
2021-03-25 04:45:09 +00:00
|
|
|
NativeLib { kind: lib.kind, name: lib.name, cfg: lib.cfg.clone(), verbatim: lib.verbatim }
|
2020-12-19 11:36:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Misc info we load from metadata to persist beyond the tcx.
|
2019-12-21 10:37:15 +00:00
|
|
|
///
|
|
|
|
/// Note: though `CrateNum` is only meaningful within the same tcx, information within `CrateInfo`
|
|
|
|
/// is self-contained. `CrateNum` can be viewed as a unique identifier within a `CrateInfo`, where
|
|
|
|
/// `used_crate_source` contains all `CrateSource` of the dependents, and maintains a mapping from
|
|
|
|
/// identifiers (`CrateNum`) to `CrateSource`. The other fields map `CrateNum` to the crate's own
|
|
|
|
/// additional properties, so that effectively we can retrieve each dependent crate's `CrateSource`
|
|
|
|
/// and the corresponding properties without referencing information outside of a `CrateInfo`.
|
2020-06-11 14:49:57 +00:00
|
|
|
#[derive(Debug, Encodable, Decodable)]
|
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 is_no_builtins: FxHashSet<CrateNum>,
|
2020-12-19 11:36:35 +00:00
|
|
|
pub native_libraries: FxHashMap<CrateNum, Vec<NativeLib>>,
|
2018-10-03 14:56:24 +00:00
|
|
|
pub crate_name: FxHashMap<CrateNum, String>,
|
2020-12-19 11:36:35 +00:00
|
|
|
pub used_libraries: Vec<NativeLib>,
|
2018-10-03 14:56:24 +00:00
|
|
|
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>>,
|
2019-09-16 20:34:57 +00:00
|
|
|
pub dependency_formats: Lrc<Dependencies>,
|
2018-10-03 11:49:57 +00:00
|
|
|
}
|
2018-10-01 16:07:04 +00:00
|
|
|
|
2020-06-11 14:49:57 +00:00
|
|
|
#[derive(Encodable, Decodable)]
|
2018-10-23 15:01:35 +00:00
|
|
|
pub struct CodegenResults {
|
|
|
|
pub crate_name: Symbol,
|
|
|
|
pub modules: Vec<CompiledModule>,
|
|
|
|
pub allocator_module: Option<CompiledModule>,
|
2019-04-23 23:08:25 +00:00
|
|
|
pub metadata_module: Option<CompiledModule>,
|
2020-03-29 14:41:09 +00:00
|
|
|
pub metadata: rustc_middle::middle::cstore::EncodedMetadata,
|
2018-10-23 15:01:35 +00:00
|
|
|
pub windows_subsystem: Option<String>,
|
|
|
|
pub linker_info: back::linker::LinkerInfo,
|
|
|
|
pub crate_info: CrateInfo,
|
|
|
|
}
|
2019-10-13 10:11:27 +00:00
|
|
|
|
2020-07-05 20:00:14 +00:00
|
|
|
pub fn provide(providers: &mut Providers) {
|
2019-10-13 10:11:27 +00:00
|
|
|
crate::back::symbol_export::provide(providers);
|
2021-01-23 10:11:51 +00:00
|
|
|
crate::base::provide(providers);
|
2020-10-09 17:35:17 +00:00
|
|
|
crate::target_features::provide(providers);
|
2019-10-13 10:11:27 +00:00
|
|
|
}
|
|
|
|
|
2020-07-05 20:00:14 +00:00
|
|
|
pub fn provide_extern(providers: &mut Providers) {
|
2019-10-13 10:11:27 +00:00
|
|
|
crate::back::symbol_export::provide_extern(providers);
|
|
|
|
}
|
2019-10-15 11:42:27 +00:00
|
|
|
|
|
|
|
/// Checks if the given filename ends with the `.rcgu.o` extension that `rustc`
|
|
|
|
/// uses for the object files it generates.
|
|
|
|
pub fn looks_like_rust_object_file(filename: &str) -> bool {
|
|
|
|
let path = Path::new(filename);
|
|
|
|
let ext = path.extension().and_then(|s| s.to_str());
|
|
|
|
if ext != Some(OutputType::Object.extension()) {
|
|
|
|
// The file name does not end with ".o", so it can't be an object file.
|
2019-12-22 22:42:04 +00:00
|
|
|
return false;
|
2019-10-15 11:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Strip the ".o" at the end
|
2019-12-22 22:42:04 +00:00
|
|
|
let ext2 = path.file_stem().and_then(|s| Path::new(s).extension()).and_then(|s| s.to_str());
|
2019-10-15 11:42:27 +00:00
|
|
|
|
|
|
|
// Check if the "inner" extension
|
|
|
|
ext2 == Some(RUST_CGU_EXT)
|
|
|
|
}
|