Skip to main content

rustc_codegen_ssa/back/
write.rs

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};
7
8use 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::{
15    Diag, DiagArgMap, DiagCtxt, DiagCtxtHandle, DiagMessage, ErrCode, FatalError, FatalErrorMarker,
16    Level, MultiSpan, Style, Suggestions, catch_fatal_errors,
17};
18use rustc_fs_util::link_or_copy;
19use rustc_hir::find_attr;
20use rustc_incremental::{
21    copy_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::{
30    self, CrateType, Lto, OptLevel, OutFileName, OutputFilenames, OutputType, Passes,
31    SwitchWithOptPath,
32};
33use rustc_span::source_map::SourceMap;
34use rustc_span::{FileName, InnerSpan, Span, SpanData};
35use rustc_target::spec::{MergeFunctions, SanitizerSet};
36use tracing::debug;
37
38use 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::{
44    CachedModuleCodegen, CompiledModule, CompiledModules, CrateInfo, ModuleCodegen, ModuleKind,
45    errors,
46};
47
48const PRE_LTO_BC_EXT: &str = "pre-lto.bc";
49
50/// 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.
54    None,
55
56    // Just uncompressed llvm bitcode. Provides easy compatibility with
57    // emscripten's ecc compiler, when used as the linker.
58    Bitcode,
59
60    // Object code, possibly augmented with a bitcode section.
61    ObjectCode(BitcodeSection),
62}
63
64/// 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.
68    None,
69
70    // A full, uncompressed bitcode section.
71    Full,
72}
73
74/// 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.
78    pub 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).
81    pub opt_level: Option<config::OptLevel>,
82
83    pub pgo_gen: SwitchWithOptPath,
84    pub pgo_use: Option<PathBuf>,
85    pub pgo_sample_use: Option<PathBuf>,
86    pub debug_info_for_profiling: bool,
87    pub instrument_coverage: bool,
88
89    pub sanitizer: SanitizerSet,
90    pub sanitizer_recover: SanitizerSet,
91    pub sanitizer_dataflow_abilist: Vec<String>,
92    pub sanitizer_memory_track_origins: usize,
93
94    // Flags indicating which outputs to produce.
95    pub emit_pre_lto_bc: bool,
96    pub emit_bc: bool,
97    pub emit_ir: bool,
98    pub emit_asm: bool,
99    pub emit_obj: EmitObj,
100    pub emit_thin_lto_summary: bool,
101
102    // Miscellaneous flags. These are mostly copied from command-line
103    // options.
104    pub verify_llvm_ir: bool,
105    pub lint_llvm_ir: bool,
106    pub no_prepopulate_passes: bool,
107    pub no_builtins: bool,
108    pub vectorize_loop: bool,
109    pub vectorize_slp: bool,
110    pub merge_functions: bool,
111    pub emit_lifetime_markers: bool,
112    pub llvm_plugins: Vec<String>,
113    pub autodiff: Vec<config::AutoDiff>,
114    pub offload: Vec<config::Offload>,
115}
116
117impl ModuleConfig {
118    fn 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.
121        macro_rules! if_regular {
122            ($regular: expr, $other: expr) => {
123                if let ModuleKind::Regular = kind { $regular } else { $other }
124            };
125        }
126
127        let sess = tcx.sess;
128        let opt_level_and_size = if let ModuleKind::Regular = kind { Some(sess.opts.optimize) } else { None }if_regular!(Some(sess.opts.optimize), None);
129
130        let save_temps = sess.opts.cg.save_temps;
131
132        let 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            };
137
138        let emit_obj = if !should_emit_obj {
139            EmitObj::None
140        } 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.
157            EmitObj::Bitcode
158        } else if need_bitcode_in_object(tcx) {
159            EmitObj::ObjectCode(BitcodeSection::Full)
160        } else {
161            EmitObj::ObjectCode(BitcodeSection::None)
162        };
163
164        ModuleConfig {
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![]),
166
167            opt_level: opt_level_and_size,
168
169            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),
177
178            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,
189                0
190            ),
191
192            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),
194                false
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),
202                false
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),
206                false
207            ),
208            emit_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),
211                false
212            ),
213
214            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,
218
219            // Copy what clang does by turning on loop vectorization at O2 and
220            // slp vectorization at O3.
221            vectorize_loop: !sess.opts.cg.no_vectorize_loops
222                && (sess.opts.optimize == config::OptLevel::More
223                    || sess.opts.optimize == config::OptLevel::Aggressive),
224            vectorize_slp: !sess.opts.cg.no_vectorize_slp
225                && sess.opts.optimize == config::OptLevel::Aggressive,
226
227            // 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.
236            merge_functions: match sess
237                .opts
238                .unstable_opts
239                .merge_functions
240                .unwrap_or(sess.target.merge_functions)
241            {
242                MergeFunctions::Disabled => false,
243                MergeFunctions::Trampolines | MergeFunctions::Aliases => {
244                    use config::OptLevel::*;
245                    match sess.opts.optimize {
246                        Aggressive | More | SizeMin | Size => true,
247                        Less | No => false,
248                    }
249                }
250            },
251
252            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    }
258
259    pub fn bitcode_needed(&self) -> bool {
260        self.emit_bc
261            || self.emit_thin_lto_summary
262            || self.emit_obj == EmitObj::Bitcode
263            || self.emit_obj == EmitObj::ObjectCode(BitcodeSection::Full)
264    }
265
266    pub fn embed_bitcode(&self) -> bool {
267        self.emit_obj == EmitObj::ObjectCode(BitcodeSection::Full)
268    }
269}
270
271/// 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.
276    pub split_dwarf_file: Option<PathBuf>,
277
278    /// 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
280    pub output_obj_file: Option<PathBuf>,
281}
282
283impl TargetMachineFactoryConfig {
284    pub fn new(cgcx: &CodegenContext, module_name: &str) -> TargetMachineFactoryConfig {
285        let split_dwarf_file = if cgcx.target_can_use_split_dwarf {
286            cgcx.output_filenames.split_dwarf_path(
287                cgcx.split_debuginfo,
288                cgcx.split_dwarf_kind,
289                module_name,
290                cgcx.invocation_temp.as_deref(),
291            )
292        } else {
293            None
294        };
295
296        let output_obj_file = Some(cgcx.output_filenames.temp_path_for_cgu(
297            OutputType::Object,
298            module_name,
299            cgcx.invocation_temp.as_deref(),
300        ));
301        TargetMachineFactoryConfig { split_dwarf_file, output_obj_file }
302    }
303}
304
305pub type TargetMachineFactoryFn<B> = Arc<
306    dyn Fn(
307            DiagCtxtHandle<'_>,
308            TargetMachineFactoryConfig,
309        ) -> <B as WriteBackendMethods>::TargetMachine
310        + Send
311        + Sync,
312>;
313
314/// 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
318    pub lto: Lto,
319    pub use_linker_plugin_lto: bool,
320    pub dylib_lto: bool,
321    pub prefer_dynamic: bool,
322    pub save_temps: bool,
323    pub fewer_names: bool,
324    pub time_trace: bool,
325    pub crate_types: Vec<CrateType>,
326    pub output_filenames: Arc<OutputFilenames>,
327    pub invocation_temp: Option<String>,
328    pub module_config: Arc<ModuleConfig>,
329    pub opt_level: OptLevel,
330    pub backend_features: Vec<String>,
331    pub msvc_imps_needed: bool,
332    pub is_pe_coff: bool,
333    pub target_can_use_split_dwarf: bool,
334    pub target_arch: String,
335    pub target_is_like_darwin: bool,
336    pub target_is_like_aix: bool,
337    pub target_is_like_gpu: bool,
338    pub split_debuginfo: rustc_target::spec::SplitDebuginfo,
339    pub split_dwarf_kind: rustc_session::config::SplitDwarfKind,
340    pub pointer_size: Size,
341
342    /// LLVM optimizations for which we want to print remarks.
343    pub remark: Passes,
344    /// Directory into which should the LLVM optimization remarks be written.
345    /// If `None`, they will be written to stderr.
346    pub remark_dir: Option<PathBuf>,
347    /// The incremental compilation session directory, or None if we are not
348    /// compiling incrementally
349    pub 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`.
353    pub parallel: bool,
354}
355
356fn 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)> {
364    let _prof_timer = prof.generic_activity("codegen_thin_generate_lto_work");
365
366    let (lto_modules, copy_jobs) = B::run_thin_lto(
367        cgcx,
368        prof,
369        dcx,
370        exported_symbols_for_lto,
371        each_linked_rlib_for_lto,
372        needs_thin_lto,
373    );
374    lto_modules
375        .into_iter()
376        .map(|module| {
377            let 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                }),
386                0, // copying is very cheap
387            )
388        }))
389        .collect()
390}
391
392enum 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}
407
408fn need_bitcode_in_object(tcx: TyCtxt<'_>) -> bool {
409    let sess = tcx.sess;
410    sess.opts.cg.embed_bitcode
411        && tcx.crate_types().contains(&CrateType::Rlib)
412        && sess.opts.output_types.contains_key(&OutputType::Exe)
413}
414
415fn need_pre_lto_bitcode_for_incr_comp(sess: &Session) -> bool {
416    if sess.opts.incremental.is_none() {
417        return false;
418    }
419
420    match sess.lto() {
421        Lto::No => false,
422        Lto::Fat | Lto::Thin | Lto::ThinLocal => true,
423    }
424}
425
426pub(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> {
432    let (coordinator_send, coordinator_receive) = channel();
433
434    let 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);
435
436    let regular_config = ModuleConfig::new(ModuleKind::Regular, tcx, no_builtins);
437    let allocator_config = ModuleConfig::new(ModuleKind::Allocator, tcx, no_builtins);
438
439    let (shared_emitter, shared_emitter_main) = SharedEmitter::new();
440    let (codegen_worker_send, codegen_worker_receive) = channel();
441
442    let coordinator_thread = start_executing_work(
443        backend.clone(),
444        tcx,
445        crate_info,
446        shared_emitter,
447        codegen_worker_send,
448        coordinator_receive,
449        Arc::new(regular_config),
450        Arc::new(allocator_config),
451        allocator_module,
452        coordinator_send.clone(),
453    );
454
455    OngoingCodegen {
456        backend,
457
458        codegen_worker_receive,
459        shared_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}
468
469fn copy_all_cgu_workproducts_to_incr_comp_cache_dir(
470    sess: &Session,
471    compiled_modules: &CompiledModules,
472) -> FxIndexMap<WorkProductId, WorkProduct> {
473    let mut work_products = FxIndexMap::default();
474
475    if sess.opts.incremental.is_none() {
476        return work_products;
477    }
478
479    let _timer = sess.timer("copy_all_cgu_workproducts_to_incr_comp_cache_dir");
480
481    for module in compiled_modules.modules.iter().filter(|m| m.kind == ModuleKind::Regular) {
482        let mut files = Vec::new();
483        if let Some(object_file_path) = &module.object {
484            files.push((OutputType::Object.extension(), object_file_path.as_path()));
485        }
486        if let Some(dwarf_object_file_path) = &module.dwarf_object {
487            files.push(("dwo", dwarf_object_file_path.as_path()));
488        }
489        if let Some(path) = &module.assembly {
490            files.push((OutputType::Assembly.extension(), path.as_path()));
491        }
492        if let Some(path) = &module.llvm_ir {
493            files.push((OutputType::LlvmAssembly.extension(), path.as_path()));
494        }
495        if let Some(path) = &module.bytecode {
496            files.push((OutputType::Bitcode.extension(), path.as_path()));
497        }
498        if 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    }
507
508    work_products
509}
510
511pub fn produce_final_output_artifacts(
512    sess: &Session,
513    compiled_modules: &CompiledModules,
514    crate_output: &OutputFilenames,
515) {
516    let mut user_wants_bitcode = false;
517    let mut user_wants_objects = false;
518
519    // Produce final compile outputs.
520    let copy_gracefully = |from: &Path, to: &OutFileName| match to {
521        OutFileName::Stdout if let Err(e) = copy_to_stdout(from) => {
522            sess.dcx().emit_err(errors::CopyPath::new(from, to.as_path(), e));
523        }
524        OutFileName::Real(path) if let Err(e) = fs::copy(from, path) => {
525            sess.dcx().emit_err(errors::CopyPath::new(from, path, e));
526        }
527        _ => {}
528    };
529
530    let copy_if_one_unit = |output_type: OutputType, keep_numbered: bool| {
531        if 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`.
534            let path = crate_output.temp_path_for_cgu(
535                output_type,
536                &module.name,
537                sess.invocation_temp.as_deref(),
538            );
539            let output = crate_output.path(output_type);
540            if !output_type.is_text_output() && output.is_tty() {
541                sess.dcx()
542                    .emit_err(errors::BinaryOutputToTty { shorthand: output_type.shorthand() });
543            } else {
544                copy_gracefully(&path, &output);
545            }
546            if !sess.opts.cg.save_temps && !keep_numbered {
547                // The user just wants `foo.x`, not `foo.#module-name#.x`.
548                ensure_removed(sess.dcx(), &path);
549            }
550        } else {
551            if 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.
554                sess.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.
559                sess.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    };
567
568    // 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.
571    for output_type in crate_output.outputs.keys() {
572        match *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.
578                copy_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    }
596
597    // Clean up unwanted temporary files.
598
599    // 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).
606
607    if !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.
612
613        // 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.
623        let needs_crate_object = crate_output.outputs.contains_key(&OutputType::Exe);
624
625        let keep_numbered_bitcode = user_wants_bitcode && sess.codegen_units().as_usize() > 1;
626
627        let keep_numbered_objects =
628            needs_crate_object || (user_wants_objects && sess.codegen_units().as_usize() > 1);
629
630        for module in compiled_modules.modules.iter() {
631            if !keep_numbered_objects {
632                if let Some(ref path) = module.object {
633                    ensure_removed(sess.dcx(), path);
634                }
635
636                if let Some(ref path) = module.dwarf_object {
637                    ensure_removed(sess.dcx(), path);
638                }
639            }
640
641            if let Some(ref path) = module.bytecode {
642                if !keep_numbered_bitcode {
643                    ensure_removed(sess.dcx(), path);
644                }
645            }
646        }
647
648        if !user_wants_bitcode
649            && let Some(ref allocator_module) = compiled_modules.allocator_module
650            && let Some(ref path) = allocator_module.bytecode
651        {
652            ensure_removed(sess.dcx(), path);
653        }
654    }
655
656    if sess.opts.json_artifact_notifications {
657        if let [module] = &compiled_modules.modules[..] {
658            module.for_each_output(|_path, ty| {
659                if sess.opts.output_types.contains_key(&ty) {
660                    let descr = ty.shorthand();
661                    // for single cgu file is renamed to drop cgu specific suffix
662                    // so we regenerate it the same way
663                    let path = crate_output.path(ty);
664                    sess.dcx().emit_artifact_notification(path.as_path(), descr);
665                }
666            });
667        } else {
668            for module in &compiled_modules.modules {
669                module.for_each_output(|path, ty| {
670                    if sess.opts.output_types.contains_key(&ty) {
671                        let descr = ty.shorthand();
672                        sess.dcx().emit_artifact_notification(&path, descr);
673                    }
674                });
675            }
676        }
677    }
678
679    // 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}
684
685pub(crate) enum WorkItem<B: WriteBackendMethods> {
686    /// Optimize a newly codegened, totally unoptimized module.
687    Optimize(ModuleCodegen<B::Module>),
688    /// Copy the post-LTO artifacts from the incremental cache to the output
689    /// directory.
690    CopyPostLtoArtifacts(CachedModuleCodegen),
691}
692
693enum ThinLtoWorkItem<B: WriteBackendMethods> {
694    /// Copy the post-LTO artifacts from the incremental cache to the output
695    /// directory.
696    CopyPostLtoArtifacts(CachedModuleCodegen),
697    /// Performs thin-LTO on the given module.
698    ThinLto(lto::ThinModule<B>),
699}
700
701// `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    //
725    match (&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);
726    let name = if let Some(index) = name.find("-cgu.") {
727        &name[index + 1..] // +1 skips the leading '-'.
728    } else {
729        name
730    };
731    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} {1}", short, name))
    })format!("{short} {name}")
