compiler: replace ExternAbi::name calls with formatters

Most of these just format the ABI string, so... just format ExternAbi?
This makes it more consistent and less jank when we can do it.
This commit is contained in:
Jubilee Young 2025-02-11 19:40:29 -08:00
parent 34a5ea911c
commit 32fd1a7b72
16 changed files with 27 additions and 34 deletions

View file

@ -367,9 +367,7 @@ fn push_debuginfo_type_name<'tcx>(
output.push_str(sig.safety.prefix_str()); output.push_str(sig.safety.prefix_str());
if sig.abi != rustc_abi::ExternAbi::Rust { if sig.abi != rustc_abi::ExternAbi::Rust {
output.push_str("extern \""); let _ = write!(output, "extern {} ", sig.abi);
output.push_str(sig.abi.name());
output.push_str("\" ");
} }
output.push_str("fn("); output.push_str("fn(");

View file

@ -93,6 +93,7 @@ into_diag_arg_using_display!(
SplitDebuginfo, SplitDebuginfo,
ExitStatus, ExitStatus,
ErrCode, ErrCode,
rustc_abi::ExternAbi,
); );
impl<I: rustc_type_ir::Interner> IntoDiagArg for rustc_type_ir::TraitRef<I> { impl<I: rustc_type_ir::Interner> IntoDiagArg for rustc_type_ir::TraitRef<I> {

View file

@ -72,17 +72,17 @@ hir_analysis_cmse_entry_generic =
functions with the `"C-cmse-nonsecure-entry"` ABI cannot contain generics in their type functions with the `"C-cmse-nonsecure-entry"` ABI cannot contain generics in their type
hir_analysis_cmse_inputs_stack_spill = hir_analysis_cmse_inputs_stack_spill =
arguments for `"{$abi_name}"` function too large to pass via registers arguments for `{$abi}` function too large to pass via registers
.label = {$plural -> .label = {$plural ->
[false] this argument doesn't [false] this argument doesn't
*[true] these arguments don't *[true] these arguments don't
} fit in the available registers } fit in the available registers
.note = functions with the `"{$abi_name}"` ABI must pass all their arguments via the 4 32-bit available argument registers .note = functions with the `{$abi}` ABI must pass all their arguments via the 4 32-bit available argument registers
hir_analysis_cmse_output_stack_spill = hir_analysis_cmse_output_stack_spill =
return value of `"{$abi_name}"` function too large to pass via registers return value of `{$abi}` function too large to pass via registers
.label = this type doesn't fit in the available registers .label = this type doesn't fit in the available registers
.note1 = functions with the `"{$abi_name}"` ABI must pass their result via the available return registers .note1 = functions with the `{$abi}` ABI must pass their result via the available return registers
.note2 = the result must either be a (transparently wrapped) i64, u64 or f64, or be at most 4 bytes in size .note2 = the result must either be a (transparently wrapped) i64, u64 or f64, or be at most 4 bytes in size
hir_analysis_coerce_pointee_no_field = `CoercePointee` can only be derived on `struct`s with at least one field hir_analysis_coerce_pointee_no_field = `CoercePointee` can only be derived on `struct`s with at least one field

View file

@ -1,5 +1,6 @@
//! Errors emitted by `rustc_hir_analysis`. //! Errors emitted by `rustc_hir_analysis`.
use rustc_abi::ExternAbi;
use rustc_errors::codes::*; use rustc_errors::codes::*;
use rustc_errors::{ use rustc_errors::{
Applicability, Diag, DiagCtxtHandle, Diagnostic, EmissionGuarantee, Level, MultiSpan, Applicability, Diag, DiagCtxtHandle, Diagnostic, EmissionGuarantee, Level, MultiSpan,
@ -1689,7 +1690,7 @@ pub(crate) struct CmseInputsStackSpill {
#[label] #[label]
pub span: Span, pub span: Span,
pub plural: bool, pub plural: bool,
pub abi_name: &'static str, pub abi: ExternAbi,
} }
#[derive(Diagnostic)] #[derive(Diagnostic)]
@ -1700,7 +1701,7 @@ pub(crate) struct CmseOutputStackSpill {
#[primary_span] #[primary_span]
#[label] #[label]
pub span: Span, pub span: Span,
pub abi_name: &'static str, pub abi: ExternAbi,
} }
#[derive(Diagnostic)] #[derive(Diagnostic)]

View file

@ -17,8 +17,6 @@ pub(crate) fn validate_cmse_abi<'tcx>(
abi: ExternAbi, abi: ExternAbi,
fn_sig: ty::PolyFnSig<'tcx>, fn_sig: ty::PolyFnSig<'tcx>,
) { ) {
let abi_name = abi.name();
match abi { match abi {
ExternAbi::CCmseNonSecureCall => { ExternAbi::CCmseNonSecureCall => {
let hir_node = tcx.hir_node(hir_id); let hir_node = tcx.hir_node(hir_id);
@ -56,7 +54,7 @@ pub(crate) fn validate_cmse_abi<'tcx>(
.to(bare_fn_ty.decl.inputs[index].span) .to(bare_fn_ty.decl.inputs[index].span)
.to(bare_fn_ty.decl.inputs.last().unwrap().span); .to(bare_fn_ty.decl.inputs.last().unwrap().span);
let plural = bare_fn_ty.param_names.len() - index != 1; let plural = bare_fn_ty.param_names.len() - index != 1;
dcx.emit_err(errors::CmseInputsStackSpill { span, plural, abi_name }); dcx.emit_err(errors::CmseInputsStackSpill { span, plural, abi });
} }
Err(layout_err) => { Err(layout_err) => {
if should_emit_generic_error(abi, layout_err) { if should_emit_generic_error(abi, layout_err) {
@ -69,7 +67,7 @@ pub(crate) fn validate_cmse_abi<'tcx>(
Ok(true) => {} Ok(true) => {}
Ok(false) => { Ok(false) => {
let span = bare_fn_ty.decl.output.span(); let span = bare_fn_ty.decl.output.span();
dcx.emit_err(errors::CmseOutputStackSpill { span, abi_name }); dcx.emit_err(errors::CmseOutputStackSpill { span, abi });
} }
Err(layout_err) => { Err(layout_err) => {
if should_emit_generic_error(abi, layout_err) { if should_emit_generic_error(abi, layout_err) {
@ -92,7 +90,7 @@ pub(crate) fn validate_cmse_abi<'tcx>(
// ^^^^^^ // ^^^^^^
let span = decl.inputs[index].span.to(decl.inputs.last().unwrap().span); let span = decl.inputs[index].span.to(decl.inputs.last().unwrap().span);
let plural = decl.inputs.len() - index != 1; let plural = decl.inputs.len() - index != 1;
dcx.emit_err(errors::CmseInputsStackSpill { span, plural, abi_name }); dcx.emit_err(errors::CmseInputsStackSpill { span, plural, abi });
} }
Err(layout_err) => { Err(layout_err) => {
if should_emit_generic_error(abi, layout_err) { if should_emit_generic_error(abi, layout_err) {
@ -105,7 +103,7 @@ pub(crate) fn validate_cmse_abi<'tcx>(
Ok(true) => {} Ok(true) => {}
Ok(false) => { Ok(false) => {
let span = decl.output.span(); let span = decl.output.span();
dcx.emit_err(errors::CmseOutputStackSpill { span, abi_name }); dcx.emit_err(errors::CmseOutputStackSpill { span, abi });
} }
Err(layout_err) => { Err(layout_err) => {
if should_emit_generic_error(abi, layout_err) { if should_emit_generic_error(abi, layout_err) {

View file

@ -160,8 +160,7 @@ pub(super) fn decorate_lint(
.decorate_lint(diag); .decorate_lint(diag);
} }
BuiltinLintDiag::MissingAbi(label_span, default_abi) => { BuiltinLintDiag::MissingAbi(label_span, default_abi) => {
lints::MissingAbi { span: label_span, default_abi: default_abi.name() } lints::MissingAbi { span: label_span, default_abi }.decorate_lint(diag);
.decorate_lint(diag);
} }
BuiltinLintDiag::LegacyDeriveHelpers(label_span) => { BuiltinLintDiag::LegacyDeriveHelpers(label_span) => {
lints::LegacyDeriveHelpers { span: label_span }.decorate_lint(diag); lints::LegacyDeriveHelpers { span: label_span }.decorate_lint(diag);

View file

@ -2,6 +2,7 @@
#![allow(rustc::untranslatable_diagnostic)] #![allow(rustc::untranslatable_diagnostic)]
use std::num::NonZero; use std::num::NonZero;
use rustc_abi::ExternAbi;
use rustc_errors::codes::*; use rustc_errors::codes::*;
use rustc_errors::{ use rustc_errors::{
Applicability, Diag, DiagArgValue, DiagMessage, DiagStyledString, ElidedLifetimeInPathSubdiag, Applicability, Diag, DiagArgValue, DiagMessage, DiagStyledString, ElidedLifetimeInPathSubdiag,
@ -2833,9 +2834,9 @@ pub(crate) struct PatternsInFnsWithoutBodySub {
#[derive(LintDiagnostic)] #[derive(LintDiagnostic)]
#[diag(lint_extern_without_abi)] #[diag(lint_extern_without_abi)]
pub(crate) struct MissingAbi { pub(crate) struct MissingAbi {
#[suggestion(code = "extern \"{default_abi}\"", applicability = "machine-applicable")] #[suggestion(code = "extern {default_abi}", applicability = "machine-applicable")]
pub span: Span, pub span: Span,
pub default_abi: &'static str, pub default_abi: ExternAbi,
} }
#[derive(LintDiagnostic)] #[derive(LintDiagnostic)]

View file

@ -161,12 +161,7 @@ impl<'tcx> FunctionItemRefChecker<'_, 'tcx> {
let unsafety = fn_sig.safety().prefix_str(); let unsafety = fn_sig.safety().prefix_str();
let abi = match fn_sig.abi() { let abi = match fn_sig.abi() {
ExternAbi::Rust => String::from(""), ExternAbi::Rust => String::from(""),
other_abi => { other_abi => format!("extern {other_abi} "),
let mut s = String::from("extern \"");
s.push_str(other_abi.name());
s.push_str("\" ");
s
}
}; };
let ident = self.tcx.item_ident(fn_id); let ident = self.tcx.item_ident(fn_id);
let ty_params = fn_args.types().map(|ty| format!("{ty}")); let ty_params = fn_args.types().map(|ty| format!("{ty}"));

View file

@ -2,7 +2,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/suggest-libname-only-1.rs:7:1 --> $DIR/suggest-libname-only-1.rs:7:1
| |
LL | extern { } LL | extern { }
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: `#[warn(missing_abi)]` on by default = note: `#[warn(missing_abi)]` on by default

View file

@ -2,7 +2,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/suggest-libname-only-2.rs:7:1 --> $DIR/suggest-libname-only-2.rs:7:1
| |
LL | extern { } LL | extern { }
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: `#[warn(missing_abi)]` on by default = note: `#[warn(missing_abi)]` on by default

View file

@ -2,7 +2,7 @@ error: extern declarations without an explicit ABI are deprecated
--> $DIR/cli-lint-override.rs:12:1 --> $DIR/cli-lint-override.rs:12:1
| |
LL | extern fn foo() {} LL | extern fn foo() {}
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: requested on the command line with `-F missing-abi` = note: requested on the command line with `-F missing-abi`

View file

@ -2,7 +2,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/cli-lint-override.rs:12:1 --> $DIR/cli-lint-override.rs:12:1
| |
LL | extern fn foo() {} LL | extern fn foo() {}
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: requested on the command line with `--force-warn missing-abi` = note: requested on the command line with `--force-warn missing-abi`

View file

@ -2,7 +2,7 @@ error: extern declarations without an explicit ABI are deprecated
--> $DIR/cli-lint-override.rs:12:1 --> $DIR/cli-lint-override.rs:12:1
| |
LL | extern fn foo() {} LL | extern fn foo() {}
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: requested on the command line with `-D missing-abi` = note: requested on the command line with `-D missing-abi`

View file

@ -55,7 +55,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/bad-lit-suffixes.rs:3:1 --> $DIR/bad-lit-suffixes.rs:3:1
| |
LL | extern LL | extern
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: `#[warn(missing_abi)]` on by default = note: `#[warn(missing_abi)]` on by default
@ -63,7 +63,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/bad-lit-suffixes.rs:7:1 --> $DIR/bad-lit-suffixes.rs:7:1
| |
LL | extern LL | extern
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
error: suffixes on string literals are invalid error: suffixes on string literals are invalid
--> $DIR/bad-lit-suffixes.rs:12:5 --> $DIR/bad-lit-suffixes.rs:12:5

View file

@ -8,7 +8,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/lit-err-in-macro.rs:3:9 --> $DIR/lit-err-in-macro.rs:3:9
| |
LL | extern $abi fn f() {} LL | extern $abi fn f() {}
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
... ...
LL | f!("Foo"__); LL | f!("Foo"__);
| ----------- in this macro invocation | ----------- in this macro invocation

View file

@ -26,7 +26,7 @@ warning: extern declarations without an explicit ABI are deprecated
--> $DIR/inner-attrs.rs:82:1 --> $DIR/inner-attrs.rs:82:1
| |
LL | extern { LL | extern {
| ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
| |
= note: `#[warn(missing_abi)]` on by default = note: `#[warn(missing_abi)]` on by default