-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
107 lines (107 loc) · 2.12 KB
/
main.cpp
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
#include "eeyore_AST.hpp"
#include "node.hpp"
#include "riscv/emit_riscv.hpp"
#include "symtab.hpp"
#include "tigger_gen.hpp"
#include "SysY.tab.hpp"
#include <cstdio>
#include <sstream>
#include <unistd.h>
extern FILE *yyin;
int yyparse(void);
int yylex(void);
namespace sysY_AST {
node_basic *root; // root of the parse tree
}
bool has_err = false; // true if an error occurred
std::ostringstream tigger_dst;
std::ostringstream riscv_dst;
int main(int argc, char **argv)
{
bool S = false, e = false, t = false, v = false;
string output_s;
// parse args
for (auto i = 0; i < argc; i++)
{
if (argv[i][0] == '-')
{
switch (argv[i][1])
{
case 'S': S = true; break;
case 'e': e = true; break;
case 't': t = true; break;
case 'v': v = true; break;
case 'o':
if (argv[i + 1] == nullptr)
{
printf("no output file dedicated");
return 0;
}
output_s = argv[++i];
break;
default: printf("unrecognized parameter\n"); return 0;
}
}
else
yyin = fopen(argv[i], "r");
}
if (!S)
{
printf("not support yet!\n");
return 0;
}
if (e && t)
{
printf("at most one parameter can be dedicated.\n");
return 0;
}
if (!yyin)
{
printf("no valid input file!\n");
return 0;
}
sysY_AST::init_tables();
do
{
yyparse();
} while (!feof(yyin));
sysY_AST::check_main();
if (has_err)
return 1;
if (e) // generate eeyore
{
auto out_f = fopen(output_s.c_str(), "w");
fprintf(out_f, "%s", sysY_AST::root->code.c_str());
return 0;
}
else if (v) // debug
{
auto out_f = fopen("eeyore.out", "w");
fprintf(out_f, "%s", sysY_AST::root->code.c_str());
fflush(out_f);
}
// generate tigger
eeyore_AST::build_AST(sysY_AST::root->code);
no_alloc::gen_code();
if (t)
{
auto out_f = fopen(output_s.c_str(), "w");
fprintf(out_f, "%s", tigger_dst.str().c_str());
return 0;
}
else if (v)
{
auto out_f = fopen("tigger.out", "w");
fprintf(out_f, "%s", tigger_dst.str().c_str());
fflush(out_f);
}
// generate risc-v code
riscv::gen_code();
if (!(e || t))
{
auto out_f = fopen(output_s.c_str(), "w");
fprintf(out_f, "%s", riscv_dst.str().c_str());
return 0;
}
return 0;
}