source: src/SynTree/Visitor.cc@ a9fc180

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 a9fc180 was 907eccb, checked in by Rob Schluntz <rschlunt@…>, 9 years ago

added UntypedTupleExpr to better differentiate typed and untyped contexts, simplifying some code

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