source: src/SynTree/Mutator.cc@ c3acf0aa

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 c3acf0aa was a5f0529, checked in by Andrew Beach <ajbeach@…>, 8 years ago

Virtual casts have been added. They still require a lot of hand coded support to work but for simple cases it should be enough.

  • Property mode set to 100644
File size: 20.8 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// Mutator.cc --
[0dd3a2f]8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
[daf1af8]11// Last Modified By : Andrew Beach
[a5f0529]12// Last Modified On : Mon Jul 24 16:32:00 2017
13// Update Count : 25
[0dd3a2f]14//
15
[51b73452]16#include <cassert>
17#include "Mutator.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"
[d3b7937]24#include "Common/utility.h"
[e33f321]25#include "TypeSubstitution.h"
[51b73452]26
[d9a0e76]27Mutator::Mutator() {}
[51b73452]28
[d9a0e76]29Mutator::~Mutator() {}
[51b73452]30
[1db21619]31DeclarationWithType *Mutator::mutate( ObjectDecl *objectDecl ) {
[0dd3a2f]32 objectDecl->set_type( maybeMutate( objectDecl->get_type(), *this ) );
33 objectDecl->set_init( maybeMutate( objectDecl->get_init(), *this ) );
34 objectDecl->set_bitfieldWidth( maybeMutate( objectDecl->get_bitfieldWidth(), *this ) );
35 return objectDecl;
[51b73452]36}
37
[d9a0e76]38DeclarationWithType *Mutator::mutate( FunctionDecl *functionDecl ) {
[0dd3a2f]39 functionDecl->set_functionType( maybeMutate( functionDecl->get_functionType(), *this ) );
40 functionDecl->set_statements( maybeMutate( functionDecl->get_statements(), *this ) );
41 return functionDecl;
[51b73452]42}
43
[d9a0e76]44Declaration *Mutator::handleAggregateDecl( AggregateDecl *aggregateDecl ) {
[0dd3a2f]45 mutateAll( aggregateDecl->get_parameters(), *this );
46 mutateAll( aggregateDecl->get_members(), *this );
47 return aggregateDecl;
[51b73452]48}
49
[d9a0e76]50Declaration *Mutator::mutate( StructDecl *aggregateDecl ) {
[0dd3a2f]51 handleAggregateDecl( aggregateDecl );
52 return aggregateDecl;
[51b73452]53}
54
[d9a0e76]55Declaration *Mutator::mutate( UnionDecl *aggregateDecl ) {
[0dd3a2f]56 handleAggregateDecl( aggregateDecl );
57 return aggregateDecl;
[51b73452]58}
59
[d9a0e76]60Declaration *Mutator::mutate( EnumDecl *aggregateDecl ) {
[0dd3a2f]61 handleAggregateDecl( aggregateDecl );
62 return aggregateDecl;
[51b73452]63}
64
[4040425]65Declaration *Mutator::mutate( TraitDecl *aggregateDecl ) {
[0dd3a2f]66 handleAggregateDecl( aggregateDecl );
67 return aggregateDecl;
[51b73452]68}
69
[d9a0e76]70Declaration *Mutator::handleNamedTypeDecl( NamedTypeDecl *typeDecl ) {
[0dd3a2f]71 mutateAll( typeDecl->get_parameters(), *this );
72 mutateAll( typeDecl->get_assertions(), *this );
73 typeDecl->set_base( maybeMutate( typeDecl->get_base(), *this ) );
74 return typeDecl;
[51b73452]75}
76
[d9a0e76]77TypeDecl *Mutator::mutate( TypeDecl *typeDecl ) {
[0dd3a2f]78 handleNamedTypeDecl( typeDecl );
[67cf18c]79 typeDecl->set_init( maybeMutate( typeDecl->get_init(), *this ) );
[0dd3a2f]80 return typeDecl;
[51b73452]81}
82
[d9a0e76]83Declaration *Mutator::mutate( TypedefDecl *typeDecl ) {
[0dd3a2f]84 handleNamedTypeDecl( typeDecl );
85 return typeDecl;
[51b73452]86}
87
[e994912]88AsmDecl *Mutator::mutate( AsmDecl *asmDecl ) {
89 asmDecl->set_stmt( maybeMutate( asmDecl->get_stmt(), *this ) );
90 return asmDecl;
91}
92
93
[d9a0e76]94CompoundStmt *Mutator::mutate( CompoundStmt *compoundStmt ) {
[0dd3a2f]95 mutateAll( compoundStmt->get_kids(), *this );
96 return compoundStmt;
[51b73452]97}
98
[d9a0e76]99Statement *Mutator::mutate( ExprStmt *exprStmt ) {
[0dd3a2f]100 exprStmt->set_expr( maybeMutate( exprStmt->get_expr(), *this ) );
101 return exprStmt;
[51b73452]102}
103
[7f5566b]104Statement *Mutator::mutate( AsmStmt *asmStmt ) {
105 asmStmt->set_instruction( maybeMutate( asmStmt->get_instruction(), *this ) );
106 mutateAll( asmStmt->get_output(), *this );
107 mutateAll( asmStmt->get_input(), *this );
108 mutateAll( asmStmt->get_clobber(), *this );
109 return asmStmt;
110}
111
[d9a0e76]112Statement *Mutator::mutate( IfStmt *ifStmt ) {
[0dd3a2f]113 ifStmt->set_condition( maybeMutate( ifStmt->get_condition(), *this ) );
114 ifStmt->set_thenPart( maybeMutate( ifStmt->get_thenPart(), *this ) );
115 ifStmt->set_elsePart( maybeMutate( ifStmt->get_elsePart(), *this ) );
116 return ifStmt;
[51b73452]117}
118
[d9a0e76]119Statement *Mutator::mutate( WhileStmt *whileStmt ) {
[0dd3a2f]120 whileStmt->set_condition( maybeMutate( whileStmt->get_condition(), *this ) );
121 whileStmt->set_body( maybeMutate( whileStmt->get_body(), *this ) );
122 return whileStmt;
[51b73452]123}
124
[d9a0e76]125Statement *Mutator::mutate( ForStmt *forStmt ) {
[145f1fc]126 mutateAll( forStmt->get_initialization(), *this );
[0dd3a2f]127 forStmt->set_condition( maybeMutate( forStmt->get_condition(), *this ) );
128 forStmt->set_increment( maybeMutate( forStmt->get_increment(), *this ) );
129 forStmt->set_body( maybeMutate( forStmt->get_body(), *this ) );
130 return forStmt;
[51b73452]131}
132
[d9a0e76]133Statement *Mutator::mutate( SwitchStmt *switchStmt ) {
[0dd3a2f]134 switchStmt->set_condition( maybeMutate( switchStmt->get_condition(), *this ) );
[8688ce1]135 mutateAll( switchStmt->get_statements(), *this );
[0dd3a2f]136 return switchStmt;
[51b73452]137}
138
[d9a0e76]139Statement *Mutator::mutate( CaseStmt *caseStmt ) {
[0dd3a2f]140 caseStmt->set_condition( maybeMutate( caseStmt->get_condition(), *this ) );
141 mutateAll (caseStmt->get_statements(), *this );
[51b73452]142
[0dd3a2f]143 return caseStmt;
[51b73452]144}
145
[d9a0e76]146Statement *Mutator::mutate( BranchStmt *branchStmt ) {
[0dd3a2f]147 return branchStmt;
[51b73452]148}
149
[d9a0e76]150Statement *Mutator::mutate( ReturnStmt *returnStmt ) {
[0dd3a2f]151 returnStmt->set_expr( maybeMutate( returnStmt->get_expr(), *this ) );
152 return returnStmt;
[51b73452]153}
154
[daf1af8]155Statement *Mutator::mutate( ThrowStmt *throwStmt ) {
156 throwStmt->set_expr( maybeMutate( throwStmt->get_expr(), *this ) );
157 throwStmt->set_target( maybeMutate( throwStmt->get_target(), *this ) );
158 return throwStmt;
159}
160
[d9a0e76]161Statement *Mutator::mutate( TryStmt *tryStmt ) {
[0dd3a2f]162 tryStmt->set_block( maybeMutate( tryStmt->get_block(), *this ) );
163 mutateAll( tryStmt->get_catchers(), *this );
[25a8631]164 tryStmt->set_finally( maybeMutate( tryStmt->get_finally(), *this ) );
[0dd3a2f]165 return tryStmt;
[51b73452]166}
167
[d9a0e76]168Statement *Mutator::mutate( CatchStmt *catchStmt ) {
[0dd3a2f]169 catchStmt->set_decl( maybeMutate( catchStmt->get_decl(), *this ) );
[25a8631]170 catchStmt->set_cond( maybeMutate( catchStmt->get_cond(), *this ) );
[0dd3a2f]171 catchStmt->set_body( maybeMutate( catchStmt->get_body(), *this ) );
172 return catchStmt;
[51b73452]173}
174
[d9a0e76]175Statement *Mutator::mutate( FinallyStmt *finalStmt ) {
[0dd3a2f]176 finalStmt->set_block( maybeMutate( finalStmt->get_block(), *this ) );
177 return finalStmt;
[51b73452]178}
179
[d9a0e76]180NullStmt *Mutator::mutate( NullStmt *nullStmt ) {
[0dd3a2f]181 return nullStmt;
[51b73452]182}
183
[d9a0e76]184Statement *Mutator::mutate( DeclStmt *declStmt ) {
[0dd3a2f]185 declStmt->set_decl( maybeMutate( declStmt->get_decl(), *this ) );
186 return declStmt;
[51b73452]187}
188
[f1b1e4c]189Statement *Mutator::mutate( ImplicitCtorDtorStmt *impCtorDtorStmt ) {
190 impCtorDtorStmt->set_callStmt( maybeMutate( impCtorDtorStmt->get_callStmt(), *this ) );
191 return impCtorDtorStmt;
192}
193
[e994912]194
[d9a0e76]195Expression *Mutator::mutate( ApplicationExpr *applicationExpr ) {
[e33f321]196 applicationExpr->set_env( maybeMutate( applicationExpr->get_env(), *this ) );
[906e24d]197 applicationExpr->set_result( maybeMutate( applicationExpr->get_result(), *this ) );
[0dd3a2f]198 applicationExpr->set_function( maybeMutate( applicationExpr->get_function(), *this ) );
199 mutateAll( applicationExpr->get_args(), *this );
200 return applicationExpr;
[51b73452]201}
202
[d9a0e76]203Expression *Mutator::mutate( UntypedExpr *untypedExpr ) {
[e33f321]204 untypedExpr->set_env( maybeMutate( untypedExpr->get_env(), *this ) );
[906e24d]205 untypedExpr->set_result( maybeMutate( untypedExpr->get_result(), *this ) );
[0dd3a2f]206 mutateAll( untypedExpr->get_args(), *this );
207 return untypedExpr;
[51b73452]208}
209
[d9a0e76]210Expression *Mutator::mutate( NameExpr *nameExpr ) {
[e33f321]211 nameExpr->set_env( maybeMutate( nameExpr->get_env(), *this ) );
[906e24d]212 nameExpr->set_result( maybeMutate( nameExpr->get_result(), *this ) );
[0dd3a2f]213 return nameExpr;
[51b73452]214}
215
[d9a0e76]216Expression *Mutator::mutate( AddressExpr *addressExpr ) {
[e33f321]217 addressExpr->set_env( maybeMutate( addressExpr->get_env(), *this ) );
[906e24d]218 addressExpr->set_result( maybeMutate( addressExpr->get_result(), *this ) );
[0dd3a2f]219 addressExpr->set_arg( maybeMutate( addressExpr->get_arg(), *this ) );
220 return addressExpr;
[51b73452]221}
222
[d9a0e76]223Expression *Mutator::mutate( LabelAddressExpr *labelAddressExpr ) {
[e33f321]224 labelAddressExpr->set_env( maybeMutate( labelAddressExpr->get_env(), *this ) );
[906e24d]225 labelAddressExpr->set_result( maybeMutate( labelAddressExpr->get_result(), *this ) );
[0dd3a2f]226 labelAddressExpr->set_arg( maybeMutate( labelAddressExpr->get_arg(), *this ) );
227 return labelAddressExpr;
[51b73452]228}
229
[d9a0e76]230Expression *Mutator::mutate( CastExpr *castExpr ) {
[e33f321]231 castExpr->set_env( maybeMutate( castExpr->get_env(), *this ) );
[906e24d]232 castExpr->set_result( maybeMutate( castExpr->get_result(), *this ) );
[a5f0529]233 castExpr->set_arg( maybeMutate( castExpr->get_arg(), *this ) );
234 return castExpr;
235}
236
237Expression *Mutator::mutate( VirtualCastExpr *castExpr ) {
238 castExpr->set_env( maybeMutate( castExpr->get_env(), *this ) );
239 castExpr->set_result( maybeMutate( castExpr->get_result(), *this ) );
[0dd3a2f]240 castExpr->set_arg( maybeMutate( castExpr->get_arg(), *this ) );
241 return castExpr;
[51b73452]242}
243
[d9a0e76]244Expression *Mutator::mutate( UntypedMemberExpr *memberExpr ) {
[e33f321]245 memberExpr->set_env( maybeMutate( memberExpr->get_env(), *this ) );
[906e24d]246 memberExpr->set_result( maybeMutate( memberExpr->get_result(), *this ) );
[0dd3a2f]247 memberExpr->set_aggregate( maybeMutate( memberExpr->get_aggregate(), *this ) );
[3b58d91]248 memberExpr->set_member( maybeMutate( memberExpr->get_member(), *this ) );
[0dd3a2f]249 return memberExpr;
[51b73452]250}
251
[d9a0e76]252Expression *Mutator::mutate( MemberExpr *memberExpr ) {
[e33f321]253 memberExpr->set_env( maybeMutate( memberExpr->get_env(), *this ) );
[906e24d]254 memberExpr->set_result( maybeMutate( memberExpr->get_result(), *this ) );
[0dd3a2f]255 memberExpr->set_aggregate( maybeMutate( memberExpr->get_aggregate(), *this ) );
256 return memberExpr;
[51b73452]257}
258
[d9a0e76]259Expression *Mutator::mutate( VariableExpr *variableExpr ) {
[e33f321]260 variableExpr->set_env( maybeMutate( variableExpr->get_env(), *this ) );
[906e24d]261 variableExpr->set_result( maybeMutate( variableExpr->get_result(), *this ) );
[0dd3a2f]262 return variableExpr;
[51b73452]263}
264
[d9a0e76]265Expression *Mutator::mutate( ConstantExpr *constantExpr ) {
[e33f321]266 constantExpr->set_env( maybeMutate( constantExpr->get_env(), *this ) );
[906e24d]267 constantExpr->set_result( maybeMutate( constantExpr->get_result(), *this ) );
[51b73452]268// maybeMutate( constantExpr->get_constant(), *this )
[0dd3a2f]269 return constantExpr;
[51b73452]270}
271
[d9a0e76]272Expression *Mutator::mutate( SizeofExpr *sizeofExpr ) {
[e33f321]273 sizeofExpr->set_env( maybeMutate( sizeofExpr->get_env(), *this ) );
[906e24d]274 sizeofExpr->set_result( maybeMutate( sizeofExpr->get_result(), *this ) );
[0dd3a2f]275 if ( sizeofExpr->get_isType() ) {
276 sizeofExpr->set_type( maybeMutate( sizeofExpr->get_type(), *this ) );
277 } else {
278 sizeofExpr->set_expr( maybeMutate( sizeofExpr->get_expr(), *this ) );
279 }
280 return sizeofExpr;
[51b73452]281}
282
[47534159]283Expression *Mutator::mutate( AlignofExpr *alignofExpr ) {
[e33f321]284 alignofExpr->set_env( maybeMutate( alignofExpr->get_env(), *this ) );
[906e24d]285 alignofExpr->set_result( maybeMutate( alignofExpr->get_result(), *this ) );
[47534159]286 if ( alignofExpr->get_isType() ) {
287 alignofExpr->set_type( maybeMutate( alignofExpr->get_type(), *this ) );
288 } else {
289 alignofExpr->set_expr( maybeMutate( alignofExpr->get_expr(), *this ) );
290 }
291 return alignofExpr;
292}
293
[2a4b088]294Expression *Mutator::mutate( UntypedOffsetofExpr *offsetofExpr ) {
[e33f321]295 offsetofExpr->set_env( maybeMutate( offsetofExpr->get_env(), *this ) );
[906e24d]296 offsetofExpr->set_result( maybeMutate( offsetofExpr->get_result(), *this ) );
[2a4b088]297 offsetofExpr->set_type( maybeMutate( offsetofExpr->get_type(), *this ) );
298 return offsetofExpr;
299}
300
[25a054f]301Expression *Mutator::mutate( OffsetofExpr *offsetofExpr ) {
[e33f321]302 offsetofExpr->set_env( maybeMutate( offsetofExpr->get_env(), *this ) );
[906e24d]303 offsetofExpr->set_result( maybeMutate( offsetofExpr->get_result(), *this ) );
[25a054f]304 offsetofExpr->set_type( maybeMutate( offsetofExpr->get_type(), *this ) );
305 offsetofExpr->set_member( maybeMutate( offsetofExpr->get_member(), *this ) );
306 return offsetofExpr;
307}
308
[afc1045]309Expression *Mutator::mutate( OffsetPackExpr *offsetPackExpr ) {
[e33f321]310 offsetPackExpr->set_env( maybeMutate( offsetPackExpr->get_env(), *this ) );
[906e24d]311 offsetPackExpr->set_result( maybeMutate( offsetPackExpr->get_result(), *this ) );
[afc1045]312 offsetPackExpr->set_type( maybeMutate( offsetPackExpr->get_type(), *this ) );
313 return offsetPackExpr;
314}
315
[d9a0e76]316Expression *Mutator::mutate( AttrExpr *attrExpr ) {
[e33f321]317 attrExpr->set_env( maybeMutate( attrExpr->get_env(), *this ) );
[906e24d]318 attrExpr->set_result( maybeMutate( attrExpr->get_result(), *this ) );
[0dd3a2f]319 if ( attrExpr->get_isType() ) {
320 attrExpr->set_type( maybeMutate( attrExpr->get_type(), *this ) );
321 } else {
322 attrExpr->set_expr( maybeMutate( attrExpr->get_expr(), *this ) );
323 }
324 return attrExpr;
[51b73452]325}
326
[d9a0e76]327Expression *Mutator::mutate( LogicalExpr *logicalExpr ) {
[e33f321]328 logicalExpr->set_env( maybeMutate( logicalExpr->get_env(), *this ) );
[906e24d]329 logicalExpr->set_result( maybeMutate( logicalExpr->get_result(), *this ) );
[0dd3a2f]330 logicalExpr->set_arg1( maybeMutate( logicalExpr->get_arg1(), *this ) );
331 logicalExpr->set_arg2( maybeMutate( logicalExpr->get_arg2(), *this ) );
332 return logicalExpr;
[51b73452]333}
334
[d9a0e76]335Expression *Mutator::mutate( ConditionalExpr *conditionalExpr ) {
[e33f321]336 conditionalExpr->set_env( maybeMutate( conditionalExpr->get_env(), *this ) );
[906e24d]337 conditionalExpr->set_result( maybeMutate( conditionalExpr->get_result(), *this ) );
[0dd3a2f]338 conditionalExpr->set_arg1( maybeMutate( conditionalExpr->get_arg1(), *this ) );
339 conditionalExpr->set_arg2( maybeMutate( conditionalExpr->get_arg2(), *this ) );
340 conditionalExpr->set_arg3( maybeMutate( conditionalExpr->get_arg3(), *this ) );
341 return conditionalExpr;
[51b73452]342}
343
[d9a0e76]344Expression *Mutator::mutate( CommaExpr *commaExpr ) {
[e33f321]345 commaExpr->set_env( maybeMutate( commaExpr->get_env(), *this ) );
[906e24d]346 commaExpr->set_result( maybeMutate( commaExpr->get_result(), *this ) );
[0dd3a2f]347 commaExpr->set_arg1( maybeMutate( commaExpr->get_arg1(), *this ) );
348 commaExpr->set_arg2( maybeMutate( commaExpr->get_arg2(), *this ) );
349 return commaExpr;
[51b73452]350}
351
[d9a0e76]352Expression *Mutator::mutate( TypeExpr *typeExpr ) {
[e33f321]353 typeExpr->set_env( maybeMutate( typeExpr->get_env(), *this ) );
[906e24d]354 typeExpr->set_result( maybeMutate( typeExpr->get_result(), *this ) );
[0dd3a2f]355 typeExpr->set_type( maybeMutate( typeExpr->get_type(), *this ) );
356 return typeExpr;
[51b73452]357}
358
[7f5566b]359Expression *Mutator::mutate( AsmExpr *asmExpr ) {
[e33f321]360 asmExpr->set_env( maybeMutate( asmExpr->get_env(), *this ) );
[7f5566b]361 asmExpr->set_inout( maybeMutate( asmExpr->get_inout(), *this ) );
362 asmExpr->set_constraint( maybeMutate( asmExpr->get_constraint(), *this ) );
363 asmExpr->set_operand( maybeMutate( asmExpr->get_operand(), *this ) );
364 return asmExpr;
365}
366
[db4ecc5]367Expression* Mutator::mutate( ImplicitCopyCtorExpr *impCpCtorExpr ) {
[e33f321]368 impCpCtorExpr->set_env( maybeMutate( impCpCtorExpr->get_env(), *this ) );
[907eccb]369 impCpCtorExpr->set_result( maybeMutate( impCpCtorExpr->get_result(), *this ) );
[db4ecc5]370 impCpCtorExpr->set_callExpr( maybeMutate( impCpCtorExpr->get_callExpr(), *this ) );
371 mutateAll( impCpCtorExpr->get_tempDecls(), *this );
[dc2e7e0]372 mutateAll( impCpCtorExpr->get_returnDecls(), *this );
[d5556a3]373 mutateAll( impCpCtorExpr->get_dtors(), *this );
[db4ecc5]374 return impCpCtorExpr;
375}
376
[b6fe7e6]377Expression* Mutator::mutate( ConstructorExpr *ctorExpr ) {
[e33f321]378 ctorExpr->set_env( maybeMutate( ctorExpr->get_env(), *this ) );
[906e24d]379 ctorExpr->set_result( maybeMutate( ctorExpr->get_result(), *this ) );
[b6fe7e6]380 ctorExpr->set_callExpr( maybeMutate( ctorExpr->get_callExpr(), *this ) );
381 return ctorExpr;
[51b73452]382}
383
[630a82a]384Expression *Mutator::mutate( CompoundLiteralExpr *compLitExpr ) {
[e33f321]385 compLitExpr->set_env( maybeMutate( compLitExpr->get_env(), *this ) );
[906e24d]386 compLitExpr->set_result( maybeMutate( compLitExpr->get_result(), *this ) );
[630a82a]387 compLitExpr->set_initializer( maybeMutate( compLitExpr->get_initializer(), *this ) );
388 return compLitExpr;
389}
390
[8688ce1]391Expression *Mutator::mutate( RangeExpr *rangeExpr ) {
[e33f321]392 rangeExpr->set_env( maybeMutate( rangeExpr->get_env(), *this ) );
[8688ce1]393 rangeExpr->set_low( maybeMutate( rangeExpr->get_low(), *this ) );
394 rangeExpr->set_high( maybeMutate( rangeExpr->get_high(), *this ) );
395 return rangeExpr;
396}
397
[907eccb]398Expression *Mutator::mutate( UntypedTupleExpr *tupleExpr ) {
399 tupleExpr->set_env( maybeMutate( tupleExpr->get_env(), *this ) );
400 tupleExpr->set_result( maybeMutate( tupleExpr->get_result(), *this ) );
401 mutateAll( tupleExpr->get_exprs(), *this );
402 return tupleExpr;
403}
404
[6eb8948]405Expression *Mutator::mutate( TupleExpr *tupleExpr ) {
[e33f321]406 tupleExpr->set_env( maybeMutate( tupleExpr->get_env(), *this ) );
[aa8f9df]407 tupleExpr->set_result( maybeMutate( tupleExpr->get_result(), *this ) );
[6eb8948]408 mutateAll( tupleExpr->get_exprs(), *this );
409 return tupleExpr;
410}
411
[3b58d91]412Expression *Mutator::mutate( TupleIndexExpr *tupleExpr ) {
[e33f321]413 tupleExpr->set_env( maybeMutate( tupleExpr->get_env(), *this ) );
[aa8f9df]414 tupleExpr->set_result( maybeMutate( tupleExpr->get_result(), *this ) );
[3b58d91]415 tupleExpr->set_tuple( maybeMutate( tupleExpr->get_tuple(), *this ) );
416 return tupleExpr;
417}
418
[6eb8948]419Expression *Mutator::mutate( TupleAssignExpr *assignExpr ) {
[e33f321]420 assignExpr->set_env( maybeMutate( assignExpr->get_env(), *this ) );
[aa8f9df]421 assignExpr->set_result( maybeMutate( assignExpr->get_result(), *this ) );
[d5556a3]422 assignExpr->set_stmtExpr( maybeMutate( assignExpr->get_stmtExpr(), *this ) );
[3b58d91]423 return assignExpr;
424}
425
[6eb8948]426Expression *Mutator::mutate( StmtExpr *stmtExpr ) {
[e33f321]427 stmtExpr->set_env( maybeMutate( stmtExpr->get_env(), *this ) );
[aa8f9df]428 stmtExpr->set_result( maybeMutate( stmtExpr->get_result(), *this ) );
[6eb8948]429 stmtExpr->set_statements( maybeMutate( stmtExpr->get_statements(), *this ) );
[d5556a3]430 mutateAll( stmtExpr->get_returnDecls(), *this );
431 mutateAll( stmtExpr->get_dtors(), *this );
[6eb8948]432 return stmtExpr;
[3b58d91]433}
434
[3c13c03]435Expression *Mutator::mutate( UniqueExpr *uniqueExpr ) {
[e33f321]436 uniqueExpr->set_env( maybeMutate( uniqueExpr->get_env(), *this ) );
[3c13c03]437 uniqueExpr->set_result( maybeMutate( uniqueExpr->get_result(), *this ) );
438 uniqueExpr->set_expr( maybeMutate( uniqueExpr->get_expr(), *this ) );
439 return uniqueExpr;
440}
441
[e4d829b]442Expression *Mutator::mutate( UntypedInitExpr * initExpr ) {
443 initExpr->set_env( maybeMutate( initExpr->get_env(), *this ) );
444 initExpr->set_result( maybeMutate( initExpr->get_result(), *this ) );
445 initExpr->set_expr( maybeMutate( initExpr->get_expr(), *this ) );
446 // not currently mutating initAlts, but this doesn't matter since this node is only used in the resolver.
447 return initExpr;
448}
449
450Expression *Mutator::mutate( InitExpr * initExpr ) {
451 initExpr->set_env( maybeMutate( initExpr->get_env(), *this ) );
452 initExpr->set_result( maybeMutate( initExpr->get_result(), *this ) );
453 initExpr->set_expr( maybeMutate( initExpr->get_expr(), *this ) );
454 initExpr->set_designation( maybeMutate( initExpr->get_designation(), *this ) );
455 return initExpr;
456}
457
[e994912]458
[d9a0e76]459Type *Mutator::mutate( VoidType *voidType ) {
[0dd3a2f]460 mutateAll( voidType->get_forall(), *this );
461 return voidType;
[51b73452]462}
463
[d9a0e76]464Type *Mutator::mutate( BasicType *basicType ) {
[0dd3a2f]465 mutateAll( basicType->get_forall(), *this );
466 return basicType;
[51b73452]467}
468
[d9a0e76]469Type *Mutator::mutate( PointerType *pointerType ) {
[0dd3a2f]470 mutateAll( pointerType->get_forall(), *this );
471 pointerType->set_base( maybeMutate( pointerType->get_base(), *this ) );
472 return pointerType;
[51b73452]473}
474
[d9a0e76]475Type *Mutator::mutate( ArrayType *arrayType ) {
[0dd3a2f]476 mutateAll( arrayType->get_forall(), *this );
477 arrayType->set_dimension( maybeMutate( arrayType->get_dimension(), *this ) );
478 arrayType->set_base( maybeMutate( arrayType->get_base(), *this ) );
479 return arrayType;
[51b73452]480}
481
[d9a0e76]482Type *Mutator::mutate( FunctionType *functionType ) {
[0dd3a2f]483 mutateAll( functionType->get_forall(), *this );
484 mutateAll( functionType->get_returnVals(), *this );
485 mutateAll( functionType->get_parameters(), *this );
486 return functionType;
[51b73452]487}
488
[d9a0e76]489Type *Mutator::handleReferenceToType( ReferenceToType *aggregateUseType ) {
[0dd3a2f]490 mutateAll( aggregateUseType->get_forall(), *this );
491 mutateAll( aggregateUseType->get_parameters(), *this );
492 return aggregateUseType;
[51b73452]493}
494
[d9a0e76]495Type *Mutator::mutate( StructInstType *aggregateUseType ) {
[0dd3a2f]496 handleReferenceToType( aggregateUseType );
497 return aggregateUseType;
[51b73452]498}
499
[d9a0e76]500Type *Mutator::mutate( UnionInstType *aggregateUseType ) {
[0dd3a2f]501 handleReferenceToType( aggregateUseType );
502 return aggregateUseType;
[51b73452]503}
504
[d9a0e76]505Type *Mutator::mutate( EnumInstType *aggregateUseType ) {
[0dd3a2f]506 handleReferenceToType( aggregateUseType );
507 return aggregateUseType;
[51b73452]508}
509
[4040425]510Type *Mutator::mutate( TraitInstType *aggregateUseType ) {
[0dd3a2f]511 handleReferenceToType( aggregateUseType );
512 mutateAll( aggregateUseType->get_members(), *this );
513 return aggregateUseType;
[51b73452]514}
515
[d9a0e76]516Type *Mutator::mutate( TypeInstType *aggregateUseType ) {
[0dd3a2f]517 handleReferenceToType( aggregateUseType );
518 return aggregateUseType;
[51b73452]519}
520
[d9a0e76]521Type *Mutator::mutate( TupleType *tupleType ) {
[0dd3a2f]522 mutateAll( tupleType->get_forall(), *this );
523 mutateAll( tupleType->get_types(), *this );
[62423350]524 mutateAll( tupleType->get_members(), *this );
[0dd3a2f]525 return tupleType;
[51b73452]526}
527
[d9a0e76]528Type *Mutator::mutate( TypeofType *typeofType ) {
[0dd3a2f]529 assert( typeofType->get_expr() );
530 typeofType->set_expr( typeofType->get_expr()->acceptMutator( *this ) );
531 return typeofType;
[51b73452]532}
533
[d9a0e76]534Type *Mutator::mutate( AttrType *attrType ) {
[0dd3a2f]535 if ( attrType->get_isType() ) {
536 assert( attrType->get_type() );
537 attrType->set_type( attrType->get_type()->acceptMutator( *this ) );
538 } else {
539 assert( attrType->get_expr() );
540 attrType->set_expr( attrType->get_expr()->acceptMutator( *this ) );
541 }
542 return attrType;
[51b73452]543}
544
[44b7088]545Type *Mutator::mutate( VarArgsType *varArgsType ) {
546 mutateAll( varArgsType->get_forall(), *this );
547 return varArgsType;
548}
549
[89e6ffc]550Type *Mutator::mutate( ZeroType *zeroType ) {
551 mutateAll( zeroType->get_forall(), *this );
552 return zeroType;
553}
554
555Type *Mutator::mutate( OneType *oneType ) {
556 mutateAll( oneType->get_forall(), *this );
557 return oneType;
558}
559
[e994912]560
[e4d829b]561Designation *Mutator::mutate( Designation * designation ) {
562 mutateAll( designation->get_designators(), *this );
563 return designation;
564}
565
[d9a0e76]566Initializer *Mutator::mutate( SingleInit *singleInit ) {
[0dd3a2f]567 singleInit->set_value( singleInit->get_value()->acceptMutator( *this ) );
568 return singleInit;
[51b73452]569}
570
[d9a0e76]571Initializer *Mutator::mutate( ListInit *listInit ) {
[e4d829b]572 mutateAll( listInit->get_designations(), *this );
[0dd3a2f]573 mutateAll( listInit->get_initializers(), *this );
574 return listInit;
[51b73452]575}
576
[71f4e4f]577Initializer *Mutator::mutate( ConstructorInit *ctorInit ) {
578 ctorInit->set_ctor( maybeMutate( ctorInit->get_ctor(), *this ) );
[d5556a3]579 ctorInit->set_dtor( maybeMutate( ctorInit->get_dtor(), *this ) );
[71f4e4f]580 ctorInit->set_init( maybeMutate( ctorInit->get_init(), *this ) );
581 return ctorInit;
582}
583
[e994912]584
[d9a0e76]585Subrange *Mutator::mutate( Subrange *subrange ) {
[0dd3a2f]586 return subrange;
[51b73452]587}
588
[e994912]589
[d9a0e76]590Constant *Mutator::mutate( Constant *constant ) {
[0dd3a2f]591 return constant;
[51b73452]592}
[0dd3a2f]593
594// Local Variables: //
595// tab-width: 4 //
596// mode: c++ //
597// compile-command: "make install" //
598// End: //
Note: See TracBrowser for help on using the repository browser.