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