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::jobserver::{self, Acquired};
10use rustc_data_structures::profiling::{SelfProfilerRef, VerboseTimingGuard};
11use rustc_errors::emitter::Emitter;
12use rustc_errors::{
13    Diag, DiagArgMap, DiagCtxt, DiagCtxtHandle, DiagMessage, ErrCode, FatalError, FatalErrorMarker,
14    Level, MultiSpan, Style, Suggestions, catch_fatal_errors,
15};
16use rustc_fs_util::link_or_copy;
17use rustc_hir::find_attr;
18use rustc_incremental::{copy_cgu_workproduct_to_incr_comp_cache_dir, in_incr_comp_dir_sess};
19use rustc_macros::{Decodable, Encodable};
20use rustc_metadata::fs::copy_to_stdout;
21use rustc_middle::bug;
22use rustc_middle::dep_graph::{WorkProduct, WorkProductMap};
23use rustc_middle::ty::TyCtxt;
24use rustc_session::Session;
25use rustc_session::config::{
26    self, CrateType, Lto, OptLevel, OutFileName, OutputFilenames, OutputType, Passes,
27    SwitchWithOptPath,
28};
29use rustc_span::source_map::SourceMap;
30use rustc_span::{FileName, InnerSpan, Span, SpanData};
31use rustc_target::spec::{MergeFunctions, SanitizerSet};
32use tracing::debug;
33
34use crate::back::link::ensure_removed;
35use crate::back::lto::{self, SerializedModule, check_lto_allowed};
36use crate::errors::ErrorCreatingRemarkDir;
37use crate::traits::*;
38use crate::{
39    CachedModuleCodegen, CompiledModule, CompiledModules, CrateInfo, ModuleCodegen, ModuleKind,
40    errors,
41};
42
43const PRE_LTO_BC_EXT: &str = "pre-lto.bc";
44
45/// What kind of object file to emit.
46#[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)]
47pub enum EmitObj {
48    // No object file.
49    None,
50
51    // Just uncompressed llvm bitcode. Provides easy compatibility with
52    // emscripten's ecc compiler, when used as the linker.
53    Bitcode,
54
55    // Object code, possibly augmented with a bitcode section.
56    ObjectCode(BitcodeSection),
57}
58
59/// What kind of llvm bitcode section to embed in an object file.
60#[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)]
61pub enum BitcodeSection {
62    // No bitcode section.
63    None,
64
65    // A full, uncompressed bitcode section.
66    Full,
67}
68
69/// Module-specific configuration for `optimize_and_codegen`.
70#[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,
                        autodiff_post_passes: ref __binding_27,
                        offload: ref __binding_28 } => {
                        ::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);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_28,
                            __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),
                    autodiff_post_passes: ::rustc_serialize::Decodable::decode(__decoder),
                    offload: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
71pub struct ModuleConfig {
72    /// Names of additional optimization passes to run.
73    pub passes: Vec<String>,
74    /// Some(level) to optimize at a certain level, or None to run
75    /// absolutely no optimizations (used for the allocator module).
76    pub opt_level: Option<config::OptLevel>,
77
78    pub pgo_gen: SwitchWithOptPath,
79    pub pgo_use: Option<PathBuf>,
80    pub pgo_sample_use: Option<PathBuf>,
81    pub debug_info_for_profiling: bool,
82    pub instrument_coverage: bool,
83
84    pub sanitizer: SanitizerSet,
85    pub sanitizer_recover: SanitizerSet,
86    pub sanitizer_dataflow_abilist: Vec<String>,
87    pub sanitizer_memory_track_origins: usize,
88
89    // Flags indicating which outputs to produce.
90    pub emit_pre_lto_bc: bool,
91    pub emit_bc: bool,
92    pub emit_ir: bool,
93    pub emit_asm: bool,
94    pub emit_obj: EmitObj,
95    pub emit_thin_lto_summary: bool,
96
97    // Miscellaneous flags. These are mostly copied from command-line
98    // options.
99    pub verify_llvm_ir: bool,
100    pub lint_llvm_ir: bool,
101    pub no_prepopulate_passes: bool,
102    pub no_builtins: bool,
103    pub vectorize_loop: bool,
104    pub vectorize_slp: bool,
105    pub merge_functions: bool,
106    pub emit_lifetime_markers: bool,
107    pub llvm_plugins: Vec<String>,
108    pub autodiff: Vec<config::AutoDiff>,
109    pub autodiff_post_passes: Option<String>,
110    pub offload: Vec<config::Offload>,
111}
112
113impl ModuleConfig {
114    fn new(kind: ModuleKind, tcx: TyCtxt<'_>, no_builtins: bool) -> ModuleConfig {
115        // If it's a regular module, use `$regular`, otherwise use `$other`.
116        // `$regular` and `$other` are evaluated lazily.
117        macro_rules! if_regular {
118            ($regular: expr, $other: expr) => {
119                if let ModuleKind::Regular = kind { $regular } else { $other }
120            };
121        }
122
123        let sess = tcx.sess;
124        let opt_level_and_size = if let ModuleKind::Regular = kind { Some(sess.opts.optimize) } else { None }if_regular!(Some(sess.opts.optimize), None);
125
126        let save_temps = sess.opts.cg.save_temps;
127
128        let should_emit_obj = sess.opts.output_types.contains_key(&OutputType::Exe)
129            || match kind {
130                ModuleKind::Regular => sess.opts.output_types.contains_key(&OutputType::Object),
131                ModuleKind::Allocator => false,
132            };
133
134        let emit_obj = if !should_emit_obj {
135            EmitObj::None
136        } else if sess.target.obj_is_bitcode
137            || (sess.opts.cg.linker_plugin_lto.enabled()
138                && (!no_builtins || tcx.sess.is_sanitizer_cfi_enabled()))
139        {
140            // This case is selected if the target uses objects as bitcode, or
141            // if linker plugin LTO is enabled. In the linker plugin LTO case
142            // the assumption is that the final link-step will read the bitcode
143            // and convert it to object code. This may be done by either the
144            // native linker or rustc itself.
145            //
146            // By default this branch is skipped for `#![no_builtins]` crates so
147            // they emit native object files (machine code), not LLVM bitcode
148            // objects for the linker (see rust-lang/rust#146133).
149            //
150            // However, when LLVM CFI is enabled (`-Zsanitizer=cfi`), this
151            // breaks LLVM's expected pipeline: LLVM emits `llvm.type.test`
152            // intrinsics and related metadata that must be lowered by LLVM's
153            // `LowerTypeTests` pass before instruction selection during
154            // link-time LTO. Otherwise, `llvm.type.test` intrinsics and related
155            // metadata are not lowered by LLVM's `LowerTypeTests` pass before
156            // reaching the target backend, and LLVM may abort during codegen
157            // (for example in SelectionDAG type legalization) (see
158            // rust-lang/rust#142284).
159            //
160            // Therefore, with `-Clinker-plugin-lto` and `-Zsanitizer=cfi`, a
161            // `#![no_builtins]` crate must still use rustc's `EmitObj::Bitcode`
162            // path (and emit LLVM bitcode in the `.o` for linker-based LTO).
163            EmitObj::Bitcode
164        } else if need_bitcode_in_object(tcx) || sess.target.requires_lto {
165            EmitObj::ObjectCode(BitcodeSection::Full)
166        } else {
167            EmitObj::ObjectCode(BitcodeSection::None)
168        };
169
170        ModuleConfig {
171            passes: if let ModuleKind::Regular = kind {
    sess.opts.cg.passes.clone()
} else { ::alloc::vec::Vec::new() }if_regular!(sess.opts.cg.passes.clone(), vec![]),
172
173            opt_level: opt_level_and_size,
174
175            pgo_gen: if let ModuleKind::Regular = kind {
    sess.opts.cg.profile_generate.clone()
} else { SwitchWithOptPath::Disabled }if_regular!(
176                sess.opts.cg.profile_generate.clone(),
177                SwitchWithOptPath::Disabled
178            ),
179            pgo_use: if let ModuleKind::Regular = kind {
    sess.opts.cg.profile_use.clone()
} else { None }if_regular!(sess.opts.cg.profile_use.clone(), None),
180            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),
181            debug_info_for_profiling: sess.opts.unstable_opts.debuginfo_for_profiling,
182            instrument_coverage: if let ModuleKind::Regular = kind {
    sess.instrument_coverage()
} else { false }if_regular!(sess.instrument_coverage(), false),
183
184            sanitizer: if let ModuleKind::Regular = kind {
    sess.sanitizers()
} else { SanitizerSet::empty() }if_regular!(sess.sanitizers(), SanitizerSet::empty()),
185            sanitizer_dataflow_abilist: if let ModuleKind::Regular = kind {
    sess.opts.unstable_opts.sanitizer_dataflow_abilist.clone()
} else { Vec::new() }if_regular!(
186                sess.opts.unstable_opts.sanitizer_dataflow_abilist.clone(),
187                Vec::new()
188            ),
189            sanitizer_recover: if let ModuleKind::Regular = kind {
    sess.opts.unstable_opts.sanitizer_recover
} else { SanitizerSet::empty() }if_regular!(
190                sess.opts.unstable_opts.sanitizer_recover,
191                SanitizerSet::empty()
192            ),
193            sanitizer_memory_track_origins: if let ModuleKind::Regular = kind {
    sess.opts.unstable_opts.sanitizer_memory_track_origins
} else { 0 }if_regular!(
194                sess.opts.unstable_opts.sanitizer_memory_track_origins,
195                0
196            ),
197
198            emit_pre_lto_bc: if let ModuleKind::Regular = kind {
    save_temps || need_pre_lto_bitcode_for_incr_comp(sess)
} else { false }if_regular!(
199                save_temps || need_pre_lto_bitcode_for_incr_comp(sess),
200                false
201            ),
202            emit_bc: if let ModuleKind::Regular = kind {
    save_temps || sess.opts.output_types.contains_key(&OutputType::Bitcode)
} else { save_temps }if_regular!(
203                save_temps || sess.opts.output_types.contains_key(&OutputType::Bitcode),
204                save_temps
205            ),
206            emit_ir: if let ModuleKind::Regular = kind {
    sess.opts.output_types.contains_key(&OutputType::LlvmAssembly)
} else { false }if_regular!(
207                sess.opts.output_types.contains_key(&OutputType::LlvmAssembly),
208                false
209            ),
210            emit_asm: if let ModuleKind::Regular = kind {
    sess.opts.output_types.contains_key(&OutputType::Assembly)
} else { false }if_regular!(
211                sess.opts.output_types.contains_key(&OutputType::Assembly),
212                false
213            ),
214            emit_obj,
215            emit_thin_lto_summary: if let ModuleKind::Regular = kind {
    sess.opts.output_types.contains_key(&OutputType::ThinLinkBitcode)
} else { false }if_regular!(
216                sess.opts.output_types.contains_key(&OutputType::ThinLinkBitcode),
217                false
218            ),
219
220            verify_llvm_ir: sess.verify_llvm_ir(),
221            lint_llvm_ir: sess.opts.unstable_opts.lint_llvm_ir,
222            no_prepopulate_passes: sess.opts.cg.no_prepopulate_passes,
223            no_builtins: no_builtins || sess.target.no_builtins,
224
225            // Copy what clang does by turning on loop vectorization at O2 and
226            // slp vectorization at O3.
227            vectorize_loop: !sess.opts.cg.no_vectorize_loops
228                && (sess.opts.optimize == config::OptLevel::More
229                    || sess.opts.optimize == config::OptLevel::Aggressive),
230            vectorize_slp: !sess.opts.cg.no_vectorize_slp
231                && sess.opts.optimize == config::OptLevel::Aggressive,
232
233            // Some targets (namely, NVPTX) interact badly with the
234            // MergeFunctions pass. This is because MergeFunctions can generate
235            // new function calls which may interfere with the target calling
236            // convention; e.g. for the NVPTX target, PTX kernels should not
237            // call other PTX kernels. MergeFunctions can also be configured to
238            // generate aliases instead, but aliases are not supported by some
239            // backends (again, NVPTX). Therefore, allow targets to opt out of
240            // the MergeFunctions pass, but otherwise keep the pass enabled (at
241            // O2 and O3) since it can be useful for reducing code size.
242            merge_functions: match sess
243                .opts
244                .unstable_opts
245                .merge_functions
246                .unwrap_or(sess.target.merge_functions)
247            {
248                MergeFunctions::Disabled => false,
249                MergeFunctions::Trampolines | MergeFunctions::Aliases => {
250                    use config::OptLevel::*;
251                    match sess.opts.optimize {
252                        Aggressive | More | SizeMin | Size => true,
253                        Less | No => false,
254                    }
255                }
256            },
257
258            emit_lifetime_markers: sess.emit_lifetime_markers(),
259            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![]),
260            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![]),
261            autodiff_post_passes: if let ModuleKind::Regular = kind {
    sess.opts.unstable_opts.autodiff_post_passes.clone()
} else { None }if_regular!(
262                sess.opts.unstable_opts.autodiff_post_passes.clone(),
263                None
264            ),
265            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![]),
266        }
267    }
268
269    pub fn bitcode_needed(&self) -> bool {
270        self.emit_bc
271            || self.emit_thin_lto_summary
272            || self.emit_obj == EmitObj::Bitcode
273            || self.emit_obj == EmitObj::ObjectCode(BitcodeSection::Full)
274    }
275
276    pub fn embed_bitcode(&self) -> bool {
277        self.emit_obj == EmitObj::ObjectCode(BitcodeSection::Full)
278    }
279}
280
281/// Configuration passed to the function returned by the `target_machine_factory`.
282pub struct TargetMachineFactoryConfig {
283    /// Split DWARF is enabled in LLVM by checking that `TM.MCOptions.SplitDwarfFile` isn't empty,
284    /// so the path to the dwarf object has to be provided when we create the target machine.
285    /// This can be ignored by backends which do not need it for their Split DWARF support.
286    pub split_dwarf_file: Option<PathBuf>,
287
288    /// The name of the output object file. Used for setting OutputFilenames in target options
289    /// so that LLVM can emit the CodeView S_OBJNAME record in pdb files
290    pub output_obj_file: Option<PathBuf>,
291}
292
293impl TargetMachineFactoryConfig {
294    pub fn new(cgcx: &CodegenContext, module_name: &str) -> TargetMachineFactoryConfig {
295        let split_dwarf_file = if cgcx.target_can_use_split_dwarf {
296            cgcx.output_filenames.split_dwarf_path(
297                cgcx.split_debuginfo,
298                cgcx.split_dwarf_kind,
299                module_name,
300            )
301        } else {
302            None
303        };
304
305        let output_obj_file =
306            Some(cgcx.output_filenames.temp_path_for_cgu(OutputType::Object, module_name));
307        TargetMachineFactoryConfig { split_dwarf_file, output_obj_file }
308    }
309}
310
311pub type TargetMachineFactoryFn<B> = Arc<
312    dyn Fn(
313            DiagCtxtHandle<'_>,
314            TargetMachineFactoryConfig,
315        ) -> <B as WriteBackendMethods>::TargetMachine
316        + Send
317        + Sync,
318>;
319
320/// Additional resources used by optimize_and_codegen (not module specific)
321#[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),
            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,
                        module_config: ref __binding_9,
                        opt_level: ref __binding_10,
                        backend_features: ref __binding_11,
                        msvc_imps_needed: ref __binding_12,
                        is_pe_coff: ref __binding_13,
                        target_can_use_split_dwarf: ref __binding_14,
                        target_arch: ref __binding_15,
                        target_is_like_darwin: ref __binding_16,
                        target_is_like_aix: ref __binding_17,
                        target_is_like_gpu: ref __binding_18,
                        split_debuginfo: ref __binding_19,
                        split_dwarf_kind: ref __binding_20,
                        pointer_size: ref __binding_21,
                        remark: ref __binding_22,
                        remark_dir: ref __binding_23,
                        incr_comp_session_dir: ref __binding_24,
                        parallel: ref __binding_25 } => {
                        ::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);
                    }
                }
            }
        }
    };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),
                    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)]
