summaryrefslogtreecommitdiff
path: root/parser.c
blob: c577105e826bbcd0aeb5ff4106818cd8108c2f88 (plain)
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
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "lexer.h"
#include "common.h"
#include "error.h"
#include "logic.h"
#include "gate.h"


static struct token *cursor;

#ifdef emit_error
#warning "Remember to remove the global emit_error"
#undef emit_error
#endif /* ifdef emit_error */

#define emit_error(...) fprintf(stderr, "Error (%zd,%zd): ", cursor->loc.line, cursor->loc.column);\
                        fprintf(stderr, __VA_ARGS__)


//static struct op_lookup uop_handlers[] = {
//	{.str = "not",   .handler = logic_nand},
//};
//
//static struct op_lookup bop_handlers[] = {
//	{.str = "and",   .handler = logic_and},
//	{.str = "or",    .handler = logic_or},
//	{.str = "nand",  .handler = logic_nand},
//	{.str = "nor",   .handler = logic_nor},
//	{.str = "xor",   .handler = logic_xor}
//};
//
//static struct tok_lookup tok_handlers[] = {
//	{.str = "input",   .handler = parse_input},
//	{.str = "module", .handler = parse_module},
//	{.str = "expr",   .handler = parse_expr}
//};

static int
expect(enum TOKEN_TYPE e) {
	char *expected_desc = "(internal error)";
	char *observed_desc = "(internal error)";

	if (cursor->type != e) {
		expected_desc = get_token_description(e);
		observed_desc = get_token_description(cursor->type);
		emit_error("Expected %s, got %s\n", expected_desc, observed_desc);
		return 1;
	}

	return 0;
}


int
parse(struct token *t) {
	cursor = t;
	expect(TOK_MODULE);
	return 0;
}