732}
733
734// Windows has no thread name length limit, so use more descriptive names.
735#[cfg(windows)]
736fn desc(_short: &str, long: &str, name: &str) -> String {
737    format!("{long} {name}")
738}
739
740impl<B: WriteBackendMethods> WorkItem<B> {
741    /// Generate a short description of this work item suitable for use as a thread name.
742    fn short_description(&self) -> String {
743        match 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}
749
750impl<B: WriteBackendMethods> ThinLtoWorkItem<B> {
751    /// Generate a short description of this work item suitable for use as a thread name.
752    fn short_description(&self) -> String {
753        match self {
754            ThinLtoWorkItem::CopyPostLtoArtifacts(m) => {
755                desc("cpy", "copy LTO artifacts for", &m.name)
756            }
757            ThinLtoWorkItem::ThinLto(m) => desc("lto", "thin-LTO module", m.name()),
758        }
759    }
760}
761
762/// A result produced by the backend.
763pub(crate) enum WorkItemResult<B: WriteBackendMethods> {
764    /// The backend has finished compiling a CGU, nothing more required.
765    Finished(CompiledModule),
766
767    /// The backend has finished compiling a CGU, which now needs to go through
768    /// fat LTO.
769    NeedsFatLto(FatLtoInput<B>),
770
771    /// The backend has finished compiling a CGU, which now needs to go through
772    /// thin LTO.
773    NeedsThinLto(String, B::ModuleBuffer),
774}
775
776pub enum FatLtoInput<B: WriteBackendMethods> {
777    Serialized { name: String, buffer: SerializedModule<B::ModuleBuffer> },
778    InMemory(ModuleCodegen<B::Module>),
779}
780
781pub enum ThinLtoInput<B: WriteBackendMethods> {
782    Red { name: String, buffer: SerializedModule<B::ModuleBuffer> },
783    Green { wp: WorkProduct, buffer: SerializedModule<B::ModuleBuffer> },
784}
785
786/// Actual LTO type we end up choosing based on multiple factors.
787pub(crate) enum ComputedLtoType {
788    No,
789    Thin,
790    Fat,
791}
792
793pub(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.
801
802    // 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.
810    let is_rlib = #[allow(non_exhaustive_omitted_patterns)] match sess_crate_types {
    [CrateType::Rlib] => true,
    _ => false,
}matches!(sess_crate_types, [CrateType::Rlib]);
811
812    match sess_lto {
813        Lto::ThinLocal if !linker_does_lto => ComputedLtoType::Thin,
814        Lto::Thin if !linker_does_lto && !is_rlib => ComputedLtoType::Thin,
815        Lto::Fat if !is_rlib => ComputedLtoType::Fat,
816        _ => ComputedLtoType::No,
817    }
818}
819
820fn execute_optimize_work_item<B: WriteBackendMethods>(
821    cgcx: &CodegenContext,
822    prof: &SelfProfilerRef,
823    shared_emitter: SharedEmitter,
824    mut module: ModuleCodegen<B::Module>,
825) -> WorkItemResult<B> {
826    let _timer = prof.generic_activity_with_arg("codegen_module_optimize", &*module.name);
827
828    B::optimize(cgcx, prof, &shared_emitter, &mut module, &cgcx.module_config);
829
830    // 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).
834
835    let lto_type =
836        compute_per_cgu_lto_type(&cgcx.lto, cgcx.use_linker_plugin_lto, &cgcx.crate_types);
837
838    // If we're doing some form of incremental LTO then we need to be sure to
839    // save our module to disk first.
840    let bitcode = if cgcx.module_config.emit_pre_lto_bc {
841        let filename = pre_lto_bitcode_filename(&module.name);
842        cgcx.incr_comp_session_dir.as_ref().map(|path| path.join(&filename))
843    } else {
844        None
845    };
846
847    match lto_type {
848        ComputedLtoType::No => {
849            let module = B::codegen(cgcx, &prof, &shared_emitter, module, &cgcx.module_config);
850            WorkItemResult::Finished(module)
851        }
852        ComputedLtoType::Thin => {
853            let thin_buffer = B::serialize_module(module.module_llvm, true);
854            if 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 {
862            Some(path) => {
863                let 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            }
872            None => WorkItemResult::NeedsFatLto(FatLtoInput::InMemory(module)),
873        },
874    }
875}
876
877fn execute_copy_from_cache_work_item(
878    cgcx: &CodegenContext,
879    prof: &SelfProfilerRef,
880    shared_emitter: SharedEmitter,
881    module: CachedModuleCodegen,
882) -> CompiledModule {
883    let _timer =
884        prof.generic_activity_with_arg("codegen_copy_artifacts_from_incr_cache", &*module.name);
885
886    let dcx = DiagCtxt::new(Box::new(shared_emitter));
887    let dcx = dcx.handle();
888
889    let incr_comp_session_dir = cgcx.incr_comp_session_dir.as_ref().unwrap();
890
891    let mut links_from_incr_cache = Vec::new();
892
893    let mut load_from_incr_comp_dir = |output_path: PathBuf, saved_path: &str| {
894        let 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        );
901        match link_or_copy(&source_file, &output_path) {
902            Ok(_) => {
903                links_from_incr_cache.push(source_file);
904                Some(output_path)
905            }
906            Err(error) => {
907                dcx.emit_err(errors::CopyPathBuf { source_file, output_path, error });
908                None
909            }
910        }
911    };
912
913    let dwarf_object =
914        module.source.saved_files.get("dwo").as_ref().and_then(|saved_dwarf_object_file| {
915            let dwarf_obj_out = cgcx
916                .output_filenames
917                .split_dwarf_path(
918                    cgcx.split_debuginfo,
919                    cgcx.split_dwarf_kind,
920                    &module.name,
921                    cgcx.invocation_temp.as_deref(),
922                )
923                .expect(
924                    "saved dwarf object in work product but `split_dwarf_path` returned `None`",
925                );
926            load_from_incr_comp_dir(dwarf_obj_out, saved_dwarf_object_file)
927        });
928
929    let mut load_from_incr_cache = |perform, output_type: OutputType| {
930        if perform {
931            let saved_file = module.source.saved_files.get(output_type.extension())?;
932            let output_path = cgcx.output_filenames.temp_path_for_cgu(
933                output_type,
934                &module.name,
935                cgcx.invocation_temp.as_deref(),
936            );
937            load_from_incr_comp_dir(output_path, &saved_file)
938        } else {
939            None
940        }
941    };
942
943    let module_config = &cgcx.module_config;
944    let should_emit_obj = module_config.emit_obj != EmitObj::None;
945    let assembly = load_from_incr_cache(module_config.emit_asm, OutputType::Assembly);
946    let llvm_ir = load_from_incr_cache(module_config.emit_ir, OutputType::LlvmAssembly);
947    let bytecode = load_from_incr_cache(module_config.emit_bc, OutputType::Bitcode);
948    let object = load_from_incr_cache(should_emit_obj, OutputType::Object);
949    if should_emit_obj && object.is_none() {
950        dcx.emit_fatal(errors::NoSavedObjectFile { cgu_name: &module.name })
951    }
952
953    CompiledModule {
954        links_from_incr_cache,
955        kind: ModuleKind::Regular,
956        name: module.name,
957        object,
958        dwarf_object,
959        bytecode,
960        assembly,
961        llvm_ir,
962    }
963}
964
965fn 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 {
974    let _timer = prof.verbose_generic_activity("LLVM_fatlto");
975
976    let dcx = DiagCtxt::new(Box::new(shared_emitter.clone()));
977    let dcx = dcx.handle();
978
979    check_lto_allowed(&cgcx, dcx);
980
981    B::optimize_and_codegen_fat_lto(
982        cgcx,
983        prof,
984        &shared_emitter,
985        tm_factory,
986        exported_symbols_for_lto,
987        each_linked_rlib_for_lto,
988        needs_fat_lto,
989    )
990}
991
992fn 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> {
1001    let _timer = prof.verbose_generic_activity("LLVM_thinlto");
1002
1003    let dcx = DiagCtxt::new(Box::new(shared_emitter.clone()));
1004    let dcx = dcx.handle();
1005
1006    check_lto_allowed(&cgcx, dcx);
1007
1008    let (coordinator_send, coordinator_receive) = channel();
1009
1010    // 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.
1015    let coordinator_send2 = coordinator_send.clone();
1016    let helper = jobserver::client()
1017        .into_helper_thread(move |token| {
1018            drop(coordinator_send2.send(ThinLtoMessage::Token(token)));
1019        })
1020        .expect("failed to spawn helper thread");
1021
1022    let mut work_items = ::alloc::vec::Vec::new()vec![];
1023
1024    // 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.
1029    for (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    ) {
1037        let 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));
1040        if cgcx.parallel {
1041            helper.request_token();
1042        }
1043    }
1044
1045    let mut codegen_aborted = None;
1046
1047    // These are the Jobserver Tokens we currently hold. Does not include
1048    // the implicit Token the compiler process owns no matter what.
1049    let mut tokens = ::alloc::vec::Vec::new()vec![];
1050
1051    // Amount of tokens that are used (including the implicit token).
1052    let mut used_token_count = 0;
1053
1054    let mut compiled_modules = ::alloc::vec::Vec::new()vec![];
1055
1056    // 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.
1061    loop {
1062        if codegen_aborted.is_none() {
1063            if used_token_count == 0 && work_items.is_empty() {
1064                // All codegen work is done.
1065                break;
1066            }
1067
1068            // Spin up what work we can, only doing this while we've got available
1069            // parallelism slots and work left to spawn.
1070            while 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.
1086            if used_token_count == 0 {
1087                break;
1088            }
1089        }
1090
1091        // Relinquish accidentally acquired extra tokens. Subtract 1 for the implicit token.
1092        tokens.truncate(used_token_count.saturating_sub(1));
1093
1094        match 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.
1098            ThinLtoMessage::Token(token) => match token {
1099                Ok(token) => {
1100                    tokens.push(token);
1101                }
1102                Err(e) => {
1103                    let msg = &::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("failed to acquire jobserver token: {0}",
                e))
    })format!("failed to acquire jobserver token: {e}");