322pub struct CodegenContext {
323    // Resources needed when running LTO
324    pub lto: Lto,
325    pub use_linker_plugin_lto: bool,
326    pub dylib_lto: bool,
327    pub prefer_dynamic: bool,
328    pub save_temps: bool,
329    pub fewer_names: bool,
330    pub time_trace: bool,
331    pub crate_types: Vec<CrateType>,
332    pub output_filenames: Arc<OutputFilenames>,
333    pub module_config: Arc<ModuleConfig>,
334    pub opt_level: OptLevel,
335    pub backend_features: Vec<String>,
336    pub msvc_imps_needed: bool,
337    pub is_pe_coff: bool,
338    pub target_can_use_split_dwarf: bool,
339    pub target_arch: String,
340    pub target_is_like_darwin: bool,
341    pub target_is_like_aix: bool,
342    pub target_is_like_gpu: bool,
343    pub split_debuginfo: rustc_target::spec::SplitDebuginfo,
344    pub split_dwarf_kind: rustc_session::config::SplitDwarfKind,
345    pub pointer_size: Size,
346
347    /// LLVM optimizations for which we want to print remarks.
348    pub remark: Passes,
349    /// Directory into which should the LLVM optimization remarks be written.
350    /// If `None`, they will be written to stderr.
351    pub remark_dir: Option<PathBuf>,
352    /// The incremental compilation session directory, or None if we are not
353    /// compiling incrementally
354    pub incr_comp_session_dir: Option<PathBuf>,
355    /// `true` if the codegen should be run in parallel.
356    ///
357    /// Depends on [`WriteBackendMethods::supports_parallel()`] and `-Zno_parallel_backend`.
358    pub parallel: bool,
359}
360
361fn generate_thin_lto_work<B: WriteBackendMethods>(
362    cgcx: &CodegenContext,
363    prof: &SelfProfilerRef,
364    dcx: DiagCtxtHandle<'_>,
365    exported_symbols_for_lto: &[String],
366    each_linked_rlib_for_lto: &[PathBuf],
367    needs_thin_lto: Vec<ThinLtoInput<B>>,
368) -> Vec<(ThinLtoWorkItem<B>, u64)> {
369    let _prof_timer = prof.generic_activity("codegen_thin_generate_lto_work");
370
371    let (lto_modules, copy_jobs) = B::run_thin_lto(
372        cgcx,
373        prof,
374        dcx,
375        exported_symbols_for_lto,
376        each_linked_rlib_for_lto,
377        needs_thin_lto,
378    );
379    lto_modules
380        .into_iter()
381        .map(|module| {
382            let cost = module.cost();
383            (ThinLtoWorkItem::ThinLto(module), cost)
384        })
385        .chain(copy_jobs.into_iter().map(|wp| {
386            (
387                ThinLtoWorkItem::CopyPostLtoArtifacts(CachedModuleCodegen {
388                    name: wp.cgu_name.clone(),
389                    source: wp,
390                }),
391                0, // copying is very cheap
392            )
393        }))
394        .collect()
395}
396
397enum MaybeLtoModules<B: WriteBackendMethods> {
398    NoLto(CompiledModules),
399    FatLto { cgcx: CodegenContext, needs_fat_lto: Vec<FatLtoInput<B>> },
400    ThinLto { cgcx: CodegenContext, needs_thin_lto: Vec<ThinLtoInput<B>> },
401}
402
403fn need_bitcode_in_object(tcx: TyCtxt<'_>) -> bool {
404    let sess = tcx.sess;
405    sess.opts.cg.embed_bitcode
406        && tcx.crate_types().contains(&CrateType::Rlib)
407        && sess.opts.output_types.contains_key(&OutputType::Exe)
408}
409
410fn need_pre_lto_bitcode_for_incr_comp(sess: &Session) -> bool {
411    if sess.opts.incremental.is_none() {
412        return false;
413    }
414
415    match sess.lto() {
416        Lto::No => false,
417        Lto::Fat | Lto::Thin | Lto::ThinLocal => true,
418    }
419}
420
421pub(crate) fn start_async_codegen<B: WriteBackendMethods>(
422    backend: B,
423    tcx: TyCtxt<'_>,
424    allocator_module: Option<ModuleCodegen<B::Module>>,
425) -> OngoingCodegen<B> {
426    let (coordinator_send, coordinator_receive) = channel();
427
428    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);
429
430    let regular_config = ModuleConfig::new(ModuleKind::Regular, tcx, no_builtins);
431    let allocator_config = ModuleConfig::new(ModuleKind::Allocator, tcx, no_builtins);
432
433    let (shared_emitter, shared_emitter_main) = SharedEmitter::new();
434    let (codegen_worker_send, codegen_worker_receive) = channel();
435
436    let coordinator_thread = start_executing_work(
437        backend.clone(),
438        tcx,
439        shared_emitter,
440        codegen_worker_send,
441        coordinator_receive,
442        Arc::new(regular_config),
443        Arc::new(allocator_config),
444        allocator_module,
445        coordinator_send.clone(),
446    );
447
448    OngoingCodegen {
449        backend,
450
451        codegen_worker_receive,
452        shared_emitter_main,
453        coordinator: Coordinator {
454            sender: coordinator_send,
455            future: Some(coordinator_thread),
456            phantom: PhantomData,
457        },
458        output_filenames: Arc::clone(tcx.output_filenames(())),
459    }
460}
461
462fn copy_all_cgu_workproducts_to_incr_comp_cache_dir(
463    sess: &Session,
464    compiled_modules: &CompiledModules,
465) -> WorkProductMap {
466    let mut work_products = WorkProductMap::default();
467
468    if sess.opts.incremental.is_none() || sess.opts.unstable_opts.disable_incr_comp_backend_caching
469    {
470        return work_products;
471    }
472
473    let _timer = sess.timer("copy_all_cgu_workproducts_to_incr_comp_cache_dir");
474
475    for module in compiled_modules.modules.iter().filter(|m| m.kind == ModuleKind::Regular) {
476        let mut files = Vec::new();
477        if let Some(object_file_path) = &module.object {
478            files.push((OutputType::Object.extension(), object_file_path.as_path()));
479        }
480        if let Some(global_asm_object_file_path) = &module.global_asm_object {
481            files.push(("asm.o", global_asm_object_file_path.as_path()));
482        }
483        if let Some(dwarf_object_file_path) = &module.dwarf_object {
484            files.push(("dwo", dwarf_object_file_path.as_path()));
485        }
486        if let Some(path) = &module.assembly {
487            files.push((OutputType::Assembly.extension(), path.as_path()));
488        }
489        if let Some(path) = &module.llvm_ir {
490            files.push((OutputType::LlvmAssembly.extension(), path.as_path()));
491        }
492        if let Some(path) = &module.bytecode {
493            files.push((OutputType::Bitcode.extension(), path.as_path()));
494        }
495        let (id, product) = copy_cgu_workproduct_to_incr_comp_cache_dir(
496            sess,
497            &module.name,
498            files.as_slice(),
499            &module.links_from_incr_cache,
500        );
501        work_products.insert(id, product);
502    }
503
504    work_products
505}
506
507pub fn produce_final_output_artifacts(
508    sess: &Session,
509    compiled_modules: &CompiledModules,
510    crate_output: &OutputFilenames,
511) {
512    let mut user_wants_bitcode = false;
513    let mut user_wants_objects = false;
514
515    // Produce final compile outputs.
516    let copy_gracefully = |from: &Path, to: &OutFileName| match to {
517        OutFileName::Stdout if let Err(e) = copy_to_stdout(from) => {
518            sess.dcx().emit_err(errors::CopyPath::new(from, to.as_path(), e));
519        }
520        OutFileName::Real(path) if let Err(e) = fs::copy(from, path) => {
521            sess.dcx().emit_err(errors::CopyPath::new(from, path, e));
522        }
523        _ => {}
524    };
525
526    let copy_if_one_unit = |output_type: OutputType, keep_numbered: bool| {
527        if let [module] = &compiled_modules.modules[..] {
528            // 1) Only one codegen unit. In this case it's no difficulty
529            //    to copy `foo.0.x` to `foo.x`.
530            let path = crate_output.temp_path_for_cgu(output_type, &module.name);
531            let output = crate_output.path(output_type);
532            if !output_type.is_text_output() && output.is_tty() {
533                sess.dcx()
534                    .emit_err(errors::BinaryOutputToTty { shorthand: output_type.shorthand() });
535            } else {
536                copy_gracefully(&path, &output);
537            }
538            if !sess.opts.cg.save_temps && !keep_numbered {
539                // The user just wants `foo.x`, not `foo.#module-name#.x`.
540                ensure_removed(sess.dcx(), &path);
541            }
542        } else {
543            if crate_output.outputs.contains_explicit_name(&output_type) {
544                // 2) Multiple codegen units, with `--emit foo=some_name`. We have
545                //    no good solution for this case, so warn the user.
546                sess.dcx()
547                    .emit_warn(errors::IgnoringEmitPath { extension: output_type.extension() });
548            } else if crate_output.single_output_file.is_some() {
549                // 3) Multiple codegen units, with `-o some_name`. We have
550                //    no good solution for this case, so warn the user.
551                sess.dcx().emit_warn(errors::IgnoringOutput { extension: output_type.extension() });
552            } else {
553                // 4) Multiple codegen units, but no explicit name. We
554                //    just leave the `foo.0.x` files in place.
555                // (We don't have to do any work in this case.)
556            }
557        }
558    };
559
560    // Flag to indicate whether the user explicitly requested bitcode.
561    // Otherwise, we produced it only as a temporary output, and will need
562    // to get rid of it.
563    for output_type in crate_output.outputs.keys() {
564        match *output_type {
565            OutputType::Bitcode => {
566                user_wants_bitcode = true;
567                // Copy to .bc, but always keep the .0.bc. There is a later
568                // check to figure out if we should delete .0.bc files, or keep
569                // them for making an rlib.
570                copy_if_one_unit(OutputType::Bitcode, true);
571            }
572            OutputType::ThinLinkBitcode => {
573                copy_if_one_unit(OutputType::ThinLinkBitcode, false);
574            }
575            OutputType::LlvmAssembly => {
576                copy_if_one_unit(OutputType::LlvmAssembly, false);
577            }
578            OutputType::Assembly => {
579                copy_if_one_unit(OutputType::Assembly, false);
580            }
581            OutputType::Object => {
582                user_wants_objects = true;
583                copy_if_one_unit(OutputType::Object, true);
584            }
585            OutputType::Mir | OutputType::Metadata | OutputType::Exe | OutputType::DepInfo => {}
586        }
587    }
588
589    // Clean up unwanted temporary files.
590
591    // We create the following files by default:
592    //  - #crate#.#module-name#.rcgu.bc
593    //  - #crate#.#module-name#.rcgu.o
594    //  - #crate#.o (linked from crate.##.rcgu.o)
595    //  - #crate#.bc (copied from crate.##.rcgu.bc)
596    // We may create additional files if requested by the user (through
597    // `-C save-temps` or `--emit=` flags).
598
599    if !sess.opts.cg.save_temps {
600        // Remove the temporary .#module-name#.rcgu.o objects. If the user didn't
601        // explicitly request bitcode (with --emit=bc), and the bitcode is not
602        // needed for building an rlib, then we must remove .#module-name#.bc as
603        // well.
604
605        // Specific rules for keeping .#module-name#.rcgu.bc:
606        //  - If the user requested bitcode (`user_wants_bitcode`), and
607        //    codegen_units > 1, then keep it.
608        //  - If the user requested bitcode but codegen_units == 1, then we
609        //    can toss .#module-name#.rcgu.bc because we copied it to .bc earlier.
610        //  - If we're not building an rlib and the user didn't request
611        //    bitcode, then delete .#module-name#.rcgu.bc.
612        // If you change how this works, also update back::link::link_rlib,
613        // where .#module-name#.rcgu.bc files are (maybe) deleted after making an
614        // rlib.
615        let needs_crate_object = crate_output.outputs.contains_key(&OutputType::Exe);
616
617        let keep_numbered_bitcode = user_wants_bitcode && sess.codegen_units().as_usize() > 1;
618
619        let keep_numbered_objects =
620            needs_crate_object || (user_wants_objects && sess.codegen_units().as_usize() > 1);
621
622        for module in compiled_modules.modules.iter() {
623            if !keep_numbered_objects {
624                if let Some(ref path) = module.object {
625                    ensure_removed(sess.dcx(), path);
626                }
627
628                if let Some(ref path) = module.global_asm_object {
629                    ensure_removed(sess.dcx(), path);
630                }
631
632                if let Some(ref path) = module.dwarf_object {
633                    ensure_removed(sess.dcx(), path);
634                }
635            }
636
637            if let Some(ref path) = module.bytecode {
638                if !keep_numbered_bitcode {
639                    ensure_removed(sess.dcx(), path);
640                }
641            }
642        }
643
644        if !user_wants_bitcode
645            && let Some(ref allocator_module) = compiled_modules.allocator_module
646            && let Some(ref path) = allocator_module.bytecode
647        {
648            ensure_removed(sess.dcx(), path);
649        }
650    }
651
652    if sess.opts.json_artifact_notifications {
653        if let [module] = &compiled_modules.modules[..] {
654            module.for_each_output(|_path, ty| {
655                if sess.opts.output_types.contains_key(&ty) {
656                    let descr = ty.shorthand();
657                    // for single cgu file is renamed to drop cgu specific suffix
658                    // so we regenerate it the same way
659                    let path = crate_output.path(ty);
660                    sess.dcx().emit_artifact_notification(path.as_path(), descr);
661                }
662            });
663        } else {
664            for module in &compiled_modules.modules {
665                module.for_each_output(|path, ty| {
666                    if sess.opts.output_types.contains_key(&ty) {
667                        let descr = ty.shorthand();
668                        sess.dcx().emit_artifact_notification(&path, descr);
669                    }
670                });
671            }
672        }
673    }
674
675    // We leave the following files around by default:
676    //  - #crate#.o
677    //  - #crate#.bc
678    // These are used in linking steps and will be cleaned up afterward.
679}
680
681pub(crate) enum WorkItem<B: WriteBackendMethods> {
682    /// Optimize a newly codegened, totally unoptimized module.
683    Optimize(ModuleCodegen<B::Module>),
684    /// Copy the post-LTO artifacts from the incremental cache to the output
685    /// directory.
686    CopyPostLtoArtifacts(CachedModuleCodegen),
687}
688
689enum ThinLtoWorkItem<B: WriteBackendMethods> {
690    /// Copy the post-LTO artifacts from the incremental cache to the output
691    /// directory.
692    CopyPostLtoArtifacts(CachedModuleCodegen),
693    /// Performs thin-LTO on the given module.
694    ThinLto(lto::ThinModule<B>),
695}
696
697// `pthread_setname()` on *nix ignores anything beyond the first 15
698// bytes. Use short descriptions to maximize the space available for
699// the module name.
700#[cfg(not(windows))]
701fn desc(short: &str, _long: &str, name: &str) -> String {
702    // The short label is three bytes, and is followed by a space. That
703    // leaves 11 bytes for the CGU name. How we obtain those 11 bytes
704    // depends on the CGU name form.
705    //
706    // - Non-incremental, e.g. `regex.f10ba03eb5ec7975-cgu.0`: the part
707    //   before the `-cgu.0` is the same for every CGU, so use the
708    //   `cgu.0` part. The number suffix will be different for each
709    //   CGU.
710    //
711    // - Incremental (normal), e.g. `2i52vvl2hco29us0`: use the whole
712    //   name because each CGU will have a unique ASCII hash, and the
713    //   first 11 bytes will be enough to identify it.
714    //
715    // - Incremental (with `-Zhuman-readable-cgu-names`), e.g.
716    //   `regex.f10ba03eb5ec7975-re_builder.volatile`: use the whole
717    //   name. The first 11 bytes won't be enough to uniquely identify
718    //   it, but no obvious substring will, and this is a rarely used
719    //   option so it doesn't matter much.
720    //
721    {
    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);
722    let name = if let Some(index) = name.find("-cgu.") {
723        &name[index + 1..] // +1 skips the leading '-'.
724    } else {
725        name
726    };
727    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0} {1}", short, name))
    })format!("{short} {name}")
