source: src/SynTree/Visitor.cc@ 4ffdd63

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory 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 4ffdd63 was 4ffdd63, checked in by Rob Schluntz <rschlunt@…>, 9 years ago

change FixCopyCtors to insert comma expressions and UntypedExpr assignments rather than changing the location of the argument. Remove copyCtors list from ImplicitCopyCtorExpr

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