2023-05-17 10:30:14 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
2024-02-29 00:58:51 +00:00
|
|
|
use rustc_errors::{codes::*, DiagArgName, DiagArgValue, DiagMessage};
|
2022-09-18 15:46:56 +00:00
|
|
|
use rustc_macros::Diagnostic;
|
2023-05-16 17:23:38 +00:00
|
|
|
use rustc_span::{Span, Symbol};
|
2022-08-26 03:24:09 +00:00
|
|
|
|
|
|
|
use crate::ty::Ty;
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
Stop using `String` for error codes.
Error codes are integers, but `String` is used everywhere to represent
them. Gross!
This commit introduces `ErrCode`, an integral newtype for error codes,
replacing `String`. It also introduces a constant for every error code,
e.g. `E0123`, and removes the `error_code!` macro. The constants are
imported wherever used with `use rustc_errors::codes::*`.
With the old code, we have three different ways to specify an error code
at a use point:
```
error_code!(E0123) // macro call
struct_span_code_err!(dcx, span, E0123, "msg"); // bare ident arg to macro call
\#[diag(name, code = "E0123")] // string
struct Diag;
```
With the new code, they all use the `E0123` constant.
```
E0123 // constant
struct_span_code_err!(dcx, span, E0123, "msg"); // constant
\#[diag(name, code = E0123)] // constant
struct Diag;
```
The commit also changes the structure of the error code definitions:
- `rustc_error_codes` now just defines a higher-order macro listing the
used error codes and nothing else.
- Because that's now the only thing in the `rustc_error_codes` crate, I
moved it into the `lib.rs` file and removed the `error_codes.rs` file.
- `rustc_errors` uses that macro to define everything, e.g. the error
code constants and the `DIAGNOSTIC_TABLES`. This is in its new
`codes.rs` file.
2024-01-13 23:57:07 +00:00
|
|
|
#[diag(middle_drop_check_overflow, code = E0320)]
|
2022-08-26 03:24:09 +00:00
|
|
|
#[note]
|
|
|
|
pub struct DropCheckOverflow<'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub ty: Ty<'tcx>,
|
2022-09-05 15:18:18 +00:00
|
|
|
pub overflow_ty: Ty<'tcx>,
|
2022-08-26 03:24:09 +00:00
|
|
|
}
|
2022-08-31 12:16:02 +00:00
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(middle_opaque_hidden_type_mismatch)]
|
2022-08-31 12:16:02 +00:00
|
|
|
pub struct OpaqueHiddenTypeMismatch<'tcx> {
|
|
|
|
pub self_ty: Ty<'tcx>,
|
|
|
|
pub other_ty: Ty<'tcx>,
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub other_span: Span,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub sub: TypeMismatchReason,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:47:31 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
2022-08-31 12:16:02 +00:00
|
|
|
pub enum TypeMismatchReason {
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(middle_conflict_types)]
|
2022-08-31 12:16:02 +00:00
|
|
|
ConflictType {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
},
|
2022-10-22 09:07:54 +00:00
|
|
|
#[note(middle_previous_use_here)]
|
2022-08-31 12:16:02 +00:00
|
|
|
PreviousUse {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
},
|
|
|
|
}
|
2022-09-01 14:09:45 +00:00
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(middle_limit_invalid)]
|
2022-09-01 14:09:45 +00:00
|
|
|
pub struct LimitInvalid<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
#[label]
|
|
|
|
pub value_span: Span,
|
|
|
|
pub error_str: &'a str,
|
|
|
|
}
|
2022-10-02 21:02:57 +00:00
|
|
|
|
2023-04-02 10:50:01 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_recursion_limit_reached)]
|
|
|
|
#[help]
|
|
|
|
pub struct RecursionLimitReached<'tcx> {
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
pub suggested_limit: rustc_session::Limit,
|
|
|
|
}
|
|
|
|
|
2022-10-02 21:02:57 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(middle_const_eval_non_int)]
|
2022-10-02 21:02:57 +00:00
|
|
|
pub struct ConstEvalNonIntError {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2022-10-30 19:10:35 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_strict_coherence_needs_negative_coherence)]
|
|
|
|
pub(crate) struct StrictCoherenceNeedsNegativeCoherence {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
#[label]
|
|
|
|
pub attr_span: Option<Span>,
|
|
|
|
}
|
2022-11-07 18:47:32 +00:00
|
|
|
|
2023-05-16 17:23:38 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_requires_lang_item)]
|
|
|
|
pub(crate) struct RequiresLangItem {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Option<Span>,
|
|
|
|
pub name: Symbol,
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:47:32 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_const_not_used_in_type_alias)]
|
|
|
|
pub(super) struct ConstNotUsedTraitAlias {
|
|
|
|
pub ct: String,
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2023-05-17 10:30:14 +00:00
|
|
|
|
|
|
|
pub struct CustomSubdiagnostic<'a> {
|
2024-02-29 00:58:51 +00:00
|
|
|
pub msg: fn() -> DiagMessage,
|
2024-02-23 03:37:48 +00:00
|
|
|
pub add_args: Box<dyn FnOnce(&mut dyn FnMut(DiagArgName, DiagArgValue)) + 'a>,
|
2023-05-17 10:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> CustomSubdiagnostic<'a> {
|
2024-02-29 00:58:51 +00:00
|
|
|
pub fn label(x: fn() -> DiagMessage) -> Self {
|
2023-05-17 10:30:14 +00:00
|
|
|
Self::label_and_then(x, |_| {})
|
|
|
|
}
|
2024-02-23 03:37:48 +00:00
|
|
|
pub fn label_and_then<F: FnOnce(&mut dyn FnMut(DiagArgName, DiagArgValue)) + 'a>(
|
2024-02-29 00:58:51 +00:00
|
|
|
msg: fn() -> DiagMessage,
|
2023-05-17 10:30:14 +00:00
|
|
|
f: F,
|
|
|
|
) -> Self {
|
|
|
|
Self { msg, add_args: Box::new(move |x| f(x)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for CustomSubdiagnostic<'_> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.debug_struct("CustomSubdiagnostic").finish_non_exhaustive()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
pub enum LayoutError<'tcx> {
|
|
|
|
#[diag(middle_unknown_layout)]
|
|
|
|
Unknown { ty: Ty<'tcx> },
|
|
|
|
|
|
|
|
#[diag(middle_values_too_big)]
|
|
|
|
Overflow { ty: Ty<'tcx> },
|
|
|
|
|
|
|
|
#[diag(middle_cannot_be_normalized)]
|
|
|
|
NormalizationFailure { ty: Ty<'tcx>, failure_ty: String },
|
|
|
|
|
|
|
|
#[diag(middle_cycle)]
|
|
|
|
Cycle,
|
2023-07-16 23:26:02 +00:00
|
|
|
|
|
|
|
#[diag(middle_layout_references_error)]
|
|
|
|
ReferencesError,
|
2023-05-17 10:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_adjust_for_foreign_abi_error)]
|
|
|
|
pub struct UnsupportedFnAbi {
|
|
|
|
pub arch: Symbol,
|
|
|
|
pub abi: &'static str,
|
|
|
|
}
|
|
|
|
|
2023-09-11 21:09:11 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_erroneous_constant)]
|
|
|
|
pub struct ErroneousConstant {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
2023-05-17 10:30:14 +00:00
|
|
|
/// Used by `rustc_const_eval`
|
|
|
|
pub use crate::fluent_generated::middle_adjust_for_foreign_abi_error;
|