1#![allow(internal_features)]
3#![allow(rustc::diagnostic_outside_of_impl)]
4#![allow(rustc::untranslatable_diagnostic)]
5#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
6#![doc(rust_logo)]
7#![feature(assert_matches)]
8#![feature(box_patterns)]
9#![feature(file_buffered)]
10#![feature(if_let_guard)]
11#![feature(negative_impls)]
12#![feature(rustdoc_internals)]
13#![feature(string_from_utf8_lossy_owned)]
14#![feature(trait_alias)]
15#![feature(try_blocks)]
16#![recursion_limit = "256"]
17use std::collections::BTreeSet;
24use std::io;
25use std::path::{Path, PathBuf};
26use std::sync::Arc;
27
28use rustc_ast as ast;
29use rustc_data_structures::fx::{FxHashSet, FxIndexMap};
30use rustc_data_structures::unord::UnordMap;
31use rustc_hir::CRATE_HIR_ID;
32use rustc_hir::def_id::CrateNum;
33use rustc_macros::{Decodable, Encodable, HashStable};
34use rustc_middle::dep_graph::WorkProduct;
35use rustc_middle::lint::LevelAndSource;
36use rustc_middle::middle::debugger_visualizer::DebuggerVisualizerFile;
37use rustc_middle::middle::dependency_format::Dependencies;
38use rustc_middle::middle::exported_symbols::SymbolExportKind;
39use rustc_middle::ty::TyCtxt;
40use rustc_middle::util::Providers;
41use rustc_serialize::opaque::{FileEncoder, MemDecoder};
42use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
43use rustc_session::Session;
44use rustc_session::config::{CrateType, OutputFilenames, OutputType, RUST_CGU_EXT};
45use rustc_session::cstore::{self, CrateSource};
46use rustc_session::lint::builtin::LINKER_MESSAGES;
47use rustc_session::utils::NativeLibKind;
48use rustc_span::Symbol;
49
50pub mod assert_module_sources;
51pub mod back;
52pub mod base;
53pub mod codegen_attrs;
54pub mod common;
55pub mod debuginfo;
56pub mod errors;
57pub mod meth;
58pub mod mir;
59pub mod mono_item;
60pub mod size_of_val;
61pub mod target_features;
62pub mod traits;
63
64rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
65
66pub struct ModuleCodegen<M> {
67 pub name: String,
74 pub module_llvm: M,
75 pub kind: ModuleKind,
76 pub thin_lto_buffer: Option<Vec<u8>>,
78}
79
80impl<M> ModuleCodegen<M> {
81 pub fn new_regular(name: impl Into<String>, module: M) -> Self {
82 Self {
83 name: name.into(),
84 module_llvm: module,
85 kind: ModuleKind::Regular,
86 thin_lto_buffer: None,
87 }
88 }
89
90 pub fn new_allocator(name: impl Into<String>, module: M) -> Self {
91 Self {
92 name: name.into(),
93 module_llvm: module,
94 kind: ModuleKind::Allocator,
95 thin_lto_buffer: None,
96 }
97 }
98
99 pub fn into_compiled_module(
100 self,
101 emit_obj: bool,
102 emit_dwarf_obj: bool,
103 emit_bc: bool,
104 emit_asm: bool,
105 emit_ir: bool,
106 outputs: &OutputFilenames,
107 invocation_temp: Option<&str>,
108 ) -> CompiledModule {
109 let object = emit_obj
110 .then(|| outputs.temp_path_for_cgu(OutputType::Object, &self.name, invocation_temp));
111 let dwarf_object =
112 emit_dwarf_obj.then(|| outputs.temp_path_dwo_for_cgu(&self.name, invocation_temp));
113 let bytecode = emit_bc
114 .then(|| outputs.temp_path_for_cgu(OutputType::Bitcode, &self.name, invocation_temp));
115 let assembly = emit_asm
116 .then(|| outputs.temp_path_for_cgu(OutputType::Assembly, &self.name, invocation_temp));
117 let llvm_ir = emit_ir.then(|| {
118 outputs.temp_path_for_cgu(OutputType::LlvmAssembly, &self.name, invocation_temp)
119 });
120
121 CompiledModule {
122 name: self.name.clone(),
123 kind: self.kind,
124 object,
125 dwarf_object,
126 bytecode,
127 assembly,
128 llvm_ir,
129 links_from_incr_cache: Vec::new(),
130 }
131 }
132}
133
134#[derive(Debug, Encodable, Decodable)]
135pub struct CompiledModule {
136 pub name: String,
137 pub kind: ModuleKind,
138 pub object: Option<PathBuf>,
139 pub dwarf_object: Option<PathBuf>,
140 pub bytecode: Option<PathBuf>,
141 pub assembly: Option<PathBuf>, pub llvm_ir: Option<PathBuf>, pub links_from_incr_cache: Vec<PathBuf>,
144}
145
146impl CompiledModule {
147 pub fn for_each_output(&self, mut emit: impl FnMut(&Path, OutputType)) {
149 if let Some(path) = self.object.as_deref() {
150 emit(path, OutputType::Object);
151 }
152 if let Some(path) = self.bytecode.as_deref() {
153 emit(path, OutputType::Bitcode);
154 }
155 if let Some(path) = self.llvm_ir.as_deref() {
156 emit(path, OutputType::LlvmAssembly);
157 }
158 if let Some(path) = self.assembly.as_deref() {
159 emit(path, OutputType::Assembly);
160 }
161 }
162}
163
164pub(crate) struct CachedModuleCodegen {
165 pub name: String,
166 pub source: WorkProduct,
167}
168
169#[derive(Copy, Clone, Debug, PartialEq, Encodable, Decodable)]
170pub enum ModuleKind {
171 Regular,
172 Metadata,
173 Allocator,
174}
175
176bitflags::bitflags! {
177 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
178 pub struct MemFlags: u8 {
179 const VOLATILE = 1 << 0;
180 const NONTEMPORAL = 1 << 1;
181 const UNALIGNED = 1 << 2;
182 }
183}
184
185#[derive(Clone, Debug, Encodable, Decodable, HashStable)]
186pub struct NativeLib {
187 pub kind: NativeLibKind,
188 pub name: Symbol,
189 pub filename: Option<Symbol>,
190 pub cfg: Option<ast::MetaItemInner>,
191 pub verbatim: bool,
192 pub dll_imports: Vec<cstore::DllImport>,
193}
194
195impl From<&cstore::NativeLib> for NativeLib {
196 fn from(lib: &cstore::NativeLib) -> Self {
197 NativeLib {
198 kind: lib.kind,
199 filename: lib.filename,
200 name: lib.name,
201 cfg: lib.cfg.clone(),
202 verbatim: lib.verbatim.unwrap_or(false),
203 dll_imports: lib.dll_imports.clone(),
204 }
205 }
206}
207
208#[derive(Debug, Encodable, Decodable)]
217pub struct CrateInfo {
218 pub target_cpu: String,
219 pub target_features: Vec<String>,
220 pub crate_types: Vec<CrateType>,
221 pub exported_symbols: UnordMap<CrateType, Vec<String>>,
222 pub linked_symbols: FxIndexMap<CrateType, Vec<(String, SymbolExportKind)>>,
223 pub local_crate_name: Symbol,
224 pub compiler_builtins: Option<CrateNum>,
225 pub profiler_runtime: Option<CrateNum>,
226 pub is_no_builtins: FxHashSet<CrateNum>,
227 pub native_libraries: FxIndexMap<CrateNum, Vec<NativeLib>>,
228 pub crate_name: UnordMap<CrateNum, Symbol>,
229 pub used_libraries: Vec<NativeLib>,
230 pub used_crate_source: UnordMap<CrateNum, Arc<CrateSource>>,
231 pub used_crates: Vec<CrateNum>,
232 pub dependency_formats: Arc<Dependencies>,
233 pub windows_subsystem: Option<String>,
234 pub natvis_debugger_visualizers: BTreeSet<DebuggerVisualizerFile>,
235 pub lint_levels: CodegenLintLevels,
236}
237
238pub struct TargetConfig {
242 pub target_features: Vec<Symbol>,
244 pub unstable_target_features: Vec<Symbol>,
246 pub has_reliable_f16: bool,
248 pub has_reliable_f16_math: bool,
250 pub has_reliable_f128: bool,
252 pub has_reliable_f128_math: bool,
254}
255
256#[derive(Encodable, Decodable)]
257pub struct CodegenResults {
258 pub modules: Vec<CompiledModule>,
259 pub allocator_module: Option<CompiledModule>,
260 pub metadata_module: Option<CompiledModule>,
261 pub metadata: rustc_metadata::EncodedMetadata,
262 pub crate_info: CrateInfo,
263}
264
265pub enum CodegenErrors {
266 WrongFileType,
267 EmptyVersionNumber,
268 EncodingVersionMismatch { version_array: String, rlink_version: u32 },
269 RustcVersionMismatch { rustc_version: String },
270 CorruptFile,
271}
272
273pub fn provide(providers: &mut Providers) {
274 crate::back::symbol_export::provide(providers);
275 crate::base::provide(providers);
276 crate::target_features::provide(providers);
277 crate::codegen_attrs::provide(providers);
278 providers.queries.global_backend_features = |_tcx: TyCtxt<'_>, ()| vec![];
279}
280
281pub fn looks_like_rust_object_file(filename: &str) -> bool {
284 let path = Path::new(filename);
285 let ext = path.extension().and_then(|s| s.to_str());
286 if ext != Some(OutputType::Object.extension()) {
287 return false;
289 }
290
291 let ext2 = path.file_stem().and_then(|s| Path::new(s).extension()).and_then(|s| s.to_str());
293
294 ext2 == Some(RUST_CGU_EXT)
296}
297
298const RLINK_VERSION: u32 = 1;
299const RLINK_MAGIC: &[u8] = b"rustlink";
300
301impl CodegenResults {
302 pub fn serialize_rlink(
303 sess: &Session,
304 rlink_file: &Path,
305 codegen_results: &CodegenResults,
306 outputs: &OutputFilenames,
307 ) -> Result<usize, io::Error> {
308 let mut encoder = FileEncoder::new(rlink_file)?;
309 encoder.emit_raw_bytes(RLINK_MAGIC);
310 encoder.emit_raw_bytes(&RLINK_VERSION.to_be_bytes());
313 encoder.emit_str(sess.cfg_version);
314 Encodable::encode(codegen_results, &mut encoder);
315 Encodable::encode(outputs, &mut encoder);
316 encoder.finish().map_err(|(_path, err)| err)
317 }
318
319 pub fn deserialize_rlink(
320 sess: &Session,
321 data: Vec<u8>,
322 ) -> Result<(Self, OutputFilenames), CodegenErrors> {
323 if !data.starts_with(RLINK_MAGIC) {
326 return Err(CodegenErrors::WrongFileType);
327 }
328 let data = &data[RLINK_MAGIC.len()..];
329 if data.len() < 4 {
330 return Err(CodegenErrors::EmptyVersionNumber);
331 }
332
333 let mut version_array: [u8; 4] = Default::default();
334 version_array.copy_from_slice(&data[..4]);
335 if u32::from_be_bytes(version_array) != RLINK_VERSION {
336 return Err(CodegenErrors::EncodingVersionMismatch {
337 version_array: String::from_utf8_lossy(&version_array).to_string(),
338 rlink_version: RLINK_VERSION,
339 });
340 }
341
342 let Ok(mut decoder) = MemDecoder::new(&data[4..], 0) else {
343 return Err(CodegenErrors::CorruptFile);
344 };
345 let rustc_version = decoder.read_str();
346 if rustc_version != sess.cfg_version {
347 return Err(CodegenErrors::RustcVersionMismatch {
348 rustc_version: rustc_version.to_string(),
349 });
350 }
351
352 let codegen_results = CodegenResults::decode(&mut decoder);
353 let outputs = OutputFilenames::decode(&mut decoder);
354 Ok((codegen_results, outputs))
355 }
356}
357
358#[derive(Copy, Clone, Debug, Encodable, Decodable)]
364pub struct CodegenLintLevels {
365 linker_messages: LevelAndSource,
366}
367
368impl CodegenLintLevels {
369 pub fn from_tcx(tcx: TyCtxt<'_>) -> Self {
370 Self { linker_messages: tcx.lint_level_at_node(LINKER_MESSAGES, CRATE_HIR_ID) }
371 }
372}