-
Notifications
You must be signed in to change notification settings - Fork 0
/
absyn.c
295 lines (261 loc) · 6.65 KB
/
absyn.c
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/*
* absyn.c - Abstract Syntax Functions. Most functions create an instance of an
* abstract syntax rule.
*/
#include "absyn.h" /* abstract syntax data structures */
#include <stdio.h>
#include <stdlib.h>
#include "symbol.h" /* symbol table data structures */
#include "util.h"
A_var A_SimpleVar(A_pos pos, S_symbol sym) {
A_var p = checked_malloc(sizeof(*p));
p->kind = A_simpleVar;
p->pos = pos;
p->u.simple = sym;
return p;
}
A_var A_FieldVar(A_pos pos, A_var var, S_symbol sym) {
A_var p = checked_malloc(sizeof(*p));
p->kind = A_fieldVar;
p->pos = pos;
p->u.field.var = var;
p->u.field.sym = sym;
return p;
}
A_var A_SubscriptVar(A_pos pos, A_var var, A_exp exp) {
A_var p = checked_malloc(sizeof(*p));
p->kind = A_subscriptVar;
p->pos = pos;
p->u.subscript.var = var;
p->u.subscript.exp = exp;
return p;
}
A_exp A_VarExp(A_pos pos, A_var var) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_varExp;
p->pos = pos;
p->u.var = var;
return p;
}
A_exp A_NilExp(A_pos pos) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_nilExp;
p->pos = pos;
return p;
}
A_exp A_IntExp(A_pos pos, int i) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_intExp;
p->pos = pos;
p->u.intt = i;
return p;
}
A_exp A_StringExp(A_pos pos, string s) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_stringExp;
p->pos = pos;
p->u.stringg = s;
return p;
}
A_exp A_CallExp(A_pos pos, S_symbol func, A_expList args) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_callExp;
p->pos = pos;
p->u.call.func = func;
p->u.call.args = args;
return p;
}
A_exp A_OpExp(A_pos pos, A_oper oper, A_exp left, A_exp right) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_opExp;
p->pos = pos;
p->u.op.oper = oper;
p->u.op.left = left;
p->u.op.right = right;
return p;
}
A_exp A_RecordExp(A_pos pos, S_symbol typ, A_efieldList fields) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_recordExp;
p->pos = pos;
p->u.record.typ = typ;
p->u.record.fields = fields;
return p;
}
A_exp A_SeqExp(A_pos pos, A_expList seq) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_seqExp;
p->pos = pos;
p->u.seq = seq;
return p;
}
A_exp A_AssignExp(A_pos pos, A_var var, A_exp exp) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_assignExp;
p->pos = pos;
p->u.assign.var = var;
p->u.assign.exp = exp;
return p;
}
A_exp A_IfExp(A_pos pos, A_exp test, A_exp then, A_exp elsee) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_ifExp;
p->pos = pos;
p->u.iff.test = test;
p->u.iff.then = then;
p->u.iff.elsee = elsee;
return p;
}
A_exp A_WhileExp(A_pos pos, A_exp test, A_exp body) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_whileExp;
p->pos = pos;
p->u.whilee.test = test;
p->u.whilee.body = body;
return p;
}
A_exp A_ForExp(A_pos pos, S_symbol var, A_exp lo, A_exp hi, A_exp body) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_forExp;
p->pos = pos;
p->u.forr.var = var;
p->u.forr.lo = lo;
p->u.forr.hi = hi;
p->u.forr.body = body;
p->u.forr.escape = TRUE;
return p;
}
A_exp A_BreakExp(A_pos pos) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_breakExp;
p->pos = pos;
return p;
}
A_exp A_LetExp(A_pos pos, A_decList decs, A_exp body) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_letExp;
p->pos = pos;
p->u.let.decs = decs;
p->u.let.body = body;
return p;
}
A_exp A_ArrayExp(A_pos pos, S_symbol typ, A_exp size, A_exp init) {
A_exp p = checked_malloc(sizeof(*p));
p->kind = A_arrayExp;
p->pos = pos;
p->u.array.typ = typ;
p->u.array.size = size;
p->u.array.init = init;
return p;
}
A_dec A_FunctionDec(A_pos pos, A_fundecList function) {
A_dec p = checked_malloc(sizeof(*p));
p->kind = A_functionDec;
p->pos = pos;
p->u.function = function;
return p;
}
A_dec A_VarDec(A_pos pos, S_symbol var, S_symbol typ, A_exp init) {
A_dec p = checked_malloc(sizeof(*p));
p->kind = A_varDec;
p->pos = pos;
p->u.var.var = var;
p->u.var.typ = typ;
p->u.var.init = init;
p->u.var.escape = TRUE;
return p;
}
A_dec A_TypeDec(A_pos pos, A_nametyList type) {
A_dec p = checked_malloc(sizeof(*p));
p->kind = A_typeDec;
p->pos = pos;
p->u.type = type;
return p;
}
A_ty A_NameTy(A_pos pos, S_symbol name) {
A_ty p = checked_malloc(sizeof(*p));
p->kind = A_nameTy;
p->pos = pos;
p->u.name = name;
return p;
}
A_ty A_RecordTy(A_pos pos, A_fieldList record) {
A_ty p = checked_malloc(sizeof(*p));
p->kind = A_recordTy;
p->pos = pos;
p->u.record = record;
return p;
}
A_ty A_ArrayTy(A_pos pos, S_symbol array) {
A_ty p = checked_malloc(sizeof(*p));
p->kind = A_arrayTy;
p->pos = pos;
p->u.array = array;
return p;
}
A_field A_Field(A_pos pos, S_symbol name, S_symbol typ) {
A_field p = checked_malloc(sizeof(*p));
p->pos = pos;
p->name = name;
p->typ = typ;
p->escape = TRUE;
return p;
}
A_fieldList A_FieldList(A_field head, A_fieldList tail) {
A_fieldList p = checked_malloc(sizeof(*p));
p->head = head;
p->tail = tail;
return p;
}
A_expList A_ExpList(A_exp head, A_expList tail) {
A_expList p = checked_malloc(sizeof(*p));
p->head = head;
p->tail = tail;
return p;
}
A_fundec A_Fundec(A_pos pos, S_symbol name, A_fieldList params, S_symbol result,
A_exp body) {
A_fundec p = checked_malloc(sizeof(*p));
p->pos = pos;
p->name = name;
p->params = params;
p->result = result;
p->body = body;
return p;
}
A_fundecList A_FundecList(A_fundec head, A_fundecList tail) {
A_fundecList p = checked_malloc(sizeof(*p));
p->head = head;
p->tail = tail;
return p;
}
A_decList A_DecList(A_dec head, A_decList tail) {
A_decList p = checked_malloc(sizeof(*p));
p->head = head;
p->tail = tail;
return p;
}
A_namety A_Namety(S_symbol name, A_ty ty) {
A_namety p = checked_malloc(sizeof(*p));
p->name = name;
p->ty = ty;
return p;
}
A_nametyList A_NametyList(A_namety head, A_nametyList tail) {
A_nametyList p = checked_malloc(sizeof(*p));
p->head = head;
p->tail = tail;
return p;
}
A_efield A_Efield(S_symbol name, A_exp exp) {
A_efield p = checked_malloc(sizeof(*p));
p->name = name;
p->exp = exp;
return p;
}
A_efieldList A_EfieldList(A_efield head, A_efieldList tail) {
A_efieldList p = checked_malloc(sizeof(*p));
p->head = head;
p->tail = tail;
return p;
}