aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: 757701243908cb2d6b5ea93a73fcfe3acaa63aec (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
#include <stdio.h>
#include <stdbool.h>
#include <assert.h>
#include "compiler.h"
#include "node.h"


extern FILE *yyin;
extern int yyparse(void);
extern struct node *root_node;


int main(int argc, char **argv) {
	if (argc != 2) {
		fprintf(stderr, "Usage: %s <source.c>\n", argv[0]);
		return 1;
	}
	yyin = fopen(argv[1], "r");
	if (!yyin) {
		fprintf(stderr, "Cannot open file '%s'\n", argv[1]);
		return 1;
	}

	int result = yyparse();
	if(!feof(yyin)) {
		assert(false);
	}

	node_print(root_node, stdout, 0);
	printf("\n");

	struct ir *ir = compile(root_node);
	ir_print(ir, stdout);

	type_cache_cleanup();

	return result;
}