]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_codegen_ssa/src/lib.rs
New upstream version 1.52.0+dfsg1
[rustc.git] / compiler / rustc_codegen_ssa / src / lib.rs
CommitLineData
1b1a35ee 1#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
60c5eb7d 2#![feature(bool_to_option)]
a1dfa0c6 3#![feature(box_patterns)]
fc512014 4#![feature(drain_filter)]
532ac7d7 5#![feature(try_blocks)]
a1dfa0c6 6#![feature(in_band_lifetimes)]
a1dfa0c6 7#![feature(nll)]
ba9703b0 8#![feature(or_patterns)]
416331ca 9#![feature(associated_type_bounds)]
dfeec247 10#![recursion_limit = "256"]
6a06907d 11#![feature(box_syntax)]
0731742a 12
a1dfa0c6
XL
13//! This crate contains codegen code that is used by all codegen backends (LLVM and others).
14//! The backend-agnostic functions of this crate use functions defined in various traits that
15//! have to be implemented by each backends.
16
dfeec247 17#[macro_use]
3dfed10e
XL
18extern crate rustc_macros;
19#[macro_use]
20extern crate tracing;
dfeec247 21#[macro_use]
ba9703b0 22extern crate rustc_middle;
a1dfa0c6 23
fc512014 24use rustc_ast as ast;
a1dfa0c6 25use rustc_data_structures::fx::{FxHashMap, FxHashSet};
dfeec247
XL
26use rustc_data_structures::sync::Lrc;
27use rustc_hir::def_id::CrateNum;
ba9703b0
XL
28use rustc_hir::LangItem;
29use rustc_middle::dep_graph::WorkProduct;
fc512014 30use rustc_middle::middle::cstore::{self, CrateSource, LibSource};
ba9703b0
XL
31use rustc_middle::middle::dependency_format::Dependencies;
32use rustc_middle::ty::query::Providers;
33use rustc_session::config::{OutputFilenames, OutputType, RUST_CGU_EXT};
fc512014 34use rustc_session::utils::NativeLibKind;
dfeec247
XL
35use rustc_span::symbol::Symbol;
36use std::path::{Path, PathBuf};
a1dfa0c6 37
dfeec247
XL
38pub mod back;
39pub mod base;
a1dfa0c6 40pub mod common;
f035d41b 41pub mod coverageinfo;
a1dfa0c6 42pub mod debuginfo;
a1dfa0c6
XL
43pub mod glue;
44pub mod meth;
dfeec247 45pub mod mir;
a1dfa0c6 46pub mod mono_item;
29967ef6 47pub mod target_features;
dfeec247 48pub mod traits;
a1dfa0c6
XL
49
50pub struct ModuleCodegen<M> {
51 /// The name of the module. When the crate may be saved between
52 /// compilations, incremental compilation requires that name be
9fa01778 53 /// unique amongst **all** crates. Therefore, it should contain
a1dfa0c6
XL
54 /// something unique to this crate (e.g., a module path) as well
55 /// as the crate name and disambiguator.
56 /// We currently generate these names via CodegenUnit::build_cgu_name().
57 pub name: String,
58 pub module_llvm: M,
59 pub kind: ModuleKind,
60}
61
60c5eb7d
XL
62// FIXME(eddyb) maybe include the crate name in this?
63pub const METADATA_FILENAME: &str = "lib.rmeta";
a1dfa0c6
XL
64
65impl<M> ModuleCodegen<M> {
dfeec247
XL
66 pub fn into_compiled_module(
67 self,
68 emit_obj: bool,
fc512014 69 emit_dwarf_obj: bool,
dfeec247 70 emit_bc: bool,
dfeec247
XL
71 outputs: &OutputFilenames,
72 ) -> CompiledModule {
73 let object = emit_obj.then(|| outputs.temp_path(OutputType::Object, Some(&self.name)));
fc512014 74 let dwarf_object = emit_dwarf_obj.then(|| outputs.temp_path_dwo(Some(&self.name)));
dfeec247 75 let bytecode = emit_bc.then(|| outputs.temp_path(OutputType::Bitcode, Some(&self.name)));
a1dfa0c6 76
fc512014 77 CompiledModule { name: self.name.clone(), kind: self.kind, object, dwarf_object, bytecode }
a1dfa0c6
XL
78 }
79}
80
3dfed10e 81#[derive(Debug, Encodable, Decodable)]
a1dfa0c6
XL
82pub struct CompiledModule {
83 pub name: String,
84 pub kind: ModuleKind,
85 pub object: Option<PathBuf>,
fc512014 86 pub dwarf_object: Option<PathBuf>,
a1dfa0c6 87 pub bytecode: Option<PathBuf>,
a1dfa0c6
XL
88}
89
90pub struct CachedModuleCodegen {
91 pub name: String,
92 pub source: WorkProduct,
93}
94
3dfed10e 95#[derive(Copy, Clone, Debug, PartialEq, Encodable, Decodable)]
a1dfa0c6
XL
96pub enum ModuleKind {
97 Regular,
98 Metadata,
99 Allocator,
100}
101
9fa01778 102bitflags::bitflags! {
a1dfa0c6
XL
103 pub struct MemFlags: u8 {
104 const VOLATILE = 1 << 0;
105 const NONTEMPORAL = 1 << 1;
106 const UNALIGNED = 1 << 2;
107 }
108}
109
fc512014
XL
110#[derive(Clone, Debug, Encodable, Decodable, HashStable)]
111pub struct NativeLib {
112 pub kind: NativeLibKind,
113 pub name: Option<Symbol>,
114 pub cfg: Option<ast::MetaItem>,
115}
116
117impl From<&cstore::NativeLib> for NativeLib {
118 fn from(lib: &cstore::NativeLib) -> Self {
5869c6ff 119 NativeLib { kind: lib.kind, name: lib.name, cfg: lib.cfg.clone() }
fc512014
XL
120 }
121}
122
9fa01778 123/// Misc info we load from metadata to persist beyond the tcx.
dfeec247
XL
124///
125/// Note: though `CrateNum` is only meaningful within the same tcx, information within `CrateInfo`
126/// is self-contained. `CrateNum` can be viewed as a unique identifier within a `CrateInfo`, where
127/// `used_crate_source` contains all `CrateSource` of the dependents, and maintains a mapping from
128/// identifiers (`CrateNum`) to `CrateSource`. The other fields map `CrateNum` to the crate's own
129/// additional properties, so that effectively we can retrieve each dependent crate's `CrateSource`
130/// and the corresponding properties without referencing information outside of a `CrateInfo`.
3dfed10e 131#[derive(Debug, Encodable, Decodable)]
a1dfa0c6
XL
132pub struct CrateInfo {
133 pub panic_runtime: Option<CrateNum>,
134 pub compiler_builtins: Option<CrateNum>,
135 pub profiler_runtime: Option<CrateNum>,
a1dfa0c6 136 pub is_no_builtins: FxHashSet<CrateNum>,
fc512014 137 pub native_libraries: FxHashMap<CrateNum, Vec<NativeLib>>,
a1dfa0c6 138 pub crate_name: FxHashMap<CrateNum, String>,
fc512014 139 pub used_libraries: Vec<NativeLib>,
a1dfa0c6
XL
140 pub link_args: Lrc<Vec<String>>,
141 pub used_crate_source: FxHashMap<CrateNum, Lrc<CrateSource>>,
142 pub used_crates_static: Vec<(CrateNum, LibSource)>,
143 pub used_crates_dynamic: Vec<(CrateNum, LibSource)>,
a1dfa0c6
XL
144 pub lang_item_to_crate: FxHashMap<LangItem, CrateNum>,
145 pub missing_lang_items: FxHashMap<CrateNum, Vec<LangItem>>,
e74abb32 146 pub dependency_formats: Lrc<Dependencies>,
a1dfa0c6
XL
147}
148
3dfed10e 149#[derive(Encodable, Decodable)]
a1dfa0c6
XL
150pub struct CodegenResults {
151 pub crate_name: Symbol,
152 pub modules: Vec<CompiledModule>,
153 pub allocator_module: Option<CompiledModule>,
48663c56 154 pub metadata_module: Option<CompiledModule>,
ba9703b0 155 pub metadata: rustc_middle::middle::cstore::EncodedMetadata,
a1dfa0c6
XL
156 pub windows_subsystem: Option<String>,
157 pub linker_info: back::linker::LinkerInfo,
158 pub crate_info: CrateInfo,
159}
e74abb32 160
f035d41b 161pub fn provide(providers: &mut Providers) {
e74abb32 162 crate::back::symbol_export::provide(providers);
5869c6ff 163 crate::base::provide(providers);
29967ef6 164 crate::target_features::provide(providers);
e74abb32
XL
165}
166
f035d41b 167pub fn provide_extern(providers: &mut Providers) {
e74abb32 168 crate::back::symbol_export::provide_extern(providers);
e74abb32
XL
169}
170
171/// Checks if the given filename ends with the `.rcgu.o` extension that `rustc`
172/// uses for the object files it generates.
173pub fn looks_like_rust_object_file(filename: &str) -> bool {
174 let path = Path::new(filename);
175 let ext = path.extension().and_then(|s| s.to_str());
176 if ext != Some(OutputType::Object.extension()) {
177 // The file name does not end with ".o", so it can't be an object file.
dfeec247 178 return false;
e74abb32
XL
179 }
180
181 // Strip the ".o" at the end
dfeec247 182 let ext2 = path.file_stem().and_then(|s| Path::new(s).extension()).and_then(|s| s.to_str());
e74abb32
XL
183
184 // Check if the "inner" extension
185 ext2 == Some(RUST_CGU_EXT)
186}