1104                    shared_emitter.fatal(msg);
1105                    codegen_aborted = Some(FatalError);
1106                }
1107            },
1108
1109            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".
1115                used_token_count -= 1;
1116
1117                match result {
1118                    Ok(compiled_module) => compiled_modules.push(compiled_module),
1119                    Err(Some(WorkerFatalError)) => {
1120                        // Like `CodegenAborted`, wait for remaining work to finish.
1121                        codegen_aborted = Some(FatalError);
1122                    }
1123                    Err(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    }
1132
1133    if let Some(codegen_aborted) = codegen_aborted {
1134        codegen_aborted.raise();
1135    }
1136
1137    compiled_modules
1138}
1139
1140fn 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 {
1147    let _timer = prof.generic_activity_with_arg("codegen_module_perform_lto", module.name());
1148
1149    B::optimize_and_codegen_thin(cgcx, prof, &shared_emitter, tm_factory, module)
1150}
1151
1152/// 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.
1156    Token(io::Result<Acquired>),
1157
1158    /// The backend has finished processing a work item for a codegen unit.
1159    /// Sent from a backend worker thread.
1160    WorkItem { result: Result<WorkItemResult<B>, Option<WorkerFatalError>> },
1161
1162    /// 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.
1165    CodegenDone { llvm_work_item: WorkItem<B>, cost: u64 },
1166
1167    /// Similar to `CodegenDone`, but for reusing a pre-LTO artifact
1168    /// Sent from the main thread.
1169    AddImportOnlyModule {
1170        module_data: SerializedModule<B::ModuleBuffer>,
1171        work_product: WorkProduct,
1172    },
1173
1174    /// The frontend has finished generating everything for all codegen units.
1175    /// Sent from the main thread.
1176    CodegenComplete,
1177
1178    /// Some normal-ish compiler error occurred, and codegen should be wound
1179    /// down. Sent from the main thread.
1180    CodegenAborted,
1181}
1182
1183/// Messages sent to the coordinator.
1184pub(crate) enum ThinLtoMessage {
1185    /// A jobserver token has become available. Sent from the jobserver helper
1186    /// thread.
1187    Token(io::Result<Acquired>),
1188
1189    /// The backend has finished processing a work item for a codegen unit.
1190    /// Sent from a backend worker thread.
1191    WorkItem { result: Result<CompiledModule, Option<WorkerFatalError>> },
1192}
1193
1194/// A message sent from the coordinator thread to the main thread telling it to
1195/// process another codegen unit.
1196pub struct CguMessage;
1197
1198// 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}
1215
1216// 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}
1223
1224#[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.
1227    Idle,
1228
1229    /// Doing codegen, i.e. MIR-to-LLVM-IR conversion.
1230    Codegenning,
1231
1232    /// Idle, but lending the compiler process's Token to an LLVM thread so it can do useful work.
1233    Lending,
1234}
1235
1236fn 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>,
1245    mut allocator_module: Option<ModuleCodegen<B::Module>>,
1246    coordinator_send: Sender<Message<B>>,
1247) -> thread::JoinHandle<Result<MaybeLtoModules<B>, ()>> {
1248    let sess = tcx.sess;
1249    let prof = sess.prof.clone();
1250
1251    let mut each_linked_rlib_for_lto = Vec::new();
1252    let mut each_linked_rlib_file_for_lto = Vec::new();
1253    if sess.lto() != Lto::No && sess.lto() != Lto::ThinLocal {
1254        drop(link::each_linked_rlib(crate_info, None, &mut |cnum, path| {
1255            if link::ignored_for_lto(sess, crate_info, cnum) {
1256                return;
1257            }
1258
1259            each_linked_rlib_for_lto.push(cnum);
1260            each_linked_rlib_file_for_lto.push(path.to_path_buf());
1261        }));
1262    }
1263
1264    // Compute the set of symbols we need to retain when doing LTO (if we need to)
1265    let exported_symbols_for_lto =
1266        Arc::new(lto::exported_symbols_for_lto(tcx, &each_linked_rlib_for_lto));
1267
1268    // 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.
1273    let coordinator_send2 = coordinator_send.clone();
1274    let helper = jobserver::client()
1275        .into_helper_thread(move |token| {
1276            drop(coordinator_send2.send(Message::Token::<B>(token)));
1277        })
1278        .expect("failed to spawn helper thread");
1279
1280    let opt_level = tcx.backend_optimization_level(());
1281    let backend_features = tcx.global_backend_features(()).clone();
1282    let tm_factory = backend.target_machine_factory(tcx.sess, opt_level, &backend_features);
1283
1284    let remark_dir = if let Some(ref dir) = sess.opts.unstable_opts.remark_dir {
1285        let result = fs::create_dir_all(dir).and_then(|_| dir.canonicalize());
1286        match result {
1287            Ok(dir) => Some(dir),
1288            Err(error) => sess.dcx().emit_fatal(ErrorCreatingRemarkDir { error }),
1289        }
1290    } else {
1291        None
1292    };
1293
1294    let 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(),
1304        remark_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,
1308        opt_level,
1309        backend_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    };
1323
1324    // 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.
1459    let f = move || {
1460        let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
1461
1462        // This is where we collect codegen units that have gone all the way
1463        // through codegen and LLVM.
1464        let mut compiled_modules = ::alloc::vec::Vec::new()vec![];
1465        let mut needs_fat_lto = Vec::new();
1466        let mut needs_thin_lto = Vec::new();
1467        let mut lto_import_only_modules = Vec::new();
1468
1469        /// 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)]
1474        enum CodegenState {
1475            Ongoing,
1476            Completed,
1477            Aborted,
1478        }
1479        use CodegenState::*;
1480        let mut codegen_state = Ongoing;
1481
1482        // This is the queue of LLVM work items that still need processing.
1483        let mut work_items = Vec::<(WorkItem<B>, u64)>::new();
1484
1485        // This are the Jobserver Tokens we currently hold. Does not include
1486        // the implicit Token the compiler process owns no matter what.
1487        let mut tokens = Vec::new();
1488
1489        let mut main_thread_state = MainThreadState::Idle;
1490
1491        // How many LLVM worker threads are running while holding a Token. This
1492        // *excludes* any that the main thread is lending a Token to.
1493        let mut running_with_own_token = 0;
1494
1495        // How many LLVM worker threads are running in total. This *includes*
1496        // any that the main thread is lending a Token to.
1497        let running_with_any_token = |main_thread_state, running_with_own_token| {
1498            running_with_own_token
1499                + if main_thread_state == MainThreadState::Lending { 1 } else { 0 }
1500        };
1501
1502        let mut llvm_start_time: Option<VerboseTimingGuard<'_>> = None;
1503
1504        if let Some(allocator_module) = &mut allocator_module {
1505            B::optimize(&cgcx, &prof, &shared_emitter, allocator_module, &allocator_config);
1506        }
1507
1508        // 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.
1513        loop {
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.
1517            if codegen_state == Ongoing {
1518                if 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.
1526                    let extra_tokens = tokens.len().checked_sub(running_with_own_token).unwrap();
1527                    let additional_running = std::cmp::min(extra_tokens, work_items.len());
1528                    let anticipated_running = running_with_own_token + additional_running + 1;
1529
1530                    if !queue_full_enough(work_items.len(), anticipated_running) {
1531                        // The queue is not full enough, process more codegen units:
1532                        if 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                        }
1535                        main_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.
1540                        let (item, _) =
1541                            work_items.pop().expect("queue empty - queue_full_enough() broken?");
1542                        main_thread_state = MainThreadState::Lending;
1543                        spawn_work(
1544                            &cgcx,
1545                            &prof,
1546                            shared_emitter.clone(),
1547                            coordinator_send.clone(),
1548                            &mut llvm_start_time,
1549                            item,
1550                        );
1551                    }
1552                }
1553            } else if codegen_state == Completed {
1554                if running_with_any_token(main_thread_state, running_with_own_token) == 0
1555                    && work_items.is_empty()
1556                {
1557                    // All codegen work is done.
1558                    break;
1559                }
1560
1561                // 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.
1564                match main_thread_state {
1565                    MainThreadState::Idle => {
1566                        if let Some((item, _)) = work_items.pop() {
1567                            main_thread_state = MainThreadState::Lending;
1568                            spawn_work(
1569                                &cgcx,
1570                                &prof,
1571                                shared_emitter.clone(),
1572                                coordinator_send.clone(),
1573                                &mut llvm_start_time,
1574                                item,
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.
1583                            if !(running_with_own_token > 0) {
    ::core::panicking::panic("assertion failed: running_with_own_token > 0")
};assert!(running_with_own_token > 0);
1584                            running_with_own_token -= 1;
1585                            main_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.
1599                if !(codegen_state == Aborted) {
    ::core::panicking::panic("assertion failed: codegen_state == Aborted")
};assert!(codegen_state == Aborted);
1600                if running_with_any_token(main_thread_state, running_with_own_token) == 0 {
1601                    break;
1602                }
1603            }
1604
1605            // Spin up what work we can, only doing this while we've got available
1606            // parallelism slots and work left to spawn.
1607            if codegen_state != Aborted {
1608                while 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            }
1622
1623            // Relinquish accidentally acquired extra tokens.
1624            tokens.truncate(running_with_own_token);
1625
1626            match 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.
1630                Message::Token(token) => {
1631                    match token {
1632                        Ok(token) => {
1633                            tokens.push(token);
1634
1635                            if 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.
1640                                main_thread_state = MainThreadState::Idle;
1641                                running_with_own_token += 1;
1642                            }
1643                        }
1644                        Err(e) => {
1645                            let msg = &::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("failed to acquire jobserver token: {0}",
                e))
    })format!("failed to acquire jobserver token: {e}");
1646                            shared_emitter.fatal(msg);
1647                            codegen_state = Aborted;
1648                        }
1649                    }
1650                }
1651
1652                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.
1661                    let insertion_index = work_items.binary_search_by_key(&cost, |&(_, cost)| cost);
1662                    let insertion_index = match insertion_index {
1663                        Ok(idx) | Err(idx) => idx,
1664                    };
1665                    work_items.insert(insertion_index, (llvm_work_item, cost));
1666
1667                    if cgcx.parallel {
1668                        helper.request_token();
1669                    }
1670                    match (&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);
1671                    main_thread_state = MainThreadState::Idle;
1672                }
1673
1674                Message::CodegenComplete => {
1675                    if codegen_state != Aborted {
1676                        codegen_state = Completed;
1677                    }
1678                    match (&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);
1679                    main_thread_state = MainThreadState::Idle;
1680                }
1681
1682                // 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.
1689                Message::CodegenAborted => {
1690                    codegen_state = Aborted;
1691                }
1692
1693                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".
1699                    if main_thread_state == MainThreadState::Lending {
1700                        main_thread_state = MainThreadState::Idle;
1701                    } else {
1702                        running_with_own_token -= 1;
1703                    }
1704
1705                    match result {
1706                        Ok(WorkItemResult::Finished(compiled_module)) => {
1707                            compiled_modules.push(compiled_module);
1708                        }
1709                        Ok(WorkItemResult::NeedsFatLto(fat_lto_input)) => {
1710                            if !needs_thin_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_thin_lto.is_empty()")
};assert!(needs_thin_lto.is_empty());
1711                            needs_fat_lto.push(fat_lto_input);
1712                        }
1713                        Ok(WorkItemResult::NeedsThinLto(name, thin_buffer)) => {
1714                            if !needs_fat_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_fat_lto.is_empty()")
};assert!(needs_fat_lto.is_empty());
1715                            needs_thin_lto.push(ThinLtoInput::Red {
1716                                name,
1717                                buffer: SerializedModule::Local(thin_buffer),
1718                            });
1719                        }
1720                        Err(Some(WorkerFatalError)) => {
1721                            // Like `CodegenAborted`, wait for remaining work to finish.
1722                            codegen_state = Aborted;
1723                        }
1724                        Err(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                }
1731
1732                Message::AddImportOnlyModule { module_data, work_product } => {
1733                    match (&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);
1734                    match (&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);
1735                    lto_import_only_modules.push((module_data, work_product));
1736                    main_thread_state = MainThreadState::Idle;
1737                }
1738            }
1739        }
1740
1741        // Drop to print timings
1742        drop(llvm_start_time);
1743
1744        if codegen_state == Aborted {
1745            return Err(());
1746        }
1747
1748        drop(codegen_state);
1749        drop(tokens);
1750        drop(helper);
1751        if !work_items.is_empty() {
    ::core::panicking::panic("assertion failed: work_items.is_empty()")
};assert!(work_items.is_empty());
1752
1753        if !needs_fat_lto.is_empty() {
1754            if !compiled_modules.is_empty() {
    ::core::panicking::panic("assertion failed: compiled_modules.is_empty()")
};assert!(compiled_modules.is_empty());
1755            if !needs_thin_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_thin_lto.is_empty()")
};assert!(needs_thin_lto.is_empty());
1756
1757            if let Some(allocator_module) = allocator_module.take() {
1758                needs_fat_lto.push(FatLtoInput::InMemory(allocator_module));
1759            }
1760
1761            for (module, wp) in lto_import_only_modules {
1762                needs_fat_lto.push(FatLtoInput::Serialized { name: wp.cgu_name, buffer: module })
1763            }
1764
1765            return Ok(MaybeLtoModules::FatLto {
1766                cgcx,
1767                exported_symbols_for_lto,
1768                each_linked_rlib_file_for_lto,
1769                needs_fat_lto,
1770            });
1771        } else if !needs_thin_lto.is_empty() || !lto_import_only_modules.is_empty() {
1772            if !compiled_modules.is_empty() {
    ::core::panicking::panic("assertion failed: compiled_modules.is_empty()")
};assert!(compiled_modules.is_empty());
1773            if !needs_fat_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_fat_lto.is_empty()")
};assert!(needs_fat_lto.is_empty());
1774
1775            for (buffer, wp) in lto_import_only_modules {
1776                needs_thin_lto.push(ThinLtoInput::Green { wp, buffer })
1777            }
1778
1779            if cgcx.lto == Lto::ThinLocal {
1780                compiled_modules.extend(do_thin_lto::<B>(
1781                    &cgcx,
1782                    &prof,
1783                    shared_emitter.clone(),
1784                    tm_factory,
1785                    exported_symbols_for_lto,
1786                    each_linked_rlib_file_for_lto,
1787                    needs_thin_lto,
1788                ));
1789            } else {
1790                if let Some(allocator_module) = allocator_module.take() {
1791                    let thin_buffer = B::serialize_module(allocator_module.module_llvm, true);
1792                    needs_thin_lto.push(ThinLtoInput::Red {
1793                        name: allocator_module.name,
1794                        buffer: SerializedModule::Local(thin_buffer),
1795                    });
1796                }
1797
1798                return Ok(MaybeLtoModules::ThinLto {
1799                    cgcx,
1800                    exported_symbols_for_lto,
1801                    each_linked_rlib_file_for_lto,
1802                    needs_thin_lto,
1803                });
1804            }
1805        }
1806
1807        Ok(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    };
1814    return std::thread::Builder::new()
1815        .name("coordinator".to_owned())
1816        .spawn(f)
1817        .expect("failed to spawn coordinator thread");
1818
1819    // 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
1821    fn 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.
1872        let quarter_of_workers = workers_running - 3 * workers_running / 4;
1873        items_in_queue > 0 && items_in_queue >= quarter_of_workers
1874    }
1875}
1876
1877/// `FatalError` is explicitly not `Send`.
1878#[must_use]
1879pub(crate) struct WorkerFatalError;
1880
1881fn 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) {
1889    if llvm_start_time.is_none() {
1890        *llvm_start_time = Some(prof.verbose_generic_activity("LLVM_passes"));
1891    }
1892
1893    let cgcx = cgcx.clone();
1894    let prof = prof.clone();
1895
1896    let name = work.short_description();
1897    let f = move || {
1898        let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
1899
1900        let 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(
1903                execute_copy_from_cache_work_item(&cgcx, &prof, shared_emitter, m),
1904            ),
1905        }));
1906
1907        let msg = match result {
1908            Ok(result) => Message::WorkItem::<B> { result: Ok(result) },
1909
1910            // 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.
1913            Err(err) if err.is::<FatalErrorMarker>() => {
1914                Message::WorkItem::<B> { result: Err(Some(WorkerFatalError)) }
1915            }
1916
1917            Err(_) => Message::WorkItem::<B> { result: Err(None) },
1918        };
1919        drop(coordinator_send.send(msg));
1920    };
1921    std::thread::Builder::new().name(name).spawn(f).expect("failed to spawn work thread");
1922}
1923
1924fn 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) {
1932    let cgcx = cgcx.clone();
1933    let prof = prof.clone();
1934
1935    let name = work.short_description();
1936    let f = move || {
1937        let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
1938
1939        let result = std::panic::catch_unwind(AssertUnwindSafe(|| match work {
1940            ThinLtoWorkItem::CopyPostLtoArtifacts(m) => {
1941                execute_copy_from_cache_work_item(&cgcx, &prof, shared_emitter, m)
1942            }
1943            ThinLtoWorkItem::ThinLto(m) => {
1944                execute_thin_lto_work_item(&cgcx, &prof, shared_emitter, tm_factory, m)
1945            }
1946        }));
1947
1948        let msg = match result {
1949            Ok(result) => ThinLtoMessage::WorkItem { result: Ok(result) },
1950
1951            // 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.
1954            Err(err) if err.is::<FatalErrorMarker>() => {
1955                ThinLtoMessage::WorkItem { result: Err(Some(WorkerFatalError)) }
1956            }
1957
1958            Err(_) => ThinLtoMessage::WorkItem { result: Err(None) },
1959        };
1960        drop(coordinator_send.send(msg));
1961    };
1962    std::thread::Builder::new().name(name).spawn(f).expect("failed to spawn work thread");
1963}
1964
1965enum SharedEmitterMessage {
1966    Diagnostic(Diagnostic),
1967    InlineAsmError(InlineAsmError),
1968    Fatal(String),
1969}
1970
1971pub struct InlineAsmError {
1972    pub span: SpanData,
1973    pub msg: String,
1974    pub level: Level,
1975    pub source: Option<(String, Vec<InnerSpan>)>,
1976}
1977
1978#[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}
1982
1983pub struct SharedEmitterMain {
1984    receiver: Receiver<SharedEmitterMessage>,
1985}
1986
1987impl SharedEmitter {
1988    fn new() -> (SharedEmitter, SharedEmitterMain) {
1989        let (sender, receiver) = channel();
1990
1991        (SharedEmitter { sender }, SharedEmitterMain { receiver })
1992    }
1993
1994    pub fn inline_asm_error(&self, err: InlineAsmError) {
1995        drop(self.sender.send(SharedEmitterMessage::InlineAsmError(err)));
1996    }
1997
1998    fn fatal(&self, msg: &str) {
1999        drop(self.sender.send(SharedEmitterMessage::Fatal(msg.to_string())));
2000    }
2001}
2002
2003impl Emitter for SharedEmitter {
2004    fn 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`.
2007        if !!diag.span.has_span_labels() {
    ::core::panicking::panic("assertion failed: !diag.span.has_span_labels()")
};assert!(!diag.span.has_span_labels());
2008        match (&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![]));
2009        match (&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);
2010        match (&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`.
2012
2013        let args = mem::replace(&mut diag.args, DiagArgMap::default());
2014        drop(
2015            self.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: diag
2021                    .children
2022                    .into_iter()
2023                    .map(|child| Subdiagnostic { level: child.level, messages: child.messages })
2024                    .collect(),
2025                args,
2026            })),
2027        );
2028    }
2029
2030    fn source_map(&self) -> Option<&SourceMap> {
2031        None
2032    }
2033}
2034
2035impl SharedEmitterMain {
2036    fn check(&self, sess: &Session, blocking: bool) {
2037        loop {
2038            let message = if blocking {
2039                match self.receiver.recv() {
2040                    Ok(message) => Ok(message),
2041                    Err(_) => Err(()),
2042                }
2043            } else {
2044                match self.receiver.try_recv() {
2045                    Ok(message) => Ok(message),
2046                    Err(_) => Err(()),
2047                }
2048            };
2049
2050            match message {
2051                Ok(SharedEmitterMessage::Diagnostic(diag)) => {
2052                    // The diagnostic has been received on the main thread.
2053                    // Convert it back to a full `Diagnostic` and emit.
2054                    let dcx = sess.dcx();
2055                    let mut d =
2056                        rustc_errors::DiagInner::new_with_messages(diag.level, diag.messages);
2057                    d.span = MultiSpan::from_spans(
2058                        diag.span.into_iter().map(|span| span.span()).collect(),
2059                    );
2060                    d.code = diag.code; // may be `None`, that's ok
2061                    d.children = diag
2062                        .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();
2070                    d.args = diag.args;
2071                    dcx.emit_diagnostic(d);
2072                    sess.dcx().abort_if_errors();
2073                }
2074                Ok(SharedEmitterMessage::InlineAsmError(inner)) => {
2075                    match 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);
2076                    let mut err = Diag::<()>::new(sess.dcx(), inner.level, inner.msg);
2077                    if !inner.span.is_dummy() {
2078                        err.span(inner.span.span());
2079                    }
2080
2081                    // Point to the generated assembly if it is available.
2082                    if let Some((buffer, spans)) = inner.source {
2083                        let source = sess
2084                            .source_map()
2085                            .new_source_file(FileName::inline_asm_source_code(&buffer), buffer);
2086                        let spans: Vec<_> = spans
2087                            .iter()
2088                            .map(|sp| {
2089                                Span::with_root_ctxt(
2090                                    source.normalized_byte_pos(sp.start as u32),
2091                                    source.normalized_byte_pos(sp.end as u32),
2092                                )
2093                            })
2094                            .collect();
2095                        err.span_note(spans, "instantiated into assembly here");
2096                    }
2097
2098                    err.emit();
2099                }
2100                Ok(SharedEmitterMessage::Fatal(msg)) => {
2101                    sess.dcx().fatal(msg);
2102                }
2103                Err(_) => {
2104                    break;
2105                }
2106            }
2107        }
2108    }
2109}
2110
2111pub struct Coordinator<B: WriteBackendMethods> {
2112    sender: Sender<Message<B>>,
2113    future: Option<thread::JoinHandle<Result<MaybeLtoModules<B>, ()>>>,
2114    // Only used for the Message type.
2115    phantom: PhantomData<B>,
2116}
2117
2118impl<B: WriteBackendMethods> Coordinator<B> {
2119    fn join(mut self) -> std::thread::Result<Result<MaybeLtoModules<B>, ()>> {
2120        self.future.take().unwrap().join()
2121    }
2122}
2123
2124impl<B: WriteBackendMethods> Drop for Coordinator<B> {
2125    fn drop(&mut self) {
2126        if 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.
2129            drop(self.sender.send(Message::CodegenAborted::<B>));
2130            drop(future.join());
2131        }
2132    }
2133}
2134
2135pub struct OngoingCodegen<B: WriteBackendMethods> {
2136    pub backend: B,
2137    pub 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.
2141    pub coordinator: Coordinator<B>,
2142    pub codegen_worker_receive: Receiver<CguMessage>,
2143    pub shared_emitter_main: SharedEmitterMain,
2144}
2145
2146impl<B: WriteBackendMethods> OngoingCodegen<B> {
2147    pub fn join(self, sess: &Session) -> (CompiledModules, FxIndexMap<WorkProductId, WorkProduct>) {
2148        self.shared_emitter_main.check(sess, true);
2149
2150        let maybe_lto_modules = sess.time("join_worker_thread", || match self.coordinator.join() {
2151            Ok(Ok(maybe_lto_modules)) => maybe_lto_modules,
2152            Ok(Err(())) => {
2153                sess.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            }
2156            Err(_) => {
2157                ::rustc_middle::util::bug::bug_fmt(format_args!("panic during codegen/LLVM phase"));bug!("panic during codegen/LLVM phase");
2158            }
2159        });
2160
2161        sess.dcx().abort_if_errors();
2162
2163        let (shared_emitter, shared_emitter_main) = SharedEmitter::new();
2164
2165        // Catch fatal errors to ensure shared_emitter_main.check() can emit the actual diagnostics
2166        let compiled_modules = catch_fatal_errors(|| match maybe_lto_modules {
2167            MaybeLtoModules::NoLto(compiled_modules) => {
2168                drop(shared_emitter);
2169                compiled_modules
2170            }
2171            MaybeLtoModules::FatLto {
2172                cgcx,
2173                exported_symbols_for_lto,
2174                each_linked_rlib_file_for_lto,
2175                needs_fat_lto,
2176            } => {
2177                let tm_factory = self.backend.target_machine_factory(
2178                    sess,
2179                    cgcx.opt_level,
2180                    &cgcx.backend_features,
2181                );
2182
2183                CompiledModules {
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            } => {
2202                let tm_factory = self.backend.target_machine_factory(
2203                    sess,
2204                    cgcx.opt_level,
2205                    &cgcx.backend_features,
2206                );
2207
2208                CompiledModules {
2209                    modules: do_thin_lto::<B>(
2210                        &cgcx,
2211                        &sess.prof,
2212                        shared_emitter,
2213                        tm_factory,
2214                        exported_symbols_for_lto,
2215                        each_linked_rlib_file_for_lto,
2216                        needs_thin_lto,
2217                    ),
2218                    allocator_module: None,
2219                }
2220            }
2221        });
2222
2223        shared_emitter_main.check(sess, true);
2224
2225        sess.dcx().abort_if_errors();
2226
2227        let mut compiled_modules =
2228            compiled_modules.expect("fatal error emitted but not sent to SharedEmitter");
2229
2230        // 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.
2233        compiled_modules.modules.sort_by(|a, b| a.name.cmp(&b.name));
2234
2235        let work_products =
2236            copy_all_cgu_workproducts_to_incr_comp_cache_dir(sess, &compiled_modules);
2237        produce_final_output_artifacts(sess, &compiled_modules, &self.output_filenames);
2238
2239        (compiled_modules, work_products)
2240    }
2241
2242    pub(crate) fn codegen_finished(&self, tcx: TyCtxt<'_>) {
2243        self.wait_for_signal_to_codegen_item();
2244        self.check_for_errors(tcx.sess);
2245        drop(self.coordinator.sender.send(Message::CodegenComplete::<B>));
2246    }
2247
2248    pub(crate) fn check_for_errors(&self, sess: &Session) {
2249        self.shared_emitter_main.check(sess, false);
2250    }
2251
2252    pub(crate) fn wait_for_signal_to_codegen_item(&self) {
2253        match self.codegen_worker_receive.recv() {
2254            Ok(CguMessage) => {
2255                // Ok to proceed.
2256            }
2257            Err(_) => {
2258                // One of the LLVM threads must have panicked, fall through so
2259                // error handling can be reached.
2260            }
2261        }
2262    }
2263}
2264
2265pub(crate) fn submit_codegened_module_to_llvm<B: WriteBackendMethods>(
2266    coordinator: &Coordinator<B>,
2267    module: ModuleCodegen<B::Module>,
2268    cost: u64,
2269) {
2270    let llvm_work_item = WorkItem::Optimize(module);
2271    drop(coordinator.sender.send(Message::CodegenDone::<B> { llvm_work_item, cost }));
2272}
2273
2274pub(crate) fn submit_post_lto_module_to_llvm<B: WriteBackendMethods>(
2275    coordinator: &Coordinator<B>,
2276    module: CachedModuleCodegen,
2277) {
2278    let llvm_work_item = WorkItem::CopyPostLtoArtifacts(module);
2279    drop(coordinator.sender.send(Message::CodegenDone::<B> { llvm_work_item, cost: 0 }));
2280}
2281
2282pub(crate) fn submit_pre_lto_module_to_llvm<B: WriteBackendMethods>(
2283    tcx: TyCtxt<'_>,
2284    coordinator: &Coordinator<B>,
2285    module: CachedModuleCodegen,
2286) {
2287    let filename = pre_lto_bitcode_filename(&module.name);
2288    let bc_path = in_incr_comp_dir_sess(tcx.sess, &filename);
2289    let 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));
2291
2292    let mmap = unsafe {
2293        Mmap::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
2298    drop(coordinator.sender.send(Message::AddImportOnlyModule::<B> {
2299        module_data: SerializedModule::FromUncompressedFile(mmap),
2300        work_product: module.source,
2301    }));
2302}
2303
2304fn 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}
2307
2308fn 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.
2311    if !!(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    );
2316
2317    // 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.
2320    let can_have_static_objects =
2321        tcx.sess.lto() == Lto::Thin || tcx.crate_types().contains(&CrateType::Rlib);
2322
2323    tcx.sess.target.is_like_windows &&
2324    can_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}