source: src/SynTree/Visitor.cc @ 3b58d91

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 3b58d91 was 3b58d91, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

add AST nodes TupleIndexExpr?, MemberTupleExpr?, MassAssignExpr?, and MultipleAssignExpr?, modify parser to produce nodes for field tuples, modify UntypedMemberExpr? to contain a list of members

  • Property mode set to 100644
File size: 12.4 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
[51b7345]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() {}
[51b7345]26
[d9a0e76]27Visitor::~Visitor() {}
[51b7345]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 );
[51b7345]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 );
[51b7345]39}
40
[1e1e15b]41void Visitor::handleAggregateDecl( AggregateDecl *aggregateDecl ) {
[0dd3a2f]42        acceptAll( aggregateDecl->get_parameters(), *this );
43        acceptAll( aggregateDecl->get_members(), *this );
[51b7345]44}
45
[0dd3a2f]46void Visitor::visit( StructDecl *aggregateDecl ) {
[1e1e15b]47        handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b7345]48}
49
[0dd3a2f]50void Visitor::visit( UnionDecl *aggregateDecl ) {
[1e1e15b]51        handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b7345]52}
53
[0dd3a2f]54void Visitor::visit( EnumDecl *aggregateDecl ) {
[1e1e15b]55        handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b7345]56}
57
[4040425]58void Visitor::visit( TraitDecl *aggregateDecl ) {
[1e1e15b]59        handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
[51b7345]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 );
[51b7345]66}
67
[0dd3a2f]68void Visitor::visit( TypeDecl *typeDecl ) {
[1e1e15b]69        handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
[51b7345]70}
71
[0dd3a2f]72void Visitor::visit( TypedefDecl *typeDecl ) {
[1e1e15b]73        handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
[51b7345]74}
75
[0dd3a2f]76void Visitor::visit( CompoundStmt *compoundStmt ) {
77        acceptAll( compoundStmt->get_kids(), *this );
[51b7345]78}
79
[0dd3a2f]80void Visitor::visit( ExprStmt *exprStmt ) {
81        maybeAccept( exprStmt->get_expr(), *this );
[51b7345]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 );
[51b7345]95}
96
[0dd3a2f]97void Visitor::visit( WhileStmt *whileStmt ) {
98        maybeAccept( whileStmt->get_condition(), *this );
99        maybeAccept( whileStmt->get_body(), *this );
[51b7345]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 );
[51b7345]107}
108
[0dd3a2f]109void Visitor::visit( SwitchStmt *switchStmt ) {
110        maybeAccept( switchStmt->get_condition(), *this );
[8688ce1]111        acceptAll( switchStmt->get_statements(), *this );
[51b7345]112}
113
[0dd3a2f]114void Visitor::visit( CaseStmt *caseStmt ) {
115        maybeAccept( caseStmt->get_condition(), *this );
116        acceptAll( caseStmt->get_statements(), *this );
[51b7345]117}
118
[0dd3a2f]119void Visitor::visit( BranchStmt *branchStmt ) {
[51b7345]120}
121
[0dd3a2f]122void Visitor::visit( ReturnStmt *returnStmt ) {
123        maybeAccept( returnStmt->get_expr(), *this );
[51b7345]124}
125
[0dd3a2f]126void Visitor::visit( TryStmt *tryStmt ) {
127        maybeAccept( tryStmt->get_block(), *this );
128        acceptAll( tryStmt->get_catchers(), *this );
[51b7345]129}
130
[0dd3a2f]131void Visitor::visit( CatchStmt *catchStmt ) {
132        maybeAccept( catchStmt->get_decl(), *this );
133        maybeAccept( catchStmt->get_body(), *this );
[51b7345]134}
135
[0dd3a2f]136void Visitor::visit( FinallyStmt *finalStmt ) {
137        maybeAccept( finalStmt->get_block(), *this );
[51b7345]138}
139
[0dd3a2f]140void Visitor::visit( NullStmt *nullStmt ) {
[51b7345]141}
142
[0dd3a2f]143void Visitor::visit( DeclStmt *declStmt ) {
144        maybeAccept( declStmt->get_decl(), *this );
[51b7345]145}
146
[f1b1e4c]147void Visitor::visit( ImplicitCtorDtorStmt *impCtorDtorStmt ) {
148        maybeAccept( impCtorDtorStmt->get_callStmt(), *this );
149}
150
[0dd3a2f]151void Visitor::visit( ApplicationExpr *applicationExpr ) {
152        acceptAll( applicationExpr->get_results(), *this );
153        maybeAccept( applicationExpr->get_function(), *this );
154        acceptAll( applicationExpr->get_args(), *this );
[51b7345]155}
156
[0dd3a2f]157void Visitor::visit( UntypedExpr *untypedExpr ) {
158        acceptAll( untypedExpr->get_results(), *this );
159        acceptAll( untypedExpr->get_args(), *this );
[51b7345]160}
161
[0dd3a2f]162void Visitor::visit( NameExpr *nameExpr ) {
163        acceptAll( nameExpr->get_results(), *this );
[51b7345]164}
165
[0dd3a2f]166void Visitor::visit( AddressExpr *addressExpr ) {
167        acceptAll( addressExpr->get_results(), *this );
168        maybeAccept( addressExpr->get_arg(), *this );
[51b7345]169}
170
[0dd3a2f]171void Visitor::visit( LabelAddressExpr *labAddressExpr ) {
172        acceptAll( labAddressExpr->get_results(), *this );
173        maybeAccept( labAddressExpr->get_arg(), *this );
[51b7345]174}
175
[0dd3a2f]176void Visitor::visit( CastExpr *castExpr ) {
177        acceptAll( castExpr->get_results(), *this );
178        maybeAccept( castExpr->get_arg(), *this );
[51b7345]179}
180
[0dd3a2f]181void Visitor::visit( UntypedMemberExpr *memberExpr ) {
182        acceptAll( memberExpr->get_results(), *this );
183        maybeAccept( memberExpr->get_aggregate(), *this );
[3b58d91]184        maybeAccept( memberExpr->get_member(), *this );
[51b7345]185}
186
[0dd3a2f]187void Visitor::visit( MemberExpr *memberExpr ) {
188        acceptAll( memberExpr->get_results(), *this );
189        maybeAccept( memberExpr->get_aggregate(), *this );
[51b7345]190}
191
[0dd3a2f]192void Visitor::visit( VariableExpr *variableExpr ) {
193        acceptAll( variableExpr->get_results(), *this );
[51b7345]194}
195
[0dd3a2f]196void Visitor::visit( ConstantExpr *constantExpr ) {
197        acceptAll( constantExpr->get_results(), *this );
198        maybeAccept( constantExpr->get_constant(), *this );
[51b7345]199}
200
[0dd3a2f]201void Visitor::visit( SizeofExpr *sizeofExpr ) {
202        acceptAll( sizeofExpr->get_results(), *this );
203        if ( sizeofExpr->get_isType() ) {
204                maybeAccept( sizeofExpr->get_type(), *this );
205        } else {
206                maybeAccept( sizeofExpr->get_expr(), *this );
207        }
[51b7345]208}
209
[47534159]210void Visitor::visit( AlignofExpr *alignofExpr ) {
211        acceptAll( alignofExpr->get_results(), *this );
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 ) {
220        acceptAll( offsetofExpr->get_results(), *this );
221        maybeAccept( offsetofExpr->get_type(), *this );
222}
223
[25a054f]224void Visitor::visit( OffsetofExpr *offsetofExpr ) {
225        acceptAll( offsetofExpr->get_results(), *this );
226        maybeAccept( offsetofExpr->get_type(), *this );
227        maybeAccept( offsetofExpr->get_member(), *this );
228}
229
[afc1045]230void Visitor::visit( OffsetPackExpr *offsetPackExpr ) {
231        acceptAll( offsetPackExpr->get_results(), *this );
232        maybeAccept( offsetPackExpr->get_type(), *this );
233}
234
[0dd3a2f]235void Visitor::visit( AttrExpr *attrExpr ) {
236        acceptAll( attrExpr->get_results(), *this );
237        if ( attrExpr->get_isType() ) {
238                maybeAccept( attrExpr->get_type(), *this );
239        } else {
240                maybeAccept( attrExpr->get_expr(), *this );
241        }
[51b7345]242}
243
[0dd3a2f]244void Visitor::visit( LogicalExpr *logicalExpr ) {
245        acceptAll( logicalExpr->get_results(), *this );
246        maybeAccept( logicalExpr->get_arg1(), *this );
247        maybeAccept( logicalExpr->get_arg2(), *this );
[51b7345]248}
249
[0dd3a2f]250void Visitor::visit( ConditionalExpr *conditionalExpr ) {
251        acceptAll( conditionalExpr->get_results(), *this );
252        maybeAccept( conditionalExpr->get_arg1(), *this );
253        maybeAccept( conditionalExpr->get_arg2(), *this );
254        maybeAccept( conditionalExpr->get_arg3(), *this );
[51b7345]255}
256
[0dd3a2f]257void Visitor::visit( CommaExpr *commaExpr ) {
258        acceptAll( commaExpr->get_results(), *this );
259        maybeAccept( commaExpr->get_arg1(), *this );
260        maybeAccept( commaExpr->get_arg2(), *this );
[51b7345]261}
262
[0dd3a2f]263void Visitor::visit( TupleExpr *tupleExpr ) {
264        acceptAll( tupleExpr->get_results(), *this );
265        acceptAll( tupleExpr->get_exprs(), *this );
[51b7345]266}
267
[0dd3a2f]268void Visitor::visit( SolvedTupleExpr *tupleExpr ) {
269        acceptAll( tupleExpr->get_results(), *this );
270        acceptAll( tupleExpr->get_exprs(), *this );
[51b7345]271}
272
[0dd3a2f]273void Visitor::visit( TypeExpr *typeExpr ) {
274        acceptAll( typeExpr->get_results(), *this );
275        maybeAccept( typeExpr->get_type(), *this );
[51b7345]276}
277
[7f5566b]278void Visitor::visit( AsmExpr *asmExpr ) {
279        maybeAccept( asmExpr->get_inout(), *this );
280        maybeAccept( asmExpr->get_constraint(), *this );
281        maybeAccept( asmExpr->get_operand(), *this );
282}
283
[db4ecc5]284void Visitor::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
285        maybeAccept( impCpCtorExpr->get_callExpr(), *this );
286        acceptAll( impCpCtorExpr->get_tempDecls(), *this );
[dc2e7e0]287        acceptAll( impCpCtorExpr->get_returnDecls(), *this );
[db4ecc5]288}
289
[0dd3a2f]290void Visitor::visit( UntypedValofExpr *valofExpr ) {
291        acceptAll( valofExpr->get_results(), *this );
292        maybeAccept( valofExpr->get_body(), *this );
[51b7345]293}
294
[630a82a]295void Visitor::visit( CompoundLiteralExpr *compLitExpr ) {
296        acceptAll( compLitExpr->get_results(), *this );
297        maybeAccept( compLitExpr->get_type(), *this );
298        maybeAccept( compLitExpr->get_initializer(), *this );
299}
300
[8688ce1]301void Visitor::visit( RangeExpr *rangeExpr ) {
302        maybeAccept( rangeExpr->get_low(), *this );
303        maybeAccept( rangeExpr->get_high(), *this );
304}
305
[3b58d91]306void Visitor::visit( TupleIndexExpr *tupleExpr ) {
307        acceptAll( tupleExpr->get_results(), *this );
308        maybeAccept( tupleExpr->get_tuple(), *this );
309}
310
311void Visitor::visit( MemberTupleExpr *tupleExpr ) {
312        acceptAll( tupleExpr->get_results(), *this );
313        maybeAccept( tupleExpr->get_member(), *this );
314        maybeAccept( tupleExpr->get_aggregate(), *this );
315}
316
317void Visitor::visit( MultipleAssignExpr *assignExpr ) {
318        acceptAll( assignExpr->get_results(), *this );
319        maybeAccept( assignExpr->get_lhs(), *this );
320        maybeAccept( assignExpr->get_rhs(), *this );
321}
322
323void Visitor::visit( MassAssignExpr *assignExpr ) {
324        acceptAll( assignExpr->get_results(), *this );
325        maybeAccept( assignExpr->get_lhs(), *this );
326        maybeAccept( assignExpr->get_rhs(), *this );
327}
328
[0dd3a2f]329void Visitor::visit( VoidType *voidType ) {
330        acceptAll( voidType->get_forall(), *this );
[51b7345]331}
332
[0dd3a2f]333void Visitor::visit( BasicType *basicType ) {
334        acceptAll( basicType->get_forall(), *this );
[51b7345]335}
336
[0dd3a2f]337void Visitor::visit( PointerType *pointerType ) {
338        acceptAll( pointerType->get_forall(), *this );
339        maybeAccept( pointerType->get_base(), *this );
[51b7345]340}
341
[0dd3a2f]342void Visitor::visit( ArrayType *arrayType ) {
343        acceptAll( arrayType->get_forall(), *this );
344        maybeAccept( arrayType->get_dimension(), *this );
345        maybeAccept( arrayType->get_base(), *this );
[51b7345]346}
347
[0dd3a2f]348void Visitor::visit( FunctionType *functionType ) {
349        acceptAll( functionType->get_forall(), *this );
350        acceptAll( functionType->get_returnVals(), *this );
351        acceptAll( functionType->get_parameters(), *this );
[51b7345]352}
353
[1e1e15b]354void Visitor::handleReferenceToType( ReferenceToType *aggregateUseType ) {
[0dd3a2f]355        acceptAll( aggregateUseType->get_forall(), *this );
356        acceptAll( aggregateUseType->get_parameters(), *this );
[51b7345]357}
358
[0dd3a2f]359void Visitor::visit( StructInstType *aggregateUseType ) {
[1e1e15b]360        handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b7345]361}
362
[0dd3a2f]363void Visitor::visit( UnionInstType *aggregateUseType ) {
[1e1e15b]364        handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b7345]365}
366
[0dd3a2f]367void Visitor::visit( EnumInstType *aggregateUseType ) {
[1e1e15b]368        handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b7345]369}
370
[4040425]371void Visitor::visit( TraitInstType *aggregateUseType ) {
[1e1e15b]372        handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[0dd3a2f]373        acceptAll( aggregateUseType->get_members(), *this );
[51b7345]374}
375
[0dd3a2f]376void Visitor::visit( TypeInstType *aggregateUseType ) {
[1e1e15b]377        handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
[51b7345]378}
379
[0dd3a2f]380void Visitor::visit( TupleType *tupleType ) {
381        acceptAll( tupleType->get_forall(), *this );
382        acceptAll( tupleType->get_types(), *this );
[51b7345]383}
384
[0dd3a2f]385void Visitor::visit( TypeofType *typeofType ) {
386        assert( typeofType->get_expr() );
387        typeofType->get_expr()->accept( *this );
[51b7345]388}
389
[0dd3a2f]390void Visitor::visit( AttrType *attrType ) {
391        if ( attrType->get_isType() ) {
392                assert( attrType->get_type() );
393                attrType->get_type()->accept( *this );
394        } else {
395                assert( attrType->get_expr() );
396                attrType->get_expr()->accept( *this );
397        } // if
[51b7345]398}
399
[44b7088]400void Visitor::visit( VarArgsType *varArgsType ) {
401        acceptAll( varArgsType->get_forall(), *this );
402}
403
[0dd3a2f]404void Visitor::visit( SingleInit *singleInit ) {
405        singleInit->get_value()->accept( *this );
[51b7345]406}
407
[0dd3a2f]408void Visitor::visit( ListInit *listInit ) {
409        acceptAll( listInit->get_designators(), *this );
410        acceptAll( listInit->get_initializers(), *this );
[51b7345]411}
412
[71f4e4f]413void Visitor::visit( ConstructorInit *ctorInit ) {
414        maybeAccept( ctorInit->get_ctor(), *this );
415        maybeAccept( ctorInit->get_init(), *this );
416}
417
[0dd3a2f]418void Visitor::visit( Subrange *subrange ) {}
[51b7345]419
[0dd3a2f]420void Visitor::visit( Constant *constant ) {}
421// Local Variables: //
422// tab-width: 4 //
423// mode: c++ //
424// compile-command: "make install" //
425// End: //
Note: See TracBrowser for help on using the repository browser.