]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_session/src/session.rs
Replace `&mut DiagnosticBuilder`, in signatures, with `&mut Diagnostic`.
[rust.git] / compiler / rustc_session / src / session.rs
1 use crate::cgu_reuse_tracker::CguReuseTracker;
2 use crate::code_stats::CodeStats;
3 pub use crate::code_stats::{DataTypeKind, FieldInfo, SizeKind, VariantInfo};
4 use crate::config::{self, CrateType, OutputType, SwitchWithOptPath};
5 use crate::parse::ParseSess;
6 use crate::search_paths::{PathKind, SearchPath};
7 use crate::{filesearch, lint};
8
9 pub use rustc_ast::attr::MarkedAttrs;
10 pub use rustc_ast::Attribute;
11 use rustc_data_structures::flock;
12 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
13 use rustc_data_structures::jobserver::{self, Client};
14 use rustc_data_structures::profiling::{duration_to_secs_str, SelfProfiler, SelfProfilerRef};
15 use rustc_data_structures::sync::{
16     self, AtomicU64, AtomicUsize, Lock, Lrc, OnceCell, OneThread, Ordering, Ordering::SeqCst,
17 };
18 use rustc_errors::annotate_snippet_emitter_writer::AnnotateSnippetEmitterWriter;
19 use rustc_errors::emitter::{Emitter, EmitterWriter, HumanReadableErrorType};
20 use rustc_errors::json::JsonEmitter;
21 use rustc_errors::registry::Registry;
22 use rustc_errors::{Diagnostic, DiagnosticBuilder, DiagnosticId, ErrorReported};
23 use rustc_macros::HashStable_Generic;
24 pub use rustc_span::def_id::StableCrateId;
25 use rustc_span::edition::Edition;
26 use rustc_span::source_map::{FileLoader, MultiSpan, RealFileLoader, SourceMap, Span};
27 use rustc_span::{sym, SourceFileHashAlgorithm, Symbol};
28 use rustc_target::asm::InlineAsmArch;
29 use rustc_target::spec::{CodeModel, PanicStrategy, RelocModel, RelroLevel};
30 use rustc_target::spec::{
31     SanitizerSet, SplitDebuginfo, StackProtector, Target, TargetTriple, TlsModel,
32 };
33
34 use std::cell::{self, RefCell};
35 use std::env;
36 use std::fmt;
37 use std::io::Write;
38 use std::num::NonZeroU32;
39 use std::ops::{Div, Mul};
40 use std::path::{Path, PathBuf};
41 use std::str::FromStr;
42 use std::sync::Arc;
43 use std::time::Duration;
44
45 pub struct OptimizationFuel {
46     /// If `-zfuel=crate=n` is specified, initially set to `n`, otherwise `0`.
47     remaining: u64,
48     /// We're rejecting all further optimizations.
49     out_of_fuel: bool,
50 }
51
52 /// The behavior of the CTFE engine when an error occurs with regards to backtraces.
53 #[derive(Clone, Copy)]
54 pub enum CtfeBacktrace {
55     /// Do nothing special, return the error as usual without a backtrace.
56     Disabled,
57     /// Capture a backtrace at the point the error is created and return it in the error
58     /// (to be printed later if/when the error ever actually gets shown to the user).
59     Capture,
60     /// Capture a backtrace at the point the error is created and immediately print it out.
61     Immediate,
62 }
63
64 /// New-type wrapper around `usize` for representing limits. Ensures that comparisons against
65 /// limits are consistent throughout the compiler.
66 #[derive(Clone, Copy, Debug, HashStable_Generic)]
67 pub struct Limit(pub usize);
68
69 impl Limit {
70     /// Create a new limit from a `usize`.
71     pub fn new(value: usize) -> Self {
72         Limit(value)
73     }
74
75     /// Check that `value` is within the limit. Ensures that the same comparisons are used
76     /// throughout the compiler, as mismatches can cause ICEs, see #72540.
77     #[inline]
78     pub fn value_within_limit(&self, value: usize) -> bool {
79         value <= self.0
80     }
81 }
82
83 impl From<usize> for Limit {
84     fn from(value: usize) -> Self {
85         Self::new(value)
86     }
87 }
88
89 impl fmt::Display for Limit {
90     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
91         write!(f, "{}", self.0)
92     }
93 }
94
95 impl Div<usize> for Limit {
96     type Output = Limit;
97
98     fn div(self, rhs: usize) -> Self::Output {
99         Limit::new(self.0 / rhs)
100     }
101 }
102
103 impl Mul<usize> for Limit {
104     type Output = Limit;
105
106     fn mul(self, rhs: usize) -> Self::Output {
107         Limit::new(self.0 * rhs)
108     }
109 }
110
111 #[derive(Clone, Copy, Debug, HashStable_Generic)]
112 pub struct Limits {
113     /// The maximum recursion limit for potentially infinitely recursive
114     /// operations such as auto-dereference and monomorphization.
115     pub recursion_limit: Limit,
116     /// The size at which the `large_assignments` lint starts
117     /// being emitted.
118     pub move_size_limit: Limit,
119     /// The maximum length of types during monomorphization.
120     pub type_length_limit: Limit,
121     /// The maximum blocks a const expression can evaluate.
122     pub const_eval_limit: Limit,
123 }
124
125 /// Represents the data associated with a compilation
126 /// session for a single crate.
127 pub struct Session {
128     pub target: Target,
129     pub host: Target,
130     pub opts: config::Options,
131     pub host_tlib_path: Lrc<SearchPath>,
132     pub target_tlib_path: Lrc<SearchPath>,
133     pub parse_sess: ParseSess,
134     pub sysroot: PathBuf,
135     /// The name of the root source file of the crate, in the local file system.
136     /// `None` means that there is no source file.
137     pub local_crate_source_file: Option<PathBuf>,
138
139     /// Set of `(DiagnosticId, Option<Span>, message)` tuples tracking
140     /// (sub)diagnostics that have been set once, but should not be set again,
141     /// in order to avoid redundantly verbose output (Issue #24690, #44953).
142     pub one_time_diagnostics: Lock<FxHashSet<(DiagnosticMessageId, Option<Span>, String)>>,
143     crate_types: OnceCell<Vec<CrateType>>,
144     /// The `stable_crate_id` is constructed out of the crate name and all the
145     /// `-C metadata` arguments passed to the compiler. Its value forms a unique
146     /// global identifier for the crate. It is used to allow multiple crates
147     /// with the same name to coexist. See the
148     /// `rustc_codegen_llvm::back::symbol_names` module for more information.
149     pub stable_crate_id: OnceCell<StableCrateId>,
150
151     features: OnceCell<rustc_feature::Features>,
152
153     incr_comp_session: OneThread<RefCell<IncrCompSession>>,
154     /// Used for incremental compilation tests. Will only be populated if
155     /// `-Zquery-dep-graph` is specified.
156     pub cgu_reuse_tracker: CguReuseTracker,
157
158     /// Used by `-Z self-profile`.
159     pub prof: SelfProfilerRef,
160
161     /// Some measurements that are being gathered during compilation.
162     pub perf_stats: PerfStats,
163
164     /// Data about code being compiled, gathered during compilation.
165     pub code_stats: CodeStats,
166
167     /// Tracks fuel info if `-zfuel=crate=n` is specified.
168     optimization_fuel: Lock<OptimizationFuel>,
169
170     /// Always set to zero and incremented so that we can print fuel expended by a crate.
171     pub print_fuel: AtomicU64,
172
173     /// Loaded up early on in the initialization of this `Session` to avoid
174     /// false positives about a job server in our environment.
175     pub jobserver: Client,
176
177     /// Cap lint level specified by a driver specifically.
178     pub driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
179
180     /// Tracks the current behavior of the CTFE engine when an error occurs.
181     /// Options range from returning the error without a backtrace to returning an error
182     /// and immediately printing the backtrace to stderr.
183     /// The `Lock` is only used by miri to allow setting `ctfe_backtrace` after analysis when
184     /// `MIRI_BACKTRACE` is set. This makes it only apply to miri's errors and not to all CTFE
185     /// errors.
186     pub ctfe_backtrace: Lock<CtfeBacktrace>,
187
188     /// This tracks where `-Zunleash-the-miri-inside-of-you` was used to get around a
189     /// const check, optionally with the relevant feature gate.  We use this to
190     /// warn about unleashing, but with a single diagnostic instead of dozens that
191     /// drown everything else in noise.
192     miri_unleashed_features: Lock<Vec<(Span, Option<Symbol>)>>,
193
194     /// Architecture to use for interpreting asm!.
195     pub asm_arch: Option<InlineAsmArch>,
196
197     /// Set of enabled features for the current target.
198     pub target_features: FxHashSet<Symbol>,
199 }
200
201 pub struct PerfStats {
202     /// The accumulated time spent on computing symbol hashes.
203     pub symbol_hash_time: Lock<Duration>,
204     /// Total number of values canonicalized queries constructed.
205     pub queries_canonicalized: AtomicUsize,
206     /// Number of times this query is invoked.
207     pub normalize_generic_arg_after_erasing_regions: AtomicUsize,
208     /// Number of times this query is invoked.
209     pub normalize_projection_ty: AtomicUsize,
210 }
211
212 /// Enum to support dispatch of one-time diagnostics (in `Session.diag_once`).
213 enum DiagnosticBuilderMethod {
214     Note,
215     SpanNote,
216     // Add more variants as needed to support one-time diagnostics.
217 }
218
219 /// Trait implemented by error types. This should not be implemented manually. Instead, use
220 /// `#[derive(SessionDiagnostic)]` -- see [rustc_macros::SessionDiagnostic].
221 pub trait SessionDiagnostic<'a> {
222     /// Write out as a diagnostic out of `sess`.
223     #[must_use]
224     fn into_diagnostic(self, sess: &'a Session) -> DiagnosticBuilder<'a>;
225 }
226
227 /// Diagnostic message ID, used by `Session.one_time_diagnostics` to avoid
228 /// emitting the same message more than once.
229 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
230 pub enum DiagnosticMessageId {
231     ErrorId(u16), // EXXXX error code as integer
232     LintId(lint::LintId),
233     StabilityId(Option<NonZeroU32>), // issue number
234 }
235
236 impl From<&'static lint::Lint> for DiagnosticMessageId {
237     fn from(lint: &'static lint::Lint) -> Self {
238         DiagnosticMessageId::LintId(lint::LintId::of(lint))
239     }
240 }
241
242 impl Session {
243     pub fn miri_unleashed_feature(&self, span: Span, feature_gate: Option<Symbol>) {
244         self.miri_unleashed_features.lock().push((span, feature_gate));
245     }
246
247     fn check_miri_unleashed_features(&self) {
248         let unleashed_features = self.miri_unleashed_features.lock();
249         if !unleashed_features.is_empty() {
250             let mut must_err = false;
251             // Create a diagnostic pointing at where things got unleashed.
252             let mut diag = self.struct_warn("skipping const checks");
253             for &(span, feature_gate) in unleashed_features.iter() {
254                 // FIXME: `span_label` doesn't do anything, so we use "help" as a hack.
255                 if let Some(feature_gate) = feature_gate {
256                     diag.span_help(span, &format!("skipping check for `{}` feature", feature_gate));
257                     // The unleash flag must *not* be used to just "hack around" feature gates.
258                     must_err = true;
259                 } else {
260                     diag.span_help(span, "skipping check that does not even have a feature gate");
261                 }
262             }
263             diag.emit();
264             // If we should err, make sure we did.
265             if must_err && !self.has_errors() {
266                 // We have skipped a feature gate, and not run into other errors... reject.
267                 self.err(
268                     "`-Zunleash-the-miri-inside-of-you` may not be used to circumvent feature \
269                      gates, except when testing error paths in the CTFE engine",
270                 );
271             }
272         }
273     }
274
275     /// Invoked all the way at the end to finish off diagnostics printing.
276     pub fn finish_diagnostics(&self, registry: &Registry) {
277         self.check_miri_unleashed_features();
278         self.diagnostic().print_error_count(registry);
279         self.emit_future_breakage();
280     }
281
282     fn emit_future_breakage(&self) {
283         if !self.opts.json_future_incompat {
284             return;
285         }
286
287         let diags = self.diagnostic().take_future_breakage_diagnostics();
288         if diags.is_empty() {
289             return;
290         }
291         self.parse_sess.span_diagnostic.emit_future_breakage_report(diags);
292     }
293
294     pub fn local_stable_crate_id(&self) -> StableCrateId {
295         self.stable_crate_id.get().copied().unwrap()
296     }
297
298     pub fn crate_types(&self) -> &[CrateType] {
299         self.crate_types.get().unwrap().as_slice()
300     }
301
302     pub fn init_crate_types(&self, crate_types: Vec<CrateType>) {
303         self.crate_types.set(crate_types).expect("`crate_types` was initialized twice")
304     }
305
306     pub fn struct_span_warn<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> DiagnosticBuilder<'_> {
307         self.diagnostic().struct_span_warn(sp, msg)
308     }
309     pub fn struct_span_force_warn<S: Into<MultiSpan>>(
310         &self,
311         sp: S,
312         msg: &str,
313     ) -> DiagnosticBuilder<'_> {
314         self.diagnostic().struct_span_force_warn(sp, msg)
315     }
316     pub fn struct_span_warn_with_code<S: Into<MultiSpan>>(
317         &self,
318         sp: S,
319         msg: &str,
320         code: DiagnosticId,
321     ) -> DiagnosticBuilder<'_> {
322         self.diagnostic().struct_span_warn_with_code(sp, msg, code)
323     }
324     pub fn struct_warn(&self, msg: &str) -> DiagnosticBuilder<'_> {
325         self.diagnostic().struct_warn(msg)
326     }
327     pub fn struct_force_warn(&self, msg: &str) -> DiagnosticBuilder<'_> {
328         self.diagnostic().struct_force_warn(msg)
329     }
330     pub fn struct_span_allow<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> DiagnosticBuilder<'_> {
331         self.diagnostic().struct_span_allow(sp, msg)
332     }
333     pub fn struct_allow(&self, msg: &str) -> DiagnosticBuilder<'_> {
334         self.diagnostic().struct_allow(msg)
335     }
336     pub fn struct_span_err<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> DiagnosticBuilder<'_> {
337         self.diagnostic().struct_span_err(sp, msg)
338     }
339     pub fn struct_span_err_with_code<S: Into<MultiSpan>>(
340         &self,
341         sp: S,
342         msg: &str,
343         code: DiagnosticId,
344     ) -> DiagnosticBuilder<'_> {
345         self.diagnostic().struct_span_err_with_code(sp, msg, code)
346     }
347     // FIXME: This method should be removed (every error should have an associated error code).
348     pub fn struct_err(&self, msg: &str) -> DiagnosticBuilder<'_> {
349         self.diagnostic().struct_err(msg)
350     }
351     pub fn struct_err_with_code(&self, msg: &str, code: DiagnosticId) -> DiagnosticBuilder<'_> {
352         self.diagnostic().struct_err_with_code(msg, code)
353     }
354     pub fn struct_span_fatal<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> DiagnosticBuilder<'_> {
355         self.diagnostic().struct_span_fatal(sp, msg)
356     }
357     pub fn struct_span_fatal_with_code<S: Into<MultiSpan>>(
358         &self,
359         sp: S,
360         msg: &str,
361         code: DiagnosticId,
362     ) -> DiagnosticBuilder<'_> {
363         self.diagnostic().struct_span_fatal_with_code(sp, msg, code)
364     }
365     pub fn struct_fatal(&self, msg: &str) -> DiagnosticBuilder<'_> {
366         self.diagnostic().struct_fatal(msg)
367     }
368
369     pub fn span_fatal<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
370         self.diagnostic().span_fatal(sp, msg)
371     }
372     pub fn span_fatal_with_code<S: Into<MultiSpan>>(
373         &self,
374         sp: S,
375         msg: &str,
376         code: DiagnosticId,
377     ) -> ! {
378         self.diagnostic().span_fatal_with_code(sp, msg, code)
379     }
380     pub fn fatal(&self, msg: &str) -> ! {
381         self.diagnostic().fatal(msg).raise()
382     }
383     pub fn span_err_or_warn<S: Into<MultiSpan>>(&self, is_warning: bool, sp: S, msg: &str) {
384         if is_warning {
385             self.span_warn(sp, msg);
386         } else {
387             self.span_err(sp, msg);
388         }
389     }
390     pub fn span_err<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
391         self.diagnostic().span_err(sp, msg)
392     }
393     pub fn span_err_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: DiagnosticId) {
394         self.diagnostic().span_err_with_code(sp, &msg, code)
395     }
396     pub fn err(&self, msg: &str) {
397         self.diagnostic().err(msg)
398     }
399     pub fn emit_err<'a>(&'a self, err: impl SessionDiagnostic<'a>) {
400         err.into_diagnostic(self).emit()
401     }
402     #[inline]
403     pub fn err_count(&self) -> usize {
404         self.diagnostic().err_count()
405     }
406     pub fn has_errors(&self) -> bool {
407         self.diagnostic().has_errors()
408     }
409     pub fn has_errors_or_delayed_span_bugs(&self) -> bool {
410         self.diagnostic().has_errors_or_delayed_span_bugs()
411     }
412     pub fn abort_if_errors(&self) {
413         self.diagnostic().abort_if_errors();
414     }
415     pub fn compile_status(&self) -> Result<(), ErrorReported> {
416         if self.diagnostic().has_errors_or_lint_errors() {
417             self.diagnostic().emit_stashed_diagnostics();
418             Err(ErrorReported)
419         } else {
420             Ok(())
421         }
422     }
423     // FIXME(matthewjasper) Remove this method, it should never be needed.
424     pub fn track_errors<F, T>(&self, f: F) -> Result<T, ErrorReported>
425     where
426         F: FnOnce() -> T,
427     {
428         let old_count = self.err_count();
429         let result = f();
430         if self.err_count() == old_count { Ok(result) } else { Err(ErrorReported) }
431     }
432     pub fn span_warn<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
433         self.diagnostic().span_warn(sp, msg)
434     }
435     pub fn span_warn_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: DiagnosticId) {
436         self.diagnostic().span_warn_with_code(sp, msg, code)
437     }
438     pub fn warn(&self, msg: &str) {
439         self.diagnostic().warn(msg)
440     }
441     /// Delay a span_bug() call until abort_if_errors()
442     #[track_caller]
443     pub fn delay_span_bug<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
444         self.diagnostic().delay_span_bug(sp, msg)
445     }
446
447     /// Used for code paths of expensive computations that should only take place when
448     /// warnings or errors are emitted. If no messages are emitted ("good path"), then
449     /// it's likely a bug.
450     pub fn delay_good_path_bug(&self, msg: &str) {
451         if self.opts.debugging_opts.print_type_sizes
452             || self.opts.debugging_opts.query_dep_graph
453             || self.opts.debugging_opts.dump_mir.is_some()
454             || self.opts.debugging_opts.unpretty.is_some()
455             || self.opts.output_types.contains_key(&OutputType::Mir)
456             || std::env::var_os("RUSTC_LOG").is_some()
457         {
458             return;
459         }
460
461         self.diagnostic().delay_good_path_bug(msg)
462     }
463
464     pub fn note_without_error(&self, msg: &str) {
465         self.diagnostic().note_without_error(msg)
466     }
467     pub fn span_note_without_error<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
468         self.diagnostic().span_note_without_error(sp, msg)
469     }
470     pub fn struct_note_without_error(&self, msg: &str) -> DiagnosticBuilder<'_> {
471         self.diagnostic().struct_note_without_error(msg)
472     }
473
474     #[inline]
475     pub fn diagnostic(&self) -> &rustc_errors::Handler {
476         &self.parse_sess.span_diagnostic
477     }
478
479     /// Analogous to calling methods on the given `DiagnosticBuilder`, but
480     /// deduplicates on lint ID, span (if any), and message for this `Session`
481     fn diag_once(
482         &self,
483         diag: &mut Diagnostic,
484         method: DiagnosticBuilderMethod,
485         msg_id: DiagnosticMessageId,
486         message: &str,
487         span_maybe: Option<Span>,
488     ) {
489         let id_span_message = (msg_id, span_maybe, message.to_owned());
490         let fresh = self.one_time_diagnostics.borrow_mut().insert(id_span_message);
491         if fresh {
492             match method {
493                 DiagnosticBuilderMethod::Note => {
494                     diag.note(message);
495                 }
496                 DiagnosticBuilderMethod::SpanNote => {
497                     let span = span_maybe.expect("`span_note` needs a span");
498                     diag.span_note(span, message);
499                 }
500             }
501         }
502     }
503
504     pub fn diag_span_note_once(
505         &self,
506         diag: &mut Diagnostic,
507         msg_id: DiagnosticMessageId,
508         span: Span,
509         message: &str,
510     ) {
511         self.diag_once(diag, DiagnosticBuilderMethod::SpanNote, msg_id, message, Some(span));
512     }
513
514     pub fn diag_note_once(
515         &self,
516         diag: &mut Diagnostic,
517         msg_id: DiagnosticMessageId,
518         message: &str,
519     ) {
520         self.diag_once(diag, DiagnosticBuilderMethod::Note, msg_id, message, None);
521     }
522
523     #[inline]
524     pub fn source_map(&self) -> &SourceMap {
525         self.parse_sess.source_map()
526     }
527     pub fn verbose(&self) -> bool {
528         self.opts.debugging_opts.verbose
529     }
530     pub fn time_passes(&self) -> bool {
531         self.opts.debugging_opts.time_passes || self.opts.debugging_opts.time
532     }
533     pub fn instrument_mcount(&self) -> bool {
534         self.opts.debugging_opts.instrument_mcount
535     }
536     pub fn time_llvm_passes(&self) -> bool {
537         self.opts.debugging_opts.time_llvm_passes
538     }
539     pub fn meta_stats(&self) -> bool {
540         self.opts.debugging_opts.meta_stats
541     }
542     pub fn asm_comments(&self) -> bool {
543         self.opts.debugging_opts.asm_comments
544     }
545     pub fn verify_llvm_ir(&self) -> bool {
546         self.opts.debugging_opts.verify_llvm_ir || option_env!("RUSTC_VERIFY_LLVM_IR").is_some()
547     }
548     pub fn print_llvm_passes(&self) -> bool {
549         self.opts.debugging_opts.print_llvm_passes
550     }
551     pub fn binary_dep_depinfo(&self) -> bool {
552         self.opts.debugging_opts.binary_dep_depinfo
553     }
554     pub fn mir_opt_level(&self) -> usize {
555         self.opts.mir_opt_level()
556     }
557
558     /// Gets the features enabled for the current compilation session.
559     /// DO NOT USE THIS METHOD if there is a TyCtxt available, as it circumvents
560     /// dependency tracking. Use tcx.features() instead.
561     #[inline]
562     pub fn features_untracked(&self) -> &rustc_feature::Features {
563         self.features.get().unwrap()
564     }
565
566     pub fn init_features(&self, features: rustc_feature::Features) {
567         match self.features.set(features) {
568             Ok(()) => {}
569             Err(_) => panic!("`features` was initialized twice"),
570         }
571     }
572
573     /// Calculates the flavor of LTO to use for this compilation.
574     pub fn lto(&self) -> config::Lto {
575         // If our target has codegen requirements ignore the command line
576         if self.target.requires_lto {
577             return config::Lto::Fat;
578         }
579
580         // If the user specified something, return that. If they only said `-C
581         // lto` and we've for whatever reason forced off ThinLTO via the CLI,
582         // then ensure we can't use a ThinLTO.
583         match self.opts.cg.lto {
584             config::LtoCli::Unspecified => {
585                 // The compiler was invoked without the `-Clto` flag. Fall
586                 // through to the default handling
587             }
588             config::LtoCli::No => {
589                 // The user explicitly opted out of any kind of LTO
590                 return config::Lto::No;
591             }
592             config::LtoCli::Yes | config::LtoCli::Fat | config::LtoCli::NoParam => {
593                 // All of these mean fat LTO
594                 return config::Lto::Fat;
595             }
596             config::LtoCli::Thin => {
597                 return if self.opts.cli_forced_thinlto_off {
598                     config::Lto::Fat
599                 } else {
600                     config::Lto::Thin
601                 };
602             }
603         }
604
605         // Ok at this point the target doesn't require anything and the user
606         // hasn't asked for anything. Our next decision is whether or not
607         // we enable "auto" ThinLTO where we use multiple codegen units and
608         // then do ThinLTO over those codegen units. The logic below will
609         // either return `No` or `ThinLocal`.
610
611         // If processing command line options determined that we're incompatible
612         // with ThinLTO (e.g., `-C lto --emit llvm-ir`) then return that option.
613         if self.opts.cli_forced_thinlto_off {
614             return config::Lto::No;
615         }
616
617         // If `-Z thinlto` specified process that, but note that this is mostly
618         // a deprecated option now that `-C lto=thin` exists.
619         if let Some(enabled) = self.opts.debugging_opts.thinlto {
620             if enabled {
621                 return config::Lto::ThinLocal;
622             } else {
623                 return config::Lto::No;
624             }
625         }
626
627         // If there's only one codegen unit and LTO isn't enabled then there's
628         // no need for ThinLTO so just return false.
629         if self.codegen_units() == 1 {
630             return config::Lto::No;
631         }
632
633         // Now we're in "defaults" territory. By default we enable ThinLTO for
634         // optimized compiles (anything greater than O0).
635         match self.opts.optimize {
636             config::OptLevel::No => config::Lto::No,
637             _ => config::Lto::ThinLocal,
638         }
639     }
640
641     /// Returns the panic strategy for this compile session. If the user explicitly selected one
642     /// using '-C panic', use that, otherwise use the panic strategy defined by the target.
643     pub fn panic_strategy(&self) -> PanicStrategy {
644         self.opts.cg.panic.unwrap_or(self.target.panic_strategy)
645     }
646     pub fn fewer_names(&self) -> bool {
647         if let Some(fewer_names) = self.opts.debugging_opts.fewer_names {
648             fewer_names
649         } else {
650             let more_names = self.opts.output_types.contains_key(&OutputType::LlvmAssembly)
651                 || self.opts.output_types.contains_key(&OutputType::Bitcode)
652                 // AddressSanitizer and MemorySanitizer use alloca name when reporting an issue.
653                 || self.opts.debugging_opts.sanitizer.intersects(SanitizerSet::ADDRESS | SanitizerSet::MEMORY);
654             !more_names
655         }
656     }
657
658     pub fn unstable_options(&self) -> bool {
659         self.opts.debugging_opts.unstable_options
660     }
661     pub fn is_nightly_build(&self) -> bool {
662         self.opts.unstable_features.is_nightly_build()
663     }
664     pub fn is_sanitizer_cfi_enabled(&self) -> bool {
665         self.opts.debugging_opts.sanitizer.contains(SanitizerSet::CFI)
666     }
667     pub fn overflow_checks(&self) -> bool {
668         self.opts.cg.overflow_checks.unwrap_or(self.opts.debug_assertions)
669     }
670
671     /// Check whether this compile session and crate type use static crt.
672     pub fn crt_static(&self, crate_type: Option<CrateType>) -> bool {
673         if !self.target.crt_static_respected {
674             // If the target does not opt in to crt-static support, use its default.
675             return self.target.crt_static_default;
676         }
677
678         let requested_features = self.opts.cg.target_feature.split(',');
679         let found_negative = requested_features.clone().any(|r| r == "-crt-static");
680         let found_positive = requested_features.clone().any(|r| r == "+crt-static");
681
682         if found_positive || found_negative {
683             found_positive
684         } else if crate_type == Some(CrateType::ProcMacro)
685             || crate_type == None && self.opts.crate_types.contains(&CrateType::ProcMacro)
686         {
687             // FIXME: When crate_type is not available,
688             // we use compiler options to determine the crate_type.
689             // We can't check `#![crate_type = "proc-macro"]` here.
690             false
691         } else {
692             self.target.crt_static_default
693         }
694     }
695
696     pub fn relocation_model(&self) -> RelocModel {
697         self.opts.cg.relocation_model.unwrap_or(self.target.relocation_model)
698     }
699
700     pub fn code_model(&self) -> Option<CodeModel> {
701         self.opts.cg.code_model.or(self.target.code_model)
702     }
703
704     pub fn tls_model(&self) -> TlsModel {
705         self.opts.debugging_opts.tls_model.unwrap_or(self.target.tls_model)
706     }
707
708     pub fn is_wasi_reactor(&self) -> bool {
709         self.target.options.os == "wasi"
710             && matches!(
711                 self.opts.debugging_opts.wasi_exec_model,
712                 Some(config::WasiExecModel::Reactor)
713             )
714     }
715
716     pub fn split_debuginfo(&self) -> SplitDebuginfo {
717         self.opts.cg.split_debuginfo.unwrap_or(self.target.split_debuginfo)
718     }
719
720     pub fn stack_protector(&self) -> StackProtector {
721         if self.target.options.supports_stack_protector {
722             self.opts.debugging_opts.stack_protector
723         } else {
724             StackProtector::None
725         }
726     }
727
728     pub fn target_can_use_split_dwarf(&self) -> bool {
729         !self.target.is_like_windows && !self.target.is_like_osx
730     }
731
732     pub fn must_emit_unwind_tables(&self) -> bool {
733         // This is used to control the emission of the `uwtable` attribute on
734         // LLVM functions.
735         //
736         // Unwind tables are needed when compiling with `-C panic=unwind`, but
737         // LLVM won't omit unwind tables unless the function is also marked as
738         // `nounwind`, so users are allowed to disable `uwtable` emission.
739         // Historically rustc always emits `uwtable` attributes by default, so
740         // even they can be disabled, they're still emitted by default.
741         //
742         // On some targets (including windows), however, exceptions include
743         // other events such as illegal instructions, segfaults, etc. This means
744         // that on Windows we end up still needing unwind tables even if the `-C
745         // panic=abort` flag is passed.
746         //
747         // You can also find more info on why Windows needs unwind tables in:
748         //      https://bugzilla.mozilla.org/show_bug.cgi?id=1302078
749         //
750         // If a target requires unwind tables, then they must be emitted.
751         // Otherwise, we can defer to the `-C force-unwind-tables=<yes/no>`
752         // value, if it is provided, or disable them, if not.
753         self.target.requires_uwtable
754             || self.opts.cg.force_unwind_tables.unwrap_or(
755                 self.panic_strategy() == PanicStrategy::Unwind || self.target.default_uwtable,
756             )
757     }
758
759     pub fn generate_proc_macro_decls_symbol(&self, stable_crate_id: StableCrateId) -> String {
760         format!("__rustc_proc_macro_decls_{:08x}__", stable_crate_id.to_u64())
761     }
762
763     pub fn target_filesearch(&self, kind: PathKind) -> filesearch::FileSearch<'_> {
764         filesearch::FileSearch::new(
765             &self.sysroot,
766             self.opts.target_triple.triple(),
767             &self.opts.search_paths,
768             &self.target_tlib_path,
769             kind,
770         )
771     }
772     pub fn host_filesearch(&self, kind: PathKind) -> filesearch::FileSearch<'_> {
773         filesearch::FileSearch::new(
774             &self.sysroot,
775             config::host_triple(),
776             &self.opts.search_paths,
777             &self.host_tlib_path,
778             kind,
779         )
780     }
781
782     /// Returns a list of directories where target-specific tool binaries are located.
783     pub fn get_tools_search_paths(&self, self_contained: bool) -> Vec<PathBuf> {
784         let rustlib_path = rustc_target::target_rustlib_path(&self.sysroot, &config::host_triple());
785         let p = PathBuf::from_iter([
786             Path::new(&self.sysroot),
787             Path::new(&rustlib_path),
788             Path::new("bin"),
789         ]);
790         if self_contained { vec![p.clone(), p.join("self-contained")] } else { vec![p] }
791     }
792
793     pub fn init_incr_comp_session(
794         &self,
795         session_dir: PathBuf,
796         lock_file: flock::Lock,
797         load_dep_graph: bool,
798     ) {
799         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
800
801         if let IncrCompSession::NotInitialized = *incr_comp_session {
802         } else {
803             panic!("Trying to initialize IncrCompSession `{:?}`", *incr_comp_session)
804         }
805
806         *incr_comp_session =
807             IncrCompSession::Active { session_directory: session_dir, lock_file, load_dep_graph };
808     }
809
810     pub fn finalize_incr_comp_session(&self, new_directory_path: PathBuf) {
811         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
812
813         if let IncrCompSession::Active { .. } = *incr_comp_session {
814         } else {
815             panic!("trying to finalize `IncrCompSession` `{:?}`", *incr_comp_session);
816         }
817
818         // Note: this will also drop the lock file, thus unlocking the directory.
819         *incr_comp_session = IncrCompSession::Finalized { session_directory: new_directory_path };
820     }
821
822     pub fn mark_incr_comp_session_as_invalid(&self) {
823         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
824
825         let session_directory = match *incr_comp_session {
826             IncrCompSession::Active { ref session_directory, .. } => session_directory.clone(),
827             IncrCompSession::InvalidBecauseOfErrors { .. } => return,
828             _ => panic!("trying to invalidate `IncrCompSession` `{:?}`", *incr_comp_session),
829         };
830
831         // Note: this will also drop the lock file, thus unlocking the directory.
832         *incr_comp_session = IncrCompSession::InvalidBecauseOfErrors { session_directory };
833     }
834
835     pub fn incr_comp_session_dir(&self) -> cell::Ref<'_, PathBuf> {
836         let incr_comp_session = self.incr_comp_session.borrow();
837         cell::Ref::map(incr_comp_session, |incr_comp_session| match *incr_comp_session {
838             IncrCompSession::NotInitialized => panic!(
839                 "trying to get session directory from `IncrCompSession`: {:?}",
840                 *incr_comp_session,
841             ),
842             IncrCompSession::Active { ref session_directory, .. }
843             | IncrCompSession::Finalized { ref session_directory }
844             | IncrCompSession::InvalidBecauseOfErrors { ref session_directory } => {
845                 session_directory
846             }
847         })
848     }
849
850     pub fn incr_comp_session_dir_opt(&self) -> Option<cell::Ref<'_, PathBuf>> {
851         self.opts.incremental.as_ref().map(|_| self.incr_comp_session_dir())
852     }
853
854     pub fn print_perf_stats(&self) {
855         eprintln!(
856             "Total time spent computing symbol hashes:      {}",
857             duration_to_secs_str(*self.perf_stats.symbol_hash_time.lock())
858         );
859         eprintln!(
860             "Total queries canonicalized:                   {}",
861             self.perf_stats.queries_canonicalized.load(Ordering::Relaxed)
862         );
863         eprintln!(
864             "normalize_generic_arg_after_erasing_regions:   {}",
865             self.perf_stats.normalize_generic_arg_after_erasing_regions.load(Ordering::Relaxed)
866         );
867         eprintln!(
868             "normalize_projection_ty:                       {}",
869             self.perf_stats.normalize_projection_ty.load(Ordering::Relaxed)
870         );
871     }
872
873     /// We want to know if we're allowed to do an optimization for crate foo from -z fuel=foo=n.
874     /// This expends fuel if applicable, and records fuel if applicable.
875     pub fn consider_optimizing<T: Fn() -> String>(&self, crate_name: &str, msg: T) -> bool {
876         let mut ret = true;
877         if let Some((ref c, _)) = self.opts.debugging_opts.fuel {
878             if c == crate_name {
879                 assert_eq!(self.threads(), 1);
880                 let mut fuel = self.optimization_fuel.lock();
881                 ret = fuel.remaining != 0;
882                 if fuel.remaining == 0 && !fuel.out_of_fuel {
883                     if self.diagnostic().can_emit_warnings() {
884                         // We only call `msg` in case we can actually emit warnings.
885                         // Otherwise, this could cause a `delay_good_path_bug` to
886                         // trigger (issue #79546).
887                         self.warn(&format!("optimization-fuel-exhausted: {}", msg()));
888                     }
889                     fuel.out_of_fuel = true;
890                 } else if fuel.remaining > 0 {
891                     fuel.remaining -= 1;
892                 }
893             }
894         }
895         if let Some(ref c) = self.opts.debugging_opts.print_fuel {
896             if c == crate_name {
897                 assert_eq!(self.threads(), 1);
898                 self.print_fuel.fetch_add(1, SeqCst);
899             }
900         }
901         ret
902     }
903
904     /// Returns the number of query threads that should be used for this
905     /// compilation
906     pub fn threads(&self) -> usize {
907         self.opts.debugging_opts.threads
908     }
909
910     /// Returns the number of codegen units that should be used for this
911     /// compilation
912     pub fn codegen_units(&self) -> usize {
913         if let Some(n) = self.opts.cli_forced_codegen_units {
914             return n;
915         }
916         if let Some(n) = self.target.default_codegen_units {
917             return n as usize;
918         }
919
920         // If incremental compilation is turned on, we default to a high number
921         // codegen units in order to reduce the "collateral damage" small
922         // changes cause.
923         if self.opts.incremental.is_some() {
924             return 256;
925         }
926
927         // Why is 16 codegen units the default all the time?
928         //
929         // The main reason for enabling multiple codegen units by default is to
930         // leverage the ability for the codegen backend to do codegen and
931         // optimization in parallel. This allows us, especially for large crates, to
932         // make good use of all available resources on the machine once we've
933         // hit that stage of compilation. Large crates especially then often
934         // take a long time in codegen/optimization and this helps us amortize that
935         // cost.
936         //
937         // Note that a high number here doesn't mean that we'll be spawning a
938         // large number of threads in parallel. The backend of rustc contains
939         // global rate limiting through the `jobserver` crate so we'll never
940         // overload the system with too much work, but rather we'll only be
941         // optimizing when we're otherwise cooperating with other instances of
942         // rustc.
943         //
944         // Rather a high number here means that we should be able to keep a lot
945         // of idle cpus busy. By ensuring that no codegen unit takes *too* long
946         // to build we'll be guaranteed that all cpus will finish pretty closely
947         // to one another and we should make relatively optimal use of system
948         // resources
949         //
950         // Note that the main cost of codegen units is that it prevents LLVM
951         // from inlining across codegen units. Users in general don't have a lot
952         // of control over how codegen units are split up so it's our job in the
953         // compiler to ensure that undue performance isn't lost when using
954         // codegen units (aka we can't require everyone to slap `#[inline]` on
955         // everything).
956         //
957         // If we're compiling at `-O0` then the number doesn't really matter too
958         // much because performance doesn't matter and inlining is ok to lose.
959         // In debug mode we just want to try to guarantee that no cpu is stuck
960         // doing work that could otherwise be farmed to others.
961         //
962         // In release mode, however (O1 and above) performance does indeed
963         // matter! To recover the loss in performance due to inlining we'll be
964         // enabling ThinLTO by default (the function for which is just below).
965         // This will ensure that we recover any inlining wins we otherwise lost
966         // through codegen unit partitioning.
967         //
968         // ---
969         //
970         // Ok that's a lot of words but the basic tl;dr; is that we want a high
971         // number here -- but not too high. Additionally we're "safe" to have it
972         // always at the same number at all optimization levels.
973         //
974         // As a result 16 was chosen here! Mostly because it was a power of 2
975         // and most benchmarks agreed it was roughly a local optimum. Not very
976         // scientific.
977         16
978     }
979
980     pub fn teach(&self, code: &DiagnosticId) -> bool {
981         self.opts.debugging_opts.teach && self.diagnostic().must_teach(code)
982     }
983
984     pub fn rust_2015(&self) -> bool {
985         self.opts.edition == Edition::Edition2015
986     }
987
988     /// Are we allowed to use features from the Rust 2018 edition?
989     pub fn rust_2018(&self) -> bool {
990         self.opts.edition >= Edition::Edition2018
991     }
992
993     /// Are we allowed to use features from the Rust 2021 edition?
994     pub fn rust_2021(&self) -> bool {
995         self.opts.edition >= Edition::Edition2021
996     }
997
998     pub fn edition(&self) -> Edition {
999         self.opts.edition
1000     }
1001
1002     /// Returns `true` if we cannot skip the PLT for shared library calls.
1003     pub fn needs_plt(&self) -> bool {
1004         // Check if the current target usually needs PLT to be enabled.
1005         // The user can use the command line flag to override it.
1006         let needs_plt = self.target.needs_plt;
1007
1008         let dbg_opts = &self.opts.debugging_opts;
1009
1010         let relro_level = dbg_opts.relro_level.unwrap_or(self.target.relro_level);
1011
1012         // Only enable this optimization by default if full relro is also enabled.
1013         // In this case, lazy binding was already unavailable, so nothing is lost.
1014         // This also ensures `-Wl,-z,now` is supported by the linker.
1015         let full_relro = RelroLevel::Full == relro_level;
1016
1017         // If user didn't explicitly forced us to use / skip the PLT,
1018         // then try to skip it where possible.
1019         dbg_opts.plt.unwrap_or(needs_plt || !full_relro)
1020     }
1021
1022     /// Checks if LLVM lifetime markers should be emitted.
1023     pub fn emit_lifetime_markers(&self) -> bool {
1024         self.opts.optimize != config::OptLevel::No
1025         // AddressSanitizer uses lifetimes to detect use after scope bugs.
1026         // MemorySanitizer uses lifetimes to detect use of uninitialized stack variables.
1027         // HWAddressSanitizer will use lifetimes to detect use after scope bugs in the future.
1028         || self.opts.debugging_opts.sanitizer.intersects(SanitizerSet::ADDRESS | SanitizerSet::MEMORY | SanitizerSet::HWADDRESS)
1029     }
1030
1031     pub fn link_dead_code(&self) -> bool {
1032         self.opts.cg.link_dead_code.unwrap_or(false)
1033     }
1034
1035     pub fn instrument_coverage(&self) -> bool {
1036         self.opts.instrument_coverage()
1037     }
1038
1039     pub fn instrument_coverage_except_unused_generics(&self) -> bool {
1040         self.opts.instrument_coverage_except_unused_generics()
1041     }
1042
1043     pub fn instrument_coverage_except_unused_functions(&self) -> bool {
1044         self.opts.instrument_coverage_except_unused_functions()
1045     }
1046
1047     pub fn is_proc_macro_attr(&self, attr: &Attribute) -> bool {
1048         [sym::proc_macro, sym::proc_macro_attribute, sym::proc_macro_derive]
1049             .iter()
1050             .any(|kind| attr.has_name(*kind))
1051     }
1052
1053     pub fn contains_name(&self, attrs: &[Attribute], name: Symbol) -> bool {
1054         attrs.iter().any(|item| item.has_name(name))
1055     }
1056
1057     pub fn find_by_name<'a>(
1058         &'a self,
1059         attrs: &'a [Attribute],
1060         name: Symbol,
1061     ) -> Option<&'a Attribute> {
1062         attrs.iter().find(|attr| attr.has_name(name))
1063     }
1064
1065     pub fn filter_by_name<'a>(
1066         &'a self,
1067         attrs: &'a [Attribute],
1068         name: Symbol,
1069     ) -> impl Iterator<Item = &'a Attribute> {
1070         attrs.iter().filter(move |attr| attr.has_name(name))
1071     }
1072
1073     pub fn first_attr_value_str_by_name(
1074         &self,
1075         attrs: &[Attribute],
1076         name: Symbol,
1077     ) -> Option<Symbol> {
1078         attrs.iter().find(|at| at.has_name(name)).and_then(|at| at.value_str())
1079     }
1080 }
1081
1082 fn default_emitter(
1083     sopts: &config::Options,
1084     registry: rustc_errors::registry::Registry,
1085     source_map: Lrc<SourceMap>,
1086     emitter_dest: Option<Box<dyn Write + Send>>,
1087 ) -> Box<dyn Emitter + sync::Send> {
1088     let macro_backtrace = sopts.debugging_opts.macro_backtrace;
1089     match (sopts.error_format, emitter_dest) {
1090         (config::ErrorOutputType::HumanReadable(kind), dst) => {
1091             let (short, color_config) = kind.unzip();
1092
1093             if let HumanReadableErrorType::AnnotateSnippet(_) = kind {
1094                 let emitter =
1095                     AnnotateSnippetEmitterWriter::new(Some(source_map), short, macro_backtrace);
1096                 Box::new(emitter.ui_testing(sopts.debugging_opts.ui_testing))
1097             } else {
1098                 let emitter = match dst {
1099                     None => EmitterWriter::stderr(
1100                         color_config,
1101                         Some(source_map),
1102                         short,
1103                         sopts.debugging_opts.teach,
1104                         sopts.debugging_opts.terminal_width,
1105                         macro_backtrace,
1106                     ),
1107                     Some(dst) => EmitterWriter::new(
1108                         dst,
1109                         Some(source_map),
1110                         short,
1111                         false, // no teach messages when writing to a buffer
1112                         false, // no colors when writing to a buffer
1113                         None,  // no terminal width
1114                         macro_backtrace,
1115                     ),
1116                 };
1117                 Box::new(emitter.ui_testing(sopts.debugging_opts.ui_testing))
1118             }
1119         }
1120         (config::ErrorOutputType::Json { pretty, json_rendered }, None) => Box::new(
1121             JsonEmitter::stderr(
1122                 Some(registry),
1123                 source_map,
1124                 pretty,
1125                 json_rendered,
1126                 sopts.debugging_opts.terminal_width,
1127                 macro_backtrace,
1128             )
1129             .ui_testing(sopts.debugging_opts.ui_testing),
1130         ),
1131         (config::ErrorOutputType::Json { pretty, json_rendered }, Some(dst)) => Box::new(
1132             JsonEmitter::new(
1133                 dst,
1134                 Some(registry),
1135                 source_map,
1136                 pretty,
1137                 json_rendered,
1138                 sopts.debugging_opts.terminal_width,
1139                 macro_backtrace,
1140             )
1141             .ui_testing(sopts.debugging_opts.ui_testing),
1142         ),
1143     }
1144 }
1145
1146 pub enum DiagnosticOutput {
1147     Default,
1148     Raw(Box<dyn Write + Send>),
1149 }
1150
1151 pub fn build_session(
1152     sopts: config::Options,
1153     local_crate_source_file: Option<PathBuf>,
1154     registry: rustc_errors::registry::Registry,
1155     diagnostics_output: DiagnosticOutput,
1156     driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
1157     file_loader: Option<Box<dyn FileLoader + Send + Sync + 'static>>,
1158     target_override: Option<Target>,
1159 ) -> Session {
1160     // FIXME: This is not general enough to make the warning lint completely override
1161     // normal diagnostic warnings, since the warning lint can also be denied and changed
1162     // later via the source code.
1163     let warnings_allow = sopts
1164         .lint_opts
1165         .iter()
1166         .filter(|&&(ref key, _)| *key == "warnings")
1167         .map(|&(_, ref level)| *level == lint::Allow)
1168         .last()
1169         .unwrap_or(false);
1170     let cap_lints_allow = sopts.lint_cap.map_or(false, |cap| cap == lint::Allow);
1171     let can_emit_warnings = !(warnings_allow || cap_lints_allow);
1172
1173     let write_dest = match diagnostics_output {
1174         DiagnosticOutput::Default => None,
1175         DiagnosticOutput::Raw(write) => Some(write),
1176     };
1177
1178     let sysroot = match &sopts.maybe_sysroot {
1179         Some(sysroot) => sysroot.clone(),
1180         None => filesearch::get_or_default_sysroot(),
1181     };
1182
1183     let target_cfg = config::build_target_config(&sopts, target_override, &sysroot);
1184     let host_triple = TargetTriple::from_triple(config::host_triple());
1185     let (host, target_warnings) = Target::search(&host_triple, &sysroot).unwrap_or_else(|e| {
1186         early_error(sopts.error_format, &format!("Error loading host specification: {}", e))
1187     });
1188     for warning in target_warnings.warning_messages() {
1189         early_warn(sopts.error_format, &warning)
1190     }
1191
1192     let loader = file_loader.unwrap_or_else(|| Box::new(RealFileLoader));
1193     let hash_kind = sopts.debugging_opts.src_hash_algorithm.unwrap_or_else(|| {
1194         if target_cfg.is_like_msvc {
1195             SourceFileHashAlgorithm::Sha1
1196         } else {
1197             SourceFileHashAlgorithm::Md5
1198         }
1199     });
1200     let source_map = Lrc::new(SourceMap::with_file_loader_and_hash_kind(
1201         loader,
1202         sopts.file_path_mapping(),
1203         hash_kind,
1204     ));
1205     let emitter = default_emitter(&sopts, registry, source_map.clone(), write_dest);
1206
1207     let span_diagnostic = rustc_errors::Handler::with_emitter_and_flags(
1208         emitter,
1209         sopts.debugging_opts.diagnostic_handler_flags(can_emit_warnings),
1210     );
1211
1212     let self_profiler = if let SwitchWithOptPath::Enabled(ref d) = sopts.debugging_opts.self_profile
1213     {
1214         let directory =
1215             if let Some(ref directory) = d { directory } else { std::path::Path::new(".") };
1216
1217         let profiler = SelfProfiler::new(
1218             directory,
1219             sopts.crate_name.as_deref(),
1220             &sopts.debugging_opts.self_profile_events,
1221         );
1222         match profiler {
1223             Ok(profiler) => Some(Arc::new(profiler)),
1224             Err(e) => {
1225                 early_warn(sopts.error_format, &format!("failed to create profiler: {}", e));
1226                 None
1227             }
1228         }
1229     } else {
1230         None
1231     };
1232
1233     let mut parse_sess = ParseSess::with_span_handler(span_diagnostic, source_map);
1234     parse_sess.assume_incomplete_release = sopts.debugging_opts.assume_incomplete_release;
1235
1236     let host_triple = config::host_triple();
1237     let target_triple = sopts.target_triple.triple();
1238     let host_tlib_path = Lrc::new(SearchPath::from_sysroot_and_triple(&sysroot, host_triple));
1239     let target_tlib_path = if host_triple == target_triple {
1240         // Use the same `SearchPath` if host and target triple are identical to avoid unnecessary
1241         // rescanning of the target lib path and an unnecessary allocation.
1242         host_tlib_path.clone()
1243     } else {
1244         Lrc::new(SearchPath::from_sysroot_and_triple(&sysroot, target_triple))
1245     };
1246
1247     let file_path_mapping = sopts.file_path_mapping();
1248
1249     let local_crate_source_file =
1250         local_crate_source_file.map(|path| file_path_mapping.map_prefix(path).0);
1251
1252     let optimization_fuel = Lock::new(OptimizationFuel {
1253         remaining: sopts.debugging_opts.fuel.as_ref().map_or(0, |i| i.1),
1254         out_of_fuel: false,
1255     });
1256     let print_fuel = AtomicU64::new(0);
1257
1258     let cgu_reuse_tracker = if sopts.debugging_opts.query_dep_graph {
1259         CguReuseTracker::new()
1260     } else {
1261         CguReuseTracker::new_disabled()
1262     };
1263
1264     let prof = SelfProfilerRef::new(
1265         self_profiler,
1266         sopts.debugging_opts.time_passes || sopts.debugging_opts.time,
1267         sopts.debugging_opts.time_passes,
1268     );
1269
1270     let ctfe_backtrace = Lock::new(match env::var("RUSTC_CTFE_BACKTRACE") {
1271         Ok(ref val) if val == "immediate" => CtfeBacktrace::Immediate,
1272         Ok(ref val) if val != "0" => CtfeBacktrace::Capture,
1273         _ => CtfeBacktrace::Disabled,
1274     });
1275
1276     let asm_arch =
1277         if target_cfg.allow_asm { InlineAsmArch::from_str(&target_cfg.arch).ok() } else { None };
1278
1279     let sess = Session {
1280         target: target_cfg,
1281         host,
1282         opts: sopts,
1283         host_tlib_path,
1284         target_tlib_path,
1285         parse_sess,
1286         sysroot,
1287         local_crate_source_file,
1288         one_time_diagnostics: Default::default(),
1289         crate_types: OnceCell::new(),
1290         stable_crate_id: OnceCell::new(),
1291         features: OnceCell::new(),
1292         incr_comp_session: OneThread::new(RefCell::new(IncrCompSession::NotInitialized)),
1293         cgu_reuse_tracker,
1294         prof,
1295         perf_stats: PerfStats {
1296             symbol_hash_time: Lock::new(Duration::from_secs(0)),
1297             queries_canonicalized: AtomicUsize::new(0),
1298             normalize_generic_arg_after_erasing_regions: AtomicUsize::new(0),
1299             normalize_projection_ty: AtomicUsize::new(0),
1300         },
1301         code_stats: Default::default(),
1302         optimization_fuel,
1303         print_fuel,
1304         jobserver: jobserver::client(),
1305         driver_lint_caps,
1306         ctfe_backtrace,
1307         miri_unleashed_features: Lock::new(Default::default()),
1308         asm_arch,
1309         target_features: FxHashSet::default(),
1310     };
1311
1312     validate_commandline_args_with_session_available(&sess);
1313
1314     sess
1315 }
1316
1317 // If it is useful to have a Session available already for validating a
1318 // commandline argument, you can do so here.
1319 fn validate_commandline_args_with_session_available(sess: &Session) {
1320     // Since we don't know if code in an rlib will be linked to statically or
1321     // dynamically downstream, rustc generates `__imp_` symbols that help linkers
1322     // on Windows deal with this lack of knowledge (#27438). Unfortunately,
1323     // these manually generated symbols confuse LLD when it tries to merge
1324     // bitcode during ThinLTO. Therefore we disallow dynamic linking on Windows
1325     // when compiling for LLD ThinLTO. This way we can validly just not generate
1326     // the `dllimport` attributes and `__imp_` symbols in that case.
1327     if sess.opts.cg.linker_plugin_lto.enabled()
1328         && sess.opts.cg.prefer_dynamic
1329         && sess.target.is_like_windows
1330     {
1331         sess.err(
1332             "Linker plugin based LTO is not supported together with \
1333                   `-C prefer-dynamic` when targeting Windows-like targets",
1334         );
1335     }
1336
1337     // Make sure that any given profiling data actually exists so LLVM can't
1338     // decide to silently skip PGO.
1339     if let Some(ref path) = sess.opts.cg.profile_use {
1340         if !path.exists() {
1341             sess.err(&format!(
1342                 "File `{}` passed to `-C profile-use` does not exist.",
1343                 path.display()
1344             ));
1345         }
1346     }
1347
1348     // Do the same for sample profile data.
1349     if let Some(ref path) = sess.opts.debugging_opts.profile_sample_use {
1350         if !path.exists() {
1351             sess.err(&format!(
1352                 "File `{}` passed to `-C profile-sample-use` does not exist.",
1353                 path.display()
1354             ));
1355         }
1356     }
1357
1358     // Unwind tables cannot be disabled if the target requires them.
1359     if let Some(include_uwtables) = sess.opts.cg.force_unwind_tables {
1360         if sess.target.requires_uwtable && !include_uwtables {
1361             sess.err(
1362                 "target requires unwind tables, they cannot be disabled with \
1363                      `-C force-unwind-tables=no`.",
1364             );
1365         }
1366     }
1367
1368     // Sanitizers can only be used on platforms that we know have working sanitizer codegen.
1369     let supported_sanitizers = sess.target.options.supported_sanitizers;
1370     let unsupported_sanitizers = sess.opts.debugging_opts.sanitizer - supported_sanitizers;
1371     match unsupported_sanitizers.into_iter().count() {
1372         0 => {}
1373         1 => sess
1374             .err(&format!("{} sanitizer is not supported for this target", unsupported_sanitizers)),
1375         _ => sess.err(&format!(
1376             "{} sanitizers are not supported for this target",
1377             unsupported_sanitizers
1378         )),
1379     }
1380     // Cannot mix and match sanitizers.
1381     let mut sanitizer_iter = sess.opts.debugging_opts.sanitizer.into_iter();
1382     if let (Some(first), Some(second)) = (sanitizer_iter.next(), sanitizer_iter.next()) {
1383         sess.err(&format!("`-Zsanitizer={}` is incompatible with `-Zsanitizer={}`", first, second));
1384     }
1385
1386     // Cannot enable crt-static with sanitizers on Linux
1387     if sess.crt_static(None) && !sess.opts.debugging_opts.sanitizer.is_empty() {
1388         sess.err(
1389             "sanitizer is incompatible with statically linked libc, \
1390                                 disable it using `-C target-feature=-crt-static`",
1391         );
1392     }
1393
1394     // LLVM CFI requires LTO.
1395     if sess.is_sanitizer_cfi_enabled() {
1396         if sess.opts.cg.lto == config::LtoCli::Unspecified
1397             || sess.opts.cg.lto == config::LtoCli::No
1398             || sess.opts.cg.lto == config::LtoCli::Thin
1399         {
1400             sess.err("`-Zsanitizer=cfi` requires `-Clto`");
1401         }
1402     }
1403
1404     if sess.opts.debugging_opts.stack_protector != StackProtector::None {
1405         if !sess.target.options.supports_stack_protector {
1406             sess.warn(&format!(
1407                 "`-Z stack-protector={}` is not supported for target {} and will be ignored",
1408                 sess.opts.debugging_opts.stack_protector, sess.opts.target_triple
1409             ))
1410         }
1411     }
1412 }
1413
1414 /// Holds data on the current incremental compilation session, if there is one.
1415 #[derive(Debug)]
1416 pub enum IncrCompSession {
1417     /// This is the state the session will be in until the incr. comp. dir is
1418     /// needed.
1419     NotInitialized,
1420     /// This is the state during which the session directory is private and can
1421     /// be modified.
1422     Active { session_directory: PathBuf, lock_file: flock::Lock, load_dep_graph: bool },
1423     /// This is the state after the session directory has been finalized. In this
1424     /// state, the contents of the directory must not be modified any more.
1425     Finalized { session_directory: PathBuf },
1426     /// This is an error state that is reached when some compilation error has
1427     /// occurred. It indicates that the contents of the session directory must
1428     /// not be used, since they might be invalid.
1429     InvalidBecauseOfErrors { session_directory: PathBuf },
1430 }
1431
1432 pub fn early_error_no_abort(output: config::ErrorOutputType, msg: &str) {
1433     let emitter: Box<dyn Emitter + sync::Send> = match output {
1434         config::ErrorOutputType::HumanReadable(kind) => {
1435             let (short, color_config) = kind.unzip();
1436             Box::new(EmitterWriter::stderr(color_config, None, short, false, None, false))
1437         }
1438         config::ErrorOutputType::Json { pretty, json_rendered } => {
1439             Box::new(JsonEmitter::basic(pretty, json_rendered, None, false))
1440         }
1441     };
1442     let handler = rustc_errors::Handler::with_emitter(true, None, emitter);
1443     handler.struct_fatal(msg).emit();
1444 }
1445
1446 pub fn early_error(output: config::ErrorOutputType, msg: &str) -> ! {
1447     early_error_no_abort(output, msg);
1448     rustc_errors::FatalError.raise();
1449 }
1450
1451 pub fn early_warn(output: config::ErrorOutputType, msg: &str) {
1452     let emitter: Box<dyn Emitter + sync::Send> = match output {
1453         config::ErrorOutputType::HumanReadable(kind) => {
1454             let (short, color_config) = kind.unzip();
1455             Box::new(EmitterWriter::stderr(color_config, None, short, false, None, false))
1456         }
1457         config::ErrorOutputType::Json { pretty, json_rendered } => {
1458             Box::new(JsonEmitter::basic(pretty, json_rendered, None, false))
1459         }
1460     };
1461     let handler = rustc_errors::Handler::with_emitter(true, None, emitter);
1462     handler.struct_warn(msg).emit();
1463 }