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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
|
#include <assert.h>
#include <def.h>
#include <lexer.h>
#include <parser.h>
#include <stdio.h>
#include <string.h>
#include <warnings.h>
/**
* Definitions
*/
#define ROM_SIZE 4096 // TODO: Actual ROM size?
/**
* ROM blub blabs
*/
static u8 rom[ROM_SIZE] = { 0 };
static u32 rom_index = 0;
static void rom_add(u8 byte)
{
rom[rom_index] = byte;
rom_index++;
}
/**
* Toks parsing
*/
static u32 toks_count(struct token *toks)
{
struct token *p = toks;
while (p && p->type)
p++;
return p - toks;
}
static struct token *toks_peek(struct token *toks, u32 cnt)
{
return toks + cnt;
}
static struct token *toks_peek_end(struct token *toks)
{
return toks + toks_count(toks) - 1;
}
/**
* Main parsing
*/
static void parse_nop(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
rom_add(0);
}
static void parse_jbc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jb(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jnb(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jnc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jz(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jnz(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_sjmp(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_mov(struct context *ctx, struct token *toks)
{
if (toks_peek_end(toks)->type == COMMA)
warnings_add(ctx, "Unexpected end of line");
else if (toks_count(toks) > 5)
warnings_add(ctx, "Too many arguments");
}
static void parse_orl(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_anl(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_push(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_pop(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_movx(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_ajmp(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_acall(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_ljmp(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_lcall(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_reti(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_ret(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_xrl(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_cpl(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_clr(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_setb(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_rr(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_rrc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_rl(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_rlc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_xlr(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_jmp(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_movc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_inc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_dec(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_add(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_addc(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_div(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_dubb(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_mul(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_cjne(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_swap(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_da(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_crl(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_xch(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_djnz(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_xchd(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_call(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_org(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_db(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_dw(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_include(struct context *ctx, struct token *toks)
{
UNUSED(ctx);
UNUSED(toks);
}
static void parse_string(struct context *ctx, struct token *toks)
{
enum token_type next = toks_peek(toks, 1)->type;
if (next == COLON) {
// TODO: Add label lookup tables
} else if (next == DATA) {
// TODO: Constants map
} else if (next == BIT) {
// TODO: Constants map
} else {
warnings_add(ctx, "Expected data/bit/colon");
}
}
static u32 parse_line(struct context *ctx, char *str, u32 size)
{
struct token toks[32] = { 0 };
u8 tok_ind = 0;
u8 str_ind = 0;
while (1) {
struct token tok = token_resolve(str + str_ind, size - str_ind);
if (tok.type == NEWLINE) {
ctx->line++;
ctx->column = 0;
break;
}
if (tok.type == UNKNOWN) {
break;
}
if (tok.type == SPACE) {
str_ind += tok.length;
continue;
}
token_print(&tok);
if (tok_ind + 1 >= (u8)(sizeof(toks) / sizeof(toks[0]))) {
warnings_add(ctx, "Token overflow");
return str_ind;
}
toks[tok_ind++] = tok;
str_ind += tok.length;
}
ctx->column = str_ind;
if (!tok_ind) {
warnings_add(ctx, "Parsing failed");
return str_ind;
}
switch (toks[0].type) {
case UNKNOWN:
warnings_add(ctx, "Unknown instruction");
break;
case NEWLINE:
break;
case NOP:
parse_nop(ctx, toks);
break;
case JBC:
parse_jbc(ctx, toks);
break;
case JB:
parse_jb(ctx, toks);
break;
case JNB:
parse_jnb(ctx, toks);
break;
case JC:
parse_jc(ctx, toks);
break;
case JNC:
parse_jnc(ctx, toks);
break;
case JZ:
parse_jz(ctx, toks);
break;
case JNZ:
parse_jnz(ctx, toks);
break;
case SJMP:
parse_sjmp(ctx, toks);
break;
case MOV:
parse_mov(ctx, toks);
break;
case ORL:
parse_orl(ctx, toks);
break;
case ANL:
parse_anl(ctx, toks);
break;
case PUSH:
parse_push(ctx, toks);
break;
case POP:
parse_pop(ctx, toks);
break;
case MOVX:
parse_movx(ctx, toks);
break;
case AJMP:
parse_ajmp(ctx, toks);
break;
case ACALL:
parse_acall(ctx, toks);
break;
case LJMP:
parse_ljmp(ctx, toks);
break;
case LCALL:
parse_lcall(ctx, toks);
break;
case RETI:
parse_reti(ctx, toks);
break;
case RET:
parse_ret(ctx, toks);
break;
case XRL:
parse_xrl(ctx, toks);
break;
case CPL:
parse_cpl(ctx, toks);
break;
case CLR:
parse_clr(ctx, toks);
break;
case SETB:
parse_setb(ctx, toks);
break;
case RR:
parse_rr(ctx, toks);
break;
case RRC:
parse_rrc(ctx, toks);
break;
case RL:
parse_rl(ctx, toks);
break;
case RLC:
parse_rlc(ctx, toks);
break;
case XLR:
parse_xlr(ctx, toks);
break;
case JMP:
parse_jmp(ctx, toks);
break;
case MOVC:
parse_movc(ctx, toks);
break;
case INC:
parse_inc(ctx, toks);
break;
case DEC:
parse_dec(ctx, toks);
break;
case ADD:
parse_add(ctx, toks);
break;
case ADDC:
parse_addc(ctx, toks);
break;
case DIV:
parse_div(ctx, toks);
break;
case DUBB:
parse_dubb(ctx, toks);
break;
case MUL:
parse_mul(ctx, toks);
break;
case CJNE:
parse_cjne(ctx, toks);
break;
case SWAP:
parse_swap(ctx, toks);
break;
case DA:
parse_da(ctx, toks);
break;
case CRL:
parse_crl(ctx, toks);
break;
case XCH:
parse_xch(ctx, toks);
break;
case DJNZ:
parse_djnz(ctx, toks);
break;
case XCHD:
parse_xchd(ctx, toks);
break;
case CALL:
parse_call(ctx, toks);
break;
case ORG:
parse_org(ctx, toks);
break;
case DB:
parse_db(ctx, toks);
break;
case DW:
parse_dw(ctx, toks);
break;
case INCLUDE:
parse_include(ctx, toks);
break;
case STRING:
parse_string(ctx, toks);
break;
case SPACE:
case HASH:
case DOLLAR:
case SLASH:
case PLUS:
case COMMA:
case DOT:
case COLON:
case SEMICOLON:
case DEC_NUM:
case HEX_NUM:
case BIN_NUM:
case ACCU:
case ATR0:
case ATR1:
case R0:
case R1:
case R2:
case R3:
case R4:
case R5:
case R6:
case R7:
case DATA:
case BIT:
warnings_add(ctx, "Random non-instruction found");
break;
case INSTR_START:
case INSTR_END:
case NUM_START:
case NUM_END:
case REGS_START:
case REGS_END:
warnings_add(ctx, "Got enum boundary");
break;
default:
warnings_add(ctx, "Super-unknown instruction");
break;
}
return str_ind;
}
static void clean_buffers(void)
{
if (rom_index)
memset(rom, 0, sizeof(rom));
warnings_clear();
}
u8 parse(char *buf, u32 size)
{
clean_buffers();
struct context ctx = { .line = 0, .column = 0 };
for (u32 i = 0; i < size; i++) {
if (buf[i] == '\0')
break;
if (buf[i] == '\n') {
ctx.line++;
ctx.column = 0;
continue;
}
u32 len = parse_line(&ctx, buf + i, size - i);
i += len;
ctx.column += len;
}
if (warnings_exist()) {
warnings_print();
return 0;
}
return 1;
}
|