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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
use std::ops::Range;

/// Enum representing every warning that can be reported from Ruxnasm.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Warning {
    /// This warnings gets reported when a token is longer than 64 characters and must be cut off.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @a-really-long-label-name-like-seriously-this-is-so-long-why-would-anyone-do-this
    /// ```
    TokenTrimmed {
        /// Span of the cut off part of the token.
        span: Range<usize>,
    },
    /// This warning gets reported when an instruction mode is defined multiple times for a
    /// single instruction, which is valid, but unnecessary.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// ADD2k2
    /// ```
    InstructionModeDefinedMoreThanOnce {
        /// Character representing the instruction mode.
        instruction_mode: char,
        /// The whole instruction.
        instruction: String,
        /// Span of the unnecessary instruction mode character.
        span: Range<usize>,
        /// Span of the instruction mode character defined for the first time.
        other_span: Range<usize>,
    },
    /// This warning gets reported when a macro is never used.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %macro { #0001 }
    /// ```
    MacroUnused {
        /// Name of the unused macro.
        name: String,
        /// Span of the macro definition.
        span: Range<usize>,
    },
    /// This warning gets reported when a label is never used.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @label
    /// ```
    LabelUnused {
        /// Name of the unused label.
        name: String,
        /// Span of the label definition.
        span: Range<usize>,
    },
}

