2022-08-18 23:04:31 +00:00
|
|
|
//! Errors emitted by ty_utils
|
|
|
|
|
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
|
|
|
use rustc_errors::codes::*;
|
2022-09-18 15:47:31 +00:00
|
|
|
use rustc_macros::{Diagnostic, Subdiagnostic};
|
2023-04-25 08:07:44 +00:00
|
|
|
use rustc_middle::ty::{GenericArg, Ty};
|
2022-08-18 23:04:31 +00:00
|
|
|
use rustc_span::Span;
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(ty_utils_needs_drop_overflow)]
|
2022-08-18 23:04:31 +00:00
|
|
|
pub struct NeedsDropOverflow<'tcx> {
|
|
|
|
pub query_ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(ty_utils_generic_constant_too_complex)]
|
2022-08-18 23:04:31 +00:00
|
|
|
#[help]
|
|
|
|
pub struct GenericConstantTooComplex {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[note(ty_utils_maybe_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
pub maybe_supported: Option<()>,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub sub: GenericConstantTooComplexSub,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:47:31 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
2022-08-18 23:04:31 +00:00
|
|
|
pub enum GenericConstantTooComplexSub {
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_borrow_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
BorrowNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_address_and_deref_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
AddressAndDerefNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_array_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
ArrayNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_block_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
BlockNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_never_to_any_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
NeverToAnyNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_tuple_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
TupleNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_index_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
IndexNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_field_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
FieldNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_const_block_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
ConstBlockNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_adt_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
AdtNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_pointer_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
PointerNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_yield_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
YieldNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_loop_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
LoopNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_box_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
BoxNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_binary_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
BinaryNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_logical_op_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
LogicalOpNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_assign_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
AssignNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_closure_and_return_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
ClosureAndReturnNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_control_flow_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
ControlFlowNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_inline_asm_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
InlineAsmNotSupported(#[primary_span] Span),
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(ty_utils_operation_not_supported)]
|
2022-08-18 23:04:31 +00:00
|
|
|
OperationNotSupported(#[primary_span] Span),
|
|
|
|
}
|
2023-04-07 18:45:17 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(ty_utils_unexpected_fnptr_associated_item)]
|
|
|
|
pub struct UnexpectedFnPtrAssociatedItem {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2023-04-08 19:01:14 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(ty_utils_zero_length_simd_type)]
|
|
|
|
pub struct ZeroLengthSimdType<'tcx> {
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(ty_utils_multiple_array_fields_simd_type)]
|
|
|
|
pub struct MultipleArrayFieldsSimdType<'tcx> {
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(ty_utils_oversized_simd_type)]
|
|
|
|
pub struct OversizedSimdType<'tcx> {
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
pub max_lanes: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
2023-04-10 20:02:52 +00:00
|
|
|
#[diag(ty_utils_non_primitive_simd_type)]
|
2023-04-08 19:01:14 +00:00
|
|
|
pub struct NonPrimitiveSimdType<'tcx> {
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
pub e_ty: Ty<'tcx>,
|
|
|
|
}
|
2023-04-25 08:07:44 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(ty_utils_impl_trait_duplicate_arg)]
|
|
|
|
pub struct DuplicateArg<'tcx> {
|
|
|
|
pub arg: GenericArg<'tcx>,
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
#[note]
|
|
|
|
pub opaque_span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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(ty_utils_impl_trait_not_param, code = E0792)]
|
2023-04-25 08:07:44 +00:00
|
|
|
pub struct NotParam<'tcx> {
|
|
|
|
pub arg: GenericArg<'tcx>,
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
#[note]
|
|
|
|
pub opaque_span: Span,
|
|
|
|
}
|