rust/src/errors.rs

74 lines
1.6 KiB
Rust
Raw Normal View History

use rustc_errors::{DiagnosticArgValue, IntoDiagnosticArg};
2022-09-24 11:05:37 -07:00
use rustc_macros::Diagnostic;
use rustc_span::Span;
use std::borrow::Cow;
2022-09-26 19:57:40 -07:00
struct ExitCode(Option<i32>);
impl IntoDiagnosticArg for ExitCode {
fn into_diagnostic_arg(self) -> DiagnosticArgValue<'static> {
2022-09-26 19:57:40 -07:00
let ExitCode(exit_code) = self;
match exit_code {
Some(t) => t.into_diagnostic_arg(),
None => DiagnosticArgValue::Str(Cow::Borrowed("<signal>")),
}
}
}
2022-08-26 19:32:04 -07:00
2022-09-24 11:05:37 -07:00
#[derive(Diagnostic)]
2022-10-22 11:07:54 +02:00
#[diag(codegen_gcc_lto_not_supported)]
2022-08-31 22:03:05 -07:00
pub(crate) struct LTONotSupported;
2022-08-26 20:50:37 -07:00
2022-09-24 11:05:37 -07:00
#[derive(Diagnostic)]
2022-10-22 11:07:54 +02:00
#[diag(codegen_gcc_unwinding_inline_asm)]
2022-08-26 20:44:44 -07:00
pub(crate) struct UnwindingInlineAsm {
#[primary_span]
pub span: Span,
2022-08-26 20:44:44 -07:00
}
#[derive(Diagnostic)]
#[diag(codegen_gcc_invalid_minimum_alignment)]
pub(crate) struct InvalidMinimumAlignment {
pub err: String,
}
2023-03-05 12:31:16 -05:00
#[derive(Diagnostic)]
#[diag(codegen_gcc_tied_target_features)]
#[help]
pub(crate) struct TiedTargetFeatures {
#[primary_span]
pub span: Span,
pub features: String,
}
2023-05-12 11:40:04 -04: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_load_bitcode)]
pub(crate) struct LoadBitcode {
name: String,
}
#[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,
}