2024-10-31 14:23:38 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
use std::{fmt, io};
|
2023-05-17 10:30:14 +00:00
|
|
|
|
2024-02-29 00:58:51 +00:00
|
|
|
use rustc_errors::codes::*;
|
|
|
|
use rustc_errors::{DiagArgName, DiagArgValue, DiagMessage};
|
2024-04-29 01:14:55 +00:00
|
|
|
use rustc_macros::{Diagnostic, Subdiagnostic};
|
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]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct DropCheckOverflow<'tcx> {
|
2022-08-26 03:24:09 +00:00
|
|
|
#[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
|
|
|
|
2024-10-31 14:23:38 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_failed_writing_file)]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct FailedWritingFile<'a> {
|
2024-10-31 14:23:38 +00:00
|
|
|
pub path: &'a Path,
|
|
|
|
pub error: io::Error,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(middle_opaque_hidden_type_mismatch)]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct OpaqueHiddenTypeMismatch<'tcx> {
|
2022-08-31 12:16:02 +00:00
|
|
|
pub self_ty: Ty<'tcx>,
|
|
|
|
pub other_ty: Ty<'tcx>,
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub other_span: Span,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub sub: TypeMismatchReason,
|
|
|
|
}
|
|
|
|
|
2025-02-12 05:54:35 +00:00
|
|
|
// FIXME(autodiff): I should get used somewhere
|
2025-01-30 02:31:13 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_unsupported_union)]
|
|
|
|
pub struct UnsupportedUnion {
|
|
|
|
pub ty_name: String,
|
|
|
|
}
|
|
|
|
|
2025-02-12 05:54:35 +00:00
|
|
|
// FIXME(autodiff): I should get used somewhere
|
2025-01-30 02:31:13 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_autodiff_unsafe_inner_const_ref)]
|
Teach structured errors to display short `Ty`
Make it so that every structured error annotated with `#[derive(Diagnostic)]` that has a field of type `Ty<'_>`, the printing of that value into a `String` will look at the thread-local storage `TyCtxt` in order to shorten to a length appropriate with the terminal width. When this happen, the resulting error will have a note with the file where the full type name was written to.
```
error[E0618]: expected function, found `((..., ..., ..., ...), ..., ..., ...)``
--> long.rs:7:5
|
6 | fn foo(x: D) { //~ `x` has type `(...
| - `x` has type `((..., ..., ..., ...), ..., ..., ...)`
7 | x(); //~ ERROR expected function, found `(...
| ^--
| |
| call expression requires function
|
= note: the full name for the type has been written to 'long.long-type-14182675702747116984.txt'
= note: consider using `--verbose` to print the full type name to the console
```
2025-02-18 01:15:59 +00:00
|
|
|
pub struct AutodiffUnsafeInnerConstRef<'tcx> {
|
2025-01-30 02:31:13 +00:00
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
Teach structured errors to display short `Ty`
Make it so that every structured error annotated with `#[derive(Diagnostic)]` that has a field of type `Ty<'_>`, the printing of that value into a `String` will look at the thread-local storage `TyCtxt` in order to shorten to a length appropriate with the terminal width. When this happen, the resulting error will have a note with the file where the full type name was written to.
```
error[E0618]: expected function, found `((..., ..., ..., ...), ..., ..., ...)``
--> long.rs:7:5
|
6 | fn foo(x: D) { //~ `x` has type `(...
| - `x` has type `((..., ..., ..., ...), ..., ..., ...)`
7 | x(); //~ ERROR expected function, found `(...
| ^--
| |
| call expression requires function
|
= note: the full name for the type has been written to 'long.long-type-14182675702747116984.txt'
= note: consider using `--verbose` to print the full type name to the console
```
2025-02-18 01:15:59 +00:00
|
|
|
pub ty: Ty<'tcx>,
|
2025-01-30 02:31:13 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2023-04-02 10:50:01 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_recursion_limit_reached)]
|
|
|
|
#[help]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct RecursionLimitReached<'tcx> {
|
2023-04-02 10:50:01 +00:00
|
|
|
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)]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct ConstEvalNonIntError {
|
2022-10-02 21:02:57 +00:00
|
|
|
#[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> {
|
2025-02-16 19:26:07 +00:00
|
|
|
#[diag(middle_layout_unknown)]
|
2023-05-17 10:30:14 +00:00
|
|
|
Unknown { ty: Ty<'tcx> },
|
|
|
|
|
2025-02-16 19:26:07 +00:00
|
|
|
#[diag(middle_layout_too_generic)]
|
2025-01-06 10:39:07 +00:00
|
|
|
TooGeneric { ty: Ty<'tcx> },
|
|
|
|
|
2025-02-16 19:26:07 +00:00
|
|
|
#[diag(middle_layout_size_overflow)]
|
2023-05-17 10:30:14 +00:00
|
|
|
Overflow { ty: Ty<'tcx> },
|
|
|
|
|
2025-02-16 19:26:07 +00:00
|
|
|
#[diag(middle_layout_normalization_failure)]
|
2023-05-17 10:30:14 +00:00
|
|
|
NormalizationFailure { ty: Ty<'tcx>, failure_ty: String },
|
|
|
|
|
2025-02-16 19:26:07 +00:00
|
|
|
#[diag(middle_layout_cycle)]
|
2023-05-17 10:30:14 +00:00
|
|
|
Cycle,
|
2023-07-16 23:26:02 +00:00
|
|
|
|
|
|
|
#[diag(middle_layout_references_error)]
|
|
|
|
ReferencesError,
|
2023-05-17 10:30:14 +00:00
|
|
|
}
|
|
|
|
|
2023-09-11 21:09:11 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_erroneous_constant)]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct ErroneousConstant {
|
2023-09-11 21:09:11 +00:00
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
2024-05-24 18:09:40 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(middle_type_length_limit)]
|
|
|
|
#[help(middle_consider_type_length_limit)]
|
2025-02-12 05:54:35 +00:00
|
|
|
pub(crate) struct TypeLengthLimit {
|
2024-05-24 18:09:40 +00:00
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub shrunk: String,
|
|
|
|
#[note(middle_written_to_path)]
|
2024-08-21 04:57:58 +00:00
|
|
|
pub was_written: bool,
|
2024-05-24 18:09:40 +00:00
|
|
|
pub path: PathBuf,
|
|
|
|
pub type_length: usize,
|
|
|
|
}
|