]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/src/base.rs
Rollup merge of #99393 - Logarithmus:feature/99255-omit-const-generic-suffixes, r...
[rust.git] / compiler / rustc_codegen_ssa / src / base.rs
1 use crate::back::metadata::create_compressed_metadata_file;
2 use crate::back::write::{
3     compute_per_cgu_lto_type, start_async_codegen, submit_codegened_module_to_llvm,
4     submit_post_lto_module_to_llvm, submit_pre_lto_module_to_llvm, ComputedLtoType, OngoingCodegen,
5 };
6 use crate::common::{IntPredicate, RealPredicate, TypeKind};
7 use crate::meth;
8 use crate::mir;
9 use crate::mir::operand::OperandValue;
10 use crate::mir::place::PlaceRef;
11 use crate::traits::*;
12 use crate::{CachedModuleCodegen, CompiledModule, CrateInfo, MemFlags, ModuleCodegen, ModuleKind};
13
14 use rustc_attr as attr;
15 use rustc_data_structures::fx::FxHashMap;
16 use rustc_data_structures::profiling::{get_resident_set_size, print_time_passes_entry};
17
18 use rustc_data_structures::sync::par_iter;
19 #[cfg(parallel_compiler)]
20 use rustc_data_structures::sync::ParallelIterator;
21 use rustc_hir as hir;
22 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
23 use rustc_hir::lang_items::LangItem;
24 use rustc_index::vec::Idx;
25 use rustc_metadata::EncodedMetadata;
26 use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrs;
27 use rustc_middle::middle::exported_symbols;
28 use rustc_middle::middle::lang_items;
29 use rustc_middle::mir::mono::{CodegenUnit, CodegenUnitNameBuilder, MonoItem};
30 use rustc_middle::ty::layout::{HasTyCtxt, LayoutOf, TyAndLayout};
31 use rustc_middle::ty::query::Providers;
32 use rustc_middle::ty::{self, Instance, Ty, TyCtxt};
33 use rustc_session::cgu_reuse_tracker::CguReuse;
34 use rustc_session::config::{self, CrateType, EntryFnType, OutputType};
35 use rustc_session::Session;
36 use rustc_span::symbol::sym;
37 use rustc_span::{DebuggerVisualizerFile, DebuggerVisualizerType};
38 use rustc_target::abi::{Align, VariantIdx};
39
40 use std::collections::BTreeSet;
41 use std::convert::TryFrom;
42 use std::ops::{Deref, DerefMut};
43 use std::time::{Duration, Instant};
44
45 use itertools::Itertools;
46
47 pub fn bin_op_to_icmp_predicate(op: hir::BinOpKind, signed: bool) -> IntPredicate {
48     match op {
49         hir::BinOpKind::Eq => IntPredicate::IntEQ,
50         hir::BinOpKind::Ne => IntPredicate::IntNE,
51         hir::BinOpKind::Lt => {
52             if signed {
53                 IntPredicate::IntSLT
54             } else {
55                 IntPredicate::IntULT
56             }
57         }
58         hir::BinOpKind::Le => {
59             if signed {
60                 IntPredicate::IntSLE
61             } else {
62                 IntPredicate::IntULE
63             }
64         }
65         hir::BinOpKind::Gt => {
66             if signed {
67                 IntPredicate::IntSGT
68             } else {
69                 IntPredicate::IntUGT
70             }
71         }
72         hir::BinOpKind::Ge => {
73             if signed {
74                 IntPredicate::IntSGE
75             } else {
76                 IntPredicate::IntUGE
77             }
78         }
79         op => bug!(
80             "comparison_op_to_icmp_predicate: expected comparison operator, \
81              found {:?}",
82             op
83         ),
84     }
85 }
86
87 pub fn bin_op_to_fcmp_predicate(op: hir::BinOpKind) -> RealPredicate {
88     match op {
89         hir::BinOpKind::Eq => RealPredicate::RealOEQ,
90         hir::BinOpKind::Ne => RealPredicate::RealUNE,
91         hir::BinOpKind::Lt => RealPredicate::RealOLT,
92         hir::BinOpKind::Le => RealPredicate::RealOLE,
93         hir::BinOpKind::Gt => RealPredicate::RealOGT,
94         hir::BinOpKind::Ge => RealPredicate::RealOGE,
95         op => {
96             bug!(
97                 "comparison_op_to_fcmp_predicate: expected comparison operator, \
98                  found {:?}",
99                 op
100             );
101         }
102     }
103 }
104
105 pub fn compare_simd_types<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
106     bx: &mut Bx,
107     lhs: Bx::Value,
108     rhs: Bx::Value,
109     t: Ty<'tcx>,
110     ret_ty: Bx::Type,
111     op: hir::BinOpKind,
112 ) -> Bx::Value {
113     let signed = match t.kind() {
114         ty::Float(_) => {
115             let cmp = bin_op_to_fcmp_predicate(op);
116             let cmp = bx.fcmp(cmp, lhs, rhs);
117             return bx.sext(cmp, ret_ty);
118         }
119         ty::Uint(_) => false,
120         ty::Int(_) => true,
121         _ => bug!("compare_simd_types: invalid SIMD type"),
122     };
123
124     let cmp = bin_op_to_icmp_predicate(op, signed);
125     let cmp = bx.icmp(cmp, lhs, rhs);
126     // LLVM outputs an `< size x i1 >`, so we need to perform a sign extension
127     // to get the correctly sized type. This will compile to a single instruction
128     // once the IR is converted to assembly if the SIMD instruction is supported
129     // by the target architecture.
130     bx.sext(cmp, ret_ty)
131 }
132
133 /// Retrieves the information we are losing (making dynamic) in an unsizing
134 /// adjustment.
135 ///
136 /// The `old_info` argument is a bit odd. It is intended for use in an upcast,
137 /// where the new vtable for an object will be derived from the old one.
138 pub fn unsized_info<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
139     bx: &mut Bx,
140     source: Ty<'tcx>,
141     target: Ty<'tcx>,
142     old_info: Option<Bx::Value>,
143 ) -> Bx::Value {
144     let cx = bx.cx();
145     let (source, target) =
146         cx.tcx().struct_lockstep_tails_erasing_lifetimes(source, target, bx.param_env());
147     match (source.kind(), target.kind()) {
148         (&ty::Array(_, len), &ty::Slice(_)) => {
149             cx.const_usize(len.eval_usize(cx.tcx(), ty::ParamEnv::reveal_all()))
150         }
151         (&ty::Dynamic(ref data_a, ..), &ty::Dynamic(ref data_b, ..)) => {
152             let old_info =
153                 old_info.expect("unsized_info: missing old info for trait upcasting coercion");
154             if data_a.principal_def_id() == data_b.principal_def_id() {
155                 return old_info;
156             }
157
158             // trait upcasting coercion
159
160             let vptr_entry_idx =
161                 cx.tcx().vtable_trait_upcasting_coercion_new_vptr_slot((source, target));
162
163             if let Some(entry_idx) = vptr_entry_idx {
164                 let ptr_ty = cx.type_i8p();
165                 let ptr_align = cx.tcx().data_layout.pointer_align.abi;
166                 let llvtable = bx.pointercast(old_info, bx.type_ptr_to(ptr_ty));
167                 let gep = bx.inbounds_gep(
168                     ptr_ty,
169                     llvtable,
170                     &[bx.const_usize(u64::try_from(entry_idx).unwrap())],
171                 );
172                 let new_vptr = bx.load(ptr_ty, gep, ptr_align);
173                 bx.nonnull_metadata(new_vptr);
174                 // VTable loads are invariant.
175                 bx.set_invariant_load(new_vptr);
176                 new_vptr
177             } else {
178                 old_info
179             }
180         }
181         (_, &ty::Dynamic(ref data, ..)) => {
182             let vtable_ptr_ty = cx.scalar_pair_element_backend_type(
183                 cx.layout_of(cx.tcx().mk_mut_ptr(target)),
184                 1,
185                 true,
186             );
187             cx.const_ptrcast(meth::get_vtable(cx, source, data.principal()), vtable_ptr_ty)
188         }
189         _ => bug!("unsized_info: invalid unsizing {:?} -> {:?}", source, target),
190     }
191 }
192
193 /// Coerces `src` to `dst_ty`. `src_ty` must be a pointer.
194 pub fn unsize_ptr<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
195     bx: &mut Bx,
196     src: Bx::Value,
197     src_ty: Ty<'tcx>,
198     dst_ty: Ty<'tcx>,
199     old_info: Option<Bx::Value>,
200 ) -> (Bx::Value, Bx::Value) {
201     debug!("unsize_ptr: {:?} => {:?}", src_ty, dst_ty);
202     match (src_ty.kind(), dst_ty.kind()) {
203         (&ty::Ref(_, a, _), &ty::Ref(_, b, _) | &ty::RawPtr(ty::TypeAndMut { ty: b, .. }))
204         | (&ty::RawPtr(ty::TypeAndMut { ty: a, .. }), &ty::RawPtr(ty::TypeAndMut { ty: b, .. })) => {
205             assert_eq!(bx.cx().type_is_sized(a), old_info.is_none());
206             let ptr_ty = bx.cx().type_ptr_to(bx.cx().backend_type(bx.cx().layout_of(b)));
207             (bx.pointercast(src, ptr_ty), unsized_info(bx, a, b, old_info))
208         }
209         (&ty::Adt(def_a, _), &ty::Adt(def_b, _)) => {
210             assert_eq!(def_a, def_b);
211             let src_layout = bx.cx().layout_of(src_ty);
212             let dst_layout = bx.cx().layout_of(dst_ty);
213             if src_ty == dst_ty {
214                 return (src, old_info.unwrap());
215             }
216             let mut result = None;
217             for i in 0..src_layout.fields.count() {
218                 let src_f = src_layout.field(bx.cx(), i);
219                 if src_f.is_zst() {
220                     continue;
221                 }
222
223                 assert_eq!(src_layout.fields.offset(i).bytes(), 0);
224                 assert_eq!(dst_layout.fields.offset(i).bytes(), 0);
225                 assert_eq!(src_layout.size, src_f.size);
226
227                 let dst_f = dst_layout.field(bx.cx(), i);
228                 assert_ne!(src_f.ty, dst_f.ty);
229                 assert_eq!(result, None);
230                 result = Some(unsize_ptr(bx, src, src_f.ty, dst_f.ty, old_info));
231             }
232             let (lldata, llextra) = result.unwrap();
233             let lldata_ty = bx.cx().scalar_pair_element_backend_type(dst_layout, 0, true);
234             let llextra_ty = bx.cx().scalar_pair_element_backend_type(dst_layout, 1, true);
235             // HACK(eddyb) have to bitcast pointers until LLVM removes pointee types.
236             (bx.bitcast(lldata, lldata_ty), bx.bitcast(llextra, llextra_ty))
237         }
238         _ => bug!("unsize_ptr: called on bad types"),
239     }
240 }
241
242 /// Coerces `src`, which is a reference to a value of type `src_ty`,
243 /// to a value of type `dst_ty`, and stores the result in `dst`.
244 pub fn coerce_unsized_into<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
245     bx: &mut Bx,
246     src: PlaceRef<'tcx, Bx::Value>,
247     dst: PlaceRef<'tcx, Bx::Value>,
248 ) {
249     let src_ty = src.layout.ty;
250     let dst_ty = dst.layout.ty;
251     match (src_ty.kind(), dst_ty.kind()) {
252         (&ty::Ref(..), &ty::Ref(..) | &ty::RawPtr(..)) | (&ty::RawPtr(..), &ty::RawPtr(..)) => {
253             let (base, info) = match bx.load_operand(src).val {
254                 OperandValue::Pair(base, info) => unsize_ptr(bx, base, src_ty, dst_ty, Some(info)),
255                 OperandValue::Immediate(base) => unsize_ptr(bx, base, src_ty, dst_ty, None),
256                 OperandValue::Ref(..) => bug!(),
257             };
258             OperandValue::Pair(base, info).store(bx, dst);
259         }
260
261         (&ty::Adt(def_a, _), &ty::Adt(def_b, _)) => {
262             assert_eq!(def_a, def_b);
263
264             for i in 0..def_a.variant(VariantIdx::new(0)).fields.len() {
265                 let src_f = src.project_field(bx, i);
266                 let dst_f = dst.project_field(bx, i);
267
268                 if dst_f.layout.is_zst() {
269                     continue;
270                 }
271
272                 if src_f.layout.ty == dst_f.layout.ty {
273                     memcpy_ty(
274                         bx,
275                         dst_f.llval,
276                         dst_f.align,
277                         src_f.llval,
278                         src_f.align,
279                         src_f.layout,
280                         MemFlags::empty(),
281                     );
282                 } else {
283                     coerce_unsized_into(bx, src_f, dst_f);
284                 }
285             }
286         }
287         _ => bug!("coerce_unsized_into: invalid coercion {:?} -> {:?}", src_ty, dst_ty,),
288     }
289 }
290
291 pub fn cast_shift_expr_rhs<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
292     bx: &mut Bx,
293     op: hir::BinOpKind,
294     lhs: Bx::Value,
295     rhs: Bx::Value,
296 ) -> Bx::Value {
297     cast_shift_rhs(bx, op, lhs, rhs)
298 }
299
300 fn cast_shift_rhs<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
301     bx: &mut Bx,
302     op: hir::BinOpKind,
303     lhs: Bx::Value,
304     rhs: Bx::Value,
305 ) -> Bx::Value {
306     // Shifts may have any size int on the rhs
307     if op.is_shift() {
308         let mut rhs_llty = bx.cx().val_ty(rhs);
309         let mut lhs_llty = bx.cx().val_ty(lhs);
310         if bx.cx().type_kind(rhs_llty) == TypeKind::Vector {
311             rhs_llty = bx.cx().element_type(rhs_llty)
312         }
313         if bx.cx().type_kind(lhs_llty) == TypeKind::Vector {
314             lhs_llty = bx.cx().element_type(lhs_llty)
315         }
316         let rhs_sz = bx.cx().int_width(rhs_llty);
317         let lhs_sz = bx.cx().int_width(lhs_llty);
318         if lhs_sz < rhs_sz {
319             bx.trunc(rhs, lhs_llty)
320         } else if lhs_sz > rhs_sz {
321             // FIXME (#1877: If in the future shifting by negative
322             // values is no longer undefined then this is wrong.
323             bx.zext(rhs, lhs_llty)
324         } else {
325             rhs
326         }
327     } else {
328         rhs
329     }
330 }
331
332 /// Returns `true` if this session's target will use SEH-based unwinding.
333 ///
334 /// This is only true for MSVC targets, and even then the 64-bit MSVC target
335 /// currently uses SEH-ish unwinding with DWARF info tables to the side (same as
336 /// 64-bit MinGW) instead of "full SEH".
337 pub fn wants_msvc_seh(sess: &Session) -> bool {
338     sess.target.is_like_msvc
339 }
340
341 pub fn memcpy_ty<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
342     bx: &mut Bx,
343     dst: Bx::Value,
344     dst_align: Align,
345     src: Bx::Value,
346     src_align: Align,
347     layout: TyAndLayout<'tcx>,
348     flags: MemFlags,
349 ) {
350     let size = layout.size.bytes();
351     if size == 0 {
352         return;
353     }
354
355     bx.memcpy(dst, dst_align, src, src_align, bx.cx().const_usize(size), flags);
356 }
357
358 pub fn codegen_instance<'a, 'tcx: 'a, Bx: BuilderMethods<'a, 'tcx>>(
359     cx: &'a Bx::CodegenCx,
360     instance: Instance<'tcx>,
361 ) {
362     // this is an info! to allow collecting monomorphization statistics
363     // and to allow finding the last function before LLVM aborts from
364     // release builds.
365     info!("codegen_instance({})", instance);
366
367     mir::codegen_mir::<Bx>(cx, instance);
368 }
369
370 /// Creates the `main` function which will initialize the rust runtime and call
371 /// users main function.
372 pub fn maybe_create_entry_wrapper<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
373     cx: &'a Bx::CodegenCx,
374 ) -> Option<Bx::Function> {
375     let (main_def_id, entry_type) = cx.tcx().entry_fn(())?;
376     let main_is_local = main_def_id.is_local();
377     let instance = Instance::mono(cx.tcx(), main_def_id);
378
379     if main_is_local {
380         // We want to create the wrapper in the same codegen unit as Rust's main
381         // function.
382         if !cx.codegen_unit().contains_item(&MonoItem::Fn(instance)) {
383             return None;
384         }
385     } else if !cx.codegen_unit().is_primary() {
386         // We want to create the wrapper only when the codegen unit is the primary one
387         return None;
388     }
389
390     let main_llfn = cx.get_fn_addr(instance);
391
392     let use_start_lang_item = EntryFnType::Start != entry_type;
393     let entry_fn = create_entry_fn::<Bx>(cx, main_llfn, main_def_id, use_start_lang_item);
394     return Some(entry_fn);
395
396     fn create_entry_fn<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
397         cx: &'a Bx::CodegenCx,
398         rust_main: Bx::Value,
399         rust_main_def_id: DefId,
400         use_start_lang_item: bool,
401     ) -> Bx::Function {
402         // The entry function is either `int main(void)` or `int main(int argc, char **argv)`,
403         // depending on whether the target needs `argc` and `argv` to be passed in.
404         let llfty = if cx.sess().target.main_needs_argc_argv {
405             cx.type_func(&[cx.type_int(), cx.type_ptr_to(cx.type_i8p())], cx.type_int())
406         } else {
407             cx.type_func(&[], cx.type_int())
408         };
409
410         let main_ret_ty = cx.tcx().fn_sig(rust_main_def_id).output();
411         // Given that `main()` has no arguments,
412         // then its return type cannot have
413         // late-bound regions, since late-bound
414         // regions must appear in the argument
415         // listing.
416         let main_ret_ty = cx.tcx().normalize_erasing_regions(
417             ty::ParamEnv::reveal_all(),
418             main_ret_ty.no_bound_vars().unwrap(),
419         );
420
421         let Some(llfn) = cx.declare_c_main(llfty) else {
422             // FIXME: We should be smart and show a better diagnostic here.
423             let span = cx.tcx().def_span(rust_main_def_id);
424             cx.sess()
425                 .struct_span_err(span, "entry symbol `main` declared multiple times")
426                 .help("did you use `#[no_mangle]` on `fn main`? Use `#[start]` instead")
427                 .emit();
428             cx.sess().abort_if_errors();
429             bug!();
430         };
431
432         // `main` should respect same config for frame pointer elimination as rest of code
433         cx.set_frame_pointer_type(llfn);
434         cx.apply_target_cpu_attr(llfn);
435
436         let llbb = Bx::append_block(&cx, llfn, "top");
437         let mut bx = Bx::build(&cx, llbb);
438
439         bx.insert_reference_to_gdb_debug_scripts_section_global();
440
441         let isize_ty = cx.type_isize();
442         let i8pp_ty = cx.type_ptr_to(cx.type_i8p());
443         let (arg_argc, arg_argv) = get_argc_argv(cx, &mut bx);
444
445         let (start_fn, start_ty, args) = if use_start_lang_item {
446             let start_def_id = cx.tcx().require_lang_item(LangItem::Start, None);
447             let start_fn = cx.get_fn_addr(
448                 ty::Instance::resolve(
449                     cx.tcx(),
450                     ty::ParamEnv::reveal_all(),
451                     start_def_id,
452                     cx.tcx().intern_substs(&[main_ret_ty.into()]),
453                 )
454                 .unwrap()
455                 .unwrap(),
456             );
457             let start_ty = cx.type_func(&[cx.val_ty(rust_main), isize_ty, i8pp_ty], isize_ty);
458             (start_fn, start_ty, vec![rust_main, arg_argc, arg_argv])
459         } else {
460             debug!("using user-defined start fn");
461             let start_ty = cx.type_func(&[isize_ty, i8pp_ty], isize_ty);
462             (rust_main, start_ty, vec![arg_argc, arg_argv])
463         };
464
465         let result = bx.call(start_ty, start_fn, &args, None);
466         let cast = bx.intcast(result, cx.type_int(), true);
467         bx.ret(cast);
468
469         llfn
470     }
471 }
472
473 /// Obtain the `argc` and `argv` values to pass to the rust start function.
474 fn get_argc_argv<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
475     cx: &'a Bx::CodegenCx,
476     bx: &mut Bx,
477 ) -> (Bx::Value, Bx::Value) {
478     if cx.sess().target.main_needs_argc_argv {
479         // Params from native `main()` used as args for rust start function
480         let param_argc = bx.get_param(0);
481         let param_argv = bx.get_param(1);
482         let arg_argc = bx.intcast(param_argc, cx.type_isize(), true);
483         let arg_argv = param_argv;
484         (arg_argc, arg_argv)
485     } else {
486         // The Rust start function doesn't need `argc` and `argv`, so just pass zeros.
487         let arg_argc = bx.const_int(cx.type_int(), 0);
488         let arg_argv = bx.const_null(cx.type_ptr_to(cx.type_i8p()));
489         (arg_argc, arg_argv)
490     }
491 }
492
493 /// This function returns all of the debugger visualizers specified for the
494 /// current crate as well as all upstream crates transitively that match the
495 /// `visualizer_type` specified.
496 pub fn collect_debugger_visualizers_transitive(
497     tcx: TyCtxt<'_>,
498     visualizer_type: DebuggerVisualizerType,
499 ) -> BTreeSet<DebuggerVisualizerFile> {
500     tcx.debugger_visualizers(LOCAL_CRATE)
501         .iter()
502         .chain(
503             tcx.crates(())
504                 .iter()
505                 .filter(|&cnum| {
506                     let used_crate_source = tcx.used_crate_source(*cnum);
507                     used_crate_source.rlib.is_some() || used_crate_source.rmeta.is_some()
508                 })
509                 .flat_map(|&cnum| tcx.debugger_visualizers(cnum)),
510         )
511         .filter(|visualizer| visualizer.visualizer_type == visualizer_type)
512         .cloned()
513         .collect::<BTreeSet<_>>()
514 }
515
516 pub fn codegen_crate<B: ExtraBackendMethods>(
517     backend: B,
518     tcx: TyCtxt<'_>,
519     target_cpu: String,
520     metadata: EncodedMetadata,
521     need_metadata_module: bool,
522 ) -> OngoingCodegen<B> {
523     // Skip crate items and just output metadata in -Z no-codegen mode.
524     if tcx.sess.opts.unstable_opts.no_codegen || !tcx.sess.opts.output_types.should_codegen() {
525         let ongoing_codegen = start_async_codegen(backend, tcx, target_cpu, metadata, None, 1);
526
527         ongoing_codegen.codegen_finished(tcx);
528
529         ongoing_codegen.check_for_errors(tcx.sess);
530
531         return ongoing_codegen;
532     }
533
534     let cgu_name_builder = &mut CodegenUnitNameBuilder::new(tcx);
535
536     // Run the monomorphization collector and partition the collected items into
537     // codegen units.
538     let codegen_units = tcx.collect_and_partition_mono_items(()).1;
539
540     // Force all codegen_unit queries so they are already either red or green
541     // when compile_codegen_unit accesses them. We are not able to re-execute
542     // the codegen_unit query from just the DepNode, so an unknown color would
543     // lead to having to re-execute compile_codegen_unit, possibly
544     // unnecessarily.
545     if tcx.dep_graph.is_fully_enabled() {
546         for cgu in codegen_units {
547             tcx.ensure().codegen_unit(cgu.name());
548         }
549     }
550
551     let metadata_module = if need_metadata_module {
552         // Emit compressed metadata object.
553         let metadata_cgu_name =
554             cgu_name_builder.build_cgu_name(LOCAL_CRATE, &["crate"], Some("metadata")).to_string();
555         tcx.sess.time("write_compressed_metadata", || {
556             let file_name =
557                 tcx.output_filenames(()).temp_path(OutputType::Metadata, Some(&metadata_cgu_name));
558             let data = create_compressed_metadata_file(
559                 tcx.sess,
560                 &metadata,
561                 &exported_symbols::metadata_symbol_name(tcx),
562             );
563             if let Err(err) = std::fs::write(&file_name, data) {
564                 tcx.sess.fatal(&format!("error writing metadata object file: {}", err));
565             }
566             Some(CompiledModule {
567                 name: metadata_cgu_name,
568                 kind: ModuleKind::Metadata,
569                 object: Some(file_name),
570                 dwarf_object: None,
571                 bytecode: None,
572             })
573         })
574     } else {
575         None
576     };
577
578     let ongoing_codegen = start_async_codegen(
579         backend.clone(),
580         tcx,
581         target_cpu,
582         metadata,
583         metadata_module,
584         codegen_units.len(),
585     );
586     let ongoing_codegen = AbortCodegenOnDrop::<B>(Some(ongoing_codegen));
587
588     // Codegen an allocator shim, if necessary.
589     //
590     // If the crate doesn't have an `allocator_kind` set then there's definitely
591     // no shim to generate. Otherwise we also check our dependency graph for all
592     // our output crate types. If anything there looks like its a `Dynamic`
593     // linkage, then it's already got an allocator shim and we'll be using that
594     // one instead. If nothing exists then it's our job to generate the
595     // allocator!
596     let any_dynamic_crate = tcx.dependency_formats(()).iter().any(|(_, list)| {
597         use rustc_middle::middle::dependency_format::Linkage;
598         list.iter().any(|&linkage| linkage == Linkage::Dynamic)
599     });
600     let allocator_module = if any_dynamic_crate {
601         None
602     } else if let Some(kind) = tcx.allocator_kind(()) {
603         let llmod_id =
604             cgu_name_builder.build_cgu_name(LOCAL_CRATE, &["crate"], Some("allocator")).to_string();
605         let module_llvm = tcx.sess.time("write_allocator_module", || {
606             backend.codegen_allocator(tcx, &llmod_id, kind, tcx.lang_items().oom().is_some())
607         });
608
609         Some(ModuleCodegen { name: llmod_id, module_llvm, kind: ModuleKind::Allocator })
610     } else {
611         None
612     };
613
614     if let Some(allocator_module) = allocator_module {
615         ongoing_codegen.submit_pre_codegened_module_to_llvm(tcx, allocator_module);
616     }
617
618     // For better throughput during parallel processing by LLVM, we used to sort
619     // CGUs largest to smallest. This would lead to better thread utilization
620     // by, for example, preventing a large CGU from being processed last and
621     // having only one LLVM thread working while the rest remained idle.
622     //
623     // However, this strategy would lead to high memory usage, as it meant the
624     // LLVM-IR for all of the largest CGUs would be resident in memory at once.
625     //
626     // Instead, we can compromise by ordering CGUs such that the largest and
627     // smallest are first, second largest and smallest are next, etc. If there
628     // are large size variations, this can reduce memory usage significantly.
629     let codegen_units: Vec<_> = {
630         let mut sorted_cgus = codegen_units.iter().collect::<Vec<_>>();
631         sorted_cgus.sort_by_cached_key(|cgu| cgu.size_estimate());
632
633         let (first_half, second_half) = sorted_cgus.split_at(sorted_cgus.len() / 2);
634         second_half.iter().rev().interleave(first_half).copied().collect()
635     };
636
637     // Calculate the CGU reuse
638     let cgu_reuse = tcx.sess.time("find_cgu_reuse", || {
639         codegen_units.iter().map(|cgu| determine_cgu_reuse(tcx, &cgu)).collect::<Vec<_>>()
640     });
641
642     let mut total_codegen_time = Duration::new(0, 0);
643     let start_rss = tcx.sess.time_passes().then(|| get_resident_set_size());
644
645     // The non-parallel compiler can only translate codegen units to LLVM IR
646     // on a single thread, leading to a staircase effect where the N LLVM
647     // threads have to wait on the single codegen threads to generate work
648     // for them. The parallel compiler does not have this restriction, so
649     // we can pre-load the LLVM queue in parallel before handing off
650     // coordination to the OnGoingCodegen scheduler.
651     //
652     // This likely is a temporary measure. Once we don't have to support the
653     // non-parallel compiler anymore, we can compile CGUs end-to-end in
654     // parallel and get rid of the complicated scheduling logic.
655     let mut pre_compiled_cgus = if cfg!(parallel_compiler) {
656         tcx.sess.time("compile_first_CGU_batch", || {
657             // Try to find one CGU to compile per thread.
658             let cgus: Vec<_> = cgu_reuse
659                 .iter()
660                 .enumerate()
661                 .filter(|&(_, reuse)| reuse == &CguReuse::No)
662                 .take(tcx.sess.threads())
663                 .collect();
664
665             // Compile the found CGUs in parallel.
666             let start_time = Instant::now();
667
668             let pre_compiled_cgus = par_iter(cgus)
669                 .map(|(i, _)| {
670                     let module = backend.compile_codegen_unit(tcx, codegen_units[i].name());
671                     (i, module)
672                 })
673                 .collect();
674
675             total_codegen_time += start_time.elapsed();
676
677             pre_compiled_cgus
678         })
679     } else {
680         FxHashMap::default()
681     };
682
683     for (i, cgu) in codegen_units.iter().enumerate() {
684         ongoing_codegen.wait_for_signal_to_codegen_item();
685         ongoing_codegen.check_for_errors(tcx.sess);
686
687         let cgu_reuse = cgu_reuse[i];
688         tcx.sess.cgu_reuse_tracker.set_actual_reuse(cgu.name().as_str(), cgu_reuse);
689
690         match cgu_reuse {
691             CguReuse::No => {
692                 let (module, cost) = if let Some(cgu) = pre_compiled_cgus.remove(&i) {
693                     cgu
694                 } else {
695                     let start_time = Instant::now();
696                     let module = backend.compile_codegen_unit(tcx, cgu.name());
697                     total_codegen_time += start_time.elapsed();
698                     module
699                 };
700                 // This will unwind if there are errors, which triggers our `AbortCodegenOnDrop`
701                 // guard. Unfortunately, just skipping the `submit_codegened_module_to_llvm` makes
702                 // compilation hang on post-monomorphization errors.
703                 tcx.sess.abort_if_errors();
704
705                 submit_codegened_module_to_llvm(
706                     &backend,
707                     &ongoing_codegen.coordinator_send,
708                     module,
709                     cost,
710                 );
711                 false
712             }
713             CguReuse::PreLto => {
714                 submit_pre_lto_module_to_llvm(
715                     &backend,
716                     tcx,
717                     &ongoing_codegen.coordinator_send,
718                     CachedModuleCodegen {
719                         name: cgu.name().to_string(),
720                         source: cgu.previous_work_product(tcx),
721                     },
722                 );
723                 true
724             }
725             CguReuse::PostLto => {
726                 submit_post_lto_module_to_llvm(
727                     &backend,
728                     &ongoing_codegen.coordinator_send,
729                     CachedModuleCodegen {
730                         name: cgu.name().to_string(),
731                         source: cgu.previous_work_product(tcx),
732                     },
733                 );
734                 true
735             }
736         };
737     }
738
739     ongoing_codegen.codegen_finished(tcx);
740
741     // Since the main thread is sometimes blocked during codegen, we keep track
742     // -Ztime-passes output manually.
743     if tcx.sess.time_passes() {
744         let end_rss = get_resident_set_size();
745
746         print_time_passes_entry(
747             "codegen_to_LLVM_IR",
748             total_codegen_time,
749             start_rss.unwrap(),
750             end_rss,
751         );
752     }
753
754     ongoing_codegen.check_for_errors(tcx.sess);
755
756     ongoing_codegen.into_inner()
757 }
758
759 /// A curious wrapper structure whose only purpose is to call `codegen_aborted`
760 /// when it's dropped abnormally.
761 ///
762 /// In the process of working on rust-lang/rust#55238 a mysterious segfault was
763 /// stumbled upon. The segfault was never reproduced locally, but it was
764 /// suspected to be related to the fact that codegen worker threads were
765 /// sticking around by the time the main thread was exiting, causing issues.
766 ///
767 /// This structure is an attempt to fix that issue where the `codegen_aborted`
768 /// message will block until all workers have finished. This should ensure that
769 /// even if the main codegen thread panics we'll wait for pending work to
770 /// complete before returning from the main thread, hopefully avoiding
771 /// segfaults.
772 ///
773 /// If you see this comment in the code, then it means that this workaround
774 /// worked! We may yet one day track down the mysterious cause of that
775 /// segfault...
776 struct AbortCodegenOnDrop<B: ExtraBackendMethods>(Option<OngoingCodegen<B>>);
777
778 impl<B: ExtraBackendMethods> AbortCodegenOnDrop<B> {
779     fn into_inner(mut self) -> OngoingCodegen<B> {
780         self.0.take().unwrap()
781     }
782 }
783
784 impl<B: ExtraBackendMethods> Deref for AbortCodegenOnDrop<B> {
785     type Target = OngoingCodegen<B>;
786
787     fn deref(&self) -> &OngoingCodegen<B> {
788         self.0.as_ref().unwrap()
789     }
790 }
791
792 impl<B: ExtraBackendMethods> DerefMut for AbortCodegenOnDrop<B> {
793     fn deref_mut(&mut self) -> &mut OngoingCodegen<B> {
794         self.0.as_mut().unwrap()
795     }
796 }
797
798 impl<B: ExtraBackendMethods> Drop for AbortCodegenOnDrop<B> {
799     fn drop(&mut self) {
800         if let Some(codegen) = self.0.take() {
801             codegen.codegen_aborted();
802         }
803     }
804 }
805
806 impl CrateInfo {
807     pub fn new(tcx: TyCtxt<'_>, target_cpu: String) -> CrateInfo {
808         let exported_symbols = tcx
809             .sess
810             .crate_types()
811             .iter()
812             .map(|&c| (c, crate::back::linker::exported_symbols(tcx, c)))
813             .collect();
814         let linked_symbols = tcx
815             .sess
816             .crate_types()
817             .iter()
818             .map(|&c| (c, crate::back::linker::linked_symbols(tcx, c)))
819             .collect();
820         let local_crate_name = tcx.crate_name(LOCAL_CRATE);
821         let crate_attrs = tcx.hir().attrs(rustc_hir::CRATE_HIR_ID);
822         let subsystem = tcx.sess.first_attr_value_str_by_name(crate_attrs, sym::windows_subsystem);
823         let windows_subsystem = subsystem.map(|subsystem| {
824             if subsystem != sym::windows && subsystem != sym::console {
825                 tcx.sess.fatal(&format!(
826                     "invalid windows subsystem `{}`, only \
827                                      `windows` and `console` are allowed",
828                     subsystem
829                 ));
830             }
831             subsystem.to_string()
832         });
833
834         // This list is used when generating the command line to pass through to
835         // system linker. The linker expects undefined symbols on the left of the
836         // command line to be defined in libraries on the right, not the other way
837         // around. For more info, see some comments in the add_used_library function
838         // below.
839         //
840         // In order to get this left-to-right dependency ordering, we use the reverse
841         // postorder of all crates putting the leaves at the right-most positions.
842         let used_crates = tcx
843             .postorder_cnums(())
844             .iter()
845             .rev()
846             .copied()
847             .filter(|&cnum| !tcx.dep_kind(cnum).macros_only())
848             .collect();
849
850         let mut info = CrateInfo {
851             target_cpu,
852             exported_symbols,
853             linked_symbols,
854             local_crate_name,
855             compiler_builtins: None,
856             profiler_runtime: None,
857             is_no_builtins: Default::default(),
858             native_libraries: Default::default(),
859             used_libraries: tcx.native_libraries(LOCAL_CRATE).iter().map(Into::into).collect(),
860             crate_name: Default::default(),
861             used_crates,
862             used_crate_source: Default::default(),
863             lang_item_to_crate: Default::default(),
864             missing_lang_items: Default::default(),
865             dependency_formats: tcx.dependency_formats(()).clone(),
866             windows_subsystem,
867             natvis_debugger_visualizers: Default::default(),
868         };
869         let lang_items = tcx.lang_items();
870
871         let crates = tcx.crates(());
872
873         let n_crates = crates.len();
874         info.native_libraries.reserve(n_crates);
875         info.crate_name.reserve(n_crates);
876         info.used_crate_source.reserve(n_crates);
877         info.missing_lang_items.reserve(n_crates);
878
879         for &cnum in crates.iter() {
880             info.native_libraries
881                 .insert(cnum, tcx.native_libraries(cnum).iter().map(Into::into).collect());
882             info.crate_name.insert(cnum, tcx.crate_name(cnum));
883
884             let used_crate_source = tcx.used_crate_source(cnum);
885             info.used_crate_source.insert(cnum, used_crate_source.clone());
886             if tcx.is_compiler_builtins(cnum) {
887                 info.compiler_builtins = Some(cnum);
888             }
889             if tcx.is_profiler_runtime(cnum) {
890                 info.profiler_runtime = Some(cnum);
891             }
892             if tcx.is_no_builtins(cnum) {
893                 info.is_no_builtins.insert(cnum);
894             }
895             let missing = tcx.missing_lang_items(cnum);
896             for &item in missing.iter() {
897                 if let Ok(id) = lang_items.require(item) {
898                     info.lang_item_to_crate.insert(item, id.krate);
899                 }
900             }
901
902             // No need to look for lang items that don't actually need to exist.
903             let missing =
904                 missing.iter().cloned().filter(|&l| lang_items::required(tcx, l)).collect();
905             info.missing_lang_items.insert(cnum, missing);
906         }
907
908         let embed_visualizers = tcx.sess.crate_types().iter().any(|&crate_type| match crate_type {
909             CrateType::Executable | CrateType::Dylib | CrateType::Cdylib => {
910                 // These are crate types for which we invoke the linker and can embed
911                 // NatVis visualizers.
912                 true
913             }
914             CrateType::ProcMacro => {
915                 // We could embed NatVis for proc macro crates too (to improve the debugging
916                 // experience for them) but it does not seem like a good default, since
917                 // this is a rare use case and we don't want to slow down the common case.
918                 false
919             }
920             CrateType::Staticlib | CrateType::Rlib => {
921                 // We don't invoke the linker for these, so we don't need to collect the NatVis for them.
922                 false
923             }
924         });
925
926         if tcx.sess.target.is_like_msvc && embed_visualizers {
927             info.natvis_debugger_visualizers =
928                 collect_debugger_visualizers_transitive(tcx, DebuggerVisualizerType::Natvis);
929         }
930
931         info
932     }
933 }
934
935 pub fn provide(providers: &mut Providers) {
936     providers.backend_optimization_level = |tcx, cratenum| {
937         let for_speed = match tcx.sess.opts.optimize {
938             // If globally no optimisation is done, #[optimize] has no effect.
939             //
940             // This is done because if we ended up "upgrading" to `-O2` here, we’d populate the
941             // pass manager and it is likely that some module-wide passes (such as inliner or
942             // cross-function constant propagation) would ignore the `optnone` annotation we put
943             // on the functions, thus necessarily involving these functions into optimisations.
944             config::OptLevel::No => return config::OptLevel::No,
945             // If globally optimise-speed is already specified, just use that level.
946             config::OptLevel::Less => return config::OptLevel::Less,
947             config::OptLevel::Default => return config::OptLevel::Default,
948             config::OptLevel::Aggressive => return config::OptLevel::Aggressive,
949             // If globally optimize-for-size has been requested, use -O2 instead (if optimize(size)
950             // are present).
951             config::OptLevel::Size => config::OptLevel::Default,
952             config::OptLevel::SizeMin => config::OptLevel::Default,
953         };
954
955         let (defids, _) = tcx.collect_and_partition_mono_items(cratenum);
956         for id in &*defids {
957             let CodegenFnAttrs { optimize, .. } = tcx.codegen_fn_attrs(*id);
958             match optimize {
959                 attr::OptimizeAttr::None => continue,
960                 attr::OptimizeAttr::Size => continue,
961                 attr::OptimizeAttr::Speed => {
962                     return for_speed;
963                 }
964             }
965         }
966         tcx.sess.opts.optimize
967     };
968 }
969
970 fn determine_cgu_reuse<'tcx>(tcx: TyCtxt<'tcx>, cgu: &CodegenUnit<'tcx>) -> CguReuse {
971     if !tcx.dep_graph.is_fully_enabled() {
972         return CguReuse::No;
973     }
974
975     let work_product_id = &cgu.work_product_id();
976     if tcx.dep_graph.previous_work_product(work_product_id).is_none() {
977         // We don't have anything cached for this CGU. This can happen
978         // if the CGU did not exist in the previous session.
979         return CguReuse::No;
980     }
981
982     // Try to mark the CGU as green. If it we can do so, it means that nothing
983     // affecting the LLVM module has changed and we can re-use a cached version.
984     // If we compile with any kind of LTO, this means we can re-use the bitcode
985     // of the Pre-LTO stage (possibly also the Post-LTO version but we'll only
986     // know that later). If we are not doing LTO, there is only one optimized
987     // version of each module, so we re-use that.
988     let dep_node = cgu.codegen_dep_node(tcx);
989     assert!(
990         !tcx.dep_graph.dep_node_exists(&dep_node),
991         "CompileCodegenUnit dep-node for CGU `{}` already exists before marking.",
992         cgu.name()
993     );
994
995     if tcx.try_mark_green(&dep_node) {
996         // We can re-use either the pre- or the post-thinlto state. If no LTO is
997         // being performed then we can use post-LTO artifacts, otherwise we must
998         // reuse pre-LTO artifacts
999         match compute_per_cgu_lto_type(
1000             &tcx.sess.lto(),
1001             &tcx.sess.opts,
1002             &tcx.sess.crate_types(),
1003             ModuleKind::Regular,
1004         ) {
1005             ComputedLtoType::No => CguReuse::PostLto,
1006             _ => CguReuse::PreLto,
1007         }
1008     } else {
1009         CguReuse::No
1010     }
1011 }