2022-08-18 21:51:47 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2022-10-13 09:13:02 +00:00
|
|
|
use crate::fluent_generated as fluent;
|
2023-12-18 03:12:39 +00:00
|
|
|
use rustc_errors::{DiagCtxt, DiagnosticBuilder, EmissionGuarantee, IntoDiagnostic, Level};
|
2022-09-18 15:46:56 +00:00
|
|
|
use rustc_macros::{Diagnostic, LintDiagnostic};
|
2023-08-29 17:29:14 +00:00
|
|
|
use rustc_span::{Span, Symbol};
|
2022-08-18 21:51:47 +00:00
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(monomorphize_recursion_limit)]
|
2022-08-18 21:51:47 +00:00
|
|
|
pub struct RecursionLimit {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub shrunk: String,
|
|
|
|
#[note]
|
|
|
|
pub def_span: Span,
|
|
|
|
pub def_path_str: String,
|
2022-10-22 09:07:54 +00:00
|
|
|
#[note(monomorphize_written_to_path)]
|
2022-08-18 21:51:47 +00:00
|
|
|
pub was_written: Option<()>,
|
|
|
|
pub path: PathBuf,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(monomorphize_type_length_limit)]
|
|
|
|
#[help(monomorphize_consider_type_length_limit)]
|
2022-08-18 21:51:47 +00:00
|
|
|
pub struct TypeLengthLimit {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub shrunk: String,
|
2022-10-22 09:07:54 +00:00
|
|
|
#[note(monomorphize_written_to_path)]
|
2022-08-18 21:51:47 +00:00
|
|
|
pub was_written: Option<()>,
|
|
|
|
pub path: PathBuf,
|
|
|
|
pub type_length: usize,
|
|
|
|
}
|
|
|
|
|
2023-08-29 17:29:14 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(monomorphize_no_optimized_mir)]
|
|
|
|
pub struct NoOptimizedMir {
|
|
|
|
#[note]
|
|
|
|
pub span: Span,
|
|
|
|
pub crate_name: Symbol,
|
|
|
|
}
|
|
|
|
|
2022-12-01 17:57:53 +00:00
|
|
|
pub struct UnusedGenericParamsHint {
|
2022-08-18 21:51:47 +00:00
|
|
|
pub span: Span,
|
|
|
|
pub param_spans: Vec<Span>,
|
|
|
|
pub param_names: Vec<String>,
|
|
|
|
}
|
|
|
|
|
2023-12-18 03:12:39 +00:00
|
|
|
impl<G: EmissionGuarantee> IntoDiagnostic<'_, G> for UnusedGenericParamsHint {
|
2022-10-31 15:14:29 +00:00
|
|
|
#[track_caller]
|
2023-12-18 03:12:39 +00:00
|
|
|
fn into_diagnostic(self, dcx: &'_ DiagCtxt, level: Level) -> DiagnosticBuilder<'_, G> {
|
|
|
|
let mut diag =
|
|
|
|
DiagnosticBuilder::new(dcx, level, fluent::monomorphize_unused_generic_params);
|
2023-12-23 22:08:41 +00:00
|
|
|
diag.span(self.span);
|
2022-08-18 21:51:47 +00:00
|
|
|
for (span, name) in self.param_spans.into_iter().zip(self.param_names) {
|
|
|
|
// FIXME: I can figure out how to do a label with a fluent string with a fixed message,
|
|
|
|
// or a label with a dynamic value in a hard-coded string, but I haven't figured out
|
|
|
|
// how to combine the two. 😢
|
2022-12-19 09:31:55 +00:00
|
|
|
diag.span_label(span, format!("generic parameter `{name}` is unused"));
|
2022-08-18 21:51:47 +00:00
|
|
|
}
|
|
|
|
diag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(monomorphize_large_assignments)]
|
2022-08-18 21:51:47 +00:00
|
|
|
#[note]
|
|
|
|
pub struct LargeAssignmentsLint {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub size: u64,
|
|
|
|
pub limit: u64,
|
|
|
|
}
|
2022-08-23 17:20:01 +00:00
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(monomorphize_symbol_already_defined)]
|
2022-08-23 17:20:01 +00:00
|
|
|
pub struct SymbolAlreadyDefined {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Option<Span>,
|
|
|
|
pub symbol: String,
|
|
|
|
}
|
2022-12-08 19:21:08 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(monomorphize_couldnt_dump_mono_stats)]
|
|
|
|
pub struct CouldntDumpMonoStats {
|
|
|
|
pub error: String,
|
|
|
|
}
|
2022-08-19 13:48:15 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(monomorphize_encountered_error_while_instantiating)]
|
|
|
|
pub struct EncounteredErrorWhileInstantiating {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub formatted_item: String,
|
|
|
|
}
|
|
|
|
|
2023-10-02 12:32:31 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(monomorphize_start_not_found)]
|
|
|
|
#[help]
|
|
|
|
pub struct StartNotFound;
|
|
|
|
|
2022-08-19 13:48:15 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(monomorphize_unknown_cgu_collection_mode)]
|
|
|
|
pub struct UnknownCguCollectionMode<'a> {
|
|
|
|
pub mode: &'a str,
|
|
|
|
}
|