-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast_node.cc
214 lines (169 loc) · 4.12 KB
/
ast_node.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
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
#include "ast_node.hh"
#include "visitor.hh"
extern int yylineno;
extern int yycolumn;
int top_level_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int number_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int variable_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int binary_expression_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int call_function_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int function_declaration_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int function_definition_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int block_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int assignment_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int if_else_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
int for_loop_node::accept(visitor* visitor)
{
return visitor->visit(this);
}
number_node* make_number_node(const char* text)
{
number_node* node = new number_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->value = text;
}
return node;
}
variable_node* make_variable_node(const char* text)
{
variable_node* node = new variable_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->name = text;
}
return node;
}
binary_expression_node* make_binary_expression_node(ast_node* lhs, ast_node* rhs, char operation)
{
binary_expression_node* node = new binary_expression_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->lhs = lhs;
node->rhs = rhs;
node->operation = operation;
}
return node;
}
call_function_node* make_call_function_node(const char* text, double_linked_list_node<ast_node*>* nodes)
{
call_function_node* node = new call_function_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->callee = text;
node->arguments = nodes;
}
return node;
}
function_declaration_node* make_function_declaration_node(const char* text, double_linked_list_node<variable_node*>* nodes)
{
function_declaration_node* node = new function_declaration_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->name = text;
node->arguments = nodes;
}
return node;
}
function_definition_node* make_function_definition_node(function_declaration_node* declaration, ast_node* definition)
{
function_definition_node* node = new function_definition_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->declaration = declaration;
node->definition = definition;
}
return node;
}
block_node* make_block_node(double_linked_list_node<ast_node*>* nodes)
{
block_node* node = new block_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->expressions = nodes;
}
return node;
}
assignment_node* make_assignment_node(const char* text, ast_node* expression)
{
assignment_node* node = new assignment_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->variable = text;
node->expression = expression;
}
return node;
}
if_else_node* make_if_else_node(ast_node* condition, ast_node* then_expr, ast_node* else_expr)
{
if_else_node* node = new if_else_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->condition = condition;
node->then_expr = then_expr;
node->else_expr = else_expr;
}
return node;
}
for_loop_node* make_for_loop_node(ast_node* init, ast_node* cond, ast_node* step, ast_node* expr)
{
for_loop_node* node = new for_loop_node();
if (node)
{
node->row = yylineno;
node->col = yycolumn;
node->init = init;
node->cond = cond;
node->step = step;
node->expr = expr;
}
return node;
}