source: src/SynTree/Mutator.cc @ 630a82a

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 630a82a was 630a82a, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

C99 compound literals now work, comment rational code, clean up hoisting AddVisit?

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