-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecafp.cc
executable file
·51 lines (41 loc) · 883 Bytes
/
decafp.cc
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
//#define Tokens
#include <iostream>
#include <vector>
//#include "tokentype.h"
#include "parsetree.h"
extern FILE* yyin;
extern Token *myTok;
extern int yylineno;
extern ParseTree *top;
extern int yydebug;
using namespace std;
int yylex();
int yyparse();
ParseTree * parse_decaf(FILE *);
int main(int argc, char **argv) {
/* Make sure there's a given file name */
if (argc != 2) {
cout << "USAGE: " << argv[0] << " FILE" << endl;
exit(1);
}
yyin = fopen(argv[1], "r");
/* and that it exists and can be read */
if (!yyin) {
cout << argv[1] << ": No such file or file can't be opened for reading."
<< endl;
exit(1);
}
yydebug = 0;
#ifdef Tokens
int tok;
while ((tok=yylex()) != -1) {
cout << tok << ' ';
myTok->print();
}
return 0;
#else
top = parse_decaf(yyin);
traverseTree(top, 0, 1);
return 0;
#endif
}