2023-10-09 19:53:34 +00:00
|
|
|
use rustc_macros::{Diagnostic, Subdiagnostic};
|
2023-07-20 04:20:00 +00:00
|
|
|
use rustc_span::Span;
|
2022-09-01 05:02:35 +00:00
|
|
|
|
2023-10-09 19:53:34 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_unknown_ctarget_feature_prefix)]
|
|
|
|
#[note]
|
|
|
|
pub(crate) struct UnknownCTargetFeaturePrefix<'a> {
|
|
|
|
pub feature: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_unknown_ctarget_feature)]
|
|
|
|
#[note]
|
|
|
|
pub(crate) struct UnknownCTargetFeature<'a> {
|
|
|
|
pub feature: &'a str,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub rust_feature: PossibleFeature<'a>,
|
|
|
|
}
|
|
|
|
|
2024-09-02 09:45:59 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_unstable_ctarget_feature)]
|
|
|
|
#[note]
|
|
|
|
pub(crate) struct UnstableCTargetFeature<'a> {
|
|
|
|
pub feature: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_forbidden_ctarget_feature)]
|
|
|
|
pub(crate) struct ForbiddenCTargetFeature<'a> {
|
|
|
|
pub feature: &'a str,
|
|
|
|
}
|
|
|
|
|
2023-10-09 19:53:34 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
pub(crate) enum PossibleFeature<'a> {
|
|
|
|
#[help(codegen_gcc_possible_feature)]
|
|
|
|
Some { rust_feature: &'a str },
|
|
|
|
#[help(codegen_gcc_consider_filing_feature_request)]
|
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
2022-09-24 18:05:37 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(codegen_gcc_lto_not_supported)]
|
2022-09-01 05:03:05 +00:00
|
|
|
pub(crate) struct LTONotSupported;
|
2022-08-27 03:50:37 +00:00
|
|
|
|
2022-09-24 18:05:37 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(codegen_gcc_unwinding_inline_asm)]
|
2022-08-27 03:44:44 +00:00
|
|
|
pub(crate) struct UnwindingInlineAsm {
|
|
|
|
#[primary_span]
|
2022-05-28 10:43:51 +00:00
|
|
|
pub span: Span,
|
2022-08-27 03:44:44 +00:00
|
|
|
}
|
2023-03-05 17:03:19 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_invalid_minimum_alignment)]
|
|
|
|
pub(crate) struct InvalidMinimumAlignment {
|
|
|
|
pub err: String,
|
|
|
|
}
|
2023-03-05 17:31:16 +00:00
|
|
|
|
2023-10-09 19:53:34 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_copy_bitcode)]
|
|
|
|
pub(crate) struct CopyBitcode {
|
|
|
|
pub err: std::io::Error,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_dynamic_linking_with_lto)]
|
|
|
|
#[note]
|
|
|
|
pub(crate) struct DynamicLinkingWithLTO;
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_lto_disallowed)]
|
|
|
|
pub(crate) struct LtoDisallowed;
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_lto_dylib)]
|
|
|
|
pub(crate) struct LtoDylib;
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(codegen_gcc_lto_bitcode_from_rlib)]
|
|
|
|
pub(crate) struct LtoBitcodeFromRlib {
|
|
|
|
pub gcc_err: String,
|
|
|
|
}
|