-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdumptype.cc
executable file
·474 lines (432 loc) · 13.2 KB
/
dumptype.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
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
//
// See copyright.h for copyright notice and limitation of liability
// and disclaimer of warranty provisions.
//
#include "copyright.h"
#include "cool.h"
#include "tree.h"
#include "cool-tree.h"
#include "utilities.h"
// defined in stringtab.cc
void dump_Symbol(ostream& stream, int padding, Symbol b);
// defined in cool.h
void dump_Boolean(ostream& stream, int padding, Boolean b);
//////////////////////////////////////////////////////////////////
//
// dumptype.cc
//
// dumptype defines a simple recursive traversal of the abstract
// syntax tree (AST) that prints each node and any associated
// type information. Use dump_with_types to inspect the results of
// type inference.
//
// dump_with_types takes two argumenmts:
// an output stream
// an indentation "n", the number of blanks to insert at the beginning of
// a new line.
//
// dump_with_types is just a simple pretty printer, formatting the output
// to show the AST relationships between nodes and their types.
// dump_type is a virtual function, with a separate implementation for
// each kind of AST node. Using virtual functions is an easy way to
// implement recursive tree traversals in C++; each kind of tree node
// has a virtual function that "knows" how to perform the part of
// the traversal for that one node. It may help to know the inheritance hierarchy
// of the classes that define the structure of the Cool AST. In the
// list below, the outer classes are the Phyla which group together
// related kinds of abstract tree nodes (e.g., the two kinds of Features
// and the many different kinds of Expression). The inner, indented classes
// inherit from the nearest Phyla class; these are the concrete classes that
// appear in the AST.
//
// Program_class
// program_class
//
// Class__class
// class_
//
// Feature_class
// method
// attr
//
// Formal_class
// formal
//
// Case_class
// branch_class
//
// Expression_class
// assign
// static_dispatch
// dispatch
// cond
// loop
// typcase
// block
// let
// plus
// sub
// mul
// divide
// neg
// lt
// eq
// leq
// comp
// int_const
// bool_const
// string_const
// new_
// isvoid
// no_expr
// object
//
// All of the Phyla inherit from the tree_node class, which has a member
// called type. The type member holds the type of the AST node.
//
// Some AST nodes have lists of other tree nodes as components. Lists in the
// AST are built using the class list_node defined in tree.h. The list
// classes in the Cool AST are:
//
// Classes a list of Class_
// Features a list of Feature
// Expressions a list of Expression
// Cases a list of Case
//
//
// dump_type prints the type of an Expression on the output stream,
// after indenting the correct number of spaces. A check is made to
// see if no type is assigned to the node.
//
// Note that the "type" member referred to here is inherited from tree_node
// by all subclasses of Expression_class. Note also that dump_type is
// defined for the Phylum Expression here, and is therefore inherited by
// every distinct subclass of Expression.
//
void Expression_class::dump_type(ostream& stream, int n)
{
if (type)
{ stream << pad(n) << ": " << type << endl; }
else
{ stream << pad(n) << ": _no_type" << endl; }
}
void dump_line(ostream& stream, int n, tree_node *t)
{
stream << pad(n) << "#" << t->get_line_number() << "\n";
}
//
// program_class prints "program" and then each of the
// component classes of the program, one at a time, at a
// greater indentation. The recursive invocation on
// "classes->nth(i)->dump_with_types(...)" shows how useful
// and compact virtual functions are for this kind of computation.
//
// Note the use of the iterator to cycle through all of the
// classes. The methods first, more, next, and nth on AST lists
// are defined in tree.h.
//
void program_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_program\n";
for(int i = classes->first(); classes->more(i); i = classes->next(i))
classes->nth(i)->dump_with_types(stream, n+2);
}
//
// Prints the components of a class, including all of the features.
// Note that printing the Features is another use of an iterator.
//
void class__class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_class\n";
dump_Symbol(stream, n+2, name);
dump_Symbol(stream, n+2, parent);
stream << pad(n+2) << "\"";
print_escaped_string(stream, filename->get_string());
stream << "\"\n" << pad(n+2) << "(\n";
for(int i = features->first(); features->more(i); i = features->next(i))
features->nth(i)->dump_with_types(stream, n+2);
stream << pad(n+2) << ")\n";
}
//
// dump_with_types for method_class first prints that this is a method,
// then prints the method name followed by the formal parameters
// (another use of an iterator, this time access all of the list members
// of type Formal), the return type, and finally calls dump_type recursively
// on the method body.
void method_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_method\n";
dump_Symbol(stream, n+2, name);
for(int i = formals->first(); formals->more(i); i = formals->next(i))
formals->nth(i)->dump_with_types(stream, n+2);
dump_Symbol(stream, n+2, return_type);
expr->dump_with_types(stream, n+2);
}
//
// attr_class::dump_with_types prints the attribute name, type declaration,
// and any initialization expression at the appropriate offset.
//
void attr_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_attr\n";
dump_Symbol(stream, n+2, name);
dump_Symbol(stream, n+2, type_decl);
init->dump_with_types(stream, n+2);
}
//
// formal_class::dump_with_types dumps the name and type declaration
// of a formal parameter.
//
void formal_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_formal\n";
dump_Symbol(stream, n+2, name);
dump_Symbol(stream, n+2, type_decl);
}
//
// branch_class::dump_with_types dumps the name, type declaration,
// and body of any case branch.
//
void branch_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_branch\n";
dump_Symbol(stream, n+2, name);
dump_Symbol(stream, n+2, type_decl);
expr->dump_with_types(stream, n+2);
}
//
// assign_class::dump_with_types prints "assign" and then (indented)
// the variable being assigned, the expression, and finally the type
// of the result. Note the call to dump_type (see above) at the
// end of the method.
//
void assign_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_assign\n";
dump_Symbol(stream, n+2, name);
expr->dump_with_types(stream, n+2);
dump_type(stream,n);
}
//
// static_dispatch_class::dump_with_types prints the expression,
// static dispatch class, function name, and actual arguments
// of any static dispatch.
//
void static_dispatch_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_static_dispatch\n";
expr->dump_with_types(stream, n+2);
dump_Symbol(stream, n+2, type_name);
dump_Symbol(stream, n+2, name);
stream << pad(n+2) << "(\n";
for(int i = actual->first(); actual->more(i); i = actual->next(i))
actual->nth(i)->dump_with_types(stream, n+2);
stream << pad(n+2) << ")\n";
dump_type(stream,n);
}
//
// dispatch_class::dump_with_types is similar to
// static_dispatch_class::dump_with_types
//
void dispatch_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_dispatch\n";
expr->dump_with_types(stream, n+2);
dump_Symbol(stream, n+2, name);
stream << pad(n+2) << "(\n";
for(int i = actual->first(); actual->more(i); i = actual->next(i))
actual->nth(i)->dump_with_types(stream, n+2);
stream << pad(n+2) << ")\n";
dump_type(stream,n);
}
//
// cond_class::dump_with_types dumps each of the three expressions
// in the conditional and then the type of the entire expression.
//
void cond_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_cond\n";
pred->dump_with_types(stream, n+2);
then_exp->dump_with_types(stream, n+2);
else_exp->dump_with_types(stream, n+2);
dump_type(stream,n);
}
//
// loop_class::dump_with_types dumps the predicate and then the
// body of the loop, and finally the type of the entire expression.
//
void loop_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_loop\n";
pred->dump_with_types(stream, n+2);
body->dump_with_types(stream, n+2);
dump_type(stream,n);
}
//
// typcase_class::dump_with_types dumps each branch of the
// the Case_ one at a time. The type of the entire expression
// is dumped at the end.
//
void typcase_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_typcase\n";
expr->dump_with_types(stream, n+2);
for(int i = cases->first(); cases->more(i); i = cases->next(i))
cases->nth(i)->dump_with_types(stream, n+2);
dump_type(stream,n);
}
//
// The rest of the cases for Expression are very straightforward
// and introduce nothing that isn't already in the code discussed
// above.
//
void block_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_block\n";
for(int i = body->first(); body->more(i); i = body->next(i))
body->nth(i)->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void let_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_let\n";
dump_Symbol(stream, n+2, identifier);
dump_Symbol(stream, n+2, type_decl);
init->dump_with_types(stream, n+2);
body->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void plus_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_plus\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void sub_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_sub\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void mul_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_mul\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void divide_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_divide\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void neg_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_neg\n";
e1->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void lt_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_lt\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void eq_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_eq\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void leq_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_leq\n";
e1->dump_with_types(stream, n+2);
e2->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void comp_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_comp\n";
e1->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void int_const_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_int\n";
dump_Symbol(stream, n+2, token);
dump_type(stream,n);
}
void bool_const_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_bool\n";
dump_Boolean(stream, n+2, val);
dump_type(stream,n);
}
void string_const_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_string\n";
stream << pad(n+2) << "\"";
print_escaped_string(stream,token->get_string());
stream << "\"\n";
dump_type(stream,n);
}
void new__class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_new\n";
dump_Symbol(stream, n+2, type_name);
dump_type(stream,n);
}
void isvoid_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_isvoid\n";
e1->dump_with_types(stream, n+2);
dump_type(stream,n);
}
void no_expr_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_no_expr\n";
dump_type(stream,n);
}
void object_class::dump_with_types(ostream& stream, int n)
{
dump_line(stream,n,this);
stream << pad(n) << "_object\n";
dump_Symbol(stream, n+2, name);
dump_type(stream,n);
}