1use std::marker::PhantomData;
2use std::panic::AssertUnwindSafe;
3use std::path::{Path, PathBuf};
4use std::sync::Arc;
5use std::sync::mpsc::{Receiver, Sender, channel};
6use std::{assert_matches, fs, io, mem, str, thread};
78use rustc_abi::Size;
9use rustc_data_structures::fx::FxIndexMap;
10use rustc_data_structures::jobserver::{self, Acquired};
11use rustc_data_structures::memmap::Mmap;
12use rustc_data_structures::profiling::{SelfProfilerRef, VerboseTimingGuard};
13use rustc_errors::emitter::Emitter;
14use rustc_errors::{
15Diag, DiagArgMap, DiagCtxt, DiagCtxtHandle, DiagMessage, ErrCode, FatalError, FatalErrorMarker,
16Level, MultiSpan, Style, Suggestions, catch_fatal_errors,
17};
18use rustc_fs_util::link_or_copy;
19use rustc_hir::find_attr;
20use rustc_incremental::{
21copy_cgu_workproduct_to_incr_comp_cache_dir, in_incr_comp_dir, in_incr_comp_dir_sess,
22};
23use rustc_macros::{Decodable, Encodable};
24use rustc_metadata::fs::copy_to_stdout;
25use rustc_middle::bug;
26use rustc_middle::dep_graph::{WorkProduct, WorkProductId};
27use rustc_middle::ty::TyCtxt;
28use rustc_session::Session;
29use rustc_session::config::{
30self, CrateType, Lto, OptLevel, OutFileName, OutputFilenames, OutputType, Passes,
31SwitchWithOptPath,
32};
33use rustc_span::source_map::SourceMap;
34use rustc_span::{FileName, InnerSpan, Span, SpanData};
35use rustc_target::spec::{MergeFunctions, SanitizerSet};
36use tracing::debug;
3738use super::link::{self, ensure_removed};
39use super::lto::{self, SerializedModule};
40use crate::back::lto::check_lto_allowed;
41use crate::errors::ErrorCreatingRemarkDir;
42use crate::traits::*;
43use crate::{
44CachedModuleCodegen, CompiledModule, CompiledModules, CrateInfo, ModuleCodegen, ModuleKind,
45errors,
46};
4748const PRE_LTO_BC_EXT: &str = "pre-lto.bc";
4950/// What kind of object file to emit.
51#[derive(#[automatically_derived]
impl ::core::clone::Clone for EmitObj {
#[inline]
fn clone(&self) -> EmitObj {
let _: ::core::clone::AssertParamIsClone<BitcodeSection>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for EmitObj { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for EmitObj {
#[inline]
fn eq(&self, other: &EmitObj) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(EmitObj::ObjectCode(__self_0), EmitObj::ObjectCode(__arg1_0))
=> __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for EmitObj {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
EmitObj::None => { 0usize }
EmitObj::Bitcode => { 1usize }
EmitObj::ObjectCode(ref __binding_0) => { 2usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
EmitObj::None => {}
EmitObj::Bitcode => {}
EmitObj::ObjectCode(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
}
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for EmitObj {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { EmitObj::None }
1usize => { EmitObj::Bitcode }
2usize => {
EmitObj::ObjectCode(::rustc_serialize::Decodable::decode(__decoder))
}
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `EmitObj`, expected 0..3, actual {0}",
n));
}
}
}
}
};Decodable)]
52pub enum EmitObj {
53// No object file.
54None,
5556// Just uncompressed llvm bitcode. Provides easy compatibility with
57 // emscripten's ecc compiler, when used as the linker.
58Bitcode,
5960// Object code, possibly augmented with a bitcode section.
61ObjectCode(BitcodeSection),
62}
6364/// What kind of llvm bitcode section to embed in an object file.
65#[derive(#[automatically_derived]
impl ::core::clone::Clone for BitcodeSection {
#[inline]
fn clone(&self) -> BitcodeSection { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for BitcodeSection { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for BitcodeSection {
#[inline]
fn eq(&self, other: &BitcodeSection) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for BitcodeSection {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
BitcodeSection::None => { 0usize }
BitcodeSection::Full => { 1usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
BitcodeSection::None => {}
BitcodeSection::Full => {}
}
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for BitcodeSection {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { BitcodeSection::None }
1usize => { BitcodeSection::Full }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `BitcodeSection`, expected 0..2, actual {0}",
n));
}
}
}
}
};Decodable)]
66pub enum BitcodeSection {
67// No bitcode section.
68None,
6970// A full, uncompressed bitcode section.
71Full,
72}
7374/// Module-specific configuration for `optimize_and_codegen`.
75#[derive(const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for ModuleConfig {
fn encode(&self, __encoder: &mut __E) {
match *self {
ModuleConfig {
passes: ref __binding_0,
opt_level: ref __binding_1,
pgo_gen: ref __binding_2,
pgo_use: ref __binding_3,
pgo_sample_use: ref __binding_4,
debug_info_for_profiling: ref __binding_5,
instrument_coverage: ref __binding_6,
sanitizer: ref __binding_7,
sanitizer_recover: ref __binding_8,
sanitizer_dataflow_abilist: ref __binding_9,
sanitizer_memory_track_origins: ref __binding_10,
emit_pre_lto_bc: ref __binding_11,
emit_bc: ref __binding_12,
emit_ir: ref __binding_13,
emit_asm: ref __binding_14,
emit_obj: ref __binding_15,
emit_thin_lto_summary: ref __binding_16,
verify_llvm_ir: ref __binding_17,
lint_llvm_ir: ref __binding_18,
no_prepopulate_passes: ref __binding_19,
no_builtins: ref __binding_20,
vectorize_loop: ref __binding_21,
vectorize_slp: ref __binding_22,
merge_functions: ref __binding_23,
emit_lifetime_markers: ref __binding_24,
llvm_plugins: ref __binding_25,
autodiff: ref __binding_26,
offload: ref __binding_27 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_2,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_3,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_4,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_5,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_6,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_7,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_8,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_9,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_10,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_11,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_12,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_13,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_14,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_15,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_16,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_17,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_18,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_19,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_20,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_21,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_22,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_23,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_24,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_25,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_26,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_27,
__encoder);
}
}
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for ModuleConfig {
fn decode(__decoder: &mut __D) -> Self {
ModuleConfig {
passes: ::rustc_serialize::Decodable::decode(__decoder),
opt_level: ::rustc_serialize::Decodable::decode(__decoder),
pgo_gen: ::rustc_serialize::Decodable::decode(__decoder),
pgo_use: ::rustc_serialize::Decodable::decode(__decoder),
pgo_sample_use: ::rustc_serialize::Decodable::decode(__decoder),
debug_info_for_profiling: ::rustc_serialize::Decodable::decode(__decoder),
instrument_coverage: ::rustc_serialize::Decodable::decode(__decoder),
sanitizer: ::rustc_serialize::Decodable::decode(__decoder),
sanitizer_recover: ::rustc_serialize::Decodable::decode(__decoder),
sanitizer_dataflow_abilist: ::rustc_serialize::Decodable::decode(__decoder),
sanitizer_memory_track_origins: ::rustc_serialize::Decodable::decode(__decoder),
emit_pre_lto_bc: ::rustc_serialize::Decodable::decode(__decoder),
emit_bc: ::rustc_serialize::Decodable::decode(__decoder),
emit_ir: ::rustc_serialize::Decodable::decode(__decoder),
emit_asm: ::rustc_serialize::Decodable::decode(__decoder),
emit_obj: ::rustc_serialize::Decodable::decode(__decoder),
emit_thin_lto_summary: ::rustc_serialize::Decodable::decode(__decoder),
verify_llvm_ir: ::rustc_serialize::Decodable::decode(__decoder),
lint_llvm_ir: ::rustc_serialize::Decodable::decode(__decoder),
no_prepopulate_passes: ::rustc_serialize::Decodable::decode(__decoder),
no_builtins: ::rustc_serialize::Decodable::decode(__decoder),
vectorize_loop: ::rustc_serialize::Decodable::decode(__decoder),
vectorize_slp: ::rustc_serialize::Decodable::decode(__decoder),
merge_functions: ::rustc_serialize::Decodable::decode(__decoder),
emit_lifetime_markers: ::rustc_serialize::Decodable::decode(__decoder),
llvm_plugins: ::rustc_serialize::Decodable::decode(__decoder),
autodiff: ::rustc_serialize::Decodable::decode(__decoder),
offload: ::rustc_serialize::Decodable::decode(__decoder),
}
}
}
};Decodable)]
76pub struct ModuleConfig {
77/// Names of additional optimization passes to run.
78pub passes: Vec<String>,
79/// Some(level) to optimize at a certain level, or None to run
80 /// absolutely no optimizations (used for the allocator module).
81pub opt_level: Option<config::OptLevel>,
8283pub pgo_gen: SwitchWithOptPath,
84pub pgo_use: Option<PathBuf>,
85pub pgo_sample_use: Option<PathBuf>,
86pub debug_info_for_profiling: bool,
87pub instrument_coverage: bool,
8889pub sanitizer: SanitizerSet,
90pub sanitizer_recover: SanitizerSet,
91pub sanitizer_dataflow_abilist: Vec<String>,
92pub sanitizer_memory_track_origins: usize,
9394// Flags indicating which outputs to produce.
95pub emit_pre_lto_bc: bool,
96pub emit_bc: bool,
97pub emit_ir: bool,
98pub emit_asm: bool,
99pub emit_obj: EmitObj,
100pub emit_thin_lto_summary: bool,
101102// Miscellaneous flags. These are mostly copied from command-line
103 // options.
104pub verify_llvm_ir: bool,
105pub lint_llvm_ir: bool,
106pub no_prepopulate_passes: bool,
107pub no_builtins: bool,
108pub vectorize_loop: bool,
109pub vectorize_slp: bool,
110pub merge_functions: bool,
111pub emit_lifetime_markers: bool,
112pub llvm_plugins: Vec<String>,
113pub autodiff: Vec<config::AutoDiff>,
114pub offload: Vec<config::Offload>,
115}
116117impl ModuleConfig {
118fn new(kind: ModuleKind, tcx: TyCtxt<'_>, no_builtins: bool) -> ModuleConfig {
119// If it's a regular module, use `$regular`, otherwise use `$other`.
120 // `$regular` and `$other` are evaluated lazily.
121macro_rules! if_regular {
122 ($regular: expr, $other: expr) => {
123if let ModuleKind::Regular = kind { $regular } else { $other }
124 };
125 }
126127let sess = tcx.sess;
128let opt_level_and_size = if let ModuleKind::Regular = kind { Some(sess.opts.optimize) } else { None }if_regular!(Some(sess.opts.optimize), None);
129130let save_temps = sess.opts.cg.save_temps;
131132let should_emit_obj = sess.opts.output_types.contains_key(&OutputType::Exe)
133 || match kind {
134 ModuleKind::Regular => sess.opts.output_types.contains_key(&OutputType::Object),
135 ModuleKind::Allocator => false,
136 };
137138let emit_obj = if !should_emit_obj {
139 EmitObj::None140 } else if sess.target.obj_is_bitcode
141 || (sess.opts.cg.linker_plugin_lto.enabled() && !no_builtins)
142 {
143// This case is selected if the target uses objects as bitcode, or
144 // if linker plugin LTO is enabled. In the linker plugin LTO case
145 // the assumption is that the final link-step will read the bitcode
146 // and convert it to object code. This may be done by either the
147 // native linker or rustc itself.
148 //
149 // Note, however, that the linker-plugin-lto requested here is
150 // explicitly ignored for `#![no_builtins]` crates. These crates are
151 // specifically ignored by rustc's LTO passes and wouldn't work if
152 // loaded into the linker. These crates define symbols that LLVM
153 // lowers intrinsics to, and these symbol dependencies aren't known
154 // until after codegen. As a result any crate marked
155 // `#![no_builtins]` is assumed to not participate in LTO and
156 // instead goes on to generate object code.
157EmitObj::Bitcode158 } else if need_bitcode_in_object(tcx) {
159 EmitObj::ObjectCode(BitcodeSection::Full)
160 } else {
161 EmitObj::ObjectCode(BitcodeSection::None)
162 };
163164ModuleConfig {
165 passes: if let ModuleKind::Regular = kind {
sess.opts.cg.passes.clone()
} else { ::alloc::vec::Vec::new() }if_regular!(sess.opts.cg.passes.clone(), vec![]),
166167 opt_level: opt_level_and_size,
168169 pgo_gen: if let ModuleKind::Regular = kind {
sess.opts.cg.profile_generate.clone()
} else { SwitchWithOptPath::Disabled }if_regular!(
170 sess.opts.cg.profile_generate.clone(),
171 SwitchWithOptPath::Disabled
172 ),
173 pgo_use: if let ModuleKind::Regular = kind {
sess.opts.cg.profile_use.clone()
} else { None }if_regular!(sess.opts.cg.profile_use.clone(), None),
174 pgo_sample_use: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.profile_sample_use.clone()
} else { None }if_regular!(sess.opts.unstable_opts.profile_sample_use.clone(), None),
175 debug_info_for_profiling: sess.opts.unstable_opts.debug_info_for_profiling,
176 instrument_coverage: if let ModuleKind::Regular = kind {
sess.instrument_coverage()
} else { false }if_regular!(sess.instrument_coverage(), false),
177178 sanitizer: if let ModuleKind::Regular = kind {
sess.sanitizers()
} else { SanitizerSet::empty() }if_regular!(sess.sanitizers(), SanitizerSet::empty()),
179 sanitizer_dataflow_abilist: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.sanitizer_dataflow_abilist.clone()
} else { Vec::new() }if_regular!(
180 sess.opts.unstable_opts.sanitizer_dataflow_abilist.clone(),
181 Vec::new()
182 ),
183 sanitizer_recover: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.sanitizer_recover
} else { SanitizerSet::empty() }if_regular!(
184 sess.opts.unstable_opts.sanitizer_recover,
185 SanitizerSet::empty()
186 ),
187 sanitizer_memory_track_origins: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.sanitizer_memory_track_origins
} else { 0 }if_regular!(
188 sess.opts.unstable_opts.sanitizer_memory_track_origins,
1890
190),
191192 emit_pre_lto_bc: if let ModuleKind::Regular = kind {
save_temps || need_pre_lto_bitcode_for_incr_comp(sess)
} else { false }if_regular!(
193 save_temps || need_pre_lto_bitcode_for_incr_comp(sess),
194false
195),
196 emit_bc: if let ModuleKind::Regular = kind {
save_temps || sess.opts.output_types.contains_key(&OutputType::Bitcode)
} else { save_temps }if_regular!(
197 save_temps || sess.opts.output_types.contains_key(&OutputType::Bitcode),
198 save_temps
199 ),
200 emit_ir: if let ModuleKind::Regular = kind {
sess.opts.output_types.contains_key(&OutputType::LlvmAssembly)
} else { false }if_regular!(
201 sess.opts.output_types.contains_key(&OutputType::LlvmAssembly),
202false
203),
204 emit_asm: if let ModuleKind::Regular = kind {
sess.opts.output_types.contains_key(&OutputType::Assembly)
} else { false }if_regular!(
205 sess.opts.output_types.contains_key(&OutputType::Assembly),
206false
207),
208emit_obj,
209 emit_thin_lto_summary: if let ModuleKind::Regular = kind {
sess.opts.output_types.contains_key(&OutputType::ThinLinkBitcode)
} else { false }if_regular!(
210 sess.opts.output_types.contains_key(&OutputType::ThinLinkBitcode),
211false
212),
213214 verify_llvm_ir: sess.verify_llvm_ir(),
215 lint_llvm_ir: sess.opts.unstable_opts.lint_llvm_ir,
216 no_prepopulate_passes: sess.opts.cg.no_prepopulate_passes,
217 no_builtins: no_builtins || sess.target.no_builtins,
218219// Copy what clang does by turning on loop vectorization at O2 and
220 // slp vectorization at O3.
221vectorize_loop: !sess.opts.cg.no_vectorize_loops
222 && (sess.opts.optimize == config::OptLevel::More223 || sess.opts.optimize == config::OptLevel::Aggressive),
224 vectorize_slp: !sess.opts.cg.no_vectorize_slp
225 && sess.opts.optimize == config::OptLevel::Aggressive,
226227// Some targets (namely, NVPTX) interact badly with the
228 // MergeFunctions pass. This is because MergeFunctions can generate
229 // new function calls which may interfere with the target calling
230 // convention; e.g. for the NVPTX target, PTX kernels should not
231 // call other PTX kernels. MergeFunctions can also be configured to
232 // generate aliases instead, but aliases are not supported by some
233 // backends (again, NVPTX). Therefore, allow targets to opt out of
234 // the MergeFunctions pass, but otherwise keep the pass enabled (at
235 // O2 and O3) since it can be useful for reducing code size.
236merge_functions: match sess237 .opts
238 .unstable_opts
239 .merge_functions
240 .unwrap_or(sess.target.merge_functions)
241 {
242 MergeFunctions::Disabled => false,
243 MergeFunctions::Trampolines | MergeFunctions::Aliases => {
244use config::OptLevel::*;
245match sess.opts.optimize {
246Aggressive | More | SizeMin | Size => true,
247Less | No => false,
248 }
249 }
250 },
251252 emit_lifetime_markers: sess.emit_lifetime_markers(),
253 llvm_plugins: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.llvm_plugins.clone()
} else { ::alloc::vec::Vec::new() }if_regular!(sess.opts.unstable_opts.llvm_plugins.clone(), vec![]),
254 autodiff: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.autodiff.clone()
} else { ::alloc::vec::Vec::new() }if_regular!(sess.opts.unstable_opts.autodiff.clone(), vec![]),
255 offload: if let ModuleKind::Regular = kind {
sess.opts.unstable_opts.offload.clone()
} else { ::alloc::vec::Vec::new() }if_regular!(sess.opts.unstable_opts.offload.clone(), vec![]),
256 }
257 }
258259pub fn bitcode_needed(&self) -> bool {
260self.emit_bc
261 || self.emit_thin_lto_summary
262 || self.emit_obj == EmitObj::Bitcode263 || self.emit_obj == EmitObj::ObjectCode(BitcodeSection::Full)
264 }
265266pub fn embed_bitcode(&self) -> bool {
267self.emit_obj == EmitObj::ObjectCode(BitcodeSection::Full)
268 }
269}
270271/// Configuration passed to the function returned by the `target_machine_factory`.
272pub struct TargetMachineFactoryConfig {
273/// Split DWARF is enabled in LLVM by checking that `TM.MCOptions.SplitDwarfFile` isn't empty,
274 /// so the path to the dwarf object has to be provided when we create the target machine.
275 /// This can be ignored by backends which do not need it for their Split DWARF support.
276pub split_dwarf_file: Option<PathBuf>,
277278/// The name of the output object file. Used for setting OutputFilenames in target options
279 /// so that LLVM can emit the CodeView S_OBJNAME record in pdb files
280pub output_obj_file: Option<PathBuf>,
281}
282283impl TargetMachineFactoryConfig {
284pub fn new(cgcx: &CodegenContext, module_name: &str) -> TargetMachineFactoryConfig {
285let split_dwarf_file = if cgcx.target_can_use_split_dwarf {
286cgcx.output_filenames.split_dwarf_path(
287cgcx.split_debuginfo,
288cgcx.split_dwarf_kind,
289module_name,
290cgcx.invocation_temp.as_deref(),
291 )
292 } else {
293None294 };
295296let output_obj_file = Some(cgcx.output_filenames.temp_path_for_cgu(
297 OutputType::Object,
298module_name,
299cgcx.invocation_temp.as_deref(),
300 ));
301TargetMachineFactoryConfig { split_dwarf_file, output_obj_file }
302 }
303}
304305pub type TargetMachineFactoryFn<B> = Arc<
306dyn Fn(
307DiagCtxtHandle<'_>,
308TargetMachineFactoryConfig,
309 ) -> <B as WriteBackendMethods>::TargetMachine310 + Send311 + Sync,
312>;
313314/// Additional resources used by optimize_and_codegen (not module specific)
315#[derive(#[automatically_derived]
impl ::core::clone::Clone for CodegenContext {
#[inline]
fn clone(&self) -> CodegenContext {
CodegenContext {
lto: ::core::clone::Clone::clone(&self.lto),
use_linker_plugin_lto: ::core::clone::Clone::clone(&self.use_linker_plugin_lto),
dylib_lto: ::core::clone::Clone::clone(&self.dylib_lto),
prefer_dynamic: ::core::clone::Clone::clone(&self.prefer_dynamic),
save_temps: ::core::clone::Clone::clone(&self.save_temps),
fewer_names: ::core::clone::Clone::clone(&self.fewer_names),
time_trace: ::core::clone::Clone::clone(&self.time_trace),
crate_types: ::core::clone::Clone::clone(&self.crate_types),
output_filenames: ::core::clone::Clone::clone(&self.output_filenames),
invocation_temp: ::core::clone::Clone::clone(&self.invocation_temp),
module_config: ::core::clone::Clone::clone(&self.module_config),
opt_level: ::core::clone::Clone::clone(&self.opt_level),
backend_features: ::core::clone::Clone::clone(&self.backend_features),
msvc_imps_needed: ::core::clone::Clone::clone(&self.msvc_imps_needed),
is_pe_coff: ::core::clone::Clone::clone(&self.is_pe_coff),
target_can_use_split_dwarf: ::core::clone::Clone::clone(&self.target_can_use_split_dwarf),
target_arch: ::core::clone::Clone::clone(&self.target_arch),
target_is_like_darwin: ::core::clone::Clone::clone(&self.target_is_like_darwin),
target_is_like_aix: ::core::clone::Clone::clone(&self.target_is_like_aix),
target_is_like_gpu: ::core::clone::Clone::clone(&self.target_is_like_gpu),
split_debuginfo: ::core::clone::Clone::clone(&self.split_debuginfo),
split_dwarf_kind: ::core::clone::Clone::clone(&self.split_dwarf_kind),
pointer_size: ::core::clone::Clone::clone(&self.pointer_size),
remark: ::core::clone::Clone::clone(&self.remark),
remark_dir: ::core::clone::Clone::clone(&self.remark_dir),
incr_comp_session_dir: ::core::clone::Clone::clone(&self.incr_comp_session_dir),
parallel: ::core::clone::Clone::clone(&self.parallel),
}
}
}Clone, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for CodegenContext {
fn encode(&self, __encoder: &mut __E) {
match *self {
CodegenContext {
lto: ref __binding_0,
use_linker_plugin_lto: ref __binding_1,
dylib_lto: ref __binding_2,
prefer_dynamic: ref __binding_3,
save_temps: ref __binding_4,
fewer_names: ref __binding_5,
time_trace: ref __binding_6,
crate_types: ref __binding_7,
output_filenames: ref __binding_8,
invocation_temp: ref __binding_9,
module_config: ref __binding_10,
opt_level: ref __binding_11,
backend_features: ref __binding_12,
msvc_imps_needed: ref __binding_13,
is_pe_coff: ref __binding_14,
target_can_use_split_dwarf: ref __binding_15,
target_arch: ref __binding_16,
target_is_like_darwin: ref __binding_17,
target_is_like_aix: ref __binding_18,
target_is_like_gpu: ref __binding_19,
split_debuginfo: ref __binding_20,
split_dwarf_kind: ref __binding_21,
pointer_size: ref __binding_22,
remark: ref __binding_23,
remark_dir: ref __binding_24,
incr_comp_session_dir: ref __binding_25,
parallel: ref __binding_26 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_2,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_3,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_4,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_5,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_6,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_7,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_8,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_9,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_10,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_11,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_12,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_13,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_14,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_15,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_16,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_17,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_18,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_19,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_20,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_21,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_22,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_23,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_24,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_25,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_26,
__encoder);
}
}
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for CodegenContext {
fn decode(__decoder: &mut __D) -> Self {
CodegenContext {
lto: ::rustc_serialize::Decodable::decode(__decoder),
use_linker_plugin_lto: ::rustc_serialize::Decodable::decode(__decoder),
dylib_lto: ::rustc_serialize::Decodable::decode(__decoder),
prefer_dynamic: ::rustc_serialize::Decodable::decode(__decoder),
save_temps: ::rustc_serialize::Decodable::decode(__decoder),
fewer_names: ::rustc_serialize::Decodable::decode(__decoder),
time_trace: ::rustc_serialize::Decodable::decode(__decoder),
crate_types: ::rustc_serialize::Decodable::decode(__decoder),
output_filenames: ::rustc_serialize::Decodable::decode(__decoder),
invocation_temp: ::rustc_serialize::Decodable::decode(__decoder),
module_config: ::rustc_serialize::Decodable::decode(__decoder),
opt_level: ::rustc_serialize::Decodable::decode(__decoder),
backend_features: ::rustc_serialize::Decodable::decode(__decoder),
msvc_imps_needed: ::rustc_serialize::Decodable::decode(__decoder),
is_pe_coff: ::rustc_serialize::Decodable::decode(__decoder),
target_can_use_split_dwarf: ::rustc_serialize::Decodable::decode(__decoder),
target_arch: ::rustc_serialize::Decodable::decode(__decoder),
target_is_like_darwin: ::rustc_serialize::Decodable::decode(__decoder),
target_is_like_aix: ::rustc_serialize::Decodable::decode(__decoder),
target_is_like_gpu: ::rustc_serialize::Decodable::decode(__decoder),
split_debuginfo: ::rustc_serialize::Decodable::decode(__decoder),
split_dwarf_kind: ::rustc_serialize::Decodable::decode(__decoder),
pointer_size: ::rustc_serialize::Decodable::decode(__decoder),
remark: ::rustc_serialize::Decodable::decode(__decoder),
remark_dir: ::rustc_serialize::Decodable::decode(__decoder),
incr_comp_session_dir: ::rustc_serialize::Decodable::decode(__decoder),
parallel: ::rustc_serialize::Decodable::decode(__decoder),
}
}
}
};Decodable)]
316pub struct CodegenContext {
317// Resources needed when running LTO
318pub lto: Lto,
319pub use_linker_plugin_lto: bool,
320pub dylib_lto: bool,
321pub prefer_dynamic: bool,
322pub save_temps: bool,
323pub fewer_names: bool,
324pub time_trace: bool,
325pub crate_types: Vec<CrateType>,
326pub output_filenames: Arc<OutputFilenames>,
327pub invocation_temp: Option<String>,
328pub module_config: Arc<ModuleConfig>,
329pub opt_level: OptLevel,
330pub backend_features: Vec<String>,
331pub msvc_imps_needed: bool,
332pub is_pe_coff: bool,
333pub target_can_use_split_dwarf: bool,
334pub target_arch: String,
335pub target_is_like_darwin: bool,
336pub target_is_like_aix: bool,
337pub target_is_like_gpu: bool,
338pub split_debuginfo: rustc_target::spec::SplitDebuginfo,
339pub split_dwarf_kind: rustc_session::config::SplitDwarfKind,
340pub pointer_size: Size,
341342/// LLVM optimizations for which we want to print remarks.
343pub remark: Passes,
344/// Directory into which should the LLVM optimization remarks be written.
345 /// If `None`, they will be written to stderr.
346pub remark_dir: Option<PathBuf>,
347/// The incremental compilation session directory, or None if we are not
348 /// compiling incrementally
349pub incr_comp_session_dir: Option<PathBuf>,
350/// `true` if the codegen should be run in parallel.
351 ///
352 /// Depends on [`ExtraBackendMethods::supports_parallel()`] and `-Zno_parallel_backend`.
353pub parallel: bool,
354}
355356fn generate_thin_lto_work<B: WriteBackendMethods>(
357 cgcx: &CodegenContext,
358 prof: &SelfProfilerRef,
359 dcx: DiagCtxtHandle<'_>,
360 exported_symbols_for_lto: &[String],
361 each_linked_rlib_for_lto: &[PathBuf],
362 needs_thin_lto: Vec<ThinLtoInput<B>>,
363) -> Vec<(ThinLtoWorkItem<B>, u64)> {
364let _prof_timer = prof.generic_activity("codegen_thin_generate_lto_work");
365366let (lto_modules, copy_jobs) = B::run_thin_lto(
367cgcx,
368prof,
369dcx,
370exported_symbols_for_lto,
371each_linked_rlib_for_lto,
372needs_thin_lto,
373 );
374lto_modules375 .into_iter()
376 .map(|module| {
377let cost = module.cost();
378 (ThinLtoWorkItem::ThinLto(module), cost)
379 })
380 .chain(copy_jobs.into_iter().map(|wp| {
381 (
382 ThinLtoWorkItem::CopyPostLtoArtifacts(CachedModuleCodegen {
383 name: wp.cgu_name.clone(),
384 source: wp,
385 }),
3860, // copying is very cheap
387)
388 }))
389 .collect()
390}
391392enum MaybeLtoModules<B: WriteBackendMethods> {
393 NoLto(CompiledModules),
394 FatLto {
395 cgcx: CodegenContext,
396 exported_symbols_for_lto: Arc<Vec<String>>,
397 each_linked_rlib_file_for_lto: Vec<PathBuf>,
398 needs_fat_lto: Vec<FatLtoInput<B>>,
399 },
400 ThinLto {
401 cgcx: CodegenContext,
402 exported_symbols_for_lto: Arc<Vec<String>>,
403 each_linked_rlib_file_for_lto: Vec<PathBuf>,
404 needs_thin_lto: Vec<ThinLtoInput<B>>,
405 },
406}
407408fn need_bitcode_in_object(tcx: TyCtxt<'_>) -> bool {
409let sess = tcx.sess;
410sess.opts.cg.embed_bitcode
411 && tcx.crate_types().contains(&CrateType::Rlib)
412 && sess.opts.output_types.contains_key(&OutputType::Exe)
413}
414415fn need_pre_lto_bitcode_for_incr_comp(sess: &Session) -> bool {
416if sess.opts.incremental.is_none() {
417return false;
418 }
419420match sess.lto() {
421 Lto::No => false,
422 Lto::Fat | Lto::Thin | Lto::ThinLocal => true,
423 }
424}
425426pub(crate) fn start_async_codegen<B: ExtraBackendMethods>(
427 backend: B,
428 tcx: TyCtxt<'_>,
429 crate_info: &CrateInfo,
430 allocator_module: Option<ModuleCodegen<B::Module>>,
431) -> OngoingCodegen<B> {
432let (coordinator_send, coordinator_receive) = channel();
433434let no_builtins = {
'done:
{
for i in tcx.hir_krate_attrs() {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(NoBuiltins) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()find_attr!(tcx, crate, NoBuiltins);
435436let regular_config = ModuleConfig::new(ModuleKind::Regular, tcx, no_builtins);
437let allocator_config = ModuleConfig::new(ModuleKind::Allocator, tcx, no_builtins);
438439let (shared_emitter, shared_emitter_main) = SharedEmitter::new();
440let (codegen_worker_send, codegen_worker_receive) = channel();
441442let coordinator_thread = start_executing_work(
443backend.clone(),
444tcx,
445crate_info,
446shared_emitter,
447codegen_worker_send,
448coordinator_receive,
449Arc::new(regular_config),
450Arc::new(allocator_config),
451allocator_module,
452coordinator_send.clone(),
453 );
454455OngoingCodegen {
456backend,
457458codegen_worker_receive,
459shared_emitter_main,
460 coordinator: Coordinator {
461 sender: coordinator_send,
462 future: Some(coordinator_thread),
463 phantom: PhantomData,
464 },
465 output_filenames: Arc::clone(tcx.output_filenames(())),
466 }
467}
468469fn copy_all_cgu_workproducts_to_incr_comp_cache_dir(
470 sess: &Session,
471 compiled_modules: &CompiledModules,
472) -> FxIndexMap<WorkProductId, WorkProduct> {
473let mut work_products = FxIndexMap::default();
474475if sess.opts.incremental.is_none() {
476return work_products;
477 }
478479let _timer = sess.timer("copy_all_cgu_workproducts_to_incr_comp_cache_dir");
480481for module in compiled_modules.modules.iter().filter(|m| m.kind == ModuleKind::Regular) {
482let mut files = Vec::new();
483if let Some(object_file_path) = &module.object {
484 files.push((OutputType::Object.extension(), object_file_path.as_path()));
485 }
486if let Some(dwarf_object_file_path) = &module.dwarf_object {
487 files.push(("dwo", dwarf_object_file_path.as_path()));
488 }
489if let Some(path) = &module.assembly {
490 files.push((OutputType::Assembly.extension(), path.as_path()));
491 }
492if let Some(path) = &module.llvm_ir {
493 files.push((OutputType::LlvmAssembly.extension(), path.as_path()));
494 }
495if let Some(path) = &module.bytecode {
496 files.push((OutputType::Bitcode.extension(), path.as_path()));
497 }
498if let Some((id, product)) = copy_cgu_workproduct_to_incr_comp_cache_dir(
499 sess,
500&module.name,
501 files.as_slice(),
502&module.links_from_incr_cache,
503 ) {
504 work_products.insert(id, product);
505 }
506 }
507508work_products509}
510511pub fn produce_final_output_artifacts(
512 sess: &Session,
513 compiled_modules: &CompiledModules,
514 crate_output: &OutputFilenames,
515) {
516let mut user_wants_bitcode = false;
517let mut user_wants_objects = false;
518519// Produce final compile outputs.
520let copy_gracefully = |from: &Path, to: &OutFileName| match to {
521 OutFileName::Stdoutif let Err(e) = copy_to_stdout(from) => {
522sess.dcx().emit_err(errors::CopyPath::new(from, to.as_path(), e));
523 }
524 OutFileName::Real(path) if let Err(e) = fs::copy(from, path) => {
525sess.dcx().emit_err(errors::CopyPath::new(from, path, e));
526 }
527_ => {}
528 };
529530let copy_if_one_unit = |output_type: OutputType, keep_numbered: bool| {
531if let [module] = &compiled_modules.modules[..] {
532// 1) Only one codegen unit. In this case it's no difficulty
533 // to copy `foo.0.x` to `foo.x`.
534let path = crate_output.temp_path_for_cgu(
535output_type,
536&module.name,
537sess.invocation_temp.as_deref(),
538 );
539let output = crate_output.path(output_type);
540if !output_type.is_text_output() && output.is_tty() {
541sess.dcx()
542 .emit_err(errors::BinaryOutputToTty { shorthand: output_type.shorthand() });
543 } else {
544copy_gracefully(&path, &output);
545 }
546if !sess.opts.cg.save_temps && !keep_numbered {
547// The user just wants `foo.x`, not `foo.#module-name#.x`.
548ensure_removed(sess.dcx(), &path);
549 }
550 } else {
551if crate_output.outputs.contains_explicit_name(&output_type) {
552// 2) Multiple codegen units, with `--emit foo=some_name`. We have
553 // no good solution for this case, so warn the user.
554sess.dcx()
555 .emit_warn(errors::IgnoringEmitPath { extension: output_type.extension() });
556 } else if crate_output.single_output_file.is_some() {
557// 3) Multiple codegen units, with `-o some_name`. We have
558 // no good solution for this case, so warn the user.
559sess.dcx().emit_warn(errors::IgnoringOutput { extension: output_type.extension() });
560 } else {
561// 4) Multiple codegen units, but no explicit name. We
562 // just leave the `foo.0.x` files in place.
563 // (We don't have to do any work in this case.)
564}
565 }
566 };
567568// Flag to indicate whether the user explicitly requested bitcode.
569 // Otherwise, we produced it only as a temporary output, and will need
570 // to get rid of it.
571for output_type in crate_output.outputs.keys() {
572match *output_type {
573 OutputType::Bitcode => {
574 user_wants_bitcode = true;
575// Copy to .bc, but always keep the .0.bc. There is a later
576 // check to figure out if we should delete .0.bc files, or keep
577 // them for making an rlib.
578copy_if_one_unit(OutputType::Bitcode, true);
579 }
580 OutputType::ThinLinkBitcode => {
581 copy_if_one_unit(OutputType::ThinLinkBitcode, false);
582 }
583 OutputType::LlvmAssembly => {
584 copy_if_one_unit(OutputType::LlvmAssembly, false);
585 }
586 OutputType::Assembly => {
587 copy_if_one_unit(OutputType::Assembly, false);
588 }
589 OutputType::Object => {
590 user_wants_objects = true;
591 copy_if_one_unit(OutputType::Object, true);
592 }
593 OutputType::Mir | OutputType::Metadata | OutputType::Exe | OutputType::DepInfo => {}
594 }
595 }
596597// Clean up unwanted temporary files.
598599 // We create the following files by default:
600 // - #crate#.#module-name#.rcgu.bc
601 // - #crate#.#module-name#.rcgu.o
602 // - #crate#.o (linked from crate.##.rcgu.o)
603 // - #crate#.bc (copied from crate.##.rcgu.bc)
604 // We may create additional files if requested by the user (through
605 // `-C save-temps` or `--emit=` flags).
606607if !sess.opts.cg.save_temps {
608// Remove the temporary .#module-name#.rcgu.o objects. If the user didn't
609 // explicitly request bitcode (with --emit=bc), and the bitcode is not
610 // needed for building an rlib, then we must remove .#module-name#.bc as
611 // well.
612613 // Specific rules for keeping .#module-name#.rcgu.bc:
614 // - If the user requested bitcode (`user_wants_bitcode`), and
615 // codegen_units > 1, then keep it.
616 // - If the user requested bitcode but codegen_units == 1, then we
617 // can toss .#module-name#.rcgu.bc because we copied it to .bc earlier.
618 // - If we're not building an rlib and the user didn't request
619 // bitcode, then delete .#module-name#.rcgu.bc.
620 // If you change how this works, also update back::link::link_rlib,
621 // where .#module-name#.rcgu.bc files are (maybe) deleted after making an
622 // rlib.
623let needs_crate_object = crate_output.outputs.contains_key(&OutputType::Exe);
624625let keep_numbered_bitcode = user_wants_bitcode && sess.codegen_units().as_usize() > 1;
626627let keep_numbered_objects =
628needs_crate_object || (user_wants_objects && sess.codegen_units().as_usize() > 1);
629630for module in compiled_modules.modules.iter() {
631if !keep_numbered_objects {
632if let Some(ref path) = module.object {
633 ensure_removed(sess.dcx(), path);
634 }
635636if let Some(ref path) = module.dwarf_object {
637 ensure_removed(sess.dcx(), path);
638 }
639 }
640641if let Some(ref path) = module.bytecode {
642if !keep_numbered_bitcode {
643 ensure_removed(sess.dcx(), path);
644 }
645 }
646 }
647648if !user_wants_bitcode649 && let Some(ref allocator_module) = compiled_modules.allocator_module
650 && let Some(ref path) = allocator_module.bytecode
651 {
652ensure_removed(sess.dcx(), path);
653 }
654 }
655656if sess.opts.json_artifact_notifications {
657if let [module] = &compiled_modules.modules[..] {
658module.for_each_output(|_path, ty| {
659if sess.opts.output_types.contains_key(&ty) {
660let descr = ty.shorthand();
661// for single cgu file is renamed to drop cgu specific suffix
662 // so we regenerate it the same way
663let path = crate_output.path(ty);
664sess.dcx().emit_artifact_notification(path.as_path(), descr);
665 }
666 });
667 } else {
668for module in &compiled_modules.modules {
669 module.for_each_output(|path, ty| {
670if sess.opts.output_types.contains_key(&ty) {
671let descr = ty.shorthand();
672 sess.dcx().emit_artifact_notification(&path, descr);
673 }
674 });
675 }
676 }
677 }
678679// We leave the following files around by default:
680 // - #crate#.o
681 // - #crate#.bc
682 // These are used in linking steps and will be cleaned up afterward.
683}
684685pub(crate) enum WorkItem<B: WriteBackendMethods> {
686/// Optimize a newly codegened, totally unoptimized module.
687Optimize(ModuleCodegen<B::Module>),
688/// Copy the post-LTO artifacts from the incremental cache to the output
689 /// directory.
690CopyPostLtoArtifacts(CachedModuleCodegen),
691}
692693enum ThinLtoWorkItem<B: WriteBackendMethods> {
694/// Copy the post-LTO artifacts from the incremental cache to the output
695 /// directory.
696CopyPostLtoArtifacts(CachedModuleCodegen),
697/// Performs thin-LTO on the given module.
698ThinLto(lto::ThinModule<B>),
699}
700701// `pthread_setname()` on *nix ignores anything beyond the first 15
702// bytes. Use short descriptions to maximize the space available for
703// the module name.
704#[cfg(not(windows))]
705fn desc(short: &str, _long: &str, name: &str) -> String {
706// The short label is three bytes, and is followed by a space. That
707 // leaves 11 bytes for the CGU name. How we obtain those 11 bytes
708 // depends on the CGU name form.
709 //
710 // - Non-incremental, e.g. `regex.f10ba03eb5ec7975-cgu.0`: the part
711 // before the `-cgu.0` is the same for every CGU, so use the
712 // `cgu.0` part. The number suffix will be different for each
713 // CGU.
714 //
715 // - Incremental (normal), e.g. `2i52vvl2hco29us0`: use the whole
716 // name because each CGU will have a unique ASCII hash, and the
717 // first 11 bytes will be enough to identify it.
718 //
719 // - Incremental (with `-Zhuman-readable-cgu-names`), e.g.
720 // `regex.f10ba03eb5ec7975-re_builder.volatile`: use the whole
721 // name. The first 11 bytes won't be enough to uniquely identify
722 // it, but no obvious substring will, and this is a rarely used
723 // option so it doesn't matter much.
724 //
725match (&short.len(), &3) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(short.len(), 3);
726let name = if let Some(index) = name.find("-cgu.") {
727&name[index + 1..] // +1 skips the leading '-'.
728} else {
729name730 };
731::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} {1}", short, name))
})format!("{short} {name}")732}
733734// Windows has no thread name length limit, so use more descriptive names.
735#[cfg(windows)]
736fn desc(_short: &str, long: &str, name: &str) -> String {
737format!("{long} {name}")
738}
739740impl<B: WriteBackendMethods> WorkItem<B> {
741/// Generate a short description of this work item suitable for use as a thread name.
742fn short_description(&self) -> String {
743match self {
744 WorkItem::Optimize(m) => desc("opt", "optimize module", &m.name),
745 WorkItem::CopyPostLtoArtifacts(m) => desc("cpy", "copy LTO artifacts for", &m.name),
746 }
747 }
748}
749750impl<B: WriteBackendMethods> ThinLtoWorkItem<B> {
751/// Generate a short description of this work item suitable for use as a thread name.
752fn short_description(&self) -> String {
753match self {
754 ThinLtoWorkItem::CopyPostLtoArtifacts(m) => {
755desc("cpy", "copy LTO artifacts for", &m.name)
756 }
757 ThinLtoWorkItem::ThinLto(m) => desc("lto", "thin-LTO module", m.name()),
758 }
759 }
760}
761762/// A result produced by the backend.
763pub(crate) enum WorkItemResult<B: WriteBackendMethods> {
764/// The backend has finished compiling a CGU, nothing more required.
765Finished(CompiledModule),
766767/// The backend has finished compiling a CGU, which now needs to go through
768 /// fat LTO.
769NeedsFatLto(FatLtoInput<B>),
770771/// The backend has finished compiling a CGU, which now needs to go through
772 /// thin LTO.
773NeedsThinLto(String, B::ModuleBuffer),
774}
775776pub enum FatLtoInput<B: WriteBackendMethods> {
777 Serialized { name: String, buffer: SerializedModule<B::ModuleBuffer> },
778 InMemory(ModuleCodegen<B::Module>),
779}
780781pub enum ThinLtoInput<B: WriteBackendMethods> {
782 Red { name: String, buffer: SerializedModule<B::ModuleBuffer> },
783 Green { wp: WorkProduct, buffer: SerializedModule<B::ModuleBuffer> },
784}
785786/// Actual LTO type we end up choosing based on multiple factors.
787pub(crate) enum ComputedLtoType {
788 No,
789 Thin,
790 Fat,
791}
792793pub(crate) fn compute_per_cgu_lto_type(
794 sess_lto: &Lto,
795 linker_does_lto: bool,
796 sess_crate_types: &[CrateType],
797) -> ComputedLtoType {
798// If the linker does LTO, we don't have to do it. Note that we
799 // keep doing full LTO, if it is requested, as not to break the
800 // assumption that the output will be a single module.
801802 // We ignore a request for full crate graph LTO if the crate type
803 // is only an rlib, as there is no full crate graph to process,
804 // that'll happen later.
805 //
806 // This use case currently comes up primarily for targets that
807 // require LTO so the request for LTO is always unconditionally
808 // passed down to the backend, but we don't actually want to do
809 // anything about it yet until we've got a final product.
810let is_rlib = #[allow(non_exhaustive_omitted_patterns)] match sess_crate_types {
[CrateType::Rlib] => true,
_ => false,
}matches!(sess_crate_types, [CrateType::Rlib]);
811812match sess_lto {
813 Lto::ThinLocalif !linker_does_lto => ComputedLtoType::Thin,
814 Lto::Thinif !linker_does_lto && !is_rlib => ComputedLtoType::Thin,
815 Lto::Fatif !is_rlib => ComputedLtoType::Fat,
816_ => ComputedLtoType::No,
817 }
818}
819820fn execute_optimize_work_item<B: WriteBackendMethods>(
821 cgcx: &CodegenContext,
822 prof: &SelfProfilerRef,
823 shared_emitter: SharedEmitter,
824mut module: ModuleCodegen<B::Module>,
825) -> WorkItemResult<B> {
826let _timer = prof.generic_activity_with_arg("codegen_module_optimize", &*module.name);
827828 B::optimize(cgcx, prof, &shared_emitter, &mut module, &cgcx.module_config);
829830// After we've done the initial round of optimizations we need to
831 // decide whether to synchronously codegen this module or ship it
832 // back to the coordinator thread for further LTO processing (which
833 // has to wait for all the initial modules to be optimized).
834835let lto_type =
836compute_per_cgu_lto_type(&cgcx.lto, cgcx.use_linker_plugin_lto, &cgcx.crate_types);
837838// If we're doing some form of incremental LTO then we need to be sure to
839 // save our module to disk first.
840let bitcode = if cgcx.module_config.emit_pre_lto_bc {
841let filename = pre_lto_bitcode_filename(&module.name);
842cgcx.incr_comp_session_dir.as_ref().map(|path| path.join(&filename))
843 } else {
844None845 };
846847match lto_type {
848 ComputedLtoType::No => {
849let module = B::codegen(cgcx, &prof, &shared_emitter, module, &cgcx.module_config);
850 WorkItemResult::Finished(module)
851 }
852 ComputedLtoType::Thin => {
853let thin_buffer = B::serialize_module(module.module_llvm, true);
854if let Some(path) = bitcode {
855 fs::write(&path, thin_buffer.data()).unwrap_or_else(|e| {
856{
::core::panicking::panic_fmt(format_args!("Error writing pre-lto-bitcode file `{0}`: {1}",
path.display(), e));
};panic!("Error writing pre-lto-bitcode file `{}`: {}", path.display(), e);
857 });
858 }
859 WorkItemResult::NeedsThinLto(module.name, thin_buffer)
860 }
861 ComputedLtoType::Fat => match bitcode {
862Some(path) => {
863let buffer = B::serialize_module(module.module_llvm, false);
864 fs::write(&path, buffer.data()).unwrap_or_else(|e| {
865{
::core::panicking::panic_fmt(format_args!("Error writing pre-lto-bitcode file `{0}`: {1}",
path.display(), e));
};panic!("Error writing pre-lto-bitcode file `{}`: {}", path.display(), e);
866 });
867 WorkItemResult::NeedsFatLto(FatLtoInput::Serialized {
868 name: module.name,
869 buffer: SerializedModule::Local(buffer),
870 })
871 }
872None => WorkItemResult::NeedsFatLto(FatLtoInput::InMemory(module)),
873 },
874 }
875}
876877fn execute_copy_from_cache_work_item(
878 cgcx: &CodegenContext,
879 prof: &SelfProfilerRef,
880 shared_emitter: SharedEmitter,
881 module: CachedModuleCodegen,
882) -> CompiledModule {
883let _timer =
884prof.generic_activity_with_arg("codegen_copy_artifacts_from_incr_cache", &*module.name);
885886let dcx = DiagCtxt::new(Box::new(shared_emitter));
887let dcx = dcx.handle();
888889let incr_comp_session_dir = cgcx.incr_comp_session_dir.as_ref().unwrap();
890891let mut links_from_incr_cache = Vec::new();
892893let mut load_from_incr_comp_dir = |output_path: PathBuf, saved_path: &str| {
894let source_file = in_incr_comp_dir(incr_comp_session_dir, saved_path);
895{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_codegen_ssa/src/back/write.rs:895",
"rustc_codegen_ssa::back::write", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_codegen_ssa/src/back/write.rs"),
::tracing_core::__macro_support::Option::Some(895u32),
::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::write"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("copying preexisting module `{0}` from {1:?} to {2}",
module.name, source_file, output_path.display()) as
&dyn Value))])
});
} else { ; }
};debug!(
896"copying preexisting module `{}` from {:?} to {}",
897 module.name,
898 source_file,
899 output_path.display()
900 );
901match link_or_copy(&source_file, &output_path) {
902Ok(_) => {
903links_from_incr_cache.push(source_file);
904Some(output_path)
905 }
906Err(error) => {
907dcx.emit_err(errors::CopyPathBuf { source_file, output_path, error });
908None909 }
910 }
911 };
912913let dwarf_object =
914module.source.saved_files.get("dwo").as_ref().and_then(|saved_dwarf_object_file| {
915let dwarf_obj_out = cgcx916 .output_filenames
917 .split_dwarf_path(
918cgcx.split_debuginfo,
919cgcx.split_dwarf_kind,
920&module.name,
921cgcx.invocation_temp.as_deref(),
922 )
923 .expect(
924"saved dwarf object in work product but `split_dwarf_path` returned `None`",
925 );
926load_from_incr_comp_dir(dwarf_obj_out, saved_dwarf_object_file)
927 });
928929let mut load_from_incr_cache = |perform, output_type: OutputType| {
930if perform {
931let saved_file = module.source.saved_files.get(output_type.extension())?;
932let output_path = cgcx.output_filenames.temp_path_for_cgu(
933output_type,
934&module.name,
935cgcx.invocation_temp.as_deref(),
936 );
937load_from_incr_comp_dir(output_path, &saved_file)
938 } else {
939None940 }
941 };
942943let module_config = &cgcx.module_config;
944let should_emit_obj = module_config.emit_obj != EmitObj::None;
945let assembly = load_from_incr_cache(module_config.emit_asm, OutputType::Assembly);
946let llvm_ir = load_from_incr_cache(module_config.emit_ir, OutputType::LlvmAssembly);
947let bytecode = load_from_incr_cache(module_config.emit_bc, OutputType::Bitcode);
948let object = load_from_incr_cache(should_emit_obj, OutputType::Object);
949if should_emit_obj && object.is_none() {
950dcx.emit_fatal(errors::NoSavedObjectFile { cgu_name: &module.name })
951 }
952953CompiledModule {
954links_from_incr_cache,
955 kind: ModuleKind::Regular,
956 name: module.name,
957object,
958dwarf_object,
959bytecode,
960assembly,
961llvm_ir,
962 }
963}
964965fn do_fat_lto<B: WriteBackendMethods>(
966 cgcx: &CodegenContext,
967 prof: &SelfProfilerRef,
968 shared_emitter: SharedEmitter,
969 tm_factory: TargetMachineFactoryFn<B>,
970 exported_symbols_for_lto: &[String],
971 each_linked_rlib_for_lto: &[PathBuf],
972 needs_fat_lto: Vec<FatLtoInput<B>>,
973) -> CompiledModule {
974let _timer = prof.verbose_generic_activity("LLVM_fatlto");
975976let dcx = DiagCtxt::new(Box::new(shared_emitter.clone()));
977let dcx = dcx.handle();
978979check_lto_allowed(&cgcx, dcx);
980981 B::optimize_and_codegen_fat_lto(
982cgcx,
983prof,
984&shared_emitter,
985tm_factory,
986exported_symbols_for_lto,
987each_linked_rlib_for_lto,
988needs_fat_lto,
989 )
990}
991992fn do_thin_lto<B: WriteBackendMethods>(
993 cgcx: &CodegenContext,
994 prof: &SelfProfilerRef,
995 shared_emitter: SharedEmitter,
996 tm_factory: TargetMachineFactoryFn<B>,
997 exported_symbols_for_lto: Arc<Vec<String>>,
998 each_linked_rlib_for_lto: Vec<PathBuf>,
999 needs_thin_lto: Vec<ThinLtoInput<B>>,
1000) -> Vec<CompiledModule> {
1001let _timer = prof.verbose_generic_activity("LLVM_thinlto");
10021003let dcx = DiagCtxt::new(Box::new(shared_emitter.clone()));
1004let dcx = dcx.handle();
10051006check_lto_allowed(&cgcx, dcx);
10071008let (coordinator_send, coordinator_receive) = channel();
10091010// First up, convert our jobserver into a helper thread so we can use normal
1011 // mpsc channels to manage our messages and such.
1012 // After we've requested tokens then we'll, when we can,
1013 // get tokens on `coordinator_receive` which will
1014 // get managed in the main loop below.
1015let coordinator_send2 = coordinator_send.clone();
1016let helper = jobserver::client()
1017 .into_helper_thread(move |token| {
1018drop(coordinator_send2.send(ThinLtoMessage::Token(token)));
1019 })
1020 .expect("failed to spawn helper thread");
10211022let mut work_items = ::alloc::vec::Vec::new()vec![];
10231024// We have LTO work to do. Perform the serial work here of
1025 // figuring out what we're going to LTO and then push a
1026 // bunch of work items onto our queue to do LTO. This all
1027 // happens on the coordinator thread but it's very quick so
1028 // we don't worry about tokens.
1029for (work, cost) in generate_thin_lto_work::<B>(
1030 cgcx,
1031 prof,
1032 dcx,
1033&exported_symbols_for_lto,
1034&each_linked_rlib_for_lto,
1035 needs_thin_lto,
1036 ) {
1037let insertion_index =
1038 work_items.binary_search_by_key(&cost, |&(_, cost)| cost).unwrap_or_else(|e| e);
1039 work_items.insert(insertion_index, (work, cost));
1040if cgcx.parallel {
1041 helper.request_token();
1042 }
1043 }
10441045let mut codegen_aborted = None;
10461047// These are the Jobserver Tokens we currently hold. Does not include
1048 // the implicit Token the compiler process owns no matter what.
1049let mut tokens = ::alloc::vec::Vec::new()vec![];
10501051// Amount of tokens that are used (including the implicit token).
1052let mut used_token_count = 0;
10531054let mut compiled_modules = ::alloc::vec::Vec::new()vec![];
10551056// Run the message loop while there's still anything that needs message
1057 // processing. Note that as soon as codegen is aborted we simply want to
1058 // wait for all existing work to finish, so many of the conditions here
1059 // only apply if codegen hasn't been aborted as they represent pending
1060 // work to be done.
1061loop {
1062if codegen_aborted.is_none() {
1063if used_token_count == 0 && work_items.is_empty() {
1064// All codegen work is done.
1065break;
1066 }
10671068// Spin up what work we can, only doing this while we've got available
1069 // parallelism slots and work left to spawn.
1070while used_token_count < tokens.len() + 1
1071&& let Some((item, _)) = work_items.pop()
1072 {
1073 spawn_thin_lto_work(
1074&cgcx,
1075 prof,
1076 shared_emitter.clone(),
1077 Arc::clone(&tm_factory),
1078 coordinator_send.clone(),
1079 item,
1080 );
1081 used_token_count += 1;
1082 }
1083 } else {
1084// Don't queue up any more work if codegen was aborted, we're
1085 // just waiting for our existing children to finish.
1086if used_token_count == 0 {
1087break;
1088 }
1089 }
10901091// Relinquish accidentally acquired extra tokens. Subtract 1 for the implicit token.
1092tokens.truncate(used_token_count.saturating_sub(1));
10931094match coordinator_receive.recv().unwrap() {
1095// Save the token locally and the next turn of the loop will use
1096 // this to spawn a new unit of work, or it may get dropped
1097 // immediately if we have no more work to spawn.
1098ThinLtoMessage::Token(token) => match token {
1099Ok(token) => {
1100tokens.push(token);
1101 }
1102Err(e) => {
1103let msg = &::alloc::__export::must_use({
::alloc::fmt::format(format_args!("failed to acquire jobserver token: {0}",
e))
})format!("failed to acquire jobserver token: {e}");
1104shared_emitter.fatal(msg);
1105codegen_aborted = Some(FatalError);
1106 }
1107 },
11081109 ThinLtoMessage::WorkItem { result } => {
1110// If a thread exits successfully then we drop a token associated
1111 // with that worker and update our `used_token_count` count.
1112 // We may later re-acquire a token to continue running more work.
1113 // We may also not actually drop a token here if the worker was
1114 // running with an "ephemeral token".
1115used_token_count -= 1;
11161117match result {
1118Ok(compiled_module) => compiled_modules.push(compiled_module),
1119Err(Some(WorkerFatalError)) => {
1120// Like `CodegenAborted`, wait for remaining work to finish.
1121codegen_aborted = Some(FatalError);
1122 }
1123Err(None) => {
1124// If the thread failed that means it panicked, so
1125 // we abort immediately.
1126::rustc_middle::util::bug::bug_fmt(format_args!("worker thread panicked"));bug!("worker thread panicked");
1127 }
1128 }
1129 }
1130 }
1131 }
11321133if let Some(codegen_aborted) = codegen_aborted {
1134codegen_aborted.raise();
1135 }
11361137compiled_modules1138}
11391140fn execute_thin_lto_work_item<B: WriteBackendMethods>(
1141 cgcx: &CodegenContext,
1142 prof: &SelfProfilerRef,
1143 shared_emitter: SharedEmitter,
1144 tm_factory: TargetMachineFactoryFn<B>,
1145 module: lto::ThinModule<B>,
1146) -> CompiledModule {
1147let _timer = prof.generic_activity_with_arg("codegen_module_perform_lto", module.name());
11481149 B::optimize_and_codegen_thin(cgcx, prof, &shared_emitter, tm_factory, module)
1150}
11511152/// Messages sent to the coordinator.
1153pub(crate) enum Message<B: WriteBackendMethods> {
1154/// A jobserver token has become available. Sent from the jobserver helper
1155 /// thread.
1156Token(io::Result<Acquired>),
11571158/// The backend has finished processing a work item for a codegen unit.
1159 /// Sent from a backend worker thread.
1160WorkItem { result: Result<WorkItemResult<B>, Option<WorkerFatalError>> },
11611162/// The frontend has finished generating something (backend IR or a
1163 /// post-LTO artifact) for a codegen unit, and it should be passed to the
1164 /// backend. Sent from the main thread.
1165CodegenDone { llvm_work_item: WorkItem<B>, cost: u64 },
11661167/// Similar to `CodegenDone`, but for reusing a pre-LTO artifact
1168 /// Sent from the main thread.
1169AddImportOnlyModule {
1170 module_data: SerializedModule<B::ModuleBuffer>,
1171 work_product: WorkProduct,
1172 },
11731174/// The frontend has finished generating everything for all codegen units.
1175 /// Sent from the main thread.
1176CodegenComplete,
11771178/// Some normal-ish compiler error occurred, and codegen should be wound
1179 /// down. Sent from the main thread.
1180CodegenAborted,
1181}
11821183/// Messages sent to the coordinator.
1184pub(crate) enum ThinLtoMessage {
1185/// A jobserver token has become available. Sent from the jobserver helper
1186 /// thread.
1187Token(io::Result<Acquired>),
11881189/// The backend has finished processing a work item for a codegen unit.
1190 /// Sent from a backend worker thread.
1191WorkItem { result: Result<CompiledModule, Option<WorkerFatalError>> },
1192}
11931194/// A message sent from the coordinator thread to the main thread telling it to
1195/// process another codegen unit.
1196pub struct CguMessage;
11971198// A cut-down version of `rustc_errors::DiagInner` that impls `Send`, which
1199// can be used to send diagnostics from codegen threads to the main thread.
1200// It's missing the following fields from `rustc_errors::DiagInner`.
1201// - `span`: it doesn't impl `Send`.
1202// - `suggestions`: it doesn't impl `Send`, and isn't used for codegen
1203// diagnostics.
1204// - `sort_span`: it doesn't impl `Send`.
1205// - `is_lint`: lints aren't relevant during codegen.
1206// - `emitted_at`: not used for codegen diagnostics.
1207struct Diagnostic {
1208 span: Vec<SpanData>,
1209 level: Level,
1210 messages: Vec<(DiagMessage, Style)>,
1211 code: Option<ErrCode>,
1212 children: Vec<Subdiagnostic>,
1213 args: DiagArgMap,
1214}
12151216// A cut-down version of `rustc_errors::Subdiag` that impls `Send`. It's
1217// missing the following fields from `rustc_errors::Subdiag`.
1218// - `span`: it doesn't impl `Send`.
1219struct Subdiagnostic {
1220 level: Level,
1221 messages: Vec<(DiagMessage, Style)>,
1222}
12231224#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for MainThreadState {
#[inline]
fn eq(&self, other: &MainThreadState) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::clone::Clone for MainThreadState {
#[inline]
fn clone(&self) -> MainThreadState { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for MainThreadState { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for MainThreadState {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
MainThreadState::Idle => "Idle",
MainThreadState::Codegenning => "Codegenning",
MainThreadState::Lending => "Lending",
})
}
}Debug)]
1225enum MainThreadState {
1226/// Doing nothing.
1227Idle,
12281229/// Doing codegen, i.e. MIR-to-LLVM-IR conversion.
1230Codegenning,
12311232/// Idle, but lending the compiler process's Token to an LLVM thread so it can do useful work.
1233Lending,
1234}
12351236fn start_executing_work<B: ExtraBackendMethods>(
1237 backend: B,
1238 tcx: TyCtxt<'_>,
1239 crate_info: &CrateInfo,
1240 shared_emitter: SharedEmitter,
1241 codegen_worker_send: Sender<CguMessage>,
1242 coordinator_receive: Receiver<Message<B>>,
1243 regular_config: Arc<ModuleConfig>,
1244 allocator_config: Arc<ModuleConfig>,
1245mut allocator_module: Option<ModuleCodegen<B::Module>>,
1246 coordinator_send: Sender<Message<B>>,
1247) -> thread::JoinHandle<Result<MaybeLtoModules<B>, ()>> {
1248let sess = tcx.sess;
1249let prof = sess.prof.clone();
12501251let mut each_linked_rlib_for_lto = Vec::new();
1252let mut each_linked_rlib_file_for_lto = Vec::new();
1253if sess.lto() != Lto::No && sess.lto() != Lto::ThinLocal {
1254drop(link::each_linked_rlib(crate_info, None, &mut |cnum, path| {
1255if link::ignored_for_lto(sess, crate_info, cnum) {
1256return;
1257 }
12581259each_linked_rlib_for_lto.push(cnum);
1260each_linked_rlib_file_for_lto.push(path.to_path_buf());
1261 }));
1262 }
12631264// Compute the set of symbols we need to retain when doing LTO (if we need to)
1265let exported_symbols_for_lto =
1266Arc::new(lto::exported_symbols_for_lto(tcx, &each_linked_rlib_for_lto));
12671268// First up, convert our jobserver into a helper thread so we can use normal
1269 // mpsc channels to manage our messages and such.
1270 // After we've requested tokens then we'll, when we can,
1271 // get tokens on `coordinator_receive` which will
1272 // get managed in the main loop below.
1273let coordinator_send2 = coordinator_send.clone();
1274let helper = jobserver::client()
1275 .into_helper_thread(move |token| {
1276drop(coordinator_send2.send(Message::Token::<B>(token)));
1277 })
1278 .expect("failed to spawn helper thread");
12791280let opt_level = tcx.backend_optimization_level(());
1281let backend_features = tcx.global_backend_features(()).clone();
1282let tm_factory = backend.target_machine_factory(tcx.sess, opt_level, &backend_features);
12831284let remark_dir = if let Some(ref dir) = sess.opts.unstable_opts.remark_dir {
1285let result = fs::create_dir_all(dir).and_then(|_| dir.canonicalize());
1286match result {
1287Ok(dir) => Some(dir),
1288Err(error) => sess.dcx().emit_fatal(ErrorCreatingRemarkDir { error }),
1289 }
1290 } else {
1291None1292 };
12931294let cgcx = CodegenContext {
1295 crate_types: tcx.crate_types().to_vec(),
1296 lto: sess.lto(),
1297 use_linker_plugin_lto: sess.opts.cg.linker_plugin_lto.enabled(),
1298 dylib_lto: sess.opts.unstable_opts.dylib_lto,
1299 prefer_dynamic: sess.opts.cg.prefer_dynamic,
1300 fewer_names: sess.fewer_names(),
1301 save_temps: sess.opts.cg.save_temps,
1302 time_trace: sess.opts.unstable_opts.llvm_time_trace,
1303 remark: sess.opts.cg.remark.clone(),
1304remark_dir,
1305 incr_comp_session_dir: sess.incr_comp_session_dir_opt().map(|r| r.clone()),
1306 output_filenames: Arc::clone(tcx.output_filenames(())),
1307 module_config: regular_config,
1308opt_level,
1309backend_features,
1310 msvc_imps_needed: msvc_imps_needed(tcx),
1311 is_pe_coff: tcx.sess.target.is_like_windows,
1312 target_can_use_split_dwarf: tcx.sess.target_can_use_split_dwarf(),
1313 target_arch: tcx.sess.target.arch.to_string(),
1314 target_is_like_darwin: tcx.sess.target.is_like_darwin,
1315 target_is_like_aix: tcx.sess.target.is_like_aix,
1316 target_is_like_gpu: tcx.sess.target.is_like_gpu,
1317 split_debuginfo: tcx.sess.split_debuginfo(),
1318 split_dwarf_kind: tcx.sess.opts.unstable_opts.split_dwarf_kind,
1319 parallel: backend.supports_parallel() && !sess.opts.unstable_opts.no_parallel_backend,
1320 pointer_size: tcx.data_layout.pointer_size(),
1321 invocation_temp: sess.invocation_temp.clone(),
1322 };
13231324// This is the "main loop" of parallel work happening for parallel codegen.
1325 // It's here that we manage parallelism, schedule work, and work with
1326 // messages coming from clients.
1327 //
1328 // There are a few environmental pre-conditions that shape how the system
1329 // is set up:
1330 //
1331 // - Error reporting can only happen on the main thread because that's the
1332 // only place where we have access to the compiler `Session`.
1333 // - LLVM work can be done on any thread.
1334 // - Codegen can only happen on the main thread.
1335 // - Each thread doing substantial work must be in possession of a `Token`
1336 // from the `Jobserver`.
1337 // - The compiler process always holds one `Token`. Any additional `Tokens`
1338 // have to be requested from the `Jobserver`.
1339 //
1340 // Error Reporting
1341 // ===============
1342 // The error reporting restriction is handled separately from the rest: We
1343 // set up a `SharedEmitter` that holds an open channel to the main thread.
1344 // When an error occurs on any thread, the shared emitter will send the
1345 // error message to the receiver main thread (`SharedEmitterMain`). The
1346 // main thread will periodically query this error message queue and emit
1347 // any error messages it has received. It might even abort compilation if
1348 // it has received a fatal error. In this case we rely on all other threads
1349 // being torn down automatically with the main thread.
1350 // Since the main thread will often be busy doing codegen work, error
1351 // reporting will be somewhat delayed, since the message queue can only be
1352 // checked in between two work packages.
1353 //
1354 // Work Processing Infrastructure
1355 // ==============================
1356 // The work processing infrastructure knows three major actors:
1357 //
1358 // - the coordinator thread,
1359 // - the main thread, and
1360 // - LLVM worker threads
1361 //
1362 // The coordinator thread is running a message loop. It instructs the main
1363 // thread about what work to do when, and it will spawn off LLVM worker
1364 // threads as open LLVM WorkItems become available.
1365 //
1366 // The job of the main thread is to codegen CGUs into LLVM work packages
1367 // (since the main thread is the only thread that can do this). The main
1368 // thread will block until it receives a message from the coordinator, upon
1369 // which it will codegen one CGU, send it to the coordinator and block
1370 // again. This way the coordinator can control what the main thread is
1371 // doing.
1372 //
1373 // The coordinator keeps a queue of LLVM WorkItems, and when a `Token` is
1374 // available, it will spawn off a new LLVM worker thread and let it process
1375 // a WorkItem. When a LLVM worker thread is done with its WorkItem,
1376 // it will just shut down, which also frees all resources associated with
1377 // the given LLVM module, and sends a message to the coordinator that the
1378 // WorkItem has been completed.
1379 //
1380 // Work Scheduling
1381 // ===============
1382 // The scheduler's goal is to minimize the time it takes to complete all
1383 // work there is, however, we also want to keep memory consumption low
1384 // if possible. These two goals are at odds with each other: If memory
1385 // consumption were not an issue, we could just let the main thread produce
1386 // LLVM WorkItems at full speed, assuring maximal utilization of
1387 // Tokens/LLVM worker threads. However, since codegen is usually faster
1388 // than LLVM processing, the queue of LLVM WorkItems would fill up and each
1389 // WorkItem potentially holds on to a substantial amount of memory.
1390 //
1391 // So the actual goal is to always produce just enough LLVM WorkItems as
1392 // not to starve our LLVM worker threads. That means, once we have enough
1393 // WorkItems in our queue, we can block the main thread, so it does not
1394 // produce more until we need them.
1395 //
1396 // Doing LLVM Work on the Main Thread
1397 // ----------------------------------
1398 // Since the main thread owns the compiler process's implicit `Token`, it is
1399 // wasteful to keep it blocked without doing any work. Therefore, what we do
1400 // in this case is: We spawn off an additional LLVM worker thread that helps
1401 // reduce the queue. The work it is doing corresponds to the implicit
1402 // `Token`. The coordinator will mark the main thread as being busy with
1403 // LLVM work. (The actual work happens on another OS thread but we just care
1404 // about `Tokens`, not actual threads).
1405 //
1406 // When any LLVM worker thread finishes while the main thread is marked as
1407 // "busy with LLVM work", we can do a little switcheroo: We give the Token
1408 // of the just finished thread to the LLVM worker thread that is working on
1409 // behalf of the main thread's implicit Token, thus freeing up the main
1410 // thread again. The coordinator can then again decide what the main thread
1411 // should do. This allows the coordinator to make decisions at more points
1412 // in time.
1413 //
1414 // Striking a Balance between Throughput and Memory Consumption
1415 // ------------------------------------------------------------
1416 // Since our two goals, (1) use as many Tokens as possible and (2) keep
1417 // memory consumption as low as possible, are in conflict with each other,
1418 // we have to find a trade off between them. Right now, the goal is to keep
1419 // all workers busy, which means that no worker should find the queue empty
1420 // when it is ready to start.
1421 // How do we do achieve this? Good question :) We actually never know how
1422 // many `Tokens` are potentially available so it's hard to say how much to
1423 // fill up the queue before switching the main thread to LLVM work. Also we
1424 // currently don't have a means to estimate how long a running LLVM worker
1425 // will still be busy with it's current WorkItem. However, we know the
1426 // maximal count of available Tokens that makes sense (=the number of CPU
1427 // cores), so we can take a conservative guess. The heuristic we use here
1428 // is implemented in the `queue_full_enough()` function.
1429 //
1430 // Some Background on Jobservers
1431 // -----------------------------
1432 // It's worth also touching on the management of parallelism here. We don't
1433 // want to just spawn a thread per work item because while that's optimal
1434 // parallelism it may overload a system with too many threads or violate our
1435 // configuration for the maximum amount of cpu to use for this process. To
1436 // manage this we use the `jobserver` crate.
1437 //
1438 // Job servers are an artifact of GNU make and are used to manage
1439 // parallelism between processes. A jobserver is a glorified IPC semaphore
1440 // basically. Whenever we want to run some work we acquire the semaphore,
1441 // and whenever we're done with that work we release the semaphore. In this
1442 // manner we can ensure that the maximum number of parallel workers is
1443 // capped at any one point in time.
1444 //
1445 // LTO and the coordinator thread
1446 // ------------------------------
1447 //
1448 // The final job the coordinator thread is responsible for is managing LTO
1449 // and how that works. When LTO is requested what we'll do is collect all
1450 // optimized LLVM modules into a local vector on the coordinator. Once all
1451 // modules have been codegened and optimized we hand this to the `lto`
1452 // module for further optimization. The `lto` module will return back a list
1453 // of more modules to work on, which the coordinator will continue to spawn
1454 // work for.
1455 //
1456 // Each LLVM module is automatically sent back to the coordinator for LTO if
1457 // necessary. There's already optimizations in place to avoid sending work
1458 // back to the coordinator if LTO isn't requested.
1459let f = move || {
1460let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
14611462// This is where we collect codegen units that have gone all the way
1463 // through codegen and LLVM.
1464let mut compiled_modules = ::alloc::vec::Vec::new()vec![];
1465let mut needs_fat_lto = Vec::new();
1466let mut needs_thin_lto = Vec::new();
1467let mut lto_import_only_modules = Vec::new();
14681469/// Possible state transitions:
1470 /// - Ongoing -> Completed
1471 /// - Ongoing -> Aborted
1472 /// - Completed -> Aborted
1473#[derive(#[automatically_derived]
impl ::core::fmt::Debug for CodegenState {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
CodegenState::Ongoing => "Ongoing",
CodegenState::Completed => "Completed",
CodegenState::Aborted => "Aborted",
})
}
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for CodegenState {
#[inline]
fn eq(&self, other: &CodegenState) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq)]
1474enum CodegenState {
1475 Ongoing,
1476 Completed,
1477 Aborted,
1478 }
1479use CodegenState::*;
1480let mut codegen_state = Ongoing;
14811482// This is the queue of LLVM work items that still need processing.
1483let mut work_items = Vec::<(WorkItem<B>, u64)>::new();
14841485// This are the Jobserver Tokens we currently hold. Does not include
1486 // the implicit Token the compiler process owns no matter what.
1487let mut tokens = Vec::new();
14881489let mut main_thread_state = MainThreadState::Idle;
14901491// How many LLVM worker threads are running while holding a Token. This
1492 // *excludes* any that the main thread is lending a Token to.
1493let mut running_with_own_token = 0;
14941495// How many LLVM worker threads are running in total. This *includes*
1496 // any that the main thread is lending a Token to.
1497let running_with_any_token = |main_thread_state, running_with_own_token| {
1498running_with_own_token1499 + if main_thread_state == MainThreadState::Lending { 1 } else { 0 }
1500 };
15011502let mut llvm_start_time: Option<VerboseTimingGuard<'_>> = None;
15031504if let Some(allocator_module) = &mut allocator_module {
1505 B::optimize(&cgcx, &prof, &shared_emitter, allocator_module, &allocator_config);
1506 }
15071508// Run the message loop while there's still anything that needs message
1509 // processing. Note that as soon as codegen is aborted we simply want to
1510 // wait for all existing work to finish, so many of the conditions here
1511 // only apply if codegen hasn't been aborted as they represent pending
1512 // work to be done.
1513loop {
1514// While there are still CGUs to be codegened, the coordinator has
1515 // to decide how to utilize the compiler processes implicit Token:
1516 // For codegenning more CGU or for running them through LLVM.
1517if codegen_state == Ongoing {
1518if main_thread_state == MainThreadState::Idle {
1519// Compute the number of workers that will be running once we've taken as many
1520 // items from the work queue as we can, plus one for the main thread. It's not
1521 // critically important that we use this instead of just
1522 // `running_with_own_token`, but it prevents the `queue_full_enough` heuristic
1523 // from fluctuating just because a worker finished up and we decreased the
1524 // `running_with_own_token` count, even though we're just going to increase it
1525 // right after this when we put a new worker to work.
1526let extra_tokens = tokens.len().checked_sub(running_with_own_token).unwrap();
1527let additional_running = std::cmp::min(extra_tokens, work_items.len());
1528let anticipated_running = running_with_own_token + additional_running + 1;
15291530if !queue_full_enough(work_items.len(), anticipated_running) {
1531// The queue is not full enough, process more codegen units:
1532if codegen_worker_send.send(CguMessage).is_err() {
1533{
::core::panicking::panic_fmt(format_args!("Could not send CguMessage to main thread"));
}panic!("Could not send CguMessage to main thread")1534 }
1535main_thread_state = MainThreadState::Codegenning;
1536 } else {
1537// The queue is full enough to not let the worker
1538 // threads starve. Use the implicit Token to do some
1539 // LLVM work too.
1540let (item, _) =
1541work_items.pop().expect("queue empty - queue_full_enough() broken?");
1542main_thread_state = MainThreadState::Lending;
1543spawn_work(
1544&cgcx,
1545&prof,
1546shared_emitter.clone(),
1547coordinator_send.clone(),
1548&mut llvm_start_time,
1549item,
1550 );
1551 }
1552 }
1553 } else if codegen_state == Completed {
1554if running_with_any_token(main_thread_state, running_with_own_token) == 0
1555&& work_items.is_empty()
1556 {
1557// All codegen work is done.
1558break;
1559 }
15601561// In this branch, we know that everything has been codegened,
1562 // so it's just a matter of determining whether the implicit
1563 // Token is free to use for LLVM work.
1564match main_thread_state {
1565 MainThreadState::Idle => {
1566if let Some((item, _)) = work_items.pop() {
1567main_thread_state = MainThreadState::Lending;
1568spawn_work(
1569&cgcx,
1570&prof,
1571shared_emitter.clone(),
1572coordinator_send.clone(),
1573&mut llvm_start_time,
1574item,
1575 );
1576 } else {
1577// There is no unstarted work, so let the main thread
1578 // take over for a running worker. Otherwise the
1579 // implicit token would just go to waste.
1580 // We reduce the `running` counter by one. The
1581 // `tokens.truncate()` below will take care of
1582 // giving the Token back.
1583if !(running_with_own_token > 0) {
::core::panicking::panic("assertion failed: running_with_own_token > 0")
};assert!(running_with_own_token > 0);
1584running_with_own_token -= 1;
1585main_thread_state = MainThreadState::Lending;
1586 }
1587 }
1588 MainThreadState::Codegenning => ::rustc_middle::util::bug::bug_fmt(format_args!("codegen worker should not be codegenning after codegen was already completed"))bug!(
1589"codegen worker should not be codegenning after \
1590 codegen was already completed"
1591),
1592 MainThreadState::Lending => {
1593// Already making good use of that token
1594}
1595 }
1596 } else {
1597// Don't queue up any more work if codegen was aborted, we're
1598 // just waiting for our existing children to finish.
1599if !(codegen_state == Aborted) {
::core::panicking::panic("assertion failed: codegen_state == Aborted")
};assert!(codegen_state == Aborted);
1600if running_with_any_token(main_thread_state, running_with_own_token) == 0 {
1601break;
1602 }
1603 }
16041605// Spin up what work we can, only doing this while we've got available
1606 // parallelism slots and work left to spawn.
1607if codegen_state != Aborted {
1608while running_with_own_token < tokens.len()
1609 && let Some((item, _)) = work_items.pop()
1610 {
1611 spawn_work(
1612&cgcx,
1613&prof,
1614 shared_emitter.clone(),
1615 coordinator_send.clone(),
1616&mut llvm_start_time,
1617 item,
1618 );
1619 running_with_own_token += 1;
1620 }
1621 }
16221623// Relinquish accidentally acquired extra tokens.
1624tokens.truncate(running_with_own_token);
16251626match coordinator_receive.recv().unwrap() {
1627// Save the token locally and the next turn of the loop will use
1628 // this to spawn a new unit of work, or it may get dropped
1629 // immediately if we have no more work to spawn.
1630Message::Token(token) => {
1631match token {
1632Ok(token) => {
1633tokens.push(token);
16341635if main_thread_state == MainThreadState::Lending {
1636// If the main thread token is used for LLVM work
1637 // at the moment, we turn that thread into a regular
1638 // LLVM worker thread, so the main thread is free
1639 // to react to codegen demand.
1640main_thread_state = MainThreadState::Idle;
1641running_with_own_token += 1;
1642 }
1643 }
1644Err(e) => {
1645let msg = &::alloc::__export::must_use({
::alloc::fmt::format(format_args!("failed to acquire jobserver token: {0}",
e))
})format!("failed to acquire jobserver token: {e}");
1646shared_emitter.fatal(msg);
1647codegen_state = Aborted;
1648 }
1649 }
1650 }
16511652 Message::CodegenDone { llvm_work_item, cost } => {
1653// We keep the queue sorted by estimated processing cost,
1654 // so that more expensive items are processed earlier. This
1655 // is good for throughput as it gives the main thread more
1656 // time to fill up the queue and it avoids scheduling
1657 // expensive items to the end.
1658 // Note, however, that this is not ideal for memory
1659 // consumption, as LLVM module sizes are not evenly
1660 // distributed.
1661let insertion_index = work_items.binary_search_by_key(&cost, |&(_, cost)| cost);
1662let insertion_index = match insertion_index {
1663Ok(idx) | Err(idx) => idx,
1664 };
1665work_items.insert(insertion_index, (llvm_work_item, cost));
16661667if cgcx.parallel {
1668helper.request_token();
1669 }
1670match (&main_thread_state, &MainThreadState::Codegenning) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(main_thread_state, MainThreadState::Codegenning);
1671main_thread_state = MainThreadState::Idle;
1672 }
16731674 Message::CodegenComplete => {
1675if codegen_state != Aborted {
1676codegen_state = Completed;
1677 }
1678match (&main_thread_state, &MainThreadState::Codegenning) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(main_thread_state, MainThreadState::Codegenning);
1679main_thread_state = MainThreadState::Idle;
1680 }
16811682// If codegen is aborted that means translation was aborted due
1683 // to some normal-ish compiler error. In this situation we want
1684 // to exit as soon as possible, but we want to make sure all
1685 // existing work has finished. Flag codegen as being done, and
1686 // then conditions above will ensure no more work is spawned but
1687 // we'll keep executing this loop until `running_with_own_token`
1688 // hits 0.
1689Message::CodegenAborted => {
1690codegen_state = Aborted;
1691 }
16921693 Message::WorkItem { result } => {
1694// If a thread exits successfully then we drop a token associated
1695 // with that worker and update our `running_with_own_token` count.
1696 // We may later re-acquire a token to continue running more work.
1697 // We may also not actually drop a token here if the worker was
1698 // running with an "ephemeral token".
1699if main_thread_state == MainThreadState::Lending {
1700main_thread_state = MainThreadState::Idle;
1701 } else {
1702running_with_own_token -= 1;
1703 }
17041705match result {
1706Ok(WorkItemResult::Finished(compiled_module)) => {
1707compiled_modules.push(compiled_module);
1708 }
1709Ok(WorkItemResult::NeedsFatLto(fat_lto_input)) => {
1710if !needs_thin_lto.is_empty() {
::core::panicking::panic("assertion failed: needs_thin_lto.is_empty()")
};assert!(needs_thin_lto.is_empty());
1711needs_fat_lto.push(fat_lto_input);
1712 }
1713Ok(WorkItemResult::NeedsThinLto(name, thin_buffer)) => {
1714if !needs_fat_lto.is_empty() {
::core::panicking::panic("assertion failed: needs_fat_lto.is_empty()")
};assert!(needs_fat_lto.is_empty());
1715needs_thin_lto.push(ThinLtoInput::Red {
1716name,
1717 buffer: SerializedModule::Local(thin_buffer),
1718 });
1719 }
1720Err(Some(WorkerFatalError)) => {
1721// Like `CodegenAborted`, wait for remaining work to finish.
1722codegen_state = Aborted;
1723 }
1724Err(None) => {
1725// If the thread failed that means it panicked, so
1726 // we abort immediately.
1727::rustc_middle::util::bug::bug_fmt(format_args!("worker thread panicked"));bug!("worker thread panicked");
1728 }
1729 }
1730 }
17311732 Message::AddImportOnlyModule { module_data, work_product } => {
1733match (&codegen_state, &Ongoing) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(codegen_state, Ongoing);
1734match (&main_thread_state, &MainThreadState::Codegenning) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(main_thread_state, MainThreadState::Codegenning);
1735lto_import_only_modules.push((module_data, work_product));
1736main_thread_state = MainThreadState::Idle;
1737 }
1738 }
1739 }
17401741// Drop to print timings
1742drop(llvm_start_time);
17431744if codegen_state == Aborted {
1745return Err(());
1746 }
17471748drop(codegen_state);
1749drop(tokens);
1750drop(helper);
1751if !work_items.is_empty() {
::core::panicking::panic("assertion failed: work_items.is_empty()")
};assert!(work_items.is_empty());
17521753if !needs_fat_lto.is_empty() {
1754if !compiled_modules.is_empty() {
::core::panicking::panic("assertion failed: compiled_modules.is_empty()")
};assert!(compiled_modules.is_empty());
1755if !needs_thin_lto.is_empty() {
::core::panicking::panic("assertion failed: needs_thin_lto.is_empty()")
};assert!(needs_thin_lto.is_empty());
17561757if let Some(allocator_module) = allocator_module.take() {
1758needs_fat_lto.push(FatLtoInput::InMemory(allocator_module));
1759 }
17601761for (module, wp) in lto_import_only_modules {
1762 needs_fat_lto.push(FatLtoInput::Serialized { name: wp.cgu_name, buffer: module })
1763 }
17641765return Ok(MaybeLtoModules::FatLto {
1766cgcx,
1767exported_symbols_for_lto,
1768each_linked_rlib_file_for_lto,
1769needs_fat_lto,
1770 });
1771 } else if !needs_thin_lto.is_empty() || !lto_import_only_modules.is_empty() {
1772if !compiled_modules.is_empty() {
::core::panicking::panic("assertion failed: compiled_modules.is_empty()")
};assert!(compiled_modules.is_empty());
1773if !needs_fat_lto.is_empty() {
::core::panicking::panic("assertion failed: needs_fat_lto.is_empty()")
};assert!(needs_fat_lto.is_empty());
17741775for (buffer, wp) in lto_import_only_modules {
1776 needs_thin_lto.push(ThinLtoInput::Green { wp, buffer })
1777 }
17781779if cgcx.lto == Lto::ThinLocal {
1780compiled_modules.extend(do_thin_lto::<B>(
1781&cgcx,
1782&prof,
1783shared_emitter.clone(),
1784tm_factory,
1785exported_symbols_for_lto,
1786each_linked_rlib_file_for_lto,
1787needs_thin_lto,
1788 ));
1789 } else {
1790if let Some(allocator_module) = allocator_module.take() {
1791let thin_buffer = B::serialize_module(allocator_module.module_llvm, true);
1792needs_thin_lto.push(ThinLtoInput::Red {
1793 name: allocator_module.name,
1794 buffer: SerializedModule::Local(thin_buffer),
1795 });
1796 }
17971798return Ok(MaybeLtoModules::ThinLto {
1799cgcx,
1800exported_symbols_for_lto,
1801each_linked_rlib_file_for_lto,
1802needs_thin_lto,
1803 });
1804 }
1805 }
18061807Ok(MaybeLtoModules::NoLto(CompiledModules {
1808 modules: compiled_modules,
1809 allocator_module: allocator_module.map(|allocator_module| {
1810 B::codegen(&cgcx, &prof, &shared_emitter, allocator_module, &allocator_config)
1811 }),
1812 }))
1813 };
1814return std::thread::Builder::new()
1815 .name("coordinator".to_owned())
1816 .spawn(f)
1817 .expect("failed to spawn coordinator thread");
18181819// A heuristic that determines if we have enough LLVM WorkItems in the
1820 // queue so that the main thread can do LLVM work instead of codegen
1821fn queue_full_enough(items_in_queue: usize, workers_running: usize) -> bool {
1822// This heuristic scales ahead-of-time codegen according to available
1823 // concurrency, as measured by `workers_running`. The idea is that the
1824 // more concurrency we have available, the more demand there will be for
1825 // work items, and the fuller the queue should be kept to meet demand.
1826 // An important property of this approach is that we codegen ahead of
1827 // time only as much as necessary, so as to keep fewer LLVM modules in
1828 // memory at once, thereby reducing memory consumption.
1829 //
1830 // When the number of workers running is less than the max concurrency
1831 // available to us, this heuristic can cause us to instruct the main
1832 // thread to work on an LLVM item (that is, tell it to "LLVM") instead
1833 // of codegen, even though it seems like it *should* be codegenning so
1834 // that we can create more work items and spawn more LLVM workers.
1835 //
1836 // But this is not a problem. When the main thread is told to LLVM,
1837 // according to this heuristic and how work is scheduled, there is
1838 // always at least one item in the queue, and therefore at least one
1839 // pending jobserver token request. If there *is* more concurrency
1840 // available, we will immediately receive a token, which will upgrade
1841 // the main thread's LLVM worker to a real one (conceptually), and free
1842 // up the main thread to codegen if necessary. On the other hand, if
1843 // there isn't more concurrency, then the main thread working on an LLVM
1844 // item is appropriate, as long as the queue is full enough for demand.
1845 //
1846 // Speaking of which, how full should we keep the queue? Probably less
1847 // full than you'd think. A lot has to go wrong for the queue not to be
1848 // full enough and for that to have a negative effect on compile times.
1849 //
1850 // Workers are unlikely to finish at exactly the same time, so when one
1851 // finishes and takes another work item off the queue, we often have
1852 // ample time to codegen at that point before the next worker finishes.
1853 // But suppose that codegen takes so long that the workers exhaust the
1854 // queue, and we have one or more workers that have nothing to work on.
1855 // Well, it might not be so bad. Of all the LLVM modules we create and
1856 // optimize, one has to finish last. It's not necessarily the case that
1857 // by losing some concurrency for a moment, we delay the point at which
1858 // that last LLVM module is finished and the rest of compilation can
1859 // proceed. Also, when we can't take advantage of some concurrency, we
1860 // give tokens back to the job server. That enables some other rustc to
1861 // potentially make use of the available concurrency. That could even
1862 // *decrease* overall compile time if we're lucky. But yes, if no other
1863 // rustc can make use of the concurrency, then we've squandered it.
1864 //
1865 // However, keeping the queue full is also beneficial when we have a
1866 // surge in available concurrency. Then items can be taken from the
1867 // queue immediately, without having to wait for codegen.
1868 //
1869 // So, the heuristic below tries to keep one item in the queue for every
1870 // four running workers. Based on limited benchmarking, this appears to
1871 // be more than sufficient to avoid increasing compilation times.
1872let quarter_of_workers = workers_running - 3 * workers_running / 4;
1873items_in_queue > 0 && items_in_queue >= quarter_of_workers1874 }
1875}
18761877/// `FatalError` is explicitly not `Send`.
1878#[must_use]
1879pub(crate) struct WorkerFatalError;
18801881fn spawn_work<'a, B: WriteBackendMethods>(
1882 cgcx: &CodegenContext,
1883 prof: &'a SelfProfilerRef,
1884 shared_emitter: SharedEmitter,
1885 coordinator_send: Sender<Message<B>>,
1886 llvm_start_time: &mut Option<VerboseTimingGuard<'a>>,
1887 work: WorkItem<B>,
1888) {
1889if llvm_start_time.is_none() {
1890*llvm_start_time = Some(prof.verbose_generic_activity("LLVM_passes"));
1891 }
18921893let cgcx = cgcx.clone();
1894let prof = prof.clone();
18951896let name = work.short_description();
1897let f = move || {
1898let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
18991900let result = std::panic::catch_unwind(AssertUnwindSafe(|| match work {
1901 WorkItem::Optimize(m) => execute_optimize_work_item(&cgcx, &prof, shared_emitter, m),
1902 WorkItem::CopyPostLtoArtifacts(m) => WorkItemResult::Finished(
1903execute_copy_from_cache_work_item(&cgcx, &prof, shared_emitter, m),
1904 ),
1905 }));
19061907let msg = match result {
1908Ok(result) => Message::WorkItem::<B> { result: Ok(result) },
19091910// We ignore any `FatalError` coming out of `execute_work_item`, as a
1911 // diagnostic was already sent off to the main thread - just surface
1912 // that there was an error in this worker.
1913Err(err) if err.is::<FatalErrorMarker>() => {
1914 Message::WorkItem::<B> { result: Err(Some(WorkerFatalError)) }
1915 }
19161917Err(_) => Message::WorkItem::<B> { result: Err(None) },
1918 };
1919drop(coordinator_send.send(msg));
1920 };
1921 std::thread::Builder::new().name(name).spawn(f).expect("failed to spawn work thread");
1922}
19231924fn spawn_thin_lto_work<B: WriteBackendMethods>(
1925 cgcx: &CodegenContext,
1926 prof: &SelfProfilerRef,
1927 shared_emitter: SharedEmitter,
1928 tm_factory: TargetMachineFactoryFn<B>,
1929 coordinator_send: Sender<ThinLtoMessage>,
1930 work: ThinLtoWorkItem<B>,
1931) {
1932let cgcx = cgcx.clone();
1933let prof = prof.clone();
19341935let name = work.short_description();
1936let f = move || {
1937let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
19381939let result = std::panic::catch_unwind(AssertUnwindSafe(|| match work {
1940 ThinLtoWorkItem::CopyPostLtoArtifacts(m) => {
1941execute_copy_from_cache_work_item(&cgcx, &prof, shared_emitter, m)
1942 }
1943 ThinLtoWorkItem::ThinLto(m) => {
1944execute_thin_lto_work_item(&cgcx, &prof, shared_emitter, tm_factory, m)
1945 }
1946 }));
19471948let msg = match result {
1949Ok(result) => ThinLtoMessage::WorkItem { result: Ok(result) },
19501951// We ignore any `FatalError` coming out of `execute_work_item`, as a
1952 // diagnostic was already sent off to the main thread - just surface
1953 // that there was an error in this worker.
1954Err(err) if err.is::<FatalErrorMarker>() => {
1955 ThinLtoMessage::WorkItem { result: Err(Some(WorkerFatalError)) }
1956 }
19571958Err(_) => ThinLtoMessage::WorkItem { result: Err(None) },
1959 };
1960drop(coordinator_send.send(msg));
1961 };
1962 std::thread::Builder::new().name(name).spawn(f).expect("failed to spawn work thread");
1963}
19641965enum SharedEmitterMessage {
1966 Diagnostic(Diagnostic),
1967 InlineAsmError(InlineAsmError),
1968 Fatal(String),
1969}
19701971pub struct InlineAsmError {
1972pub span: SpanData,
1973pub msg: String,
1974pub level: Level,
1975pub source: Option<(String, Vec<InnerSpan>)>,
1976}
19771978#[derive(#[automatically_derived]
impl ::core::clone::Clone for SharedEmitter {
#[inline]
fn clone(&self) -> SharedEmitter {
SharedEmitter { sender: ::core::clone::Clone::clone(&self.sender) }
}
}Clone)]
1979pub struct SharedEmitter {
1980 sender: Sender<SharedEmitterMessage>,
1981}
19821983pub struct SharedEmitterMain {
1984 receiver: Receiver<SharedEmitterMessage>,
1985}
19861987impl SharedEmitter {
1988fn new() -> (SharedEmitter, SharedEmitterMain) {
1989let (sender, receiver) = channel();
19901991 (SharedEmitter { sender }, SharedEmitterMain { receiver })
1992 }
19931994pub fn inline_asm_error(&self, err: InlineAsmError) {
1995drop(self.sender.send(SharedEmitterMessage::InlineAsmError(err)));
1996 }
19971998fn fatal(&self, msg: &str) {
1999drop(self.sender.send(SharedEmitterMessage::Fatal(msg.to_string())));
2000 }
2001}
20022003impl Emitterfor SharedEmitter {
2004fn emit_diagnostic(&mut self, mut diag: rustc_errors::DiagInner) {
2005// Check that we aren't missing anything interesting when converting to
2006 // the cut-down local `DiagInner`.
2007if !!diag.span.has_span_labels() {
::core::panicking::panic("assertion failed: !diag.span.has_span_labels()")
};assert!(!diag.span.has_span_labels());
2008match (&diag.suggestions, &Suggestions::Enabled(::alloc::vec::Vec::new())) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(diag.suggestions, Suggestions::Enabled(vec![]));
2009match (&diag.sort_span, &rustc_span::DUMMY_SP) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(diag.sort_span, rustc_span::DUMMY_SP);
2010match (&diag.is_lint, &None) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_eq!(diag.is_lint, None);
2011// No sensible check for `diag.emitted_at`.
20122013let args = mem::replace(&mut diag.args, DiagArgMap::default());
2014drop(
2015self.sender.send(SharedEmitterMessage::Diagnostic(Diagnostic {
2016 span: diag.span.primary_spans().iter().map(|span| span.data()).collect::<Vec<_>>(),
2017 level: diag.level(),
2018 messages: diag.messages,
2019 code: diag.code,
2020 children: diag2021 .children
2022 .into_iter()
2023 .map(|child| Subdiagnostic { level: child.level, messages: child.messages })
2024 .collect(),
2025args,
2026 })),
2027 );
2028 }
20292030fn source_map(&self) -> Option<&SourceMap> {
2031None2032 }
2033}
20342035impl SharedEmitterMain {
2036fn check(&self, sess: &Session, blocking: bool) {
2037loop {
2038let message = if blocking {
2039match self.receiver.recv() {
2040Ok(message) => Ok(message),
2041Err(_) => Err(()),
2042 }
2043 } else {
2044match self.receiver.try_recv() {
2045Ok(message) => Ok(message),
2046Err(_) => Err(()),
2047 }
2048 };
20492050match message {
2051Ok(SharedEmitterMessage::Diagnostic(diag)) => {
2052// The diagnostic has been received on the main thread.
2053 // Convert it back to a full `Diagnostic` and emit.
2054let dcx = sess.dcx();
2055let mut d =
2056 rustc_errors::DiagInner::new_with_messages(diag.level, diag.messages);
2057d.span = MultiSpan::from_spans(
2058diag.span.into_iter().map(|span| span.span()).collect(),
2059 );
2060d.code = diag.code; // may be `None`, that's ok
2061d.children = diag2062 .children
2063 .into_iter()
2064 .map(|sub| rustc_errors::Subdiag {
2065 level: sub.level,
2066 messages: sub.messages,
2067 span: MultiSpan::new(),
2068 })
2069 .collect();
2070d.args = diag.args;
2071dcx.emit_diagnostic(d);
2072sess.dcx().abort_if_errors();
2073 }
2074Ok(SharedEmitterMessage::InlineAsmError(inner)) => {
2075match inner.level {
Level::Error | Level::Warning | Level::Note => {}
ref left_val => {
::core::panicking::assert_matches_failed(left_val,
"Level::Error | Level::Warning | Level::Note",
::core::option::Option::None);
}
};assert_matches!(inner.level, Level::Error | Level::Warning | Level::Note);
2076let mut err = Diag::<()>::new(sess.dcx(), inner.level, inner.msg);
2077if !inner.span.is_dummy() {
2078err.span(inner.span.span());
2079 }
20802081// Point to the generated assembly if it is available.
2082if let Some((buffer, spans)) = inner.source {
2083let source = sess2084 .source_map()
2085 .new_source_file(FileName::inline_asm_source_code(&buffer), buffer);
2086let spans: Vec<_> = spans2087 .iter()
2088 .map(|sp| {
2089Span::with_root_ctxt(
2090source.normalized_byte_pos(sp.start as u32),
2091source.normalized_byte_pos(sp.end as u32),
2092 )
2093 })
2094 .collect();
2095err.span_note(spans, "instantiated into assembly here");
2096 }
20972098err.emit();
2099 }
2100Ok(SharedEmitterMessage::Fatal(msg)) => {
2101sess.dcx().fatal(msg);
2102 }
2103Err(_) => {
2104break;
2105 }
2106 }
2107 }
2108 }
2109}
21102111pub struct Coordinator<B: WriteBackendMethods> {
2112 sender: Sender<Message<B>>,
2113 future: Option<thread::JoinHandle<Result<MaybeLtoModules<B>, ()>>>,
2114// Only used for the Message type.
2115phantom: PhantomData<B>,
2116}
21172118impl<B: WriteBackendMethods> Coordinator<B> {
2119fn join(mut self) -> std::thread::Result<Result<MaybeLtoModules<B>, ()>> {
2120self.future.take().unwrap().join()
2121 }
2122}
21232124impl<B: WriteBackendMethods> Dropfor Coordinator<B> {
2125fn drop(&mut self) {
2126if let Some(future) = self.future.take() {
2127// If we haven't joined yet, signal to the coordinator that it should spawn no more
2128 // work, and wait for worker threads to finish.
2129drop(self.sender.send(Message::CodegenAborted::<B>));
2130drop(future.join());
2131 }
2132 }
2133}
21342135pub struct OngoingCodegen<B: WriteBackendMethods> {
2136pub backend: B,
2137pub output_filenames: Arc<OutputFilenames>,
2138// Field order below is intended to terminate the coordinator thread before two fields below
2139 // drop and prematurely close channels used by coordinator thread. See `Coordinator`'s
2140 // `Drop` implementation for more info.
2141pub coordinator: Coordinator<B>,
2142pub codegen_worker_receive: Receiver<CguMessage>,
2143pub shared_emitter_main: SharedEmitterMain,
2144}
21452146impl<B: WriteBackendMethods> OngoingCodegen<B> {
2147pub fn join(self, sess: &Session) -> (CompiledModules, FxIndexMap<WorkProductId, WorkProduct>) {
2148self.shared_emitter_main.check(sess, true);
21492150let maybe_lto_modules = sess.time("join_worker_thread", || match self.coordinator.join() {
2151Ok(Ok(maybe_lto_modules)) => maybe_lto_modules,
2152Ok(Err(())) => {
2153sess.dcx().abort_if_errors();
2154{
::core::panicking::panic_fmt(format_args!("expected abort due to worker thread errors"));
}panic!("expected abort due to worker thread errors")2155 }
2156Err(_) => {
2157::rustc_middle::util::bug::bug_fmt(format_args!("panic during codegen/LLVM phase"));bug!("panic during codegen/LLVM phase");
2158 }
2159 });
21602161sess.dcx().abort_if_errors();
21622163let (shared_emitter, shared_emitter_main) = SharedEmitter::new();
21642165// Catch fatal errors to ensure shared_emitter_main.check() can emit the actual diagnostics
2166let compiled_modules = catch_fatal_errors(|| match maybe_lto_modules {
2167 MaybeLtoModules::NoLto(compiled_modules) => {
2168drop(shared_emitter);
2169compiled_modules2170 }
2171 MaybeLtoModules::FatLto {
2172 cgcx,
2173 exported_symbols_for_lto,
2174 each_linked_rlib_file_for_lto,
2175 needs_fat_lto,
2176 } => {
2177let tm_factory = self.backend.target_machine_factory(
2178sess,
2179cgcx.opt_level,
2180&cgcx.backend_features,
2181 );
21822183CompiledModules {
2184 modules: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[do_fat_lto(&cgcx, &sess.prof, shared_emitter, tm_factory,
&exported_symbols_for_lto, &each_linked_rlib_file_for_lto,
needs_fat_lto)]))vec![do_fat_lto(
2185&cgcx,
2186&sess.prof,
2187 shared_emitter,
2188 tm_factory,
2189&exported_symbols_for_lto,
2190&each_linked_rlib_file_for_lto,
2191 needs_fat_lto,
2192 )],
2193 allocator_module: None,
2194 }
2195 }
2196 MaybeLtoModules::ThinLto {
2197 cgcx,
2198 exported_symbols_for_lto,
2199 each_linked_rlib_file_for_lto,
2200 needs_thin_lto,
2201 } => {
2202let tm_factory = self.backend.target_machine_factory(
2203sess,
2204cgcx.opt_level,
2205&cgcx.backend_features,
2206 );
22072208CompiledModules {
2209 modules: do_thin_lto::<B>(
2210&cgcx,
2211&sess.prof,
2212shared_emitter,
2213tm_factory,
2214exported_symbols_for_lto,
2215each_linked_rlib_file_for_lto,
2216needs_thin_lto,
2217 ),
2218 allocator_module: None,
2219 }
2220 }
2221 });
22222223shared_emitter_main.check(sess, true);
22242225sess.dcx().abort_if_errors();
22262227let mut compiled_modules =
2228compiled_modules.expect("fatal error emitted but not sent to SharedEmitter");
22292230// Regardless of what order these modules completed in, report them to
2231 // the backend in the same order every time to ensure that we're handing
2232 // out deterministic results.
2233compiled_modules.modules.sort_by(|a, b| a.name.cmp(&b.name));
22342235let work_products =
2236copy_all_cgu_workproducts_to_incr_comp_cache_dir(sess, &compiled_modules);
2237produce_final_output_artifacts(sess, &compiled_modules, &self.output_filenames);
22382239 (compiled_modules, work_products)
2240 }
22412242pub(crate) fn codegen_finished(&self, tcx: TyCtxt<'_>) {
2243self.wait_for_signal_to_codegen_item();
2244self.check_for_errors(tcx.sess);
2245drop(self.coordinator.sender.send(Message::CodegenComplete::<B>));
2246 }
22472248pub(crate) fn check_for_errors(&self, sess: &Session) {
2249self.shared_emitter_main.check(sess, false);
2250 }
22512252pub(crate) fn wait_for_signal_to_codegen_item(&self) {
2253match self.codegen_worker_receive.recv() {
2254Ok(CguMessage) => {
2255// Ok to proceed.
2256}
2257Err(_) => {
2258// One of the LLVM threads must have panicked, fall through so
2259 // error handling can be reached.
2260}
2261 }
2262 }
2263}
22642265pub(crate) fn submit_codegened_module_to_llvm<B: WriteBackendMethods>(
2266 coordinator: &Coordinator<B>,
2267 module: ModuleCodegen<B::Module>,
2268 cost: u64,
2269) {
2270let llvm_work_item = WorkItem::Optimize(module);
2271drop(coordinator.sender.send(Message::CodegenDone::<B> { llvm_work_item, cost }));
2272}
22732274pub(crate) fn submit_post_lto_module_to_llvm<B: WriteBackendMethods>(
2275 coordinator: &Coordinator<B>,
2276 module: CachedModuleCodegen,
2277) {
2278let llvm_work_item = WorkItem::CopyPostLtoArtifacts(module);
2279drop(coordinator.sender.send(Message::CodegenDone::<B> { llvm_work_item, cost: 0 }));
2280}
22812282pub(crate) fn submit_pre_lto_module_to_llvm<B: WriteBackendMethods>(
2283 tcx: TyCtxt<'_>,
2284 coordinator: &Coordinator<B>,
2285 module: CachedModuleCodegen,
2286) {
2287let filename = pre_lto_bitcode_filename(&module.name);
2288let bc_path = in_incr_comp_dir_sess(tcx.sess, &filename);
2289let file = fs::File::open(&bc_path)
2290 .unwrap_or_else(|e| {
::core::panicking::panic_fmt(format_args!("failed to open bitcode file `{0}`: {1}",
bc_path.display(), e));
}panic!("failed to open bitcode file `{}`: {}", bc_path.display(), e));
22912292let mmap = unsafe {
2293Mmap::map(file).unwrap_or_else(|e| {
2294{
::core::panicking::panic_fmt(format_args!("failed to mmap bitcode file `{0}`: {1}",
bc_path.display(), e));
}panic!("failed to mmap bitcode file `{}`: {}", bc_path.display(), e)2295 })
2296 };
2297// Schedule the module to be loaded
2298drop(coordinator.sender.send(Message::AddImportOnlyModule::<B> {
2299 module_data: SerializedModule::FromUncompressedFile(mmap),
2300 work_product: module.source,
2301 }));
2302}
23032304fn pre_lto_bitcode_filename(module_name: &str) -> String {
2305::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}.{1}", module_name,
PRE_LTO_BC_EXT))
})format!("{module_name}.{PRE_LTO_BC_EXT}")2306}
23072308fn msvc_imps_needed(tcx: TyCtxt<'_>) -> bool {
2309// This should never be true (because it's not supported). If it is true,
2310 // something is wrong with commandline arg validation.
2311if !!(tcx.sess.opts.cg.linker_plugin_lto.enabled() &&
tcx.sess.target.is_like_windows &&
tcx.sess.opts.cg.prefer_dynamic) {
::core::panicking::panic("assertion failed: !(tcx.sess.opts.cg.linker_plugin_lto.enabled() &&\n tcx.sess.target.is_like_windows &&\n tcx.sess.opts.cg.prefer_dynamic)")
};assert!(
2312 !(tcx.sess.opts.cg.linker_plugin_lto.enabled()
2313 && tcx.sess.target.is_like_windows
2314 && tcx.sess.opts.cg.prefer_dynamic)
2315 );
23162317// We need to generate _imp__ symbol if we are generating an rlib or we include one
2318 // indirectly from ThinLTO. In theory these are not needed as ThinLTO could resolve
2319 // these, but it currently does not do so.
2320let can_have_static_objects =
2321tcx.sess.lto() == Lto::Thin || tcx.crate_types().contains(&CrateType::Rlib);
23222323tcx.sess.target.is_like_windows &&
2324can_have_static_objects &&
2325// ThinLTO can't handle this workaround in all cases, so we don't
2326 // emit the `__imp_` symbols. Instead we make them unnecessary by disallowing
2327 // dynamic linking when linker plugin LTO is enabled.
2328!tcx.sess.opts.cg.linker_plugin_lto.enabled()
2329}