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