mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-23 01:36:55 +00:00
345 lines
9.6 KiB
Rust
345 lines
9.6 KiB
Rust
use rustc_errors::codes::*;
|
|
use rustc_errors::{Applicability, Diag, EmissionGuarantee, LintDiagnostic, Subdiagnostic};
|
|
use rustc_macros::{Diagnostic, LintDiagnostic, Subdiagnostic};
|
|
use rustc_middle::mir::AssertKind;
|
|
use rustc_middle::query::Key;
|
|
use rustc_middle::ty::TyCtxt;
|
|
use rustc_session::lint::{self, Lint};
|
|
use rustc_span::def_id::DefId;
|
|
use rustc_span::{Ident, Span, Symbol};
|
|
|
|
use crate::fluent_generated as fluent;
|
|
|
|
/// Emit diagnostic for calls to `#[inline(always)]`-annotated functions with a
|
|
/// `#[target_feature]` attribute where the caller enables a different set of target features.
|
|
pub(crate) fn emit_inline_always_target_feature_diagnostic<'a, 'tcx>(
|
|
tcx: TyCtxt<'tcx>,
|
|
call_span: Span,
|
|
callee_def_id: DefId,
|
|
caller_def_id: DefId,
|
|
callee_only: &[&'a str],
|
|
) {
|
|
let callee = tcx.def_path_str(callee_def_id);
|
|
let caller = tcx.def_path_str(caller_def_id);
|
|
|
|
tcx.node_span_lint(
|
|
lint::builtin::INLINE_ALWAYS_MISMATCHING_TARGET_FEATURES,
|
|
tcx.local_def_id_to_hir_id(caller_def_id.as_local().unwrap()),
|
|
call_span,
|
|
|lint| {
|
|
lint.primary_message(format!(
|
|
"call to `#[inline(always)]`-annotated `{callee}` \
|
|
requires the same target features to be inlined"
|
|
));
|
|
lint.note("function will not be inlined");
|
|
|
|
lint.note(format!(
|
|
"the following target features are on `{callee}` but missing from `{caller}`: {}",
|
|
callee_only.join(", ")
|
|
));
|
|
lint.span_note(callee_def_id.default_span(tcx), format!("`{callee}` is defined here"));
|
|
|
|
let feats = callee_only.join(",");
|
|
lint.span_suggestion(
|
|
tcx.def_span(caller_def_id).shrink_to_lo(),
|
|
format!("add `#[target_feature]` attribute to `{caller}`"),
|
|
format!("#[target_feature(enable = \"{feats}\")]\n"),
|
|
lint::Applicability::MaybeIncorrect,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_unconditional_recursion)]
|
|
#[help]
|
|
pub(crate) struct UnconditionalRecursion {
|
|
#[label]
|
|
pub(crate) span: Span,
|
|
#[label(mir_transform_unconditional_recursion_call_site_label)]
|
|
pub(crate) call_sites: Vec<Span>,
|
|
}
|
|
|
|
#[derive(Diagnostic)]
|
|
#[diag(mir_transform_force_inline_attr)]
|
|
#[note]
|
|
pub(crate) struct InvalidForceInline {
|
|
#[primary_span]
|
|
pub attr_span: Span,
|
|
#[label(mir_transform_callee)]
|
|
pub callee_span: Span,
|
|
pub callee: String,
|
|
pub reason: &'static str,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
pub(crate) enum ConstMutate {
|
|
#[diag(mir_transform_const_modify)]
|
|
#[note]
|
|
Modify {
|
|
#[note(mir_transform_const_defined_here)]
|
|
konst: Span,
|
|
},
|
|
#[diag(mir_transform_const_mut_borrow)]
|
|
#[note]
|
|
#[note(mir_transform_note2)]
|
|
MutBorrow {
|
|
#[note(mir_transform_note3)]
|
|
method_call: Option<Span>,
|
|
#[note(mir_transform_const_defined_here)]
|
|
konst: Span,
|
|
},
|
|
}
|
|
|
|
#[derive(Diagnostic)]
|
|
#[diag(mir_transform_unaligned_packed_ref, code = E0793)]
|
|
#[note]
|
|
#[note(mir_transform_note_ub)]
|
|
#[help]
|
|
pub(crate) struct UnalignedPackedRef {
|
|
#[primary_span]
|
|
pub span: Span,
|
|
}
|
|
|
|
#[derive(Diagnostic)]
|
|
#[diag(mir_transform_unknown_pass_name)]
|
|
pub(crate) struct UnknownPassName<'a> {
|
|
pub(crate) name: &'a str,
|
|
}
|
|
|
|
pub(crate) struct AssertLint<P> {
|
|
pub span: Span,
|
|
pub assert_kind: AssertKind<P>,
|
|
pub lint_kind: AssertLintKind,
|
|
}
|
|
|
|
pub(crate) enum AssertLintKind {
|
|
ArithmeticOverflow,
|
|
UnconditionalPanic,
|
|
}
|
|
|
|
impl<'a, P: std::fmt::Debug> LintDiagnostic<'a, ()> for AssertLint<P> {
|
|
fn decorate_lint<'b>(self, diag: &'b mut Diag<'a, ()>) {
|
|
diag.primary_message(match self.lint_kind {
|
|
AssertLintKind::ArithmeticOverflow => fluent::mir_transform_arithmetic_overflow,
|
|
AssertLintKind::UnconditionalPanic => fluent::mir_transform_operation_will_panic,
|
|
});
|
|
let label = self.assert_kind.diagnostic_message();
|
|
self.assert_kind.add_args(&mut |name, value| {
|
|
diag.arg(name, value);
|
|
});
|
|
diag.span_label(self.span, label);
|
|
}
|
|
}
|
|
|
|
impl AssertLintKind {
|
|
pub(crate) fn lint(&self) -> &'static Lint {
|
|
match self {
|
|
AssertLintKind::ArithmeticOverflow => lint::builtin::ARITHMETIC_OVERFLOW,
|
|
AssertLintKind::UnconditionalPanic => lint::builtin::UNCONDITIONAL_PANIC,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_ffi_unwind_call)]
|
|
pub(crate) struct FfiUnwindCall {
|
|
#[label(mir_transform_ffi_unwind_call)]
|
|
pub span: Span,
|
|
pub foreign: bool,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_fn_item_ref)]
|
|
pub(crate) struct FnItemRef {
|
|
#[suggestion(code = "{sugg}", applicability = "unspecified")]
|
|
pub span: Span,
|
|
pub sugg: String,
|
|
pub ident: Ident,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_unused_capture_maybe_capture_ref)]
|
|
#[help]
|
|
pub(crate) struct UnusedCaptureMaybeCaptureRef {
|
|
pub name: Symbol,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_unused_var_assigned_only)]
|
|
#[note]
|
|
pub(crate) struct UnusedVarAssignedOnly {
|
|
pub name: Symbol,
|
|
#[subdiagnostic]
|
|
pub typo: Option<PatternTypo>,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_unused_assign)]
|
|
pub(crate) struct UnusedAssign {
|
|
pub name: Symbol,
|
|
#[subdiagnostic]
|
|
pub suggestion: Option<UnusedAssignSuggestion>,
|
|
#[help]
|
|
pub help: bool,
|
|
}
|
|
|
|
#[derive(Subdiagnostic)]
|
|
#[multipart_suggestion(mir_transform_unused_assign_suggestion, applicability = "maybe-incorrect")]
|
|
pub(crate) struct UnusedAssignSuggestion {
|
|
pub pre: &'static str,
|
|
#[suggestion_part(code = "{pre}mut ")]
|
|
pub ty_span: Option<Span>,
|
|
#[suggestion_part(code = "")]
|
|
pub ty_ref_span: Span,
|
|
#[suggestion_part(code = "*")]
|
|
pub pre_lhs_span: Span,
|
|
#[suggestion_part(code = "")]
|
|
pub rhs_borrow_span: Span,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_unused_assign_passed)]
|
|
#[help]
|
|
pub(crate) struct UnusedAssignPassed {
|
|
pub name: Symbol,
|
|
}
|
|
|
|
#[derive(LintDiagnostic)]
|
|
#[diag(mir_transform_unused_variable)]
|
|
pub(crate) struct UnusedVariable {
|
|
pub name: Symbol,
|
|
#[subdiagnostic]
|
|
pub string_interp: Vec<UnusedVariableStringInterp>,
|
|
#[subdiagnostic]
|
|
pub sugg: UnusedVariableSugg,
|
|
}
|
|
|
|
#[derive(Subdiagnostic)]
|
|
pub(crate) enum UnusedVariableSugg {
|
|
#[multipart_suggestion(
|
|
mir_transform_unused_variable_try_ignore,
|
|
applicability = "machine-applicable"
|
|
)]
|
|
TryIgnore {
|
|
#[suggestion_part(code = "{name}: _")]
|
|
shorthands: Vec<Span>,
|
|
#[suggestion_part(code = "_")]
|
|
non_shorthands: Vec<Span>,
|
|
name: Symbol,
|
|
},
|
|
|
|
#[multipart_suggestion(
|
|
mir_transform_unused_var_underscore,
|
|
applicability = "machine-applicable"
|
|
)]
|
|
TryPrefix {
|
|
#[suggestion_part(code = "_{name}")]
|
|
spans: Vec<Span>,
|
|
name: Symbol,
|
|
#[subdiagnostic]
|
|
typo: Option<PatternTypo>,
|
|
},
|
|
|
|
#[help(mir_transform_unused_variable_args_in_macro)]
|
|
NoSugg {
|
|
#[primary_span]
|
|
span: Span,
|
|
name: Symbol,
|
|
},
|
|
}
|
|
|
|
pub(crate) struct UnusedVariableStringInterp {
|
|
pub lit: Span,
|
|
}
|
|
|
|
impl Subdiagnostic for UnusedVariableStringInterp {
|
|
fn add_to_diag<G: EmissionGuarantee>(self, diag: &mut Diag<'_, G>) {
|
|
diag.span_label(
|
|
self.lit,
|
|
crate::fluent_generated::mir_transform_maybe_string_interpolation,
|
|
);
|
|
diag.multipart_suggestion(
|
|
crate::fluent_generated::mir_transform_string_interpolation_only_works,
|
|
vec![
|
|
(self.lit.shrink_to_lo(), String::from("format!(")),
|
|
(self.lit.shrink_to_hi(), String::from(")")),
|
|
],
|
|
Applicability::MachineApplicable,
|
|
);
|
|
}
|
|
}
|
|
|
|
#[derive(Subdiagnostic)]
|
|
#[multipart_suggestion(
|
|
mir_transform_unused_variable_typo,
|
|
style = "verbose",
|
|
applicability = "maybe-incorrect"
|
|
)]
|
|
pub(crate) struct PatternTypo {
|
|
#[suggestion_part(code = "{code}")]
|
|
pub span: Span,
|
|
pub code: String,
|
|
pub item_name: Symbol,
|
|
pub kind: &'static str,
|
|
}
|
|
|
|
pub(crate) struct MustNotSupend<'a, 'tcx> {
|
|
pub tcx: TyCtxt<'tcx>,
|
|
pub yield_sp: Span,
|
|
pub reason: Option<MustNotSuspendReason>,
|
|
pub src_sp: Span,
|
|
pub pre: &'a str,
|
|
pub def_id: DefId,
|
|
pub post: &'a str,
|
|
}
|
|
|
|
// Needed for def_path_str
|
|
impl<'a> LintDiagnostic<'a, ()> for MustNotSupend<'_, '_> {
|
|
fn decorate_lint<'b>(self, diag: &'b mut rustc_errors::Diag<'a, ()>) {
|
|
diag.primary_message(fluent::mir_transform_must_not_suspend);
|
|
diag.span_label(self.yield_sp, fluent::_subdiag::label);
|
|
if let Some(reason) = self.reason {
|
|
diag.subdiagnostic(reason);
|
|
}
|
|
diag.span_help(self.src_sp, fluent::_subdiag::help);
|
|
diag.arg("pre", self.pre);
|
|
diag.arg("def_path", self.tcx.def_path_str(self.def_id));
|
|
diag.arg("post", self.post);
|
|
}
|
|
}
|
|
|
|
#[derive(Subdiagnostic)]
|
|
#[note(mir_transform_note)]
|
|
pub(crate) struct MustNotSuspendReason {
|
|
#[primary_span]
|
|
pub span: Span,
|
|
pub reason: String,
|
|
}
|
|
|
|
#[derive(Diagnostic)]
|
|
#[diag(mir_transform_force_inline)]
|
|
#[note]
|
|
pub(crate) struct ForceInlineFailure {
|
|
#[label(mir_transform_caller)]
|
|
pub caller_span: Span,
|
|
#[label(mir_transform_callee)]
|
|
pub callee_span: Span,
|
|
#[label(mir_transform_attr)]
|
|
pub attr_span: Span,
|
|
#[primary_span]
|
|
#[label(mir_transform_call)]
|
|
pub call_span: Span,
|
|
pub callee: String,
|
|
pub caller: String,
|
|
pub reason: &'static str,
|
|
#[subdiagnostic]
|
|
pub justification: Option<ForceInlineJustification>,
|
|
}
|
|
|
|
#[derive(Subdiagnostic)]
|
|
#[note(mir_transform_force_inline_justification)]
|
|
pub(crate) struct ForceInlineJustification {
|
|
pub sym: Symbol,
|
|
}
|