728}
729
730// Windows has no thread name length limit, so use more descriptive names.
731#[cfg(windows)]
732fn desc(_short: &str, long: &str, name: &str) -> String {
733    format!("{long} {name}")
734}
735
736impl<B: WriteBackendMethods> WorkItem<B> {
737    /// Generate a short description of this work item suitable for use as a thread name.
738    fn short_description(&self) -> String {
739        match self {
740            WorkItem::Optimize(m) => desc("opt", "optimize module", &m.name),
741            WorkItem::CopyPostLtoArtifacts(m) => desc("cpy", "copy LTO artifacts for", &m.name),
742        }
743    }
744}
745
746impl<B: WriteBackendMethods> ThinLtoWorkItem<B> {
747    /// Generate a short description of this work item suitable for use as a thread name.
748    fn short_description(&self) -> String {
749        match self {
750            ThinLtoWorkItem::CopyPostLtoArtifacts(m) => {
751                desc("cpy", "copy LTO artifacts for", &m.name)
752            }
753            ThinLtoWorkItem::ThinLto(m) => desc("lto", "thin-LTO module", m.name()),
754        }
755    }
756}
757
758/// A result produced by the backend.
759pub(crate) enum WorkItemResult<B: WriteBackendMethods> {
760    /// The backend has finished compiling a CGU, nothing more required.
761    Finished(CompiledModule),
762
763    /// The backend has finished compiling a CGU, which now needs to go through
764    /// fat LTO.
765    NeedsFatLto(FatLtoInput<B>),
766
767    /// The backend has finished compiling a CGU, which now needs to go through
768    /// thin LTO.
769    NeedsThinLto(String, B::ModuleBuffer),
770}
771
772pub enum FatLtoInput<B: WriteBackendMethods> {
773    Serialized { name: String, bitcode_path: PathBuf },
774    InMemory(ModuleCodegen<B::Module>),
775}
776
777pub enum ThinLtoInput<B: WriteBackendMethods> {
778    Red { name: String, buffer: SerializedModule<B::ModuleBuffer> },
779    Green { wp: WorkProduct, bitcode_path: PathBuf },
780}
781
782/// Actual LTO type we end up choosing based on multiple factors.
783pub(crate) enum ComputedLtoType {
784    No,
785    Thin,
786    Fat,
787}
788
789pub(crate) fn compute_per_cgu_lto_type(
790    sess_lto: &Lto,
791    linker_does_lto: bool,
792    sess_crate_types: &[CrateType],
793) -> ComputedLtoType {
794    // If the linker does LTO, we don't have to do it. Note that we
795    // keep doing full LTO, if it is requested, as not to break the
796    // assumption that the output will be a single module.
797
798    // We ignore a request for full crate graph LTO if the crate type
799    // is only an rlib, as there is no full crate graph to process,
800    // that'll happen later.
801    //
802    // This use case currently comes up primarily for targets that
803    // require LTO so the request for LTO is always unconditionally
804    // passed down to the backend, but we don't actually want to do
805    // anything about it yet until we've got a final product.
806    let is_rlib = #[allow(non_exhaustive_omitted_patterns)] match sess_crate_types {
    [CrateType::Rlib] => true,
    _ => false,
}matches!(sess_crate_types, [CrateType::Rlib]);
807
808    match sess_lto {
809        Lto::ThinLocal if !linker_does_lto => ComputedLtoType::Thin,
810        Lto::Thin if !linker_does_lto && !is_rlib => ComputedLtoType::Thin,
811        Lto::Fat if !is_rlib => ComputedLtoType::Fat,
812        _ => ComputedLtoType::No,
813    }
814}
815
816fn execute_optimize_work_item<B: WriteBackendMethods>(
817    cgcx: &CodegenContext,
818    prof: &SelfProfilerRef,
819    shared_emitter: SharedEmitter,
820    mut module: ModuleCodegen<B::Module>,
821) -> WorkItemResult<B> {
822    let _timer = prof.generic_activity_with_arg("codegen_module_optimize", &*module.name);
823
824    B::optimize(cgcx, prof, &shared_emitter, &mut module, &cgcx.module_config);
825
826    // After we've done the initial round of optimizations we need to
827    // decide whether to synchronously codegen this module or ship it
828    // back to the coordinator thread for further LTO processing (which
829    // has to wait for all the initial modules to be optimized).
830
831    let lto_type =
832        compute_per_cgu_lto_type(&cgcx.lto, cgcx.use_linker_plugin_lto, &cgcx.crate_types);
833
834    // If we're doing some form of incremental LTO then we need to be sure to
835    // save our module to disk first.
836    let bitcode = if cgcx.module_config.emit_pre_lto_bc {
837        let filename = pre_lto_bitcode_filename(&module.name);
838        cgcx.incr_comp_session_dir.as_ref().map(|path| path.join(&filename))
839    } else {
840        None
841    };
842
843    match lto_type {
844        ComputedLtoType::No => {
845            let module = B::codegen(cgcx, &prof, &shared_emitter, module, &cgcx.module_config);
846            WorkItemResult::Finished(module)
847        }
848        ComputedLtoType::Thin => {
849            let thin_buffer = B::serialize_module(module.module_llvm, true);
850            if let Some(path) = bitcode {
851                fs::write(&path, thin_buffer.data()).unwrap_or_else(|e| {
852                    {
    ::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);
853                });
854            }
855            WorkItemResult::NeedsThinLto(module.name, thin_buffer)
856        }
857        ComputedLtoType::Fat => match bitcode {
858            Some(path) => {
859                let buffer = B::serialize_module(module.module_llvm, false);
860                fs::write(&path, buffer.data()).unwrap_or_else(|e| {
861                    {
    ::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);
862                });
863                WorkItemResult::NeedsFatLto(FatLtoInput::Serialized {
864                    name: module.name,
865                    bitcode_path: path,
866                })
867            }
868            None => WorkItemResult::NeedsFatLto(FatLtoInput::InMemory(module)),
869        },
870    }
871}
872
873fn execute_copy_from_cache_work_item(
874    cgcx: &CodegenContext,
875    prof: &SelfProfilerRef,
876    shared_emitter: SharedEmitter,
877    module: CachedModuleCodegen,
878) -> CompiledModule {
879    let _timer =
880        prof.generic_activity_with_arg("codegen_copy_artifacts_from_incr_cache", &*module.name);
881
882    let dcx = DiagCtxt::new(Box::new(shared_emitter));
883    let dcx = dcx.handle();
884
885    let incr_comp_session_dir = cgcx.incr_comp_session_dir.as_ref().unwrap();
886
887    let mut links_from_incr_cache = Vec::new();
888
889    let mut load_from_incr_comp_dir = |output_path: PathBuf, saved_path: &str| {
890        let source_file_in_incr_comp_dir = incr_comp_session_dir.join(saved_path);
891        {
    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:891",
                        "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(891u32),
                        ::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_in_incr_comp_dir,
                                                    output_path.display()) as &dyn Value))])
            });
    } else { ; }
};debug!(
892            "copying preexisting module `{}` from {:?} to {}",
893            module.name,
894            source_file_in_incr_comp_dir,
895            output_path.display()
896        );
897        match link_or_copy(&source_file_in_incr_comp_dir, &output_path) {
898            Ok(_) => {
899                links_from_incr_cache.push(source_file_in_incr_comp_dir);
900                Some(output_path)
901            }
902            Err(error) => {
903                dcx.emit_err(errors::CopyPathBuf {
904                    source_file: source_file_in_incr_comp_dir,
905                    output_path,
906                    error,
907                });
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(cgcx.split_debuginfo, cgcx.split_dwarf_kind, &module.name)
918                .expect(
919                    "saved dwarf object in work product but `split_dwarf_path` returned `None`",
920                );
921            load_from_incr_comp_dir(dwarf_obj_out, saved_dwarf_object_file)
922        });
923
924    let mut load_from_incr_cache = |perform, output_type: OutputType| {
925        if perform {
926            let saved_file = module.source.saved_files.get(output_type.extension())?;
927            let output_path = cgcx.output_filenames.temp_path_for_cgu(output_type, &module.name);
928            load_from_incr_comp_dir(output_path, &saved_file)
929        } else {
930            None
931        }
932    };
933
934    let module_config = &cgcx.module_config;
935    let should_emit_obj = module_config.emit_obj != EmitObj::None;
936    let assembly = load_from_incr_cache(module_config.emit_asm, OutputType::Assembly);
937    let llvm_ir = load_from_incr_cache(module_config.emit_ir, OutputType::LlvmAssembly);
938    let bytecode = load_from_incr_cache(module_config.emit_bc, OutputType::Bitcode);
939    let object = load_from_incr_cache(should_emit_obj, OutputType::Object);
940    let global_asm_object =
941        if should_emit_obj && let Some(saved_file) = module.source.saved_files.get("asm.o") {
942            let output_path = cgcx.output_filenames.temp_path_ext_for_cgu("asm.o", &module.name);
943            load_from_incr_comp_dir(output_path, &saved_file)
944        } else {
945            None
946        };
947    if should_emit_obj && object.is_none() {
948        dcx.emit_fatal(errors::NoSavedObjectFile { cgu_name: &module.name })
949    }
950
951    CompiledModule {
952        links_from_incr_cache,
953        kind: ModuleKind::Regular,
954        name: module.name,
955        object,
956        global_asm_object,
957        dwarf_object,
958        bytecode,
959        assembly,
960        llvm_ir,
961    }
962}
963
964fn do_fat_lto<B: WriteBackendMethods>(
965    sess: &Session,
966    cgcx: &CodegenContext,
967    shared_emitter: SharedEmitter,
968    tm_factory: TargetMachineFactoryFn<B>,
969    exported_symbols_for_lto: &[String],
970    each_linked_rlib_for_lto: &[PathBuf],
971    needs_fat_lto: Vec<FatLtoInput<B>>,
972) -> CompiledModule {
973    let _timer = sess.prof.verbose_generic_activity("LLVM_fatlto");
974
975    let dcx = DiagCtxt::new(Box::new(shared_emitter.clone()));
976    let dcx = dcx.handle();
977
978    check_lto_allowed(&cgcx, dcx);
979
980    B::optimize_and_codegen_fat_lto(
981        sess,
982        cgcx,
983        &shared_emitter,
984        tm_factory,
985        exported_symbols_for_lto,
986        each_linked_rlib_for_lto,
987        needs_fat_lto,
988    )
989}
990
991fn do_thin_lto<B: WriteBackendMethods>(
992    cgcx: &CodegenContext,
993    prof: &SelfProfilerRef,
994    shared_emitter: SharedEmitter,
995    tm_factory: TargetMachineFactoryFn<B>,
996    exported_symbols_for_lto: &[String],
997    each_linked_rlib_for_lto: &[PathBuf],
998    needs_thin_lto: Vec<ThinLtoInput<B>>,
999) -> Vec<CompiledModule> {
1000    let _timer = prof.verbose_generic_activity("LLVM_thinlto");
1001
1002    let dcx = DiagCtxt::new(Box::new(shared_emitter.clone()));
1003    let dcx = dcx.handle();
1004
1005    check_lto_allowed(&cgcx, dcx);
1006
1007    let (coordinator_send, coordinator_receive) = channel();
1008
1009    // First up, convert our jobserver into a helper thread so we can use normal
1010    // mpsc channels to manage our messages and such.
1011    // After we've requested tokens then we'll, when we can,
1012    // get tokens on `coordinator_receive` which will
1013    // get managed in the main loop below.
1014    let coordinator_send2 = coordinator_send.clone();
1015    let helper = jobserver::client()
1016        .into_helper_thread(move |token| {
1017            drop(coordinator_send2.send(ThinLtoMessage::Token(token)));
1018        })
1019        .expect("failed to spawn helper thread");
1020
1021    let mut work_items = ::alloc::vec::Vec::new()vec![];
1022
1023    // We have LTO work to do. Perform the serial work here of
1024    // figuring out what we're going to LTO and then push a
1025    // bunch of work items onto our queue to do LTO. This all
1026    // happens on the coordinator thread but it's very quick so
1027    // we don't worry about tokens.
1028    for (work, cost) in generate_thin_lto_work::<B>(
1029        cgcx,
1030        prof,
1031        dcx,
1032        &exported_symbols_for_lto,
1033        &each_linked_rlib_for_lto,
1034        needs_thin_lto,
1035    ) {
1036        let insertion_index =
1037            work_items.binary_search_by_key(&cost, |&(_, cost)| cost).unwrap_or_else(|e| e);
1038        work_items.insert(insertion_index, (work, cost));
1039        if cgcx.parallel {
1040            helper.request_token();
1041        }
1042    }
1043
1044    let mut codegen_aborted = None;
1045
1046    // These are the Jobserver Tokens we currently hold. Does not include
1047    // the implicit Token the compiler process owns no matter what.
1048    let mut tokens = ::alloc::vec::Vec::new()vec![];
1049
1050    // Amount of tokens that are used (including the implicit token).
1051    let mut used_token_count = 0;
1052
1053    let mut compiled_modules = ::alloc::vec::Vec::new()vec![];
1054
1055    // Run the message loop while there's still anything that needs message
1056    // processing. Note that as soon as codegen is aborted we simply want to
1057    // wait for all existing work to finish, so many of the conditions here
1058    // only apply if codegen hasn't been aborted as they represent pending
1059    // work to be done.
1060    loop {
1061        if codegen_aborted.is_none() {
1062            if used_token_count == 0 && work_items.is_empty() {
1063                // All codegen work is done.
1064                break;
1065            }
1066
1067            // Spin up what work we can, only doing this while we've got available
1068            // parallelism slots and work left to spawn.
1069            while used_token_count < tokens.len() + 1
1070                && let Some((item, _)) = work_items.pop()
1071            {
1072                spawn_thin_lto_work(
1073                    &cgcx,
1074                    prof,
1075                    shared_emitter.clone(),
1076                    Arc::clone(&tm_factory),
1077                    coordinator_send.clone(),
1078                    item,
1079                );
1080                used_token_count += 1;
1081            }
1082        } else {
1083            // Don't queue up any more work if codegen was aborted, we're
1084            // just waiting for our existing children to finish.
1085            if used_token_count == 0 {
1086                break;
1087            }
1088        }
1089
1090        // Relinquish accidentally acquired extra tokens. Subtract 1 for the implicit token.
1091        tokens.truncate(used_token_count.saturating_sub(1));
1092
1093        match coordinator_receive.recv().unwrap() {
1094            // Save the token locally and the next turn of the loop will use
1095            // this to spawn a new unit of work, or it may get dropped
1096            // immediately if we have no more work to spawn.
1097            ThinLtoMessage::Token(token) => match token {
1098                Ok(token) => {
1099                    tokens.push(token);
1100                }
1101                Err(e) => {
1102                    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}");
1103                    shared_emitter.fatal(msg);
1104                    codegen_aborted = Some(FatalError);
1105                }
1106            },
1107
1108            ThinLtoMessage::WorkItem { result } => {
1109                // If a thread exits successfully then we drop a token associated
1110                // with that worker and update our `used_token_count` count.
1111                // We may later re-acquire a token to continue running more work.
1112                // We may also not actually drop a token here if the worker was
1113                // running with an "ephemeral token".
1114                used_token_count -= 1;
1115
1116                match result {
1117                    Ok(compiled_module) => compiled_modules.push(compiled_module),
1118                    Err(Some(WorkerFatalError)) => {
1119                        // Like `CodegenAborted`, wait for remaining work to finish.
1120                        codegen_aborted = Some(FatalError);
1121                    }
1122                    Err(None) => {
1123                        // If the thread failed that means it panicked, so
1124                        // we abort immediately.
1125                        ::rustc_middle::util::bug::bug_fmt(format_args!("worker thread panicked"));bug!("worker thread panicked");
1126                    }
1127                }
1128            }
1129        }
1130    }
1131
1132    if let Some(codegen_aborted) = codegen_aborted {
1133        codegen_aborted.raise();
1134    }
1135
1136    compiled_modules
1137}
1138
1139/// Messages sent to the coordinator.
1140pub(crate) enum Message<B: WriteBackendMethods> {
1141    /// A jobserver token has become available. Sent from the jobserver helper
1142    /// thread.
1143    Token(io::Result<Acquired>),
1144
1145    /// The backend has finished processing a work item for a codegen unit.
1146    /// Sent from a backend worker thread.
1147    WorkItem { result: Result<WorkItemResult<B>, Option<WorkerFatalError>> },
1148
1149    /// The frontend has finished generating something (backend IR or a
1150    /// post-LTO artifact) for a codegen unit, and it should be passed to the
1151    /// backend. Sent from the main thread.
1152    CodegenDone { llvm_work_item: WorkItem<B>, cost: u64 },
1153
1154    /// Similar to `CodegenDone`, but for reusing a pre-LTO artifact
1155    /// Sent from the main thread.
1156    AddImportOnlyModule { bitcode_path: PathBuf, work_product: WorkProduct },
1157
1158    /// The frontend has finished generating everything for all codegen units.
1159    /// Sent from the main thread.
1160    CodegenComplete,
1161
1162    /// Some normal-ish compiler error occurred, and codegen should be wound
1163    /// down. Sent from the main thread.
1164    CodegenAborted,
1165}
1166
1167/// Messages sent to the coordinator.
1168pub(crate) enum ThinLtoMessage {
1169    /// A jobserver token has become available. Sent from the jobserver helper
1170    /// thread.
1171    Token(io::Result<Acquired>),
1172
1173    /// The backend has finished processing a work item for a codegen unit.
1174    /// Sent from a backend worker thread.
1175    WorkItem { result: Result<CompiledModule, Option<WorkerFatalError>> },
1176}
1177
1178/// A message sent from the coordinator thread to the main thread telling it to
1179/// process another codegen unit.
1180pub struct CguMessage;
1181
1182// A cut-down version of `rustc_errors::DiagInner` that impls `Send`, which
1183// can be used to send diagnostics from codegen threads to the main thread.
1184// It's missing the following fields from `rustc_errors::DiagInner`.
1185// - `span`: it doesn't impl `Send`.
1186// - `suggestions`: it doesn't impl `Send`, and isn't used for codegen
1187//   diagnostics.
1188// - `sort_span`: it doesn't impl `Send`.
1189// - `is_lint`: lints aren't relevant during codegen.
1190// - `emitted_at`: not used for codegen diagnostics.
1191struct Diagnostic {
1192    span: Vec<SpanData>,
1193    level: Level,
1194    messages: Vec<(DiagMessage, Style)>,
1195    code: Option<ErrCode>,
1196    children: Vec<Subdiagnostic>,
1197    args: DiagArgMap,
1198}
1199
1200// A cut-down version of `rustc_errors::Subdiag` that impls `Send`. It's
1201// missing the following fields from `rustc_errors::Subdiag`.
1202// - `span`: it doesn't impl `Send`.
1203struct Subdiagnostic {
1204    level: Level,
1205    messages: Vec<(DiagMessage, Style)>,
1206}
1207
1208#[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)]
1209enum MainThreadState {
1210    /// Doing nothing.
1211    Idle,
1212
1213    /// Doing codegen, i.e. MIR-to-LLVM-IR conversion.
1214    Codegenning,
1215
1216    /// Idle, but lending the compiler process's Token to an LLVM thread so it can do useful work.
1217    Lending,
1218}
1219
1220fn start_executing_work<B: WriteBackendMethods>(
1221    backend: B,
1222    tcx: TyCtxt<'_>,
1223    shared_emitter: SharedEmitter,
1224    codegen_worker_send: Sender<CguMessage>,
1225    coordinator_receive: Receiver<Message<B>>,
1226    regular_config: Arc<ModuleConfig>,
1227    allocator_config: Arc<ModuleConfig>,
1228    mut allocator_module: Option<ModuleCodegen<B::Module>>,
1229    coordinator_send: Sender<Message<B>>,
1230) -> thread::JoinHandle<Result<MaybeLtoModules<B>, ()>> {
1231    let sess = tcx.sess;
1232    let prof = sess.prof.clone();
1233
1234    // Compute the set of symbols we need to retain when doing thin local LTO (if we need to)
1235    let exported_symbols_for_lto =
1236        if sess.lto() == Lto::ThinLocal { lto::exported_symbols_for_lto(tcx, &[]) } else { ::alloc::vec::Vec::new()vec![] };
1237
1238    // First up, convert our jobserver into a helper thread so we can use normal
1239    // mpsc channels to manage our messages and such.
1240    // After we've requested tokens then we'll, when we can,
1241    // get tokens on `coordinator_receive` which will
1242    // get managed in the main loop below.
1243    let coordinator_send2 = coordinator_send.clone();
1244    let helper = jobserver::client()
1245        .into_helper_thread(move |token| {
1246            drop(coordinator_send2.send(Message::Token::<B>(token)));
1247        })
1248        .expect("failed to spawn helper thread");
1249
1250    let opt_level = tcx.backend_optimization_level(());
1251    let backend_features = tcx.global_backend_features(()).clone();
1252    let tm_factory = backend.target_machine_factory(tcx.sess, opt_level, &backend_features);
1253
1254    let remark_dir = if let Some(ref dir) = sess.opts.unstable_opts.remark_dir {
1255        let result = fs::create_dir_all(dir).and_then(|_| dir.canonicalize());
1256        match result {
1257            Ok(dir) => Some(dir),
1258            Err(error) => sess.dcx().emit_fatal(ErrorCreatingRemarkDir { error }),
1259        }
1260    } else {
1261        None
1262    };
1263
1264    let cgcx = CodegenContext {
1265        crate_types: tcx.crate_types().to_vec(),
1266        lto: sess.lto(),
1267        use_linker_plugin_lto: sess.opts.cg.linker_plugin_lto.enabled(),
1268        dylib_lto: sess.opts.unstable_opts.dylib_lto,
1269        prefer_dynamic: sess.opts.cg.prefer_dynamic,
1270        fewer_names: sess.fewer_names(),
1271        save_temps: sess.opts.cg.save_temps,
1272        time_trace: sess.opts.unstable_opts.llvm_time_trace,
1273        remark: sess.opts.cg.remark.clone(),
1274        remark_dir,
1275        incr_comp_session_dir: sess.incr_comp_session_dir_opt().map(|r| r.clone()),
1276        output_filenames: Arc::clone(tcx.output_filenames(())),
1277        module_config: regular_config,
1278        opt_level,
1279        backend_features,
1280        msvc_imps_needed: msvc_imps_needed(tcx),
1281        is_pe_coff: tcx.sess.target.is_like_windows,
1282        target_can_use_split_dwarf: tcx.sess.target_can_use_split_dwarf(),
1283        target_arch: tcx.sess.target.arch.to_string(),
1284        target_is_like_darwin: tcx.sess.target.is_like_darwin,
1285        target_is_like_aix: tcx.sess.target.is_like_aix,
1286        target_is_like_gpu: tcx.sess.target.is_like_gpu,
1287        split_debuginfo: tcx.sess.split_debuginfo(),
1288        split_dwarf_kind: tcx.sess.opts.unstable_opts.split_dwarf_kind,
1289        parallel: backend.supports_parallel() && !sess.opts.unstable_opts.no_parallel_backend,
1290        pointer_size: tcx.data_layout.pointer_size(),
1291    };
1292
1293    // This is the "main loop" of parallel work happening for parallel codegen.
1294    // It's here that we manage parallelism, schedule work, and work with
1295    // messages coming from clients.
1296    //
1297    // There are a few environmental pre-conditions that shape how the system
1298    // is set up:
1299    //
1300    // - Error reporting can only happen on the main thread because that's the
1301    //   only place where we have access to the compiler `Session`.
1302    // - LLVM work can be done on any thread.
1303    // - Codegen can only happen on the main thread.
1304    // - Each thread doing substantial work must be in possession of a `Token`
1305    //   from the `Jobserver`.
1306    // - The compiler process always holds one `Token`. Any additional `Tokens`
1307    //   have to be requested from the `Jobserver`.
1308    //
1309    // Error Reporting
1310    // ===============
1311    // The error reporting restriction is handled separately from the rest: We
1312    // set up a `SharedEmitter` that holds an open channel to the main thread.
1313    // When an error occurs on any thread, the shared emitter will send the
1314    // error message to the receiver main thread (`SharedEmitterMain`). The
1315    // main thread will periodically query this error message queue and emit
1316    // any error messages it has received. It might even abort compilation if
1317    // it has received a fatal error. In this case we rely on all other threads
1318    // being torn down automatically with the main thread.
1319    // Since the main thread will often be busy doing codegen work, error
1320    // reporting will be somewhat delayed, since the message queue can only be
1321    // checked in between two work packages.
1322    //
1323    // Work Processing Infrastructure
1324    // ==============================
1325    // The work processing infrastructure knows three major actors:
1326    //
1327    // - the coordinator thread,
1328    // - the main thread, and
1329    // - LLVM worker threads
1330    //
1331    // The coordinator thread is running a message loop. It instructs the main
1332    // thread about what work to do when, and it will spawn off LLVM worker
1333    // threads as open LLVM WorkItems become available.
1334    //
1335    // The job of the main thread is to codegen CGUs into LLVM work packages
1336    // (since the main thread is the only thread that can do this). The main
1337    // thread will block until it receives a message from the coordinator, upon
1338    // which it will codegen one CGU, send it to the coordinator and block
1339    // again. This way the coordinator can control what the main thread is
1340    // doing.
1341    //
1342    // The coordinator keeps a queue of LLVM WorkItems, and when a `Token` is
1343    // available, it will spawn off a new LLVM worker thread and let it process
1344    // a WorkItem. When a LLVM worker thread is done with its WorkItem,
1345    // it will just shut down, which also frees all resources associated with
1346    // the given LLVM module, and sends a message to the coordinator that the
1347    // WorkItem has been completed.
1348    //
1349    // Work Scheduling
1350    // ===============
1351    // The scheduler's goal is to minimize the time it takes to complete all
1352    // work there is, however, we also want to keep memory consumption low
1353    // if possible. These two goals are at odds with each other: If memory
1354    // consumption were not an issue, we could just let the main thread produce
1355    // LLVM WorkItems at full speed, assuring maximal utilization of
1356    // Tokens/LLVM worker threads. However, since codegen is usually faster
1357    // than LLVM processing, the queue of LLVM WorkItems would fill up and each
1358    // WorkItem potentially holds on to a substantial amount of memory.
1359    //
1360    // So the actual goal is to always produce just enough LLVM WorkItems as
1361    // not to starve our LLVM worker threads. That means, once we have enough
1362    // WorkItems in our queue, we can block the main thread, so it does not
1363    // produce more until we need them.
1364    //
1365    // Doing LLVM Work on the Main Thread
1366    // ----------------------------------
1367    // Since the main thread owns the compiler process's implicit `Token`, it is
1368    // wasteful to keep it blocked without doing any work. Therefore, what we do
1369    // in this case is: We spawn off an additional LLVM worker thread that helps
1370    // reduce the queue. The work it is doing corresponds to the implicit
1371    // `Token`. The coordinator will mark the main thread as being busy with
1372    // LLVM work. (The actual work happens on another OS thread but we just care
1373    // about `Tokens`, not actual threads).
1374    //
1375    // When any LLVM worker thread finishes while the main thread is marked as
1376    // "busy with LLVM work", we can do a little switcheroo: We give the Token
1377    // of the just finished thread to the LLVM worker thread that is working on
1378    // behalf of the main thread's implicit Token, thus freeing up the main
1379    // thread again. The coordinator can then again decide what the main thread
1380    // should do. This allows the coordinator to make decisions at more points
1381    // in time.
1382    //
1383    // Striking a Balance between Throughput and Memory Consumption
1384    // ------------------------------------------------------------
1385    // Since our two goals, (1) use as many Tokens as possible and (2) keep
1386    // memory consumption as low as possible, are in conflict with each other,
1387    // we have to find a trade off between them. Right now, the goal is to keep
1388    // all workers busy, which means that no worker should find the queue empty
1389    // when it is ready to start.
1390    // How do we do achieve this? Good question :) We actually never know how
1391    // many `Tokens` are potentially available so it's hard to say how much to
1392    // fill up the queue before switching the main thread to LLVM work. Also we
1393    // currently don't have a means to estimate how long a running LLVM worker
1394    // will still be busy with it's current WorkItem. However, we know the
1395    // maximal count of available Tokens that makes sense (=the number of CPU
1396    // cores), so we can take a conservative guess. The heuristic we use here
1397    // is implemented in the `queue_full_enough()` function.
1398    //
1399    // Some Background on Jobservers
1400    // -----------------------------
1401    // It's worth also touching on the management of parallelism here. We don't
1402    // want to just spawn a thread per work item because while that's optimal
1403    // parallelism it may overload a system with too many threads or violate our
1404    // configuration for the maximum amount of cpu to use for this process. To
1405    // manage this we use the `jobserver` crate.
1406    //
1407    // Job servers are an artifact of GNU make and are used to manage
1408    // parallelism between processes. A jobserver is a glorified IPC semaphore
1409    // basically. Whenever we want to run some work we acquire the semaphore,
1410    // and whenever we're done with that work we release the semaphore. In this
1411    // manner we can ensure that the maximum number of parallel workers is
1412    // capped at any one point in time.
1413    //
1414    // LTO and the coordinator thread
1415    // ------------------------------
1416    //
1417    // The final job the coordinator thread is responsible for is managing LTO
1418    // and how that works. When LTO is requested what we'll do is collect all
1419    // optimized LLVM modules into a local vector on the coordinator. Once all
1420    // modules have been codegened and optimized we hand this to the `lto`
1421    // module for further optimization. The `lto` module will return back a list
1422    // of more modules to work on, which the coordinator will continue to spawn
1423    // work for.
1424    //
1425    // Each LLVM module is automatically sent back to the coordinator for LTO if
1426    // necessary. There's already optimizations in place to avoid sending work
1427    // back to the coordinator if LTO isn't requested.
1428    let f = move || {
1429        let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
1430
1431        // This is where we collect codegen units that have gone all the way
1432        // through codegen and LLVM.
1433        let mut compiled_modules = ::alloc::vec::Vec::new()vec![];
1434        let mut needs_fat_lto = Vec::new();
1435        let mut needs_thin_lto = Vec::new();
1436        let mut lto_import_only_modules = Vec::new();
1437
1438        /// Possible state transitions:
1439        /// - Ongoing -> Completed
1440        /// - Ongoing -> Aborted
1441        /// - Completed -> Aborted
1442        #[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)]
1443        enum CodegenState {
1444            Ongoing,
1445            Completed,
1446            Aborted,
1447        }
1448        use CodegenState::*;
1449        let mut codegen_state = Ongoing;
1450
1451        // This is the queue of LLVM work items that still need processing.
1452        let mut work_items = Vec::<(WorkItem<B>, u64)>::new();
1453
1454        // This are the Jobserver Tokens we currently hold. Does not include
1455        // the implicit Token the compiler process owns no matter what.
1456        let mut tokens = Vec::new();
1457
1458        let mut main_thread_state = MainThreadState::Idle;
1459
1460        // How many LLVM worker threads are running while holding a Token. This
1461        // *excludes* any that the main thread is lending a Token to.
1462        let mut running_with_own_token = 0;
1463
1464        // How many LLVM worker threads are running in total. This *includes*
1465        // any that the main thread is lending a Token to.
1466        let running_with_any_token = |main_thread_state, running_with_own_token| {
1467            running_with_own_token
1468                + if main_thread_state == MainThreadState::Lending { 1 } else { 0 }
1469        };
1470
1471        let mut llvm_start_time: Option<VerboseTimingGuard<'_>> = None;
1472
1473        if let Some(allocator_module) = &mut allocator_module {
1474            B::optimize(&cgcx, &prof, &shared_emitter, allocator_module, &allocator_config);
1475        }
1476
1477        // Run the message loop while there's still anything that needs message
1478        // processing. Note that as soon as codegen is aborted we simply want to
1479        // wait for all existing work to finish, so many of the conditions here
1480        // only apply if codegen hasn't been aborted as they represent pending
1481        // work to be done.
1482        loop {
1483            // While there are still CGUs to be codegened, the coordinator has
1484            // to decide how to utilize the compiler processes implicit Token:
1485            // For codegenning more CGU or for running them through LLVM.
1486            if codegen_state == Ongoing {
1487                if main_thread_state == MainThreadState::Idle {
1488                    // Compute the number of workers that will be running once we've taken as many
1489                    // items from the work queue as we can, plus one for the main thread. It's not
1490                    // critically important that we use this instead of just
1491                    // `running_with_own_token`, but it prevents the `queue_full_enough` heuristic
1492                    // from fluctuating just because a worker finished up and we decreased the
1493                    // `running_with_own_token` count, even though we're just going to increase it
1494                    // right after this when we put a new worker to work.
1495                    let extra_tokens = tokens.len().checked_sub(running_with_own_token).unwrap();
1496                    let additional_running = std::cmp::min(extra_tokens, work_items.len());
1497                    let anticipated_running = running_with_own_token + additional_running + 1;
1498
1499                    if !queue_full_enough(work_items.len(), anticipated_running) {
1500                        // The queue is not full enough, process more codegen units:
1501                        if codegen_worker_send.send(CguMessage).is_err() {
1502                            {
    ::core::panicking::panic_fmt(format_args!("Could not send CguMessage to main thread"));
}panic!("Could not send CguMessage to main thread")
1503                        }
1504                        main_thread_state = MainThreadState::Codegenning;
1505                    } else {
1506                        // The queue is full enough to not let the worker
1507                        // threads starve. Use the implicit Token to do some
1508                        // LLVM work too.
1509                        let (item, _) =
1510                            work_items.pop().expect("queue empty - queue_full_enough() broken?");
1511                        main_thread_state = MainThreadState::Lending;
1512                        spawn_work(
1513                            &cgcx,
1514                            &prof,
1515                            shared_emitter.clone(),
1516                            coordinator_send.clone(),
1517                            &mut llvm_start_time,
1518                            item,
1519                        );
1520                    }
1521                }
1522            } else if codegen_state == Completed {
1523                if running_with_any_token(main_thread_state, running_with_own_token) == 0
1524                    && work_items.is_empty()
1525                {
1526                    // All codegen work is done.
1527                    break;
1528                }
1529
1530                // In this branch, we know that everything has been codegened,
1531                // so it's just a matter of determining whether the implicit
1532                // Token is free to use for LLVM work.
1533                match main_thread_state {
1534                    MainThreadState::Idle => {
1535                        if let Some((item, _)) = work_items.pop() {
1536                            main_thread_state = MainThreadState::Lending;
1537                            spawn_work(
1538                                &cgcx,
1539                                &prof,
1540                                shared_emitter.clone(),
1541                                coordinator_send.clone(),
1542                                &mut llvm_start_time,
1543                                item,
1544                            );
1545                        } else {
1546                            // There is no unstarted work, so let the main thread
1547                            // take over for a running worker. Otherwise the
1548                            // implicit token would just go to waste.
1549                            // We reduce the `running` counter by one. The
1550                            // `tokens.truncate()` below will take care of
1551                            // giving the Token back.
1552                            if !(running_with_own_token > 0) {
    ::core::panicking::panic("assertion failed: running_with_own_token > 0")
};assert!(running_with_own_token > 0);
1553                            running_with_own_token -= 1;
1554                            main_thread_state = MainThreadState::Lending;
1555                        }
1556                    }
1557                    MainThreadState::Codegenning => ::rustc_middle::util::bug::bug_fmt(format_args!("codegen worker should not be codegenning after codegen was already completed"))bug!(
1558                        "codegen worker should not be codegenning after \
1559                              codegen was already completed"
1560                    ),
1561                    MainThreadState::Lending => {
1562                        // Already making good use of that token
1563                    }
1564                }
1565            } else {
1566                // Don't queue up any more work if codegen was aborted, we're
1567                // just waiting for our existing children to finish.
1568                if !(codegen_state == Aborted) {
    ::core::panicking::panic("assertion failed: codegen_state == Aborted")
};assert!(codegen_state == Aborted);
1569                if running_with_any_token(main_thread_state, running_with_own_token) == 0 {
1570                    break;
1571                }
1572            }
1573
1574            // Spin up what work we can, only doing this while we've got available
1575            // parallelism slots and work left to spawn.
1576            if codegen_state != Aborted {
1577                while running_with_own_token < tokens.len()
1578                    && let Some((item, _)) = work_items.pop()
1579                {
1580                    spawn_work(
1581                        &cgcx,
1582                        &prof,
1583                        shared_emitter.clone(),
1584                        coordinator_send.clone(),
1585                        &mut llvm_start_time,
1586                        item,
1587                    );
1588                    running_with_own_token += 1;
1589                }
1590            }
1591
1592            // Relinquish accidentally acquired extra tokens.
1593            tokens.truncate(running_with_own_token);
1594
1595            match coordinator_receive.recv().unwrap() {
1596                // Save the token locally and the next turn of the loop will use
1597                // this to spawn a new unit of work, or it may get dropped
1598                // immediately if we have no more work to spawn.
1599                Message::Token(token) => {
1600                    match token {
1601                        Ok(token) => {
1602                            tokens.push(token);
1603
1604                            if main_thread_state == MainThreadState::Lending {
1605                                // If the main thread token is used for LLVM work
1606                                // at the moment, we turn that thread into a regular
1607                                // LLVM worker thread, so the main thread is free
1608                                // to react to codegen demand.
1609                                main_thread_state = MainThreadState::Idle;
1610                                running_with_own_token += 1;
1611                            }
1612                        }
1613                        Err(e) => {
1614                            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}");
1615                            shared_emitter.fatal(msg);
1616                            codegen_state = Aborted;
1617                        }
1618                    }
1619                }
1620
1621                Message::CodegenDone { llvm_work_item, cost } => {
1622                    // We keep the queue sorted by estimated processing cost,
1623                    // so that more expensive items are processed earlier. This
1624                    // is good for throughput as it gives the main thread more
1625                    // time to fill up the queue and it avoids scheduling
1626                    // expensive items to the end.
1627                    // Note, however, that this is not ideal for memory
1628                    // consumption, as LLVM module sizes are not evenly
1629                    // distributed.
1630                    let insertion_index = work_items.binary_search_by_key(&cost, |&(_, cost)| cost);
1631                    let insertion_index = match insertion_index {
1632                        Ok(idx) | Err(idx) => idx,
1633                    };
1634                    work_items.insert(insertion_index, (llvm_work_item, cost));
1635
1636                    if cgcx.parallel {
1637                        helper.request_token();
1638                    }
1639                    {
    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);
1640                    main_thread_state = MainThreadState::Idle;
1641                }
1642
1643                Message::CodegenComplete => {
1644                    if codegen_state != Aborted {
1645                        codegen_state = Completed;
1646                    }
1647                    {
    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);
1648                    main_thread_state = MainThreadState::Idle;
1649                }
1650
1651                // If codegen is aborted that means translation was aborted due
1652                // to some normal-ish compiler error. In this situation we want
1653                // to exit as soon as possible, but we want to make sure all
1654                // existing work has finished. Flag codegen as being done, and
1655                // then conditions above will ensure no more work is spawned but
1656                // we'll keep executing this loop until `running_with_own_token`
1657                // hits 0.
1658                Message::CodegenAborted => {
1659                    codegen_state = Aborted;
1660                }
1661
1662                Message::WorkItem { result } => {
1663                    // If a thread exits successfully then we drop a token associated
1664                    // with that worker and update our `running_with_own_token` count.
1665                    // We may later re-acquire a token to continue running more work.
1666                    // We may also not actually drop a token here if the worker was
1667                    // running with an "ephemeral token".
1668                    if main_thread_state == MainThreadState::Lending {
1669                        main_thread_state = MainThreadState::Idle;
1670                    } else {
1671                        running_with_own_token -= 1;
1672                    }
1673
1674                    match result {
1675                        Ok(WorkItemResult::Finished(compiled_module)) => {
1676                            compiled_modules.push(compiled_module);
1677                        }
1678                        Ok(WorkItemResult::NeedsFatLto(fat_lto_input)) => {
1679                            if !needs_thin_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_thin_lto.is_empty()")
};assert!(needs_thin_lto.is_empty());
1680                            needs_fat_lto.push(fat_lto_input);
1681                        }
1682                        Ok(WorkItemResult::NeedsThinLto(name, thin_buffer)) => {
1683                            if !needs_fat_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_fat_lto.is_empty()")
};assert!(needs_fat_lto.is_empty());
1684                            needs_thin_lto.push(ThinLtoInput::Red {
1685                                name,
1686                                buffer: SerializedModule::Local(thin_buffer),
1687                            });
1688                        }
1689                        Err(Some(WorkerFatalError)) => {
1690                            // Like `CodegenAborted`, wait for remaining work to finish.
1691                            codegen_state = Aborted;
1692                        }
1693                        Err(None) => {
1694                            // If the thread failed that means it panicked, so
1695                            // we abort immediately.
1696                            ::rustc_middle::util::bug::bug_fmt(format_args!("worker thread panicked"));bug!("worker thread panicked");
1697                        }
1698                    }
1699                }
1700
1701                Message::AddImportOnlyModule { bitcode_path, work_product } => {
1702                    {
    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);
1703                    {
    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);
1704                    lto_import_only_modules.push((bitcode_path, work_product));
1705                    main_thread_state = MainThreadState::Idle;
1706                }
1707            }
1708        }
1709
1710        // Drop to print timings
1711        drop(llvm_start_time);
1712
1713        if codegen_state == Aborted {
1714            return Err(());
1715        }
1716
1717        drop(codegen_state);
1718        drop(tokens);
1719        drop(helper);
1720        if !work_items.is_empty() {
    ::core::panicking::panic("assertion failed: work_items.is_empty()")
};assert!(work_items.is_empty());
1721
1722        if !needs_fat_lto.is_empty() {
1723            if !compiled_modules.is_empty() {
    ::core::panicking::panic("assertion failed: compiled_modules.is_empty()")
};assert!(compiled_modules.is_empty());
1724            if !needs_thin_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_thin_lto.is_empty()")
};assert!(needs_thin_lto.is_empty());
1725
1726            if let Some(allocator_module) = allocator_module.take() {
1727                needs_fat_lto.push(FatLtoInput::InMemory(allocator_module));
1728            }
1729
1730            for (bitcode_path, wp) in lto_import_only_modules {
1731                needs_fat_lto.push(FatLtoInput::Serialized { name: wp.cgu_name, bitcode_path })
1732            }
1733
1734            return Ok(MaybeLtoModules::FatLto { cgcx, needs_fat_lto });
1735        } else if !needs_thin_lto.is_empty() || !lto_import_only_modules.is_empty() {
1736            if !compiled_modules.is_empty() {
    ::core::panicking::panic("assertion failed: compiled_modules.is_empty()")
};assert!(compiled_modules.is_empty());
1737            if !needs_fat_lto.is_empty() {
    ::core::panicking::panic("assertion failed: needs_fat_lto.is_empty()")
};assert!(needs_fat_lto.is_empty());
1738
1739            for (bitcode_path, wp) in lto_import_only_modules {
1740                needs_thin_lto.push(ThinLtoInput::Green { wp, bitcode_path })
1741            }
1742
1743            if cgcx.lto == Lto::ThinLocal {
1744                compiled_modules.extend(do_thin_lto::<B>(
1745                    &cgcx,
1746                    &prof,
1747                    shared_emitter.clone(),
1748                    tm_factory,
1749                    &exported_symbols_for_lto,
1750                    &[],
1751                    needs_thin_lto,
1752                ));
1753            } else {
1754                if let Some(allocator_module) = allocator_module.take() {
1755                    let thin_buffer = B::serialize_module(allocator_module.module_llvm, true);
1756                    needs_thin_lto.push(ThinLtoInput::Red {
1757                        name: allocator_module.name,
1758                        buffer: SerializedModule::Local(thin_buffer),
1759                    });
1760                }
1761
1762                return Ok(MaybeLtoModules::ThinLto { cgcx, needs_thin_lto });
1763            }
1764        }
1765
1766        Ok(MaybeLtoModules::NoLto(CompiledModules {
1767            modules: compiled_modules,
1768            allocator_module: allocator_module.map(|allocator_module| {
1769                B::codegen(&cgcx, &prof, &shared_emitter, allocator_module, &allocator_config)
1770            }),
1771        }))
1772    };
1773    return std::thread::Builder::new()
1774        .name("coordinator".to_owned())
1775        .spawn(f)
1776        .expect("failed to spawn coordinator thread");
1777
1778    // A heuristic that determines if we have enough LLVM WorkItems in the
1779    // queue so that the main thread can do LLVM work instead of codegen
1780    fn queue_full_enough(items_in_queue: usize, workers_running: usize) -> bool {
1781        // This heuristic scales ahead-of-time codegen according to available
1782        // concurrency, as measured by `workers_running`. The idea is that the
1783        // more concurrency we have available, the more demand there will be for
1784        // work items, and the fuller the queue should be kept to meet demand.
1785        // An important property of this approach is that we codegen ahead of
1786        // time only as much as necessary, so as to keep fewer LLVM modules in
1787        // memory at once, thereby reducing memory consumption.
1788        //
1789        // When the number of workers running is less than the max concurrency
1790        // available to us, this heuristic can cause us to instruct the main
1791        // thread to work on an LLVM item (that is, tell it to "LLVM") instead
1792        // of codegen, even though it seems like it *should* be codegenning so
1793        // that we can create more work items and spawn more LLVM workers.
1794        //
1795        // But this is not a problem. When the main thread is told to LLVM,
1796        // according to this heuristic and how work is scheduled, there is
1797        // always at least one item in the queue, and therefore at least one
1798        // pending jobserver token request. If there *is* more concurrency
1799        // available, we will immediately receive a token, which will upgrade
1800        // the main thread's LLVM worker to a real one (conceptually), and free
1801        // up the main thread to codegen if necessary. On the other hand, if
1802        // there isn't more concurrency, then the main thread working on an LLVM
1803        // item is appropriate, as long as the queue is full enough for demand.
1804        //
1805        // Speaking of which, how full should we keep the queue? Probably less
1806        // full than you'd think. A lot has to go wrong for the queue not to be
1807        // full enough and for that to have a negative effect on compile times.
1808        //
1809        // Workers are unlikely to finish at exactly the same time, so when one
1810        // finishes and takes another work item off the queue, we often have
1811        // ample time to codegen at that point before the next worker finishes.
1812        // But suppose that codegen takes so long that the workers exhaust the
1813        // queue, and we have one or more workers that have nothing to work on.
1814        // Well, it might not be so bad. Of all the LLVM modules we create and
1815        // optimize, one has to finish last. It's not necessarily the case that
1816        // by losing some concurrency for a moment, we delay the point at which
1817        // that last LLVM module is finished and the rest of compilation can
1818        // proceed. Also, when we can't take advantage of some concurrency, we
1819        // give tokens back to the job server. That enables some other rustc to
1820        // potentially make use of the available concurrency. That could even
1821        // *decrease* overall compile time if we're lucky. But yes, if no other
1822        // rustc can make use of the concurrency, then we've squandered it.
1823        //
1824        // However, keeping the queue full is also beneficial when we have a
1825        // surge in available concurrency. Then items can be taken from the
1826        // queue immediately, without having to wait for codegen.
1827        //
1828        // So, the heuristic below tries to keep one item in the queue for every
1829        // four running workers. Based on limited benchmarking, this appears to
1830        // be more than sufficient to avoid increasing compilation times.
1831        let quarter_of_workers = workers_running - 3 * workers_running / 4;
1832        items_in_queue > 0 && items_in_queue >= quarter_of_workers
1833    }
1834}
1835
1836/// `FatalError` is explicitly not `Send`.
1837#[must_use]
1838pub(crate) struct WorkerFatalError;
1839
1840fn spawn_work<'a, B: WriteBackendMethods>(
1841    cgcx: &CodegenContext,
1842    prof: &'a SelfProfilerRef,
1843    shared_emitter: SharedEmitter,
1844    coordinator_send: Sender<Message<B>>,
1845    llvm_start_time: &mut Option<VerboseTimingGuard<'a>>,
1846    work: WorkItem<B>,
1847) {
1848    if llvm_start_time.is_none() {
1849        *llvm_start_time = Some(prof.verbose_generic_activity("LLVM_passes"));
1850    }
1851
1852    let cgcx = cgcx.clone();
1853    let prof = prof.clone();
1854
1855    let name = work.short_description();
1856    let f = move || {
1857        let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
1858
1859        let result = std::panic::catch_unwind(AssertUnwindSafe(|| match work {
1860            WorkItem::Optimize(m) => execute_optimize_work_item(&cgcx, &prof, shared_emitter, m),
1861            WorkItem::CopyPostLtoArtifacts(m) => WorkItemResult::Finished(
1862                execute_copy_from_cache_work_item(&cgcx, &prof, shared_emitter, m),
1863            ),
1864        }));
1865
1866        let msg = match result {
1867            Ok(result) => Message::WorkItem::<B> { result: Ok(result) },
1868
1869            // We ignore any `FatalError` coming out of `execute_work_item`, as a
1870            // diagnostic was already sent off to the main thread - just surface
1871            // that there was an error in this worker.
1872            Err(err) if err.is::<FatalErrorMarker>() => {
1873                Message::WorkItem::<B> { result: Err(Some(WorkerFatalError)) }
1874            }
1875
1876            Err(_) => Message::WorkItem::<B> { result: Err(None) },
1877        };
1878        drop(coordinator_send.send(msg));
1879    };
1880    std::thread::Builder::new().name(name).spawn(f).expect("failed to spawn work thread");
1881}
1882
1883fn spawn_thin_lto_work<B: WriteBackendMethods>(
1884    cgcx: &CodegenContext,
1885    prof: &SelfProfilerRef,
1886    shared_emitter: SharedEmitter,
1887    tm_factory: TargetMachineFactoryFn<B>,
1888    coordinator_send: Sender<ThinLtoMessage>,
1889    work: ThinLtoWorkItem<B>,
1890) {
1891    let cgcx = cgcx.clone();
1892    let prof = prof.clone();
1893
1894    let name = work.short_description();
1895    let f = move || {
1896        let _profiler = if cgcx.time_trace { B::thread_profiler() } else { Box::new(()) };
1897
1898        let result = std::panic::catch_unwind(AssertUnwindSafe(|| match work {
1899            ThinLtoWorkItem::CopyPostLtoArtifacts(m) => {
1900                execute_copy_from_cache_work_item(&cgcx, &prof, shared_emitter, m)
1901            }
1902            ThinLtoWorkItem::ThinLto(m) => {
1903                let _timer = prof.generic_activity_with_arg("codegen_module_perform_lto", m.name());
1904                B::optimize_and_codegen_thin(&cgcx, &prof, &shared_emitter, tm_factory, m)
1905            }
1906        }));
1907
1908        let msg = match result {
1909            Ok(result) => ThinLtoMessage::WorkItem { result: Ok(result) },
1910
1911            // We ignore any `FatalError` coming out of `execute_work_item`, as a
1912            // diagnostic was already sent off to the main thread - just surface
1913            // that there was an error in this worker.
1914            Err(err) if err.is::<FatalErrorMarker>() => {
1915                ThinLtoMessage::WorkItem { result: Err(Some(WorkerFatalError)) }
1916            }
1917
1918            Err(_) => ThinLtoMessage::WorkItem { result: Err(None) },
1919        };
1920        drop(coordinator_send.send(msg));
1921    };
1922    std::thread::Builder::new().name(name).spawn(f).expect("failed to spawn work thread");
1923}
1924
1925enum SharedEmitterMessage {
1926    Diagnostic(Diagnostic),
1927    InlineAsmError(InlineAsmError),
1928    Fatal(String),
1929}
1930
1931pub struct InlineAsmError {
1932    pub span: SpanData,
1933    pub msg: String,
1934    pub level: Level,
1935    pub source: Option<(String, Vec<InnerSpan>)>,
1936}
1937
1938#[derive(#[automatically_derived]
impl ::core::clone::Clone for SharedEmitter {
    #[inline]
    fn clone(&self) -> SharedEmitter {
        SharedEmitter { sender: ::core::clone::Clone::clone(&self.sender) }
    }
}Clone)]
1939pub struct SharedEmitter {
1940    sender: Sender<SharedEmitterMessage>,
1941}
1942
1943pub struct SharedEmitterMain {
1944    receiver: Receiver<SharedEmitterMessage>,
1945}
1946
1947impl SharedEmitter {
1948    fn new() -> (SharedEmitter, SharedEmitterMain) {
1949        let (sender, receiver) = channel();
1950
1951        (SharedEmitter { sender }, SharedEmitterMain { receiver })
1952    }
1953
1954    pub fn inline_asm_error(&self, err: InlineAsmError) {
1955        drop(self.sender.send(SharedEmitterMessage::InlineAsmError(err)));
1956    }
1957
1958    fn fatal(&self, msg: &str) {
1959        drop(self.sender.send(SharedEmitterMessage::Fatal(msg.to_string())));
1960    }
1961}
1962
1963impl Emitter for SharedEmitter {
1964    fn emit_diagnostic(&mut self, mut diag: rustc_errors::DiagInner) {
1965        // Check that we aren't missing anything interesting when converting to
1966        // the cut-down local `DiagInner`.
1967        if !!diag.span.has_span_labels() {
    ::core::panicking::panic("assertion failed: !diag.span.has_span_labels()")
};assert!(!diag.span.has_span_labels());
1968        {
    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![]));
1969        {
    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);
1970        {
    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);
1971        // No sensible check for `diag.emitted_at`.
1972
1973        let args = mem::take(&mut diag.args);
1974        drop(
1975            self.sender.send(SharedEmitterMessage::Diagnostic(Diagnostic {
1976                span: diag.span.primary_spans().iter().map(|span| span.data()).collect::<Vec<_>>(),
1977                level: diag.level(),
1978                messages: diag.messages,
1979                code: diag.code,
1980                children: diag
1981                    .children
1982                    .into_iter()
1983                    .map(|child| Subdiagnostic { level: child.level, messages: child.messages })
1984                    .collect(),
1985                args,
1986            })),
1987        );
1988    }
1989
1990    fn source_map(&self) -> Option<&SourceMap> {
1991        None
1992    }
1993}
1994
1995impl SharedEmitterMain {
1996    fn check(&self, sess: &Session, blocking: bool) {
1997        loop {
1998            let message = if blocking {
1999                match self.receiver.recv() {
2000                    Ok(message) => Ok(message),
2001                    Err(_) => Err(()),
2002                }
2003            } else {
2004                match self.receiver.try_recv() {
2005                    Ok(message) => Ok(message),
2006                    Err(_) => Err(()),
2007                }
2008            };
2009
2010            match message {
2011                Ok(SharedEmitterMessage::Diagnostic(diag)) => {
2012                    // The diagnostic has been received on the main thread.
2013                    // Convert it back to a full `Diagnostic` and emit.
2014                    let dcx = sess.dcx();
2015                    let mut d =
2016                        rustc_errors::DiagInner::new_with_messages(diag.level, diag.messages);
2017                    d.span = MultiSpan::from_spans(
2018                        diag.span.into_iter().map(|span| span.span()).collect(),
2019                    );
2020                    d.code = diag.code; // may be `None`, that's ok
2021                    d.children = diag
2022                        .children
2023                        .into_iter()
2024                        .map(|sub| rustc_errors::Subdiag {
2025                            level: sub.level,
2026                            messages: sub.messages,
2027                            span: MultiSpan::new(),
2028                        })
2029                        .collect();
2030                    d.args = diag.args;
2031                    dcx.emit_diagnostic(d);
2032                    sess.dcx().abort_if_errors();
2033                }
2034                Ok(SharedEmitterMessage::InlineAsmError(inner)) => {
2035                    {
    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);
2036                    let mut err = Diag::<()>::new(sess.dcx(), inner.level, inner.msg);
2037                    if !inner.span.is_dummy() {
2038                        err.span(inner.span.span());
2039                    }
2040
2041                    // Point to the generated assembly if it is available.
2042                    if let Some((buffer, spans)) = inner.source {
2043                        let source = sess
2044                            .source_map()
2045                            .new_source_file(FileName::inline_asm_source_code(&buffer), buffer);
2046                        let spans: Vec<_> = spans
2047                            .iter()
2048                            .map(|sp| {
2049                                Span::with_root_ctxt(
2050                                    source.normalized_byte_pos(sp.start as u32),
2051                                    source.normalized_byte_pos(sp.end as u32),
2052                                )
2053                            })
2054                            .collect();
2055                        err.span_note(spans, "instantiated into assembly here");
2056                    }
2057
2058                    err.emit();
2059                }
2060                Ok(SharedEmitterMessage::Fatal(msg)) => {
2061                    sess.dcx().fatal(msg);
2062                }
2063                Err(_) => {
2064                    break;
2065                }
2066            }
2067        }
2068    }
2069}
2070
2071pub struct Coordinator<B: WriteBackendMethods> {
2072    sender: Sender<Message<B>>,
2073    future: Option<thread::JoinHandle<Result<MaybeLtoModules<B>, ()>>>,
2074    // Only used for the Message type.
2075    phantom: PhantomData<B>,
2076}
2077
2078impl<B: WriteBackendMethods> Coordinator<B> {
2079    fn join(mut self) -> std::thread::Result<Result<MaybeLtoModules<B>, ()>> {
2080        self.future.take().unwrap().join()
2081    }
2082}
2083
2084impl<B: WriteBackendMethods> Drop for Coordinator<B> {
2085    fn drop(&mut self) {
2086        if let Some(future) = self.future.take() {
2087            // If we haven't joined yet, signal to the coordinator that it should spawn no more
2088            // work, and wait for worker threads to finish.
2089            drop(self.sender.send(Message::CodegenAborted::<B>));
2090            drop(future.join());
2091        }
2092    }
2093}
2094
2095pub struct OngoingCodegen<B: WriteBackendMethods> {
2096    backend: B,
2097    output_filenames: Arc<OutputFilenames>,
2098    // Field order below is intended to terminate the coordinator thread before two fields below
2099    // drop and prematurely close channels used by coordinator thread. See `Coordinator`'s
2100    // `Drop` implementation for more info.
2101    pub(crate) coordinator: Coordinator<B>,
2102    codegen_worker_receive: Receiver<CguMessage>,
2103    shared_emitter_main: SharedEmitterMain,
2104}
2105
2106impl<B: WriteBackendMethods> OngoingCodegen<B> {
2107    pub fn join(self, sess: &Session, crate_info: &CrateInfo) -> (CompiledModules, WorkProductMap) {
2108        self.shared_emitter_main.check(sess, true);
2109
2110        let maybe_lto_modules = sess.time("join_worker_thread", || match self.coordinator.join() {
2111            Ok(Ok(maybe_lto_modules)) => maybe_lto_modules,
2112            Ok(Err(())) => {
2113                sess.dcx().abort_if_errors();
2114                {
    ::core::panicking::panic_fmt(format_args!("expected abort due to worker thread errors"));
}panic!("expected abort due to worker thread errors")
2115            }
2116            Err(_) => {
2117                ::rustc_middle::util::bug::bug_fmt(format_args!("panic during codegen/LLVM phase"));bug!("panic during codegen/LLVM phase");
2118            }
2119        });
2120
2121        sess.dcx().abort_if_errors();
2122
2123        let (shared_emitter, shared_emitter_main) = SharedEmitter::new();
2124
2125        // Catch fatal errors to ensure shared_emitter_main.check() can emit the actual diagnostics
2126        let compiled_modules = catch_fatal_errors(|| match maybe_lto_modules {
2127            MaybeLtoModules::NoLto(compiled_modules) => {
2128                drop(shared_emitter);
2129                compiled_modules
2130            }
2131            MaybeLtoModules::FatLto { cgcx, needs_fat_lto } => {
2132                let tm_factory = self.backend.target_machine_factory(
2133                    sess,
2134                    cgcx.opt_level,
2135                    &cgcx.backend_features,
2136                );
2137
2138                CompiledModules {
2139                    modules: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [do_fat_lto(sess, &cgcx, shared_emitter, tm_factory,
                    &crate_info.exported_symbols_for_lto,
                    &crate_info.each_linked_rlib_file_for_lto, needs_fat_lto)]))vec![do_fat_lto(
2140                        sess,
2141                        &cgcx,
2142                        shared_emitter,
2143                        tm_factory,
2144                        &crate_info.exported_symbols_for_lto,
2145                        &crate_info.each_linked_rlib_file_for_lto,
2146                        needs_fat_lto,
2147                    )],
2148                    allocator_module: None,
2149                }
2150            }
2151            MaybeLtoModules::ThinLto { cgcx, needs_thin_lto } => {
2152                let tm_factory = self.backend.target_machine_factory(
2153                    sess,
2154                    cgcx.opt_level,
2155                    &cgcx.backend_features,
2156                );
2157
2158                CompiledModules {
2159                    modules: do_thin_lto::<B>(
2160                        &cgcx,
2161                        &sess.prof,
2162                        shared_emitter,
2163                        tm_factory,
2164                        &crate_info.exported_symbols_for_lto,
2165                        &crate_info.each_linked_rlib_file_for_lto,
2166                        needs_thin_lto,
2167                    ),
2168                    allocator_module: None,
2169                }
2170            }
2171        });
2172
2173        shared_emitter_main.check(sess, true);
2174
2175        sess.dcx().abort_if_errors();
2176
2177        let mut compiled_modules =
2178            compiled_modules.expect("fatal error emitted but not sent to SharedEmitter");
2179
2180        // Regardless of what order these modules completed in, report them to
2181        // the backend in the same order every time to ensure that we're handing
2182        // out deterministic results.
2183        compiled_modules.modules.sort_by(|a, b| a.name.cmp(&b.name));
2184
2185        let work_products =
2186            copy_all_cgu_workproducts_to_incr_comp_cache_dir(sess, &compiled_modules);
2187        produce_final_output_artifacts(sess, &compiled_modules, &self.output_filenames);
2188
2189        (compiled_modules, work_products)
2190    }
2191
2192    pub(crate) fn codegen_finished(&self, tcx: TyCtxt<'_>) {
2193        self.wait_for_signal_to_codegen_item();
2194        self.check_for_errors(tcx.sess);
2195        drop(self.coordinator.sender.send(Message::CodegenComplete::<B>));
2196    }
2197
2198    pub(crate) fn check_for_errors(&self, sess: &Session) {
2199        self.shared_emitter_main.check(sess, false);
2200    }
2201
2202    pub(crate) fn wait_for_signal_to_codegen_item(&self) {
2203        match self.codegen_worker_receive.recv() {
2204            Ok(CguMessage) => {
2205                // Ok to proceed.
2206            }
2207            Err(_) => {
2208                // One of the LLVM threads must have panicked, fall through so
2209                // error handling can be reached.
2210            }
2211        }
2212    }
2213}
2214
2215pub(crate) fn submit_codegened_module_to_llvm<B: WriteBackendMethods>(
2216    coordinator: &Coordinator<B>,
2217    module: ModuleCodegen<B::Module>,
2218    cost: u64,
2219) {
2220    let llvm_work_item = WorkItem::Optimize(module);
2221    drop(coordinator.sender.send(Message::CodegenDone::<B> { llvm_work_item, cost }));
2222}
2223
2224pub(crate) fn submit_post_lto_module_to_llvm<B: WriteBackendMethods>(
2225    coordinator: &Coordinator<B>,
2226    module: CachedModuleCodegen,
2227) {
2228    let llvm_work_item = WorkItem::CopyPostLtoArtifacts(module);
2229    drop(coordinator.sender.send(Message::CodegenDone::<B> { llvm_work_item, cost: 0 }));
2230}
2231
2232pub(crate) fn submit_pre_lto_module_to_llvm<B: WriteBackendMethods>(
2233    tcx: TyCtxt<'_>,
2234    coordinator: &Coordinator<B>,
2235    module: CachedModuleCodegen,
2236) {
2237    let filename = pre_lto_bitcode_filename(&module.name);
2238    let bitcode_path = in_incr_comp_dir_sess(tcx.sess, &filename);
2239    // Schedule the module to be loaded
2240    drop(
2241        coordinator
2242            .sender
2243            .send(Message::AddImportOnlyModule::<B> { bitcode_path, work_product: module.source }),
2244    );
2245}
2246
2247fn pre_lto_bitcode_filename(module_name: &str) -> String {
2248    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}.{1}", module_name,
                PRE_LTO_BC_EXT))
    })format!("{module_name}.{PRE_LTO_BC_EXT}")
2249}
2250
2251fn msvc_imps_needed(tcx: TyCtxt<'_>) -> bool {
2252    // This should never be true (because it's not supported). If it is true,
2253    // something is wrong with commandline arg validation.
2254    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!(
2255        !(tcx.sess.opts.cg.linker_plugin_lto.enabled()
2256            && tcx.sess.target.is_like_windows
2257            && tcx.sess.opts.cg.prefer_dynamic)
2258    );
2259
2260    // We need to generate _imp__ symbol if we are generating an rlib or we include one
2261    // indirectly from ThinLTO. In theory these are not needed as ThinLTO could resolve
2262    // these, but it currently does not do so.
2263    let can_have_static_objects =
2264        tcx.sess.lto() == Lto::Thin || tcx.crate_types().contains(&CrateType::Rlib);
2265
2266    tcx.sess.target.is_like_windows &&
2267    can_have_static_objects   &&
2268    // ThinLTO can't handle this workaround in all cases, so we don't
2269    // emit the `__imp_` symbols. Instead we make them unnecessary by disallowing
2270    // dynamic linking when linker plugin LTO is enabled.
2271    !tcx.sess.opts.cg.linker_plugin_lto.enabled()
2272}