-
Notifications
You must be signed in to change notification settings - Fork 490
/
diagnostic.rs
244 lines (225 loc) · 9.83 KB
/
diagnostic.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
use cairo_lang_defs::diagnostic_utils::StableLocation;
use cairo_lang_diagnostics::{
DiagnosticAdded, DiagnosticEntry, DiagnosticLocation, DiagnosticNote, DiagnosticsBuilder,
};
use cairo_lang_semantic as semantic;
use cairo_lang_semantic::corelib::LiteralError;
use cairo_lang_semantic::db::SemanticGroup;
use cairo_lang_semantic::expr::inference::InferenceError;
use cairo_lang_syntax::node::ids::SyntaxStablePtrId;
use crate::Location;
pub type LoweringDiagnostics = DiagnosticsBuilder<LoweringDiagnostic>;
pub trait LoweringDiagnosticsBuilder {
fn report(
&mut self,
stable_ptr: impl Into<SyntaxStablePtrId>,
kind: LoweringDiagnosticKind,
) -> DiagnosticAdded {
self.report_by_location(Location::new(StableLocation::new(stable_ptr.into())), kind)
}
fn report_by_location(
&mut self,
location: Location,
kind: LoweringDiagnosticKind,
) -> DiagnosticAdded;
}
impl LoweringDiagnosticsBuilder for LoweringDiagnostics {
fn report_by_location(
&mut self,
location: Location,
kind: LoweringDiagnosticKind,
) -> DiagnosticAdded {
self.add(LoweringDiagnostic { location, kind })
}
}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct LoweringDiagnostic {
pub location: Location,
pub kind: LoweringDiagnosticKind,
}
impl DiagnosticEntry for LoweringDiagnostic {
type DbType = dyn SemanticGroup;
fn format(&self, db: &Self::DbType) -> String {
match &self.kind {
LoweringDiagnosticKind::Unreachable { .. } => "Unreachable code".into(),
LoweringDiagnosticKind::VariableMoved { .. } => "Variable was previously moved.".into(),
LoweringDiagnosticKind::VariableNotDropped { .. } => "Variable not dropped.".into(),
LoweringDiagnosticKind::DesnappingANonCopyableType { .. } => {
"Cannot desnap a non copyable type.".into()
}
LoweringDiagnosticKind::MatchError(match_err) => match_err.format(),
LoweringDiagnosticKind::CannotInlineFunctionThatMightCallItself => {
"Cannot inline a function that might call itself.".into()
}
LoweringDiagnosticKind::MemberPathLoop => {
"Currently, loops must change the entire variable.".into()
}
LoweringDiagnosticKind::UnexpectedError => {
"Unexpected error has occurred, Please submit a full bug report. \
See https://github.com/starkware-libs/cairo/issues/new/choose for instructions.\
"
.into()
}
LoweringDiagnosticKind::NoPanicFunctionCycle => {
"Call cycle of `nopanic` functions is not allowed.".into()
}
LoweringDiagnosticKind::LiteralError(literal_error) => literal_error.format(db),
LoweringDiagnosticKind::UnsupportedPattern => {
"Inner patterns are not in this context.".into()
}
LoweringDiagnosticKind::Unsupported => "Unsupported feature.".into(),
LoweringDiagnosticKind::FixedSizeArrayNonCopyableType => {
"Fixed size array inner type must implement the `Copy` trait when the array size \
is greater than 1."
.into()
}
LoweringDiagnosticKind::EmptyRepeatedElementFixedSizeArray => {
"Fixed size array repeated element size must be greater than 0.".into()
}
}
}
fn notes(&self, _db: &Self::DbType) -> &[DiagnosticNote] {
&self.location.notes
}
#[allow(unreachable_patterns, clippy::single_match)]
fn location(&self, db: &Self::DbType) -> DiagnosticLocation {
match &self.kind {
LoweringDiagnosticKind::Unreachable { last_statement_ptr } => {
return self
.location
.stable_location
.diagnostic_location_until(db.upcast(), *last_statement_ptr);
}
_ => {}
}
self.location.stable_location.diagnostic_location(db.upcast())
}
fn is_same_kind(&self, _other: &Self) -> bool {
_other.kind == self.kind
}
}
impl MatchError {
fn format(&self) -> String {
match (&self.error, &self.kind) {
(MatchDiagnostic::UnsupportedMatchedType(matched_type), MatchKind::Match) => {
format!("Unsupported matched type. Type: `{}`.", matched_type)
}
(MatchDiagnostic::UnsupportedMatchedType(matched_type), MatchKind::IfLet) => {
format!("Unsupported type in if-let. Type: `{}`.", matched_type)
}
(MatchDiagnostic::UnsupportedMatchedType(matched_type), MatchKind::WhileLet(_, _)) => {
format!("Unsupported type in while-let. Type: `{}`.", matched_type)
}
(MatchDiagnostic::UnsupportedMatchedValueTuple, MatchKind::Match) => {
"Unsupported matched value. Currently, match on tuples only supports enums as \
tuple members."
.into()
}
(MatchDiagnostic::UnsupportedMatchedValueTuple, MatchKind::IfLet) => {
"Unsupported value in if-let. Currently, if-let on tuples only supports enums as \
tuple members."
.into()
}
(MatchDiagnostic::UnsupportedMatchedValueTuple, MatchKind::WhileLet(_, _)) => {
"Unsupported value in while-let. Currently, while-let on tuples only supports \
enums as tuple members."
.into()
}
(MatchDiagnostic::UnsupportedMatchArmNotAVariant, _) => {
"Unsupported pattern - not a variant.".into()
}
(MatchDiagnostic::UnsupportedMatchArmNotATuple, _) => {
"Unsupported pattern - not a tuple.".into()
}
(MatchDiagnostic::UnsupportedMatchArmNotALiteral, MatchKind::Match) => {
"Unsupported match arm - not a literal.".into()
}
(MatchDiagnostic::UnsupportedMatchArmNonSequential, MatchKind::Match) => {
"Unsupported match - numbers must be sequential starting from 0.".into()
}
(MatchDiagnostic::NonExhaustiveMatchFelt252, MatchKind::Match) => {
"Match is non exhaustive - match over a numerical value must have a wildcard card \
pattern (`_`)."
.into()
}
(
MatchDiagnostic::UnsupportedMatchArmNotALiteral
| MatchDiagnostic::UnsupportedMatchArmNonSequential
| MatchDiagnostic::NonExhaustiveMatchFelt252,
MatchKind::IfLet | MatchKind::WhileLet(_, _),
) => unreachable!("Numeric values are not supported in if/while-let conditions."),
(MatchDiagnostic::MissingMatchArm(variant), MatchKind::Match) => {
format!("Missing match arm: `{}` not covered.", variant)
}
(MatchDiagnostic::MissingMatchArm(_), MatchKind::IfLet) => {
unreachable!("If-let is not required to be exhaustive.")
}
(MatchDiagnostic::MissingMatchArm(_), MatchKind::WhileLet(_, _)) => {
unreachable!("While-let is not required to be exhaustive.")
}
(MatchDiagnostic::UnreachableMatchArm, MatchKind::Match) => {
"Unreachable pattern arm.".into()
}
(MatchDiagnostic::UnreachableMatchArm, MatchKind::IfLet) => {
"Unreachable else clause.".into()
}
(MatchDiagnostic::UnreachableMatchArm, MatchKind::WhileLet(_, _)) => {
unreachable!("While-let is does not have two arms.")
}
(MatchDiagnostic::UnsupportedNumericInLetCondition, MatchKind::Match) => {
unreachable!("Numeric values are supported in match conditions.")
}
(MatchDiagnostic::UnsupportedNumericInLetCondition, MatchKind::IfLet) => {
"Numeric values are not supported in if-let conditions.".into()
}
(MatchDiagnostic::UnsupportedNumericInLetCondition, MatchKind::WhileLet(_, _)) => {
"Numeric values are not supported in while-let conditions.".into()
}
}
}
}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub enum LoweringDiagnosticKind {
Unreachable { last_statement_ptr: SyntaxStablePtrId },
VariableMoved { inference_error: InferenceError },
VariableNotDropped { drop_err: InferenceError, destruct_err: InferenceError },
MatchError(MatchError),
DesnappingANonCopyableType { inference_error: InferenceError },
UnexpectedError,
CannotInlineFunctionThatMightCallItself,
MemberPathLoop,
NoPanicFunctionCycle,
LiteralError(LiteralError),
FixedSizeArrayNonCopyableType,
EmptyRepeatedElementFixedSizeArray,
UnsupportedPattern,
Unsupported,
}
/// Error in a match-like construct.
/// contains which construct the error occurred in and the error itself.
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct MatchError {
pub kind: MatchKind,
pub error: MatchDiagnostic,
}
/// The type of branch construct the error occurred in.
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum MatchKind {
Match,
IfLet,
WhileLet(semantic::ExprId, SyntaxStablePtrId),
}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub enum MatchDiagnostic {
/// TODO(TomerStarkware): Get rid of the string and pass the type information directly.
UnsupportedMatchedType(String),
UnsupportedMatchedValueTuple,
UnsupportedMatchArmNotAVariant,
UnsupportedMatchArmNotATuple,
UnreachableMatchArm,
MissingMatchArm(String),
UnsupportedMatchArmNotALiteral,
UnsupportedMatchArmNonSequential,
NonExhaustiveMatchFelt252,
UnsupportedNumericInLetCondition,
}