source: src/SynTree/Visitor.cc@ 8135d4c

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 8135d4c was 8135d4c, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into references

  • Property mode set to 100644
File size: 14.3 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// Visitor.cc --
8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Aug 17 15:39:38 2017
13// Update Count : 29
14//
15
16#include <cassert> // for assert
17#include <list> // for list
18
19#include "Constant.h" // for Constant
20#include "Declaration.h" // for DeclarationWithType, ObjectDecl, Declaration
21#include "Expression.h" // for Expression, ConstantExpr, ImplicitCopyCtorExpr
22#include "Initializer.h" // for Initializer, Designation, ConstructorInit
23#include "Statement.h" // for Statement, CatchStmt, AsmStmt, CompoundStmt
24#include "Type.h" // for Type, Type::ForallList, AttrType, FunctionType
25#include "Visitor.h"
26
27class Subrange;
28
29Visitor::Visitor() {}
30
31Visitor::~Visitor() {}
32
33void Visitor::visit( ObjectDecl *objectDecl ) {
34 maybeAccept( objectDecl->get_type(), *this );
35 maybeAccept( objectDecl->get_init(), *this );
36 maybeAccept( objectDecl->get_bitfieldWidth(), *this );
37}
38
39void Visitor::visit( FunctionDecl *functionDecl ) {
40 maybeAccept( functionDecl->get_functionType(), *this );
41 maybeAccept( functionDecl->get_statements(), *this );
42}
43
44void Visitor::handleAggregateDecl( AggregateDecl *aggregateDecl ) {
45 acceptAll( aggregateDecl->get_parameters(), *this );
46 acceptAll( aggregateDecl->get_members(), *this );
47}
48
49void Visitor::visit( StructDecl *aggregateDecl ) {
50 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
51}
52
53void Visitor::visit( UnionDecl *aggregateDecl ) {
54 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
55}
56
57void Visitor::visit( EnumDecl *aggregateDecl ) {
58 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
59}
60
61void Visitor::visit( TraitDecl *aggregateDecl ) {
62 handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
63}
64
65void Visitor::handleNamedTypeDecl( NamedTypeDecl *typeDecl ) {
66 acceptAll( typeDecl->get_parameters(), *this );
67 acceptAll( typeDecl->get_assertions(), *this );
68 maybeAccept( typeDecl->get_base(), *this );
69}
70
71void Visitor::visit( TypeDecl *typeDecl ) {
72 handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
73 maybeAccept( typeDecl->get_init(), *this );
74}
75
76void Visitor::visit( TypedefDecl *typeDecl ) {
77 handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
78}
79
80void Visitor::visit( AsmDecl *asmDecl ) {
81 maybeAccept( asmDecl->get_stmt(), *this );
82}
83
84
85void Visitor::visit( CompoundStmt *compoundStmt ) {
86 acceptAll( compoundStmt->get_kids(), *this );
87}
88
89void Visitor::visit( ExprStmt *exprStmt ) {
90 maybeAccept( exprStmt->get_expr(), *this );
91}
92
93void Visitor::visit( AsmStmt *asmStmt ) {
94 maybeAccept( asmStmt->get_instruction(), *this );
95 acceptAll( asmStmt->get_output(), *this );
96 acceptAll( asmStmt->get_input(), *this );
97 acceptAll( asmStmt->get_clobber(), *this );
98}
99
100void Visitor::visit( IfStmt *ifStmt ) {
101 acceptAll( ifStmt->get_initialization(), *this );
102 maybeAccept( ifStmt->get_condition(), *this );
103 maybeAccept( ifStmt->get_thenPart(), *this );
104 maybeAccept( ifStmt->get_elsePart(), *this );
105}
106
107void Visitor::visit( WhileStmt *whileStmt ) {
108 maybeAccept( whileStmt->get_condition(), *this );
109 maybeAccept( whileStmt->get_body(), *this );
110}
111
112void Visitor::visit( ForStmt *forStmt ) {
113 acceptAll( forStmt->get_initialization(), *this );
114 maybeAccept( forStmt->get_condition(), *this );
115 maybeAccept( forStmt->get_increment(), *this );
116 maybeAccept( forStmt->get_body(), *this );
117}
118
119void Visitor::visit( SwitchStmt *switchStmt ) {
120 maybeAccept( switchStmt->get_condition(), *this );
121 acceptAll( switchStmt->get_statements(), *this );
122}
123
124void Visitor::visit( CaseStmt *caseStmt ) {
125 maybeAccept( caseStmt->get_condition(), *this );
126 acceptAll( caseStmt->get_statements(), *this );
127}
128
129void Visitor::visit( __attribute__((unused)) BranchStmt *branchStmt ) {
130}
131
132void Visitor::visit( ReturnStmt *returnStmt ) {
133 maybeAccept( returnStmt->get_expr(), *this );
134}
135
136void Visitor::visit( ThrowStmt * throwStmt ) {
137 maybeAccept( throwStmt->get_expr(), *this );
138 maybeAccept( throwStmt->get_target(), *this );
139}
140
141void Visitor::visit( TryStmt *tryStmt ) {
142 maybeAccept( tryStmt->get_block(), *this );
143 acceptAll( tryStmt->get_catchers(), *this );
144 maybeAccept( tryStmt->get_finally(), *this );
145}
146
147void Visitor::visit( CatchStmt *catchStmt ) {
148 maybeAccept( catchStmt->get_decl(), *this );
149 maybeAccept( catchStmt->get_cond(), *this );
150 maybeAccept( catchStmt->get_body(), *this );
151}
152
153void Visitor::visit( FinallyStmt *finalStmt ) {
154 maybeAccept( finalStmt->get_block(), *this );
155}
156
157void Visitor::visit( __attribute__((unused)) NullStmt *nullStmt ) {
158}
159
160void Visitor::visit( DeclStmt *declStmt ) {
161 maybeAccept( declStmt->get_decl(), *this );
162}
163
164void Visitor::visit( ImplicitCtorDtorStmt *impCtorDtorStmt ) {
165 maybeAccept( impCtorDtorStmt->get_callStmt(), *this );
166}
167
168
169void Visitor::visit( ApplicationExpr *applicationExpr ) {
170 maybeAccept( applicationExpr->get_result(), *this );
171 maybeAccept( applicationExpr->get_function(), *this );
172 acceptAll( applicationExpr->get_args(), *this );
173}
174
175void Visitor::visit( UntypedExpr *untypedExpr ) {
176 maybeAccept( untypedExpr->get_result(), *this );
177 acceptAll( untypedExpr->get_args(), *this );
178}
179
180void Visitor::visit( NameExpr *nameExpr ) {
181 maybeAccept( nameExpr->get_result(), *this );
182}
183
184void Visitor::visit( AddressExpr *addressExpr ) {
185 maybeAccept( addressExpr->get_result(), *this );
186 maybeAccept( addressExpr->get_arg(), *this );
187}
188
189void Visitor::visit( LabelAddressExpr *labAddressExpr ) {
190 maybeAccept( labAddressExpr->get_result(), *this );
191 maybeAccept( labAddressExpr->get_arg(), *this );
192}
193
194void Visitor::visit( CastExpr *castExpr ) {
195 maybeAccept( castExpr->get_result(), *this );
196 maybeAccept( castExpr->get_arg(), *this );
197}
198
199void Visitor::visit( VirtualCastExpr *castExpr ) {
200 maybeAccept( castExpr->get_result(), *this );
201 maybeAccept( castExpr->get_arg(), *this );
202}
203
204void Visitor::visit( UntypedMemberExpr *memberExpr ) {
205 maybeAccept( memberExpr->get_result(), *this );
206 maybeAccept( memberExpr->get_aggregate(), *this );
207 maybeAccept( memberExpr->get_member(), *this );
208}
209
210void Visitor::visit( MemberExpr *memberExpr ) {
211 maybeAccept( memberExpr->get_result(), *this );
212 maybeAccept( memberExpr->get_aggregate(), *this );
213}
214
215void Visitor::visit( VariableExpr *variableExpr ) {
216 maybeAccept( variableExpr->get_result(), *this );
217}
218
219void Visitor::visit( ConstantExpr *constantExpr ) {
220 maybeAccept( constantExpr->get_result(), *this );
221 maybeAccept( constantExpr->get_constant(), *this );
222}
223
224void Visitor::visit( SizeofExpr *sizeofExpr ) {
225 maybeAccept( sizeofExpr->get_result(), *this );
226 if ( sizeofExpr->get_isType() ) {
227 maybeAccept( sizeofExpr->get_type(), *this );
228 } else {
229 maybeAccept( sizeofExpr->get_expr(), *this );
230 }
231}
232
233void Visitor::visit( AlignofExpr *alignofExpr ) {
234 maybeAccept( alignofExpr->get_result(), *this );
235 if ( alignofExpr->get_isType() ) {
236 maybeAccept( alignofExpr->get_type(), *this );
237 } else {
238 maybeAccept( alignofExpr->get_expr(), *this );
239 }
240}
241
242void Visitor::visit( UntypedOffsetofExpr *offsetofExpr ) {
243 maybeAccept( offsetofExpr->get_result(), *this );
244 maybeAccept( offsetofExpr->get_type(), *this );
245}
246
247void Visitor::visit( OffsetofExpr *offsetofExpr ) {
248 maybeAccept( offsetofExpr->get_result(), *this );
249 maybeAccept( offsetofExpr->get_type(), *this );
250 maybeAccept( offsetofExpr->get_member(), *this );
251}
252
253void Visitor::visit( OffsetPackExpr *offsetPackExpr ) {
254 maybeAccept( offsetPackExpr->get_result(), *this );
255 maybeAccept( offsetPackExpr->get_type(), *this );
256}
257
258void Visitor::visit( AttrExpr *attrExpr ) {
259 maybeAccept( attrExpr->get_result(), *this );
260 if ( attrExpr->get_isType() ) {
261 maybeAccept( attrExpr->get_type(), *this );
262 } else {
263 maybeAccept( attrExpr->get_expr(), *this );
264 }
265}
266
267void Visitor::visit( LogicalExpr *logicalExpr ) {
268 maybeAccept( logicalExpr->get_result(), *this );
269 maybeAccept( logicalExpr->get_arg1(), *this );
270 maybeAccept( logicalExpr->get_arg2(), *this );
271}
272
273void Visitor::visit( ConditionalExpr *conditionalExpr ) {
274 maybeAccept( conditionalExpr->get_result(), *this );
275 maybeAccept( conditionalExpr->get_arg1(), *this );
276 maybeAccept( conditionalExpr->get_arg2(), *this );
277 maybeAccept( conditionalExpr->get_arg3(), *this );
278}
279
280void Visitor::visit( CommaExpr *commaExpr ) {
281 maybeAccept( commaExpr->get_result(), *this );
282 maybeAccept( commaExpr->get_arg1(), *this );
283 maybeAccept( commaExpr->get_arg2(), *this );
284}
285
286void Visitor::visit( TypeExpr *typeExpr ) {
287 maybeAccept( typeExpr->get_result(), *this );
288 maybeAccept( typeExpr->get_type(), *this );
289}
290
291void Visitor::visit( AsmExpr *asmExpr ) {
292 maybeAccept( asmExpr->get_inout(), *this );
293 maybeAccept( asmExpr->get_constraint(), *this );
294 maybeAccept( asmExpr->get_operand(), *this );
295}
296
297void Visitor::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
298 maybeAccept( impCpCtorExpr->get_result(), *this );
299 maybeAccept( impCpCtorExpr->get_callExpr(), *this );
300 acceptAll( impCpCtorExpr->get_tempDecls(), *this );
301 acceptAll( impCpCtorExpr->get_returnDecls(), *this );
302 acceptAll( impCpCtorExpr->get_dtors(), *this );
303}
304
305void Visitor::visit( ConstructorExpr * ctorExpr ) {
306 maybeAccept( ctorExpr->get_result(), *this );
307 maybeAccept( ctorExpr->get_callExpr(), *this );
308}
309
310void Visitor::visit( CompoundLiteralExpr *compLitExpr ) {
311 maybeAccept( compLitExpr->get_result(), *this );
312 maybeAccept( compLitExpr->get_initializer(), *this );
313}
314
315void Visitor::visit( RangeExpr *rangeExpr ) {
316 maybeAccept( rangeExpr->get_low(), *this );
317 maybeAccept( rangeExpr->get_high(), *this );
318}
319
320void Visitor::visit( UntypedTupleExpr *tupleExpr ) {
321 maybeAccept( tupleExpr->get_result(), *this );
322 acceptAll( tupleExpr->get_exprs(), *this );
323}
324
325void Visitor::visit( TupleExpr *tupleExpr ) {
326 maybeAccept( tupleExpr->get_result(), *this );
327 acceptAll( tupleExpr->get_exprs(), *this );
328}
329
330void Visitor::visit( TupleIndexExpr *tupleExpr ) {
331 maybeAccept( tupleExpr->get_result(), *this );
332 maybeAccept( tupleExpr->get_tuple(), *this );
333}
334
335void Visitor::visit( TupleAssignExpr *assignExpr ) {
336 maybeAccept( assignExpr->get_result(), *this );
337 maybeAccept( assignExpr->get_stmtExpr(), *this );
338}
339
340void Visitor::visit( StmtExpr *stmtExpr ) {
341 maybeAccept( stmtExpr->get_result(), *this );
342 maybeAccept( stmtExpr->get_statements(), *this );
343 acceptAll( stmtExpr->get_returnDecls(), *this );
344 acceptAll( stmtExpr->get_dtors(), *this );
345}
346
347void Visitor::visit( UniqueExpr *uniqueExpr ) {
348 maybeAccept( uniqueExpr->get_result(), *this );
349 maybeAccept( uniqueExpr->get_expr(), *this );
350}
351
352void Visitor::visit( UntypedInitExpr * initExpr ) {
353 maybeAccept( initExpr->get_result(), *this );
354 maybeAccept( initExpr->get_expr(), *this );
355 // not currently visiting initAlts, but this doesn't matter since this node is only used in the resolver.
356}
357
358void Visitor::visit( InitExpr * initExpr ) {
359 maybeAccept( initExpr->get_result(), *this );
360 maybeAccept( initExpr->get_expr(), *this );
361 maybeAccept( initExpr->get_designation(), *this );
362}
363
364
365void Visitor::visit( VoidType *voidType ) {
366 acceptAll( voidType->get_forall(), *this );
367}
368
369void Visitor::visit( BasicType *basicType ) {
370 acceptAll( basicType->get_forall(), *this );
371}
372
373void Visitor::visit( PointerType *pointerType ) {
374 acceptAll( pointerType->get_forall(), *this );
375 // xxx - should PointerType visit/mutate dimension?
376 maybeAccept( pointerType->get_base(), *this );
377}
378
379void Visitor::visit( ArrayType *arrayType ) {
380 acceptAll( arrayType->get_forall(), *this );
381 maybeAccept( arrayType->get_dimension(), *this );
382 maybeAccept( arrayType->get_base(), *this );
383}
384
385void Visitor::visit( ReferenceType *refType ) {
386 acceptAll( refType->get_forall(), *this );
387 maybeAccept( refType->get_base(), *this );
388}
389
390void Visitor::visit( FunctionType *functionType ) {
391 acceptAll( functionType->get_forall(), *this );
392 acceptAll( functionType->get_returnVals(), *this );
393 acceptAll( functionType->get_parameters(), *this );
394}
395
396void Visitor::handleReferenceToType( ReferenceToType *aggregateUseType ) {
397 acceptAll( aggregateUseType->get_forall(), *this );
398 acceptAll( aggregateUseType->get_parameters(), *this );
399}
400
401void Visitor::visit( StructInstType *aggregateUseType ) {
402 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
403}
404
405void Visitor::visit( UnionInstType *aggregateUseType ) {
406 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
407}
408
409void Visitor::visit( EnumInstType *aggregateUseType ) {
410 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
411}
412
413void Visitor::visit( TraitInstType *aggregateUseType ) {
414 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
415 acceptAll( aggregateUseType->get_members(), *this );
416}
417
418void Visitor::visit( TypeInstType *aggregateUseType ) {
419 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
420}
421
422void Visitor::visit( TupleType *tupleType ) {
423 acceptAll( tupleType->get_forall(), *this );
424 acceptAll( tupleType->get_types(), *this );
425 acceptAll( tupleType->get_members(), *this );
426}
427
428void Visitor::visit( TypeofType *typeofType ) {
429 assert( typeofType->get_expr() );
430 typeofType->get_expr()->accept( *this );
431}
432
433void Visitor::visit( AttrType *attrType ) {
434 if ( attrType->get_isType() ) {
435 assert( attrType->get_type() );
436 attrType->get_type()->accept( *this );
437 } else {
438 assert( attrType->get_expr() );
439 attrType->get_expr()->accept( *this );
440 } // if
441}
442
443void Visitor::visit( VarArgsType *varArgsType ) {
444 acceptAll( varArgsType->get_forall(), *this );
445}
446
447void Visitor::visit( ZeroType *zeroType ) {
448 acceptAll( zeroType->get_forall(), *this );
449}
450
451void Visitor::visit( OneType *oneType ) {
452 acceptAll( oneType->get_forall(), *this );
453}
454
455void Visitor::visit( Designation * designation ) {
456 acceptAll( designation->get_designators(), *this );
457}
458
459void Visitor::visit( SingleInit *singleInit ) {
460 singleInit->get_value()->accept( *this );
461}
462
463void Visitor::visit( ListInit *listInit ) {
464 acceptAll( listInit->get_designations(), *this );
465 acceptAll( listInit->get_initializers(), *this );
466}
467
468void Visitor::visit( ConstructorInit *ctorInit ) {
469 maybeAccept( ctorInit->get_ctor(), *this );
470 maybeAccept( ctorInit->get_dtor(), *this );
471 maybeAccept( ctorInit->get_init(), *this );
472}
473
474
475void Visitor::visit( __attribute__((unused)) Subrange *subrange ) {}
476
477
478void Visitor::visit( __attribute__((unused)) Constant *constant ) {}
479// Local Variables: //
480// tab-width: 4 //
481// mode: c++ //
482// compile-command: "make install" //
483// End: //
Note: See TracBrowser for help on using the repository browser.