]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_errors/src/lib.rs
Rollup merge of #101975 - chenyukang:fix-101749, r=compiler-errors
[rust.git] / compiler / rustc_errors / src / lib.rs
1 //! Diagnostics creation and emission for `rustc`.
2 //!
3 //! This module contains the code for creating and emitting diagnostics.
4
5 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
6 #![feature(drain_filter)]
7 #![feature(if_let_guard)]
8 #![feature(is_terminal)]
9 #![feature(adt_const_params)]
10 #![feature(let_chains)]
11 #![feature(never_type)]
12 #![feature(result_option_inspect)]
13 #![feature(rustc_attrs)]
14 #![allow(incomplete_features)]
15
16 #[macro_use]
17 extern crate rustc_macros;
18
19 #[macro_use]
20 extern crate tracing;
21
22 pub use emitter::ColorConfig;
23
24 use rustc_lint_defs::LintExpectationId;
25 use Level::*;
26
27 use emitter::{is_case_difference, Emitter, EmitterWriter};
28 use registry::Registry;
29 use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap, FxIndexSet};
30 use rustc_data_structures::stable_hasher::StableHasher;
31 use rustc_data_structures::sync::{self, Lock, Lrc};
32 use rustc_data_structures::AtomicRef;
33 pub use rustc_error_messages::{
34     fallback_fluent_bundle, fluent, fluent_bundle, DelayDm, DiagnosticMessage, FluentBundle,
35     LanguageIdentifier, LazyFallbackBundle, MultiSpan, SpanLabel, SubdiagnosticMessage,
36     DEFAULT_LOCALE_RESOURCES,
37 };
38 pub use rustc_lint_defs::{pluralize, Applicability};
39 use rustc_span::source_map::SourceMap;
40 use rustc_span::HashStableContext;
41 use rustc_span::{Loc, Span};
42
43 use std::borrow::Cow;
44 use std::hash::Hash;
45 use std::num::NonZeroUsize;
46 use std::panic;
47 use std::path::Path;
48 use std::{error, fmt};
49
50 use termcolor::{Color, ColorSpec};
51
52 pub mod annotate_snippet_emitter_writer;
53 mod diagnostic;
54 mod diagnostic_builder;
55 mod diagnostic_impls;
56 pub mod emitter;
57 pub mod json;
58 mod lock;
59 pub mod registry;
60 mod snippet;
61 mod styled_buffer;
62 pub mod translation;
63
64 pub use diagnostic_builder::IntoDiagnostic;
65 pub use snippet::Style;
66
67 pub type PErr<'a> = DiagnosticBuilder<'a, ErrorGuaranteed>;
68 pub type PResult<'a, T> = Result<T, PErr<'a>>;
69
70 // `PResult` is used a lot. Make sure it doesn't unintentionally get bigger.
71 // (See also the comment on `DiagnosticBuilderInner`'s `diagnostic` field.)
72 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
73 rustc_data_structures::static_assert_size!(PResult<'_, ()>, 16);
74 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
75 rustc_data_structures::static_assert_size!(PResult<'_, bool>, 16);
76
77 #[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Encodable, Decodable)]
78 pub enum SuggestionStyle {
79     /// Hide the suggested code when displaying this suggestion inline.
80     HideCodeInline,
81     /// Always hide the suggested code but display the message.
82     HideCodeAlways,
83     /// Do not display this suggestion in the cli output, it is only meant for tools.
84     CompletelyHidden,
85     /// Always show the suggested code.
86     /// This will *not* show the code if the suggestion is inline *and* the suggested code is
87     /// empty.
88     ShowCode,
89     /// Always show the suggested code independently.
90     ShowAlways,
91 }
92
93 impl SuggestionStyle {
94     fn hide_inline(&self) -> bool {
95         !matches!(*self, SuggestionStyle::ShowCode)
96     }
97 }
98
99 #[derive(Clone, Debug, PartialEq, Hash, Encodable, Decodable)]
100 pub struct CodeSuggestion {
101     /// Each substitute can have multiple variants due to multiple
102     /// applicable suggestions
103     ///
104     /// `foo.bar` might be replaced with `a.b` or `x.y` by replacing
105     /// `foo` and `bar` on their own:
106     ///
107     /// ```ignore (illustrative)
108     /// vec![
109     ///     Substitution { parts: vec![(0..3, "a"), (4..7, "b")] },
110     ///     Substitution { parts: vec![(0..3, "x"), (4..7, "y")] },
111     /// ]
112     /// ```
113     ///
114     /// or by replacing the entire span:
115     ///
116     /// ```ignore (illustrative)
117     /// vec![
118     ///     Substitution { parts: vec![(0..7, "a.b")] },
119     ///     Substitution { parts: vec![(0..7, "x.y")] },
120     /// ]
121     /// ```
122     pub substitutions: Vec<Substitution>,
123     pub msg: DiagnosticMessage,
124     /// Visual representation of this suggestion.
125     pub style: SuggestionStyle,
126     /// Whether or not the suggestion is approximate
127     ///
128     /// Sometimes we may show suggestions with placeholders,
129     /// which are useful for users but not useful for
130     /// tools like rustfix
131     pub applicability: Applicability,
132 }
133
134 #[derive(Clone, Debug, PartialEq, Hash, Encodable, Decodable)]
135 /// See the docs on `CodeSuggestion::substitutions`
136 pub struct Substitution {
137     pub parts: Vec<SubstitutionPart>,
138 }
139
140 #[derive(Clone, Debug, PartialEq, Hash, Encodable, Decodable)]
141 pub struct SubstitutionPart {
142     pub span: Span,
143     pub snippet: String,
144 }
145
146 /// Used to translate between `Span`s and byte positions within a single output line in highlighted
147 /// code of structured suggestions.
148 #[derive(Debug, Clone, Copy)]
149 pub struct SubstitutionHighlight {
150     start: usize,
151     end: usize,
152 }
153
154 impl SubstitutionPart {
155     pub fn is_addition(&self, sm: &SourceMap) -> bool {
156         !self.snippet.is_empty() && !self.replaces_meaningful_content(sm)
157     }
158
159     pub fn is_deletion(&self, sm: &SourceMap) -> bool {
160         self.snippet.trim().is_empty() && self.replaces_meaningful_content(sm)
161     }
162
163     pub fn is_replacement(&self, sm: &SourceMap) -> bool {
164         !self.snippet.is_empty() && self.replaces_meaningful_content(sm)
165     }
166
167     fn replaces_meaningful_content(&self, sm: &SourceMap) -> bool {
168         sm.span_to_snippet(self.span)
169             .map_or(!self.span.is_empty(), |snippet| !snippet.trim().is_empty())
170     }
171 }
172
173 impl CodeSuggestion {
174     /// Returns the assembled code suggestions, whether they should be shown with an underline
175     /// and whether the substitution only differs in capitalization.
176     pub fn splice_lines(
177         &self,
178         sm: &SourceMap,
179     ) -> Vec<(String, Vec<SubstitutionPart>, Vec<Vec<SubstitutionHighlight>>, bool)> {
180         // For the `Vec<Vec<SubstitutionHighlight>>` value, the first level of the vector
181         // corresponds to the output snippet's lines, while the second level corresponds to the
182         // substrings within that line that should be highlighted.
183
184         use rustc_span::{CharPos, Pos};
185
186         /// Append to a buffer the remainder of the line of existing source code, and return the
187         /// count of lines that have been added for accurate highlighting.
188         fn push_trailing(
189             buf: &mut String,
190             line_opt: Option<&Cow<'_, str>>,
191             lo: &Loc,
192             hi_opt: Option<&Loc>,
193         ) -> usize {
194             let mut line_count = 0;
195             let (lo, hi_opt) = (lo.col.to_usize(), hi_opt.map(|hi| hi.col.to_usize()));
196             if let Some(line) = line_opt {
197                 if let Some(lo) = line.char_indices().map(|(i, _)| i).nth(lo) {
198                     let hi_opt = hi_opt.and_then(|hi| line.char_indices().map(|(i, _)| i).nth(hi));
199                     match hi_opt {
200                         Some(hi) if hi > lo => {
201                             line_count = line[lo..hi].matches('\n').count();
202                             buf.push_str(&line[lo..hi])
203                         }
204                         Some(_) => (),
205                         None => {
206                             line_count = line[lo..].matches('\n').count();
207                             buf.push_str(&line[lo..])
208                         }
209                     }
210                 }
211                 if hi_opt.is_none() {
212                     buf.push('\n');
213                 }
214             }
215             line_count
216         }
217
218         assert!(!self.substitutions.is_empty());
219
220         self.substitutions
221             .iter()
222             .filter(|subst| {
223                 // Suggestions coming from macros can have malformed spans. This is a heavy
224                 // handed approach to avoid ICEs by ignoring the suggestion outright.
225                 let invalid = subst.parts.iter().any(|item| sm.is_valid_span(item.span).is_err());
226                 if invalid {
227                     debug!("splice_lines: suggestion contains an invalid span: {:?}", subst);
228                 }
229                 !invalid
230             })
231             .cloned()
232             .filter_map(|mut substitution| {
233                 // Assumption: all spans are in the same file, and all spans
234                 // are disjoint. Sort in ascending order.
235                 substitution.parts.sort_by_key(|part| part.span.lo());
236
237                 // Find the bounding span.
238                 let lo = substitution.parts.iter().map(|part| part.span.lo()).min()?;
239                 let hi = substitution.parts.iter().map(|part| part.span.hi()).max()?;
240                 let bounding_span = Span::with_root_ctxt(lo, hi);
241                 // The different spans might belong to different contexts, if so ignore suggestion.
242                 let lines = sm.span_to_lines(bounding_span).ok()?;
243                 assert!(!lines.lines.is_empty() || bounding_span.is_dummy());
244
245                 // We can't splice anything if the source is unavailable.
246                 if !sm.ensure_source_file_source_present(lines.file.clone()) {
247                     return None;
248                 }
249
250                 let mut highlights = vec![];
251                 // To build up the result, we do this for each span:
252                 // - push the line segment trailing the previous span
253                 //   (at the beginning a "phantom" span pointing at the start of the line)
254                 // - push lines between the previous and current span (if any)
255                 // - if the previous and current span are not on the same line
256                 //   push the line segment leading up to the current span
257                 // - splice in the span substitution
258                 //
259                 // Finally push the trailing line segment of the last span
260                 let sf = &lines.file;
261                 let mut prev_hi = sm.lookup_char_pos(bounding_span.lo());
262                 prev_hi.col = CharPos::from_usize(0);
263                 let mut prev_line =
264                     lines.lines.get(0).and_then(|line0| sf.get_line(line0.line_index));
265                 let mut buf = String::new();
266
267                 let mut line_highlight = vec![];
268                 // We need to keep track of the difference between the existing code and the added
269                 // or deleted code in order to point at the correct column *after* substitution.
270                 let mut acc = 0;
271                 for part in &substitution.parts {
272                     let cur_lo = sm.lookup_char_pos(part.span.lo());
273                     if prev_hi.line == cur_lo.line {
274                         let mut count =
275                             push_trailing(&mut buf, prev_line.as_ref(), &prev_hi, Some(&cur_lo));
276                         while count > 0 {
277                             highlights.push(std::mem::take(&mut line_highlight));
278                             acc = 0;
279                             count -= 1;
280                         }
281                     } else {
282                         acc = 0;
283                         highlights.push(std::mem::take(&mut line_highlight));
284                         let mut count = push_trailing(&mut buf, prev_line.as_ref(), &prev_hi, None);
285                         while count > 0 {
286                             highlights.push(std::mem::take(&mut line_highlight));
287                             count -= 1;
288                         }
289                         // push lines between the previous and current span (if any)
290                         for idx in prev_hi.line..(cur_lo.line - 1) {
291                             if let Some(line) = sf.get_line(idx) {
292                                 buf.push_str(line.as_ref());
293                                 buf.push('\n');
294                                 highlights.push(std::mem::take(&mut line_highlight));
295                             }
296                         }
297                         if let Some(cur_line) = sf.get_line(cur_lo.line - 1) {
298                             let end = match cur_line.char_indices().nth(cur_lo.col.to_usize()) {
299                                 Some((i, _)) => i,
300                                 None => cur_line.len(),
301                             };
302                             buf.push_str(&cur_line[..end]);
303                         }
304                     }
305                     // Add a whole line highlight per line in the snippet.
306                     let len: isize = part
307                         .snippet
308                         .split('\n')
309                         .next()
310                         .unwrap_or(&part.snippet)
311                         .chars()
312                         .map(|c| match c {
313                             '\t' => 4,
314                             _ => 1,
315                         })
316                         .sum();
317                     line_highlight.push(SubstitutionHighlight {
318                         start: (cur_lo.col.0 as isize + acc) as usize,
319                         end: (cur_lo.col.0 as isize + acc + len) as usize,
320                     });
321                     buf.push_str(&part.snippet);
322                     let cur_hi = sm.lookup_char_pos(part.span.hi());
323                     if prev_hi.line == cur_lo.line && cur_hi.line == cur_lo.line {
324                         // Account for the difference between the width of the current code and the
325                         // snippet being suggested, so that the *later* suggestions are correctly
326                         // aligned on the screen.
327                         acc += len as isize - (cur_hi.col.0 - cur_lo.col.0) as isize;
328                     }
329                     prev_hi = cur_hi;
330                     prev_line = sf.get_line(prev_hi.line - 1);
331                     for line in part.snippet.split('\n').skip(1) {
332                         acc = 0;
333                         highlights.push(std::mem::take(&mut line_highlight));
334                         let end: usize = line
335                             .chars()
336                             .map(|c| match c {
337                                 '\t' => 4,
338                                 _ => 1,
339                             })
340                             .sum();
341                         line_highlight.push(SubstitutionHighlight { start: 0, end });
342                     }
343                 }
344                 highlights.push(std::mem::take(&mut line_highlight));
345                 let only_capitalization = is_case_difference(sm, &buf, bounding_span);
346                 // if the replacement already ends with a newline, don't print the next line
347                 if !buf.ends_with('\n') {
348                     push_trailing(&mut buf, prev_line.as_ref(), &prev_hi, None);
349                 }
350                 // remove trailing newlines
351                 while buf.ends_with('\n') {
352                     buf.pop();
353                 }
354                 Some((buf, substitution.parts, highlights, only_capitalization))
355             })
356             .collect()
357     }
358 }
359
360 pub use rustc_span::fatal_error::{FatalError, FatalErrorMarker};
361
362 /// Signifies that the compiler died with an explicit call to `.bug`
363 /// or `.span_bug` rather than a failed assertion, etc.
364 #[derive(Copy, Clone, Debug)]
365 pub struct ExplicitBug;
366
367 impl fmt::Display for ExplicitBug {
368     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
369         write!(f, "parser internal bug")
370     }
371 }
372
373 impl error::Error for ExplicitBug {}
374
375 pub use diagnostic::{
376     AddToDiagnostic, DecorateLint, Diagnostic, DiagnosticArg, DiagnosticArgValue, DiagnosticId,
377     DiagnosticStyledString, IntoDiagnosticArg, SubDiagnostic,
378 };
379 pub use diagnostic_builder::{DiagnosticBuilder, EmissionGuarantee, Noted};
380 pub use diagnostic_impls::{DiagnosticArgFromDisplay, DiagnosticSymbolList};
381 use std::backtrace::Backtrace;
382
383 /// A handler deals with errors and other compiler output.
384 /// Certain errors (fatal, bug, unimpl) may cause immediate exit,
385 /// others log errors for later reporting.
386 pub struct Handler {
387     flags: HandlerFlags,
388     inner: Lock<HandlerInner>,
389 }
390
391 /// This inner struct exists to keep it all behind a single lock;
392 /// this is done to prevent possible deadlocks in a multi-threaded compiler,
393 /// as well as inconsistent state observation.
394 struct HandlerInner {
395     flags: HandlerFlags,
396     /// The number of lint errors that have been emitted.
397     lint_err_count: usize,
398     /// The number of errors that have been emitted, including duplicates.
399     ///
400     /// This is not necessarily the count that's reported to the user once
401     /// compilation ends.
402     err_count: usize,
403     warn_count: usize,
404     deduplicated_err_count: usize,
405     emitter: Box<dyn Emitter + sync::Send>,
406     delayed_span_bugs: Vec<Diagnostic>,
407     delayed_good_path_bugs: Vec<DelayedDiagnostic>,
408     /// This flag indicates that an expected diagnostic was emitted and suppressed.
409     /// This is used for the `delayed_good_path_bugs` check.
410     suppressed_expected_diag: bool,
411
412     /// This set contains the `DiagnosticId` of all emitted diagnostics to avoid
413     /// emitting the same diagnostic with extended help (`--teach`) twice, which
414     /// would be unnecessary repetition.
415     taught_diagnostics: FxHashSet<DiagnosticId>,
416
417     /// Used to suggest rustc --explain `<error code>`
418     emitted_diagnostic_codes: FxIndexSet<DiagnosticId>,
419
420     /// This set contains a hash of every diagnostic that has been emitted by
421     /// this handler. These hashes is used to avoid emitting the same error
422     /// twice.
423     emitted_diagnostics: FxHashSet<u128>,
424
425     /// Stashed diagnostics emitted in one stage of the compiler that may be
426     /// stolen by other stages (e.g. to improve them and add more information).
427     /// The stashed diagnostics count towards the total error count.
428     /// When `.abort_if_errors()` is called, these are also emitted.
429     stashed_diagnostics: FxIndexMap<(Span, StashKey), Diagnostic>,
430
431     /// The warning count, used for a recap upon finishing
432     deduplicated_warn_count: usize,
433
434     future_breakage_diagnostics: Vec<Diagnostic>,
435
436     /// The [`Self::unstable_expect_diagnostics`] should be empty when this struct is
437     /// dropped. However, it can have values if the compilation is stopped early
438     /// or is only partially executed. To avoid ICEs, like in rust#94953 we only
439     /// check if [`Self::unstable_expect_diagnostics`] is empty, if the expectation ids
440     /// have been converted.
441     check_unstable_expect_diagnostics: bool,
442
443     /// Expected [`Diagnostic`][diagnostic::Diagnostic]s store a [`LintExpectationId`] as part of
444     /// the lint level. [`LintExpectationId`]s created early during the compilation
445     /// (before `HirId`s have been defined) are not stable and can therefore not be
446     /// stored on disk. This buffer stores these diagnostics until the ID has been
447     /// replaced by a stable [`LintExpectationId`]. The [`Diagnostic`][diagnostic::Diagnostic]s are the
448     /// submitted for storage and added to the list of fulfilled expectations.
449     unstable_expect_diagnostics: Vec<Diagnostic>,
450
451     /// expected diagnostic will have the level `Expect` which additionally
452     /// carries the [`LintExpectationId`] of the expectation that can be
453     /// marked as fulfilled. This is a collection of all [`LintExpectationId`]s
454     /// that have been marked as fulfilled this way.
455     ///
456     /// [RFC-2383]: https://rust-lang.github.io/rfcs/2383-lint-reasons.html
457     fulfilled_expectations: FxHashSet<LintExpectationId>,
458 }
459
460 /// A key denoting where from a diagnostic was stashed.
461 #[derive(Copy, Clone, PartialEq, Eq, Hash)]
462 pub enum StashKey {
463     ItemNoType,
464     UnderscoreForArrayLengths,
465     EarlySyntaxWarning,
466     CallIntoMethod,
467     /// When an invalid lifetime e.g. `'2` should be reinterpreted
468     /// as a char literal in the parser
469     LifetimeIsChar,
470     /// Maybe there was a typo where a comma was forgotten before
471     /// FRU syntax
472     MaybeFruTypo,
473     CallAssocMethod,
474 }
475
476 fn default_track_diagnostic(_: &Diagnostic) {}
477
478 pub static TRACK_DIAGNOSTICS: AtomicRef<fn(&Diagnostic)> =
479     AtomicRef::new(&(default_track_diagnostic as fn(&_)));
480
481 #[derive(Copy, Clone, Default)]
482 pub struct HandlerFlags {
483     /// If false, warning-level lints are suppressed.
484     /// (rustc: see `--allow warnings` and `--cap-lints`)
485     pub can_emit_warnings: bool,
486     /// If true, error-level diagnostics are upgraded to bug-level.
487     /// (rustc: see `-Z treat-err-as-bug`)
488     pub treat_err_as_bug: Option<NonZeroUsize>,
489     /// If true, immediately emit diagnostics that would otherwise be buffered.
490     /// (rustc: see `-Z dont-buffer-diagnostics` and `-Z treat-err-as-bug`)
491     pub dont_buffer_diagnostics: bool,
492     /// If true, immediately print bugs registered with `delay_span_bug`.
493     /// (rustc: see `-Z report-delayed-bugs`)
494     pub report_delayed_bugs: bool,
495     /// Show macro backtraces.
496     /// (rustc: see `-Z macro-backtrace`)
497     pub macro_backtrace: bool,
498     /// If true, identical diagnostics are reported only once.
499     pub deduplicate_diagnostics: bool,
500     /// Track where errors are created. Enabled with `-Ztrack-diagnostics`.
501     pub track_diagnostics: bool,
502 }
503
504 impl Drop for HandlerInner {
505     fn drop(&mut self) {
506         self.emit_stashed_diagnostics();
507
508         if !self.has_errors() {
509             let bugs = std::mem::replace(&mut self.delayed_span_bugs, Vec::new());
510             self.flush_delayed(bugs, "no errors encountered even though `delay_span_bug` issued");
511         }
512
513         // FIXME(eddyb) this explains what `delayed_good_path_bugs` are!
514         // They're `delayed_span_bugs` but for "require some diagnostic happened"
515         // instead of "require some error happened". Sadly that isn't ideal, as
516         // lints can be `#[allow]`'d, potentially leading to this triggering.
517         // Also, "good path" should be replaced with a better naming.
518         if !self.has_any_message() && !self.suppressed_expected_diag {
519             let bugs = std::mem::replace(&mut self.delayed_good_path_bugs, Vec::new());
520             self.flush_delayed(
521                 bugs.into_iter().map(DelayedDiagnostic::decorate),
522                 "no warnings or errors encountered even though `delayed_good_path_bugs` issued",
523             );
524         }
525
526         if self.check_unstable_expect_diagnostics {
527             assert!(
528                 self.unstable_expect_diagnostics.is_empty(),
529                 "all diagnostics with unstable expectations should have been converted",
530             );
531         }
532     }
533 }
534
535 impl Handler {
536     pub fn with_tty_emitter(
537         color_config: ColorConfig,
538         can_emit_warnings: bool,
539         treat_err_as_bug: Option<NonZeroUsize>,
540         sm: Option<Lrc<SourceMap>>,
541         fluent_bundle: Option<Lrc<FluentBundle>>,
542         fallback_bundle: LazyFallbackBundle,
543     ) -> Self {
544         Self::with_tty_emitter_and_flags(
545             color_config,
546             sm,
547             fluent_bundle,
548             fallback_bundle,
549             HandlerFlags { can_emit_warnings, treat_err_as_bug, ..Default::default() },
550         )
551     }
552
553     pub fn with_tty_emitter_and_flags(
554         color_config: ColorConfig,
555         sm: Option<Lrc<SourceMap>>,
556         fluent_bundle: Option<Lrc<FluentBundle>>,
557         fallback_bundle: LazyFallbackBundle,
558         flags: HandlerFlags,
559     ) -> Self {
560         let emitter = Box::new(EmitterWriter::stderr(
561             color_config,
562             sm,
563             fluent_bundle,
564             fallback_bundle,
565             false,
566             false,
567             None,
568             flags.macro_backtrace,
569             flags.track_diagnostics,
570         ));
571         Self::with_emitter_and_flags(emitter, flags)
572     }
573
574     pub fn with_emitter(
575         can_emit_warnings: bool,
576         treat_err_as_bug: Option<NonZeroUsize>,
577         emitter: Box<dyn Emitter + sync::Send>,
578     ) -> Self {
579         Handler::with_emitter_and_flags(
580             emitter,
581             HandlerFlags { can_emit_warnings, treat_err_as_bug, ..Default::default() },
582         )
583     }
584
585     pub fn with_emitter_and_flags(
586         emitter: Box<dyn Emitter + sync::Send>,
587         flags: HandlerFlags,
588     ) -> Self {
589         Self {
590             flags,
591             inner: Lock::new(HandlerInner {
592                 flags,
593                 lint_err_count: 0,
594                 err_count: 0,
595                 warn_count: 0,
596                 deduplicated_err_count: 0,
597                 deduplicated_warn_count: 0,
598                 emitter,
599                 delayed_span_bugs: Vec::new(),
600                 delayed_good_path_bugs: Vec::new(),
601                 suppressed_expected_diag: false,
602                 taught_diagnostics: Default::default(),
603                 emitted_diagnostic_codes: Default::default(),
604                 emitted_diagnostics: Default::default(),
605                 stashed_diagnostics: Default::default(),
606                 future_breakage_diagnostics: Vec::new(),
607                 check_unstable_expect_diagnostics: false,
608                 unstable_expect_diagnostics: Vec::new(),
609                 fulfilled_expectations: Default::default(),
610             }),
611         }
612     }
613
614     /// Translate `message` eagerly with `args`.
615     pub fn eagerly_translate<'a>(
616         &self,
617         message: DiagnosticMessage,
618         args: impl Iterator<Item = DiagnosticArg<'a, 'static>>,
619     ) -> SubdiagnosticMessage {
620         let inner = self.inner.borrow();
621         let args = crate::translation::to_fluent_args(args);
622         SubdiagnosticMessage::Eager(inner.emitter.translate_message(&message, &args).to_string())
623     }
624
625     // This is here to not allow mutation of flags;
626     // as of this writing it's only used in tests in librustc_middle.
627     pub fn can_emit_warnings(&self) -> bool {
628         self.flags.can_emit_warnings
629     }
630
631     /// Resets the diagnostic error count as well as the cached emitted diagnostics.
632     ///
633     /// NOTE: *do not* call this function from rustc. It is only meant to be called from external
634     /// tools that want to reuse a `Parser` cleaning the previously emitted diagnostics as well as
635     /// the overall count of emitted error diagnostics.
636     pub fn reset_err_count(&self) {
637         let mut inner = self.inner.borrow_mut();
638         inner.err_count = 0;
639         inner.warn_count = 0;
640         inner.deduplicated_err_count = 0;
641         inner.deduplicated_warn_count = 0;
642
643         // actually free the underlying memory (which `clear` would not do)
644         inner.delayed_span_bugs = Default::default();
645         inner.delayed_good_path_bugs = Default::default();
646         inner.taught_diagnostics = Default::default();
647         inner.emitted_diagnostic_codes = Default::default();
648         inner.emitted_diagnostics = Default::default();
649         inner.stashed_diagnostics = Default::default();
650     }
651
652     /// Stash a given diagnostic with the given `Span` and [`StashKey`] as the key.
653     /// Retrieve a stashed diagnostic with `steal_diagnostic`.
654     pub fn stash_diagnostic(&self, span: Span, key: StashKey, diag: Diagnostic) {
655         let mut inner = self.inner.borrow_mut();
656         inner.stash((span, key), diag);
657     }
658
659     /// Steal a previously stashed diagnostic with the given `Span` and [`StashKey`] as the key.
660     pub fn steal_diagnostic(&self, span: Span, key: StashKey) -> Option<DiagnosticBuilder<'_, ()>> {
661         let mut inner = self.inner.borrow_mut();
662         inner.steal((span, key)).map(|diag| DiagnosticBuilder::new_diagnostic(self, diag))
663     }
664
665     pub fn has_stashed_diagnostic(&self, span: Span, key: StashKey) -> bool {
666         self.inner.borrow().stashed_diagnostics.get(&(span, key)).is_some()
667     }
668
669     /// Emit all stashed diagnostics.
670     pub fn emit_stashed_diagnostics(&self) -> Option<ErrorGuaranteed> {
671         self.inner.borrow_mut().emit_stashed_diagnostics()
672     }
673
674     /// Construct a builder with the `msg` at the level appropriate for the specific `EmissionGuarantee`.
675     #[rustc_lint_diagnostics]
676     #[track_caller]
677     pub fn struct_diagnostic<G: EmissionGuarantee>(
678         &self,
679         msg: impl Into<DiagnosticMessage>,
680     ) -> DiagnosticBuilder<'_, G> {
681         G::make_diagnostic_builder(self, msg)
682     }
683
684     /// Construct a builder at the `Warning` level at the given `span` and with the `msg`.
685     ///
686     /// Attempting to `.emit()` the builder will only emit if either:
687     /// * `can_emit_warnings` is `true`
688     /// * `is_force_warn` was set in `DiagnosticId::Lint`
689     #[rustc_lint_diagnostics]
690     #[track_caller]
691     pub fn struct_span_warn(
692         &self,
693         span: impl Into<MultiSpan>,
694         msg: impl Into<DiagnosticMessage>,
695     ) -> DiagnosticBuilder<'_, ()> {
696         let mut result = self.struct_warn(msg);
697         result.set_span(span);
698         result
699     }
700
701     /// Construct a builder at the `Warning` level at the given `span` and with the `msg`.
702     /// The `id` is used for lint emissions which should also fulfill a lint expectation.
703     ///
704     /// Attempting to `.emit()` the builder will only emit if either:
705     /// * `can_emit_warnings` is `true`
706     /// * `is_force_warn` was set in `DiagnosticId::Lint`
707     #[track_caller]
708     pub fn struct_span_warn_with_expectation(
709         &self,
710         span: impl Into<MultiSpan>,
711         msg: impl Into<DiagnosticMessage>,
712         id: LintExpectationId,
713     ) -> DiagnosticBuilder<'_, ()> {
714         let mut result = self.struct_warn_with_expectation(msg, id);
715         result.set_span(span);
716         result
717     }
718
719     /// Construct a builder at the `Allow` level at the given `span` and with the `msg`.
720     #[rustc_lint_diagnostics]
721     #[track_caller]
722     pub fn struct_span_allow(
723         &self,
724         span: impl Into<MultiSpan>,
725         msg: impl Into<DiagnosticMessage>,
726     ) -> DiagnosticBuilder<'_, ()> {
727         let mut result = self.struct_allow(msg);
728         result.set_span(span);
729         result
730     }
731
732     /// Construct a builder at the `Warning` level at the given `span` and with the `msg`.
733     /// Also include a code.
734     #[rustc_lint_diagnostics]
735     #[track_caller]
736     pub fn struct_span_warn_with_code(
737         &self,
738         span: impl Into<MultiSpan>,
739         msg: impl Into<DiagnosticMessage>,
740         code: DiagnosticId,
741     ) -> DiagnosticBuilder<'_, ()> {
742         let mut result = self.struct_span_warn(span, msg);
743         result.code(code);
744         result
745     }
746
747     /// Construct a builder at the `Warning` level with the `msg`.
748     ///
749     /// Attempting to `.emit()` the builder will only emit if either:
750     /// * `can_emit_warnings` is `true`
751     /// * `is_force_warn` was set in `DiagnosticId::Lint`
752     #[rustc_lint_diagnostics]
753     #[track_caller]
754     pub fn struct_warn(&self, msg: impl Into<DiagnosticMessage>) -> DiagnosticBuilder<'_, ()> {
755         DiagnosticBuilder::new(self, Level::Warning(None), msg)
756     }
757
758     /// Construct a builder at the `Warning` level with the `msg`. The `id` is used for
759     /// lint emissions which should also fulfill a lint expectation.
760     ///
761     /// Attempting to `.emit()` the builder will only emit if either:
762     /// * `can_emit_warnings` is `true`
763     /// * `is_force_warn` was set in `DiagnosticId::Lint`
764     #[track_caller]
765     pub fn struct_warn_with_expectation(
766         &self,
767         msg: impl Into<DiagnosticMessage>,
768         id: LintExpectationId,
769     ) -> DiagnosticBuilder<'_, ()> {
770         DiagnosticBuilder::new(self, Level::Warning(Some(id)), msg)
771     }
772
773     /// Construct a builder at the `Allow` level with the `msg`.
774     #[rustc_lint_diagnostics]
775     #[track_caller]
776     pub fn struct_allow(&self, msg: impl Into<DiagnosticMessage>) -> DiagnosticBuilder<'_, ()> {
777         DiagnosticBuilder::new(self, Level::Allow, msg)
778     }
779
780     /// Construct a builder at the `Expect` level with the `msg`.
781     #[rustc_lint_diagnostics]
782     #[track_caller]
783     pub fn struct_expect(
784         &self,
785         msg: impl Into<DiagnosticMessage>,
786         id: LintExpectationId,
787     ) -> DiagnosticBuilder<'_, ()> {
788         DiagnosticBuilder::new(self, Level::Expect(id), msg)
789     }
790
791     /// Construct a builder at the `Error` level at the given `span` and with the `msg`.
792     #[rustc_lint_diagnostics]
793     #[track_caller]
794     pub fn struct_span_err(
795         &self,
796         span: impl Into<MultiSpan>,
797         msg: impl Into<DiagnosticMessage>,
798     ) -> DiagnosticBuilder<'_, ErrorGuaranteed> {
799         let mut result = self.struct_err(msg);
800         result.set_span(span);
801         result
802     }
803
804     /// Construct a builder at the `Error` level at the given `span`, with the `msg`, and `code`.
805     #[rustc_lint_diagnostics]
806     #[track_caller]
807     pub fn struct_span_err_with_code(
808         &self,
809         span: impl Into<MultiSpan>,
810         msg: impl Into<DiagnosticMessage>,
811         code: DiagnosticId,
812     ) -> DiagnosticBuilder<'_, ErrorGuaranteed> {
813         let mut result = self.struct_span_err(span, msg);
814         result.code(code);
815         result
816     }
817
818     /// Construct a builder at the `Error` level with the `msg`.
819     // FIXME: This method should be removed (every error should have an associated error code).
820     #[rustc_lint_diagnostics]
821     #[track_caller]
822     pub fn struct_err(
823         &self,
824         msg: impl Into<DiagnosticMessage>,
825     ) -> DiagnosticBuilder<'_, ErrorGuaranteed> {
826         DiagnosticBuilder::new_guaranteeing_error::<_, { Level::Error { lint: false } }>(self, msg)
827     }
828
829     /// This should only be used by `rustc_middle::lint::struct_lint_level`. Do not use it for hard errors.
830     #[doc(hidden)]
831     #[track_caller]
832     pub fn struct_err_lint(&self, msg: impl Into<DiagnosticMessage>) -> DiagnosticBuilder<'_, ()> {
833         DiagnosticBuilder::new(self, Level::Error { lint: true }, msg)
834     }
835
836     /// Construct a builder at the `Error` level with the `msg` and the `code`.
837     #[rustc_lint_diagnostics]
838     #[track_caller]
839     pub fn struct_err_with_code(
840         &self,
841         msg: impl Into<DiagnosticMessage>,
842         code: DiagnosticId,
843     ) -> DiagnosticBuilder<'_, ErrorGuaranteed> {
844         let mut result = self.struct_err(msg);
845         result.code(code);
846         result
847     }
848
849     /// Construct a builder at the `Warn` level with the `msg` and the `code`.
850     #[rustc_lint_diagnostics]
851     #[track_caller]
852     pub fn struct_warn_with_code(
853         &self,
854         msg: impl Into<DiagnosticMessage>,
855         code: DiagnosticId,
856     ) -> DiagnosticBuilder<'_, ()> {
857         let mut result = self.struct_warn(msg);
858         result.code(code);
859         result
860     }
861
862     /// Construct a builder at the `Fatal` level at the given `span` and with the `msg`.
863     #[rustc_lint_diagnostics]
864     #[track_caller]
865     pub fn struct_span_fatal(
866         &self,
867         span: impl Into<MultiSpan>,
868         msg: impl Into<DiagnosticMessage>,
869     ) -> DiagnosticBuilder<'_, !> {
870         let mut result = self.struct_fatal(msg);
871         result.set_span(span);
872         result
873     }
874
875     /// Construct a builder at the `Fatal` level at the given `span`, with the `msg`, and `code`.
876     #[rustc_lint_diagnostics]
877     #[track_caller]
878     pub fn struct_span_fatal_with_code(
879         &self,
880         span: impl Into<MultiSpan>,
881         msg: impl Into<DiagnosticMessage>,
882         code: DiagnosticId,
883     ) -> DiagnosticBuilder<'_, !> {
884         let mut result = self.struct_span_fatal(span, msg);
885         result.code(code);
886         result
887     }
888
889     /// Construct a builder at the `Error` level with the `msg`.
890     #[rustc_lint_diagnostics]
891     #[track_caller]
892     pub fn struct_fatal(&self, msg: impl Into<DiagnosticMessage>) -> DiagnosticBuilder<'_, !> {
893         DiagnosticBuilder::new_fatal(self, msg)
894     }
895
896     /// Construct a builder at the `Help` level with the `msg`.
897     #[rustc_lint_diagnostics]
898     pub fn struct_help(&self, msg: impl Into<DiagnosticMessage>) -> DiagnosticBuilder<'_, ()> {
899         DiagnosticBuilder::new(self, Level::Help, msg)
900     }
901
902     /// Construct a builder at the `Note` level with the `msg`.
903     #[rustc_lint_diagnostics]
904     #[track_caller]
905     pub fn struct_note_without_error(
906         &self,
907         msg: impl Into<DiagnosticMessage>,
908     ) -> DiagnosticBuilder<'_, ()> {
909         DiagnosticBuilder::new(self, Level::Note, msg)
910     }
911
912     #[rustc_lint_diagnostics]
913     #[track_caller]
914     pub fn span_fatal(&self, span: impl Into<MultiSpan>, msg: impl Into<DiagnosticMessage>) -> ! {
915         self.emit_diag_at_span(Diagnostic::new(Fatal, msg), span);
916         FatalError.raise()
917     }
918
919     #[rustc_lint_diagnostics]
920     #[track_caller]
921     pub fn span_fatal_with_code(
922         &self,
923         span: impl Into<MultiSpan>,
924         msg: impl Into<DiagnosticMessage>,
925         code: DiagnosticId,
926     ) -> ! {
927         self.emit_diag_at_span(Diagnostic::new_with_code(Fatal, Some(code), msg), span);
928         FatalError.raise()
929     }
930
931     #[rustc_lint_diagnostics]
932     #[track_caller]
933     pub fn span_err(
934         &self,
935         span: impl Into<MultiSpan>,
936         msg: impl Into<DiagnosticMessage>,
937     ) -> ErrorGuaranteed {
938         self.emit_diag_at_span(Diagnostic::new(Error { lint: false }, msg), span).unwrap()
939     }
940
941     #[rustc_lint_diagnostics]
942     #[track_caller]
943     pub fn span_err_with_code(
944         &self,
945         span: impl Into<MultiSpan>,
946         msg: impl Into<DiagnosticMessage>,
947         code: DiagnosticId,
948     ) {
949         self.emit_diag_at_span(
950             Diagnostic::new_with_code(Error { lint: false }, Some(code), msg),
951             span,
952         );
953     }
954
955     #[rustc_lint_diagnostics]
956     #[track_caller]
957     pub fn span_warn(&self, span: impl Into<MultiSpan>, msg: impl Into<DiagnosticMessage>) {
958         self.emit_diag_at_span(Diagnostic::new(Warning(None), msg), span);
959     }
960
961     #[rustc_lint_diagnostics]
962     #[track_caller]
963     pub fn span_warn_with_code(
964         &self,
965         span: impl Into<MultiSpan>,
966         msg: impl Into<DiagnosticMessage>,
967         code: DiagnosticId,
968     ) {
969         self.emit_diag_at_span(Diagnostic::new_with_code(Warning(None), Some(code), msg), span);
970     }
971
972     pub fn span_bug(&self, span: impl Into<MultiSpan>, msg: impl Into<DiagnosticMessage>) -> ! {
973         self.inner.borrow_mut().span_bug(span, msg)
974     }
975
976     #[track_caller]
977     pub fn delay_span_bug(
978         &self,
979         span: impl Into<MultiSpan>,
980         msg: impl Into<DiagnosticMessage>,
981     ) -> ErrorGuaranteed {
982         self.inner.borrow_mut().delay_span_bug(span, msg)
983     }
984
985     // FIXME(eddyb) note the comment inside `impl Drop for HandlerInner`, that's
986     // where the explanation of what "good path" is (also, it should be renamed).
987     pub fn delay_good_path_bug(&self, msg: impl Into<DiagnosticMessage>) {
988         self.inner.borrow_mut().delay_good_path_bug(msg)
989     }
990
991     #[track_caller]
992     pub fn span_bug_no_panic(&self, span: impl Into<MultiSpan>, msg: impl Into<DiagnosticMessage>) {
993         self.emit_diag_at_span(Diagnostic::new(Bug, msg), span);
994     }
995
996     #[track_caller]
997     pub fn span_note_without_error(
998         &self,
999         span: impl Into<MultiSpan>,
1000         msg: impl Into<DiagnosticMessage>,
1001     ) {
1002         self.emit_diag_at_span(Diagnostic::new(Note, msg), span);
1003     }
1004
1005     #[track_caller]
1006     pub fn span_note_diag(
1007         &self,
1008         span: Span,
1009         msg: impl Into<DiagnosticMessage>,
1010     ) -> DiagnosticBuilder<'_, ()> {
1011         let mut db = DiagnosticBuilder::new(self, Note, msg);
1012         db.set_span(span);
1013         db
1014     }
1015
1016     // NOTE: intentionally doesn't raise an error so rustc_codegen_ssa only reports fatal errors in the main thread
1017     pub fn fatal(&self, msg: impl Into<DiagnosticMessage>) -> FatalError {
1018         self.inner.borrow_mut().fatal(msg)
1019     }
1020
1021     pub fn err(&self, msg: impl Into<DiagnosticMessage>) -> ErrorGuaranteed {
1022         self.inner.borrow_mut().err(msg)
1023     }
1024
1025     pub fn warn(&self, msg: impl Into<DiagnosticMessage>) {
1026         let mut db = DiagnosticBuilder::new(self, Warning(None), msg);
1027         db.emit();
1028     }
1029
1030     pub fn note_without_error(&self, msg: impl Into<DiagnosticMessage>) {
1031         DiagnosticBuilder::new(self, Note, msg).emit();
1032     }
1033
1034     pub fn bug(&self, msg: impl Into<DiagnosticMessage>) -> ! {
1035         self.inner.borrow_mut().bug(msg)
1036     }
1037
1038     #[inline]
1039     pub fn err_count(&self) -> usize {
1040         self.inner.borrow().err_count()
1041     }
1042
1043     pub fn has_errors(&self) -> Option<ErrorGuaranteed> {
1044         if self.inner.borrow().has_errors() { Some(ErrorGuaranteed(())) } else { None }
1045     }
1046     pub fn has_errors_or_lint_errors(&self) -> Option<ErrorGuaranteed> {
1047         if self.inner.borrow().has_errors_or_lint_errors() {
1048             Some(ErrorGuaranteed::unchecked_claim_error_was_emitted())
1049         } else {
1050             None
1051         }
1052     }
1053     pub fn has_errors_or_delayed_span_bugs(&self) -> Option<ErrorGuaranteed> {
1054         if self.inner.borrow().has_errors_or_delayed_span_bugs() {
1055             Some(ErrorGuaranteed::unchecked_claim_error_was_emitted())
1056         } else {
1057             None
1058         }
1059     }
1060     pub fn is_compilation_going_to_fail(&self) -> Option<ErrorGuaranteed> {
1061         if self.inner.borrow().is_compilation_going_to_fail() {
1062             Some(ErrorGuaranteed::unchecked_claim_error_was_emitted())
1063         } else {
1064             None
1065         }
1066     }
1067
1068     pub fn print_error_count(&self, registry: &Registry) {
1069         self.inner.borrow_mut().print_error_count(registry)
1070     }
1071
1072     pub fn take_future_breakage_diagnostics(&self) -> Vec<Diagnostic> {
1073         std::mem::take(&mut self.inner.borrow_mut().future_breakage_diagnostics)
1074     }
1075
1076     pub fn abort_if_errors(&self) {
1077         self.inner.borrow_mut().abort_if_errors()
1078     }
1079
1080     /// `true` if we haven't taught a diagnostic with this code already.
1081     /// The caller must then teach the user about such a diagnostic.
1082     ///
1083     /// Used to suppress emitting the same error multiple times with extended explanation when
1084     /// calling `-Zteach`.
1085     pub fn must_teach(&self, code: &DiagnosticId) -> bool {
1086         self.inner.borrow_mut().must_teach(code)
1087     }
1088
1089     pub fn force_print_diagnostic(&self, db: Diagnostic) {
1090         self.inner.borrow_mut().force_print_diagnostic(db)
1091     }
1092
1093     pub fn emit_diagnostic(&self, diagnostic: &mut Diagnostic) -> Option<ErrorGuaranteed> {
1094         self.inner.borrow_mut().emit_diagnostic(diagnostic)
1095     }
1096
1097     pub fn emit_err<'a>(&'a self, err: impl IntoDiagnostic<'a>) -> ErrorGuaranteed {
1098         self.create_err(err).emit()
1099     }
1100
1101     pub fn create_err<'a>(
1102         &'a self,
1103         err: impl IntoDiagnostic<'a>,
1104     ) -> DiagnosticBuilder<'a, ErrorGuaranteed> {
1105         err.into_diagnostic(self)
1106     }
1107
1108     pub fn create_warning<'a>(
1109         &'a self,
1110         warning: impl IntoDiagnostic<'a, ()>,
1111     ) -> DiagnosticBuilder<'a, ()> {
1112         warning.into_diagnostic(self)
1113     }
1114
1115     pub fn emit_warning<'a>(&'a self, warning: impl IntoDiagnostic<'a, ()>) {
1116         self.create_warning(warning).emit()
1117     }
1118
1119     pub fn create_fatal<'a>(
1120         &'a self,
1121         fatal: impl IntoDiagnostic<'a, !>,
1122     ) -> DiagnosticBuilder<'a, !> {
1123         fatal.into_diagnostic(self)
1124     }
1125
1126     pub fn emit_fatal<'a>(&'a self, fatal: impl IntoDiagnostic<'a, !>) -> ! {
1127         self.create_fatal(fatal).emit()
1128     }
1129
1130     fn emit_diag_at_span(
1131         &self,
1132         mut diag: Diagnostic,
1133         sp: impl Into<MultiSpan>,
1134     ) -> Option<ErrorGuaranteed> {
1135         let mut inner = self.inner.borrow_mut();
1136         inner.emit_diagnostic(diag.set_span(sp))
1137     }
1138
1139     pub fn emit_artifact_notification(&self, path: &Path, artifact_type: &str) {
1140         self.inner.borrow_mut().emit_artifact_notification(path, artifact_type)
1141     }
1142
1143     pub fn emit_future_breakage_report(&self, diags: Vec<Diagnostic>) {
1144         self.inner.borrow_mut().emitter.emit_future_breakage_report(diags)
1145     }
1146
1147     pub fn emit_unused_externs(
1148         &self,
1149         lint_level: rustc_lint_defs::Level,
1150         loud: bool,
1151         unused_externs: &[&str],
1152     ) {
1153         let mut inner = self.inner.borrow_mut();
1154
1155         if loud && lint_level.is_error() {
1156             inner.bump_err_count();
1157         }
1158
1159         inner.emit_unused_externs(lint_level, unused_externs)
1160     }
1161
1162     pub fn update_unstable_expectation_id(
1163         &self,
1164         unstable_to_stable: &FxHashMap<LintExpectationId, LintExpectationId>,
1165     ) {
1166         let mut inner = self.inner.borrow_mut();
1167         let diags = std::mem::take(&mut inner.unstable_expect_diagnostics);
1168         inner.check_unstable_expect_diagnostics = true;
1169
1170         if !diags.is_empty() {
1171             inner.suppressed_expected_diag = true;
1172             for mut diag in diags.into_iter() {
1173                 diag.update_unstable_expectation_id(unstable_to_stable);
1174
1175                 // Here the diagnostic is given back to `emit_diagnostic` where it was first
1176                 // intercepted. Now it should be processed as usual, since the unstable expectation
1177                 // id is now stable.
1178                 inner.emit_diagnostic(&mut diag);
1179             }
1180         }
1181
1182         inner
1183             .stashed_diagnostics
1184             .values_mut()
1185             .for_each(|diag| diag.update_unstable_expectation_id(unstable_to_stable));
1186         inner
1187             .future_breakage_diagnostics
1188             .iter_mut()
1189             .for_each(|diag| diag.update_unstable_expectation_id(unstable_to_stable));
1190     }
1191
1192     /// This methods steals all [`LintExpectationId`]s that are stored inside
1193     /// [`HandlerInner`] and indicate that the linked expectation has been fulfilled.
1194     #[must_use]
1195     pub fn steal_fulfilled_expectation_ids(&self) -> FxHashSet<LintExpectationId> {
1196         assert!(
1197             self.inner.borrow().unstable_expect_diagnostics.is_empty(),
1198             "`HandlerInner::unstable_expect_diagnostics` should be empty at this point",
1199         );
1200         std::mem::take(&mut self.inner.borrow_mut().fulfilled_expectations)
1201     }
1202
1203     pub fn flush_delayed(&self) {
1204         let mut inner = self.inner.lock();
1205         let bugs = std::mem::replace(&mut inner.delayed_span_bugs, Vec::new());
1206         inner.flush_delayed(bugs, "no errors encountered even though `delay_span_bug` issued");
1207     }
1208 }
1209
1210 impl HandlerInner {
1211     fn must_teach(&mut self, code: &DiagnosticId) -> bool {
1212         self.taught_diagnostics.insert(code.clone())
1213     }
1214
1215     fn force_print_diagnostic(&mut self, mut db: Diagnostic) {
1216         self.emitter.emit_diagnostic(&mut db);
1217     }
1218
1219     /// Emit all stashed diagnostics.
1220     fn emit_stashed_diagnostics(&mut self) -> Option<ErrorGuaranteed> {
1221         let has_errors = self.has_errors();
1222         let diags = self.stashed_diagnostics.drain(..).map(|x| x.1).collect::<Vec<_>>();
1223         let mut reported = None;
1224         for mut diag in diags {
1225             // Decrement the count tracking the stash; emitting will increment it.
1226             if diag.is_error() {
1227                 if matches!(diag.level, Level::Error { lint: true }) {
1228                     self.lint_err_count -= 1;
1229                 } else {
1230                     self.err_count -= 1;
1231                 }
1232             } else {
1233                 if diag.is_force_warn() {
1234                     self.warn_count -= 1;
1235                 } else {
1236                     // Unless they're forced, don't flush stashed warnings when
1237                     // there are errors, to avoid causing warning overload. The
1238                     // stash would've been stolen already if it were important.
1239                     if has_errors {
1240                         continue;
1241                     }
1242                 }
1243             }
1244             let reported_this = self.emit_diagnostic(&mut diag);
1245             reported = reported.or(reported_this);
1246         }
1247         reported
1248     }
1249
1250     // FIXME(eddyb) this should ideally take `diagnostic` by value.
1251     fn emit_diagnostic(&mut self, diagnostic: &mut Diagnostic) -> Option<ErrorGuaranteed> {
1252         // The `LintExpectationId` can be stable or unstable depending on when it was created.
1253         // Diagnostics created before the definition of `HirId`s are unstable and can not yet
1254         // be stored. Instead, they are buffered until the `LintExpectationId` is replaced by
1255         // a stable one by the `LintLevelsBuilder`.
1256         if let Some(LintExpectationId::Unstable { .. }) = diagnostic.level.get_expectation_id() {
1257             self.unstable_expect_diagnostics.push(diagnostic.clone());
1258             return None;
1259         }
1260
1261         if diagnostic.level == Level::DelayedBug {
1262             // FIXME(eddyb) this should check for `has_errors` and stop pushing
1263             // once *any* errors were emitted (and truncate `delayed_span_bugs`
1264             // when an error is first emitted, also), but maybe there's a case
1265             // in which that's not sound? otherwise this is really inefficient.
1266             self.delayed_span_bugs.push(diagnostic.clone());
1267
1268             if !self.flags.report_delayed_bugs {
1269                 return Some(ErrorGuaranteed::unchecked_claim_error_was_emitted());
1270             }
1271         }
1272
1273         if diagnostic.has_future_breakage() {
1274             // Future breakages aren't emitted if they're Level::Allowed,
1275             // but they still need to be constructed and stashed below,
1276             // so they'll trigger the good-path bug check.
1277             self.suppressed_expected_diag = true;
1278             self.future_breakage_diagnostics.push(diagnostic.clone());
1279         }
1280
1281         if let Some(expectation_id) = diagnostic.level.get_expectation_id() {
1282             self.suppressed_expected_diag = true;
1283             self.fulfilled_expectations.insert(expectation_id.normalize());
1284         }
1285
1286         if matches!(diagnostic.level, Warning(_))
1287             && !self.flags.can_emit_warnings
1288             && !diagnostic.is_force_warn()
1289         {
1290             if diagnostic.has_future_breakage() {
1291                 (*TRACK_DIAGNOSTICS)(diagnostic);
1292             }
1293             return None;
1294         }
1295
1296         (*TRACK_DIAGNOSTICS)(diagnostic);
1297
1298         if matches!(diagnostic.level, Level::Expect(_) | Level::Allow) {
1299             return None;
1300         }
1301
1302         if let Some(ref code) = diagnostic.code {
1303             self.emitted_diagnostic_codes.insert(code.clone());
1304         }
1305
1306         let already_emitted = |this: &mut Self| {
1307             let mut hasher = StableHasher::new();
1308             diagnostic.hash(&mut hasher);
1309             let diagnostic_hash = hasher.finish();
1310             !this.emitted_diagnostics.insert(diagnostic_hash)
1311         };
1312
1313         // Only emit the diagnostic if we've been asked to deduplicate or
1314         // haven't already emitted an equivalent diagnostic.
1315         if !(self.flags.deduplicate_diagnostics && already_emitted(self)) {
1316             debug!(?diagnostic);
1317             debug!(?self.emitted_diagnostics);
1318             let already_emitted_sub = |sub: &mut SubDiagnostic| {
1319                 debug!(?sub);
1320                 if sub.level != Level::OnceNote {
1321                     return false;
1322                 }
1323                 let mut hasher = StableHasher::new();
1324                 sub.hash(&mut hasher);
1325                 let diagnostic_hash = hasher.finish();
1326                 debug!(?diagnostic_hash);
1327                 !self.emitted_diagnostics.insert(diagnostic_hash)
1328             };
1329
1330             diagnostic.children.drain_filter(already_emitted_sub).for_each(|_| {});
1331
1332             self.emitter.emit_diagnostic(diagnostic);
1333             if diagnostic.is_error() {
1334                 self.deduplicated_err_count += 1;
1335             } else if let Warning(_) = diagnostic.level {
1336                 self.deduplicated_warn_count += 1;
1337             }
1338         }
1339         if diagnostic.is_error() {
1340             if matches!(diagnostic.level, Level::Error { lint: true }) {
1341                 self.bump_lint_err_count();
1342             } else {
1343                 self.bump_err_count();
1344             }
1345
1346             Some(ErrorGuaranteed::unchecked_claim_error_was_emitted())
1347         } else {
1348             self.bump_warn_count();
1349
1350             None
1351         }
1352     }
1353
1354     fn emit_artifact_notification(&mut self, path: &Path, artifact_type: &str) {
1355         self.emitter.emit_artifact_notification(path, artifact_type);
1356     }
1357
1358     fn emit_unused_externs(&mut self, lint_level: rustc_lint_defs::Level, unused_externs: &[&str]) {
1359         self.emitter.emit_unused_externs(lint_level, unused_externs);
1360     }
1361
1362     fn treat_err_as_bug(&self) -> bool {
1363         self.flags.treat_err_as_bug.map_or(false, |c| {
1364             self.err_count() + self.lint_err_count + self.delayed_bug_count() >= c.get()
1365         })
1366     }
1367
1368     fn delayed_bug_count(&self) -> usize {
1369         self.delayed_span_bugs.len() + self.delayed_good_path_bugs.len()
1370     }
1371
1372     fn print_error_count(&mut self, registry: &Registry) {
1373         self.emit_stashed_diagnostics();
1374
1375         let warnings = match self.deduplicated_warn_count {
1376             0 => String::new(),
1377             1 => "1 warning emitted".to_string(),
1378             count => format!("{count} warnings emitted"),
1379         };
1380         let errors = match self.deduplicated_err_count {
1381             0 => String::new(),
1382             1 => "aborting due to previous error".to_string(),
1383             count => format!("aborting due to {count} previous errors"),
1384         };
1385         if self.treat_err_as_bug() {
1386             return;
1387         }
1388
1389         match (errors.len(), warnings.len()) {
1390             (0, 0) => return,
1391             (0, _) => self.emitter.emit_diagnostic(&Diagnostic::new(
1392                 Level::Warning(None),
1393                 DiagnosticMessage::Str(warnings),
1394             )),
1395             (_, 0) => {
1396                 let _ = self.fatal(&errors);
1397             }
1398             (_, _) => {
1399                 let _ = self.fatal(&format!("{}; {}", &errors, &warnings));
1400             }
1401         }
1402
1403         let can_show_explain = self.emitter.should_show_explain();
1404         let are_there_diagnostics = !self.emitted_diagnostic_codes.is_empty();
1405         if can_show_explain && are_there_diagnostics {
1406             let mut error_codes = self
1407                 .emitted_diagnostic_codes
1408                 .iter()
1409                 .filter_map(|x| match &x {
1410                     DiagnosticId::Error(s)
1411                         if registry.try_find_description(s).map_or(false, |o| o.is_some()) =>
1412                     {
1413                         Some(s.clone())
1414                     }
1415                     _ => None,
1416                 })
1417                 .collect::<Vec<_>>();
1418             if !error_codes.is_empty() {
1419                 error_codes.sort();
1420                 if error_codes.len() > 1 {
1421                     let limit = if error_codes.len() > 9 { 9 } else { error_codes.len() };
1422                     self.failure(&format!(
1423                         "Some errors have detailed explanations: {}{}",
1424                         error_codes[..limit].join(", "),
1425                         if error_codes.len() > 9 { "..." } else { "." }
1426                     ));
1427                     self.failure(&format!(
1428                         "For more information about an error, try \
1429                          `rustc --explain {}`.",
1430                         &error_codes[0]
1431                     ));
1432                 } else {
1433                     self.failure(&format!(
1434                         "For more information about this error, try \
1435                          `rustc --explain {}`.",
1436                         &error_codes[0]
1437                     ));
1438                 }
1439             }
1440         }
1441     }
1442
1443     fn stash(&mut self, key: (Span, StashKey), diagnostic: Diagnostic) {
1444         // Track the diagnostic for counts, but don't panic-if-treat-err-as-bug
1445         // yet; that happens when we actually emit the diagnostic.
1446         if diagnostic.is_error() {
1447             if matches!(diagnostic.level, Level::Error { lint: true }) {
1448                 self.lint_err_count += 1;
1449             } else {
1450                 self.err_count += 1;
1451             }
1452         } else {
1453             // Warnings are only automatically flushed if they're forced.
1454             if diagnostic.is_force_warn() {
1455                 self.warn_count += 1;
1456             }
1457         }
1458
1459         // FIXME(Centril, #69537): Consider reintroducing panic on overwriting a stashed diagnostic
1460         // if/when we have a more robust macro-friendly replacement for `(span, key)` as a key.
1461         // See the PR for a discussion.
1462         self.stashed_diagnostics.insert(key, diagnostic);
1463     }
1464
1465     fn steal(&mut self, key: (Span, StashKey)) -> Option<Diagnostic> {
1466         let diagnostic = self.stashed_diagnostics.remove(&key)?;
1467         if diagnostic.is_error() {
1468             if matches!(diagnostic.level, Level::Error { lint: true }) {
1469                 self.lint_err_count -= 1;
1470             } else {
1471                 self.err_count -= 1;
1472             }
1473         } else {
1474             if diagnostic.is_force_warn() {
1475                 self.warn_count -= 1;
1476             }
1477         }
1478         Some(diagnostic)
1479     }
1480
1481     #[inline]
1482     fn err_count(&self) -> usize {
1483         self.err_count
1484     }
1485
1486     fn has_errors(&self) -> bool {
1487         self.err_count() > 0
1488     }
1489     fn has_errors_or_lint_errors(&self) -> bool {
1490         self.has_errors() || self.lint_err_count > 0
1491     }
1492     fn has_errors_or_delayed_span_bugs(&self) -> bool {
1493         self.has_errors() || !self.delayed_span_bugs.is_empty()
1494     }
1495     fn has_any_message(&self) -> bool {
1496         self.err_count() > 0 || self.lint_err_count > 0 || self.warn_count > 0
1497     }
1498
1499     fn is_compilation_going_to_fail(&self) -> bool {
1500         self.has_errors() || self.lint_err_count > 0 || !self.delayed_span_bugs.is_empty()
1501     }
1502
1503     fn abort_if_errors(&mut self) {
1504         self.emit_stashed_diagnostics();
1505
1506         if self.has_errors() {
1507             FatalError.raise();
1508         }
1509     }
1510
1511     #[track_caller]
1512     fn span_bug(&mut self, sp: impl Into<MultiSpan>, msg: impl Into<DiagnosticMessage>) -> ! {
1513         self.emit_diag_at_span(Diagnostic::new(Bug, msg), sp);
1514         panic::panic_any(ExplicitBug);
1515     }
1516
1517     fn emit_diag_at_span(&mut self, mut diag: Diagnostic, sp: impl Into<MultiSpan>) {
1518         self.emit_diagnostic(diag.set_span(sp));
1519     }
1520
1521     #[track_caller]
1522     fn delay_span_bug(
1523         &mut self,
1524         sp: impl Into<MultiSpan>,
1525         msg: impl Into<DiagnosticMessage>,
1526     ) -> ErrorGuaranteed {
1527         // This is technically `self.treat_err_as_bug()` but `delay_span_bug` is called before
1528         // incrementing `err_count` by one, so we need to +1 the comparing.
1529         // FIXME: Would be nice to increment err_count in a more coherent way.
1530         if self.flags.treat_err_as_bug.map_or(false, |c| {
1531             self.err_count() + self.lint_err_count + self.delayed_bug_count() + 1 >= c.get()
1532         }) {
1533             // FIXME: don't abort here if report_delayed_bugs is off
1534             self.span_bug(sp, msg);
1535         }
1536         let mut diagnostic = Diagnostic::new(Level::DelayedBug, msg);
1537         diagnostic.set_span(sp.into());
1538         diagnostic.note(&format!("delayed at {}", std::panic::Location::caller()));
1539         self.emit_diagnostic(&mut diagnostic).unwrap()
1540     }
1541
1542     // FIXME(eddyb) note the comment inside `impl Drop for HandlerInner`, that's
1543     // where the explanation of what "good path" is (also, it should be renamed).
1544     fn delay_good_path_bug(&mut self, msg: impl Into<DiagnosticMessage>) {
1545         let mut diagnostic = Diagnostic::new(Level::DelayedBug, msg);
1546         if self.flags.report_delayed_bugs {
1547             self.emit_diagnostic(&mut diagnostic);
1548         }
1549         let backtrace = std::backtrace::Backtrace::force_capture();
1550         self.delayed_good_path_bugs.push(DelayedDiagnostic::with_backtrace(diagnostic, backtrace));
1551     }
1552
1553     fn failure(&mut self, msg: impl Into<DiagnosticMessage>) {
1554         self.emit_diagnostic(&mut Diagnostic::new(FailureNote, msg));
1555     }
1556
1557     fn fatal(&mut self, msg: impl Into<DiagnosticMessage>) -> FatalError {
1558         self.emit(Fatal, msg);
1559         FatalError
1560     }
1561
1562     fn err(&mut self, msg: impl Into<DiagnosticMessage>) -> ErrorGuaranteed {
1563         self.emit(Error { lint: false }, msg)
1564     }
1565
1566     /// Emit an error; level should be `Error` or `Fatal`.
1567     fn emit(&mut self, level: Level, msg: impl Into<DiagnosticMessage>) -> ErrorGuaranteed {
1568         if self.treat_err_as_bug() {
1569             self.bug(msg);
1570         }
1571         self.emit_diagnostic(&mut Diagnostic::new(level, msg)).unwrap()
1572     }
1573
1574     fn bug(&mut self, msg: impl Into<DiagnosticMessage>) -> ! {
1575         self.emit_diagnostic(&mut Diagnostic::new(Bug, msg));
1576         panic::panic_any(ExplicitBug);
1577     }
1578
1579     fn flush_delayed(
1580         &mut self,
1581         bugs: impl IntoIterator<Item = Diagnostic>,
1582         explanation: impl Into<DiagnosticMessage> + Copy,
1583     ) {
1584         let mut no_bugs = true;
1585         for mut bug in bugs {
1586             if no_bugs {
1587                 // Put the overall explanation before the `DelayedBug`s, to
1588                 // frame them better (e.g. separate warnings from them).
1589                 self.emit_diagnostic(&mut Diagnostic::new(Bug, explanation));
1590                 no_bugs = false;
1591             }
1592
1593             // "Undelay" the `DelayedBug`s (into plain `Bug`s).
1594             if bug.level != Level::DelayedBug {
1595                 // NOTE(eddyb) not panicking here because we're already producing
1596                 // an ICE, and the more information the merrier.
1597                 bug.note(&format!(
1598                     "`flushed_delayed` got diagnostic with level {:?}, \
1599                      instead of the expected `DelayedBug`",
1600                     bug.level,
1601                 ));
1602             }
1603             bug.level = Level::Bug;
1604
1605             self.emit_diagnostic(&mut bug);
1606         }
1607
1608         // Panic with `ExplicitBug` to avoid "unexpected panic" messages.
1609         if !no_bugs {
1610             panic::panic_any(ExplicitBug);
1611         }
1612     }
1613
1614     fn bump_lint_err_count(&mut self) {
1615         self.lint_err_count += 1;
1616         self.panic_if_treat_err_as_bug();
1617     }
1618
1619     fn bump_err_count(&mut self) {
1620         self.err_count += 1;
1621         self.panic_if_treat_err_as_bug();
1622     }
1623
1624     fn bump_warn_count(&mut self) {
1625         self.warn_count += 1;
1626     }
1627
1628     fn panic_if_treat_err_as_bug(&self) {
1629         if self.treat_err_as_bug() {
1630             match (
1631                 self.err_count() + self.lint_err_count,
1632                 self.delayed_bug_count(),
1633                 self.flags.treat_err_as_bug.map(|c| c.get()).unwrap_or(0),
1634             ) {
1635                 (1, 0, 1) => panic!("aborting due to `-Z treat-err-as-bug=1`"),
1636                 (0, 1, 1) => panic!("aborting due delayed bug with `-Z treat-err-as-bug=1`"),
1637                 (count, delayed_count, as_bug) => {
1638                     if delayed_count > 0 {
1639                         panic!(
1640                             "aborting after {} errors and {} delayed bugs due to `-Z treat-err-as-bug={}`",
1641                             count, delayed_count, as_bug,
1642                         )
1643                     } else {
1644                         panic!(
1645                             "aborting after {} errors due to `-Z treat-err-as-bug={}`",
1646                             count, as_bug,
1647                         )
1648                     }
1649                 }
1650             }
1651         }
1652     }
1653 }
1654
1655 struct DelayedDiagnostic {
1656     inner: Diagnostic,
1657     note: Backtrace,
1658 }
1659
1660 impl DelayedDiagnostic {
1661     fn with_backtrace(diagnostic: Diagnostic, backtrace: Backtrace) -> Self {
1662         DelayedDiagnostic { inner: diagnostic, note: backtrace }
1663     }
1664
1665     fn decorate(mut self) -> Diagnostic {
1666         self.inner.note(&format!("delayed at {}", self.note));
1667         self.inner
1668     }
1669 }
1670
1671 #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug, Encodable, Decodable)]
1672 pub enum Level {
1673     Bug,
1674     DelayedBug,
1675     Fatal,
1676     Error {
1677         /// If this error comes from a lint, don't abort compilation even when abort_if_errors() is called.
1678         lint: bool,
1679     },
1680     /// This [`LintExpectationId`] is used for expected lint diagnostics, which should
1681     /// also emit a warning due to the `force-warn` flag. In all other cases this should
1682     /// be `None`.
1683     Warning(Option<LintExpectationId>),
1684     Note,
1685     /// A note that is only emitted once.
1686     OnceNote,
1687     Help,
1688     FailureNote,
1689     Allow,
1690     Expect(LintExpectationId),
1691 }
1692
1693 impl fmt::Display for Level {
1694     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1695         self.to_str().fmt(f)
1696     }
1697 }
1698
1699 impl Level {
1700     fn color(self) -> ColorSpec {
1701         let mut spec = ColorSpec::new();
1702         match self {
1703             Bug | DelayedBug | Fatal | Error { .. } => {
1704                 spec.set_fg(Some(Color::Red)).set_intense(true);
1705             }
1706             Warning(_) => {
1707                 spec.set_fg(Some(Color::Yellow)).set_intense(cfg!(windows));
1708             }
1709             Note | OnceNote => {
1710                 spec.set_fg(Some(Color::Green)).set_intense(true);
1711             }
1712             Help => {
1713                 spec.set_fg(Some(Color::Cyan)).set_intense(true);
1714             }
1715             FailureNote => {}
1716             Allow | Expect(_) => unreachable!(),
1717         }
1718         spec
1719     }
1720
1721     pub fn to_str(self) -> &'static str {
1722         match self {
1723             Bug | DelayedBug => "error: internal compiler error",
1724             Fatal | Error { .. } => "error",
1725             Warning(_) => "warning",
1726             Note | OnceNote => "note",
1727             Help => "help",
1728             FailureNote => "failure-note",
1729             Allow => panic!("Shouldn't call on allowed error"),
1730             Expect(_) => panic!("Shouldn't call on expected error"),
1731         }
1732     }
1733
1734     pub fn is_failure_note(&self) -> bool {
1735         matches!(*self, FailureNote)
1736     }
1737
1738     pub fn get_expectation_id(&self) -> Option<LintExpectationId> {
1739         match self {
1740             Level::Expect(id) | Level::Warning(Some(id)) => Some(*id),
1741             _ => None,
1742         }
1743     }
1744 }
1745
1746 // FIXME(eddyb) this doesn't belong here AFAICT, should be moved to callsite.
1747 pub fn add_elided_lifetime_in_path_suggestion(
1748     source_map: &SourceMap,
1749     diag: &mut Diagnostic,
1750     n: usize,
1751     path_span: Span,
1752     incl_angl_brckt: bool,
1753     insertion_span: Span,
1754 ) {
1755     diag.span_label(path_span, format!("expected lifetime parameter{}", pluralize!(n)));
1756     if !source_map.is_span_accessible(insertion_span) {
1757         // Do not try to suggest anything if generated by a proc-macro.
1758         return;
1759     }
1760     let anon_lts = vec!["'_"; n].join(", ");
1761     let suggestion =
1762         if incl_angl_brckt { format!("<{}>", anon_lts) } else { format!("{}, ", anon_lts) };
1763     diag.span_suggestion_verbose(
1764         insertion_span.shrink_to_hi(),
1765         &format!("indicate the anonymous lifetime{}", pluralize!(n)),
1766         suggestion,
1767         Applicability::MachineApplicable,
1768     );
1769 }
1770
1771 /// Useful type to use with `Result<>` indicate that an error has already
1772 /// been reported to the user, so no need to continue checking.
1773 #[derive(Clone, Copy, Debug, Encodable, Decodable, Hash, PartialEq, Eq, PartialOrd, Ord)]
1774 #[derive(HashStable_Generic)]
1775 pub struct ErrorGuaranteed(());
1776
1777 impl ErrorGuaranteed {
1778     /// To be used only if you really know what you are doing... ideally, we would find a way to
1779     /// eliminate all calls to this method.
1780     pub fn unchecked_claim_error_was_emitted() -> Self {
1781         ErrorGuaranteed(())
1782     }
1783 }