source: src/SynTree/Visitor.cc @ 262f085f

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 262f085f was fbcde64, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

remove duplication in compound literal, support aggregate-type compound literals

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