/// Enum representing every error that can be reported from Ruxnasm.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Error {
    /// This error gets reported when an opening parenthesis is not closed i.e. it has
    /// no matching closing parenthesis.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// (
    /// ```
    NoMatchingClosingParenthesis {
        /// Span of the opening parenthesis with no matching closing parenthesis.
        span: Range<usize>,
    },
    /// This error gets reported when a closing parenthesis has no matching opening
    /// parenthesis.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// )
    /// ```
    NoMatchingOpeningParenthesis {
        /// Span of the closing parenthesis with no matching opening parenthesis.
        span: Range<usize>,
    },
    /// This error gets reported when there is no macro name after a macro definition
    /// rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %
    /// ```
    MacroNameExpected {
        /// Span of the macro definition rune.
        span: Range<usize>,
    },
    /// This error gets reported when there is no label name after a label definition
    /// rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @
    /// ```
    LabelExpected {
        /// Span of the label definition rune.
        span: Range<usize>,
    },
    /// This error gets reported when there is no sublabel name after a sublabel
    /// definition rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// &
    /// ```
    SublabelExpected {
        /// Span of the sublabel definition rune.
        span: Range<usize>,
    },
    /// This error gets reported when a label or a sublabel name contains a slash
    /// character.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @label/name
    /// ```
    SlashInLabelOrSublabel {
        /// Span of the slash in the label of sublabel.
        span: Range<usize>,
    },
    /// This error gets reported when an identifier contains more than one slash
    /// character.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// .label-name/sublabel/name
    /// ```
    MoreThanOneSlashInIdentifier {
        /// Span of the slash in the identifier.
        span: Range<usize>,
    },
    /// This error gets reported when a label name in a label definition has an
    /// ampersand as the first character.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @&label-name
    /// ```
    AmpersandAtTheStartOfLabel {
        /// Span of the ampersand at the start of the label.
        span: Range<usize>,
    },
    /// This error gets reported when there is no identifier after an address rune
    /// (literal zero-page address rune, literal relative address rune, literal
    /// absolute address runem, or raw address rune).
    ///
    /// # Example
    ///
    /// ```uxntal
    /// .
    /// ```
    IdentifierExpected {
        /// Span of the address rune.
        span: Range<usize>,
    },
    /// This error gets reported when there is no hexadecimal number after an
    /// absolute or relative pad rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// |
    /// ```
    HexNumberExpected {
        /// Span of the abolute or relative pad rune.
        span: Range<usize>,
    },
    /// This error gets reported when there is no character or hexadecimal number
    /// after a literal hex rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// #
    /// ```
    HexNumberOrCharacterExpected {
        /// Span of the literal hex rune.
        span: Range<usize>,
    },
    /// This error gets reported when there is no character after a character rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// '
    /// ```
    CharacterExpected {
        /// Span of the character rune.
        span: Range<usize>,
    },
    /// This error gets reported when there is more than one byte after a character
    /// rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// 'characters
    /// ```
    MoreThanOneByteFound {
        /// Sequence of bytes after the character rune.
        bytes: Vec<u8>,
        /// Span of the characters after the character rune.
        span: Range<usize>,
    },
    /// This error gets reported when a hexadecimal number contains an invalid
    /// digit.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// #00g0
    /// ```
    HexDigitInvalid {
        /// The invalid digit.
        digit: char,
        /// The whole hexadecimal number with the invalid digit.
        number: String,
        /// Span of the hexadecimal number.
        span: Range<usize>,
    },
    /// This error gets reported when a hexadecimal number after a literal hex
    /// rune has a length of 3, i.e. it is made out of exactly 3 hexadecimal digits.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// #000
    /// ```
    HexNumberUnevenLength {
        /// Length of the hexadecimal number.
        length: usize,
        /// The hexadecimal number.
        number: String,
        /// Span of the hexadecimal number.
        span: Range<usize>,
    },
    /// This error gets reported when the hexadecimal number after a literal hex
    /// rune is longer than 4 hexadecimal digits.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// #fffff
    /// ```
    HexNumberTooLong {
        /// Length of the hexadecimal number.
        length: usize,
        /// The hexadecimal number.
        number: String,
        /// Span of the hexadecimal number.
        span: Range<usize>,
    },
    /// This error gets reported when the macro name after a macro definition
    /// rune is a valid hexadecimal number i.e. it contains exactly 2 or 4 valid
    /// hexadecimal digits.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %01
    /// ```
    MacroCannotBeAHexNumber {
        /// The hexadecimal number that was meant to be a macro name.
        number: String,
        /// Span of the hexadecimal number that was meant to be a macro name.
        span: Range<usize>,
    },
    /// This error gets reported when the macro name after a macro definition
    /// rune is a valid instruction.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %ADD
    /// ```
    MacroCannotBeAnInstruction {
        /// The instruction that was meant to be a macro name.
        instruction: String,
        /// Span of the instruction that was meant to be a macro name.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to expand a macro that has not
    /// been previously defined.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// macro
    /// ```
    MacroUndefined {
        /// Name of the macro.
        name: String,
        /// Span of the macro invocation.
        span: Range<usize>,
    },
    /// This error gets reported when a macro with the same name is defined
    /// multiple times.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %macro { ADD }
    /// %macro { ADD }
    /// ```
    MacroDefinedMoreThanOnce {
        /// Name of the macro.
        name: String,
        /// Span of the current macro definition.
        span: Range<usize>,
        /// Span of the previous macro definition.
        other_span: Range<usize>,
    },
    /// This error gets reported when a label with the same name is defined
    /// multiple times.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @label
    /// @label
    /// ```
    LabelDefinedMoreThanOnce {
        /// Name of the label.
        name: String,
        /// Span of the current label definition.
        span: Range<usize>,
        /// Span of the previous label definition.
        other_span: Range<usize>,
    },
    /// This error gets reported when an opening brace character is not directly
    /// preceded by a macro definition.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// { ADD }
    /// ```
    OpeningBraceNotAfterMacroDefinition {
        /// Span of the opening brace.
        span: Range<usize>,
    },
    /// This error gets reported when a closing brace has no matching opening
    /// brace.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// }
    /// ```
    NoMatchingOpeningBrace {
        /// Span of the closing brace with no matching opening brace.
        span: Range<usize>,
    },
    /// This error gets reported when an opening brace is not closed i.e. it has
    /// no matching closing brace.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %macro {
    /// ```
    NoMatchingClosingBrace {
        /// Span of the opening brace with no matching closing brace.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to define a sublabel, when
    /// no previous label has been defined.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// &sublabel
    /// ```
    SublabelDefinedWithoutScope {
        /// Name of the sublabel.
        name: String,
        /// Span of the sublabel definition.
        span: Range<usize>,
    },
    /// This error gets reported when a closing bracket has no matching opening
    /// bracket.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// ]
    /// ```
    NoMatchingOpeningBracket {
        /// Span of the closing bracket with no matching opening bracket.
        span: Range<usize>,
    },
    /// This error gets reported when an opening bracket is not closed i.e. it has
    /// no matching closing bracket.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// [
    /// ```
    NoMatchingClosingBracket {
        /// Span of the opening bracket with no matching closing bracket.
        span: Range<usize>,
    },
    /// This error wraps an error that has been reported from a macro definition.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// %macro { #001 }
    /// macro
    /// ```
    MacroError {
        /// The error that has been reported from a macro definition.
        original_error: Box<Error>,
        /// Span of the macro invocation.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to reference a sublabel, when
    /// no previous label has been defined.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// .&sublabel
    /// ```
    SublabelReferencedWithoutScope {
        /// Name of the sublabel.
        name: String,
        /// Span of the sublabel reference.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to reference a label that
    /// has not been defined.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// .label
    /// ```
    LabelUndefined {
        /// Name of the label.
        name: String,
        /// Span of the label reference.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to reference a non-zero-page label
    /// after a literal zero-page address rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// |0100 @label
    /// .label
    /// ```
    AddressNotZeroPage {
        /// The actuall address that is not zero-page.
        address: u16,
        /// Name of the identifier that is referenced by the literal zero-page address.
        identifier: String,
        /// Span of the literal zero-page address.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to reference a label that
    /// is too far to be a relative address after a literal relative address rune.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// @label
    /// |0100 ,label
    /// ```
    AddressTooFar {
        /// The distance in bytes from the literal relative address and the label definition.
        distance: usize,
        /// Name of the identifier that is referenced by the literal relative address.
        identifier: String,
        /// Span of the literal relative address.
        span: Range<usize>,
        /// Span of the label definition that is referenced by the literal relative address.
        other_span: Range<usize>,
    },
    /// This error gets reported when there are bytes in the zeroth page (first
    /// 256 bytes) of the binary.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// #01 #02 ADD
    /// ```
    BytesInZerothPage {
        /// Span of the tokens in the zeroth page.
        span: Range<usize>,
    },
    /// This error gets reported during an attempt to do an absolute pad
    /// to an address before the current address pointer.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// #01 #02 ADD
    /// |0000 #02 #03 ADD
    /// ```
    PaddedBackwards {
        /// The address at which the absolute pad is attempted.
        previous_pointer: usize,
        /// The address to which the absolute pad is attempted.
        desired_pointer: usize,
        /// Span of the absolute pad.
        span: Range<usize>,
    },
    /// This error gets reported when the program size exceeds 65536 bytes.
    ///
    /// # Example
    ///
    /// ```uxntal
    /// |ffff #01 #02 ADD
    /// ```
    ProgramTooLong {
        /// Span of the tokens that exceed the maximum size.
        span: Range<usize>,
    },
}