[0dd3a2f] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
[71f4e4f] | 7 | // Visitor.cc --
|
---|
[0dd3a2f] | 8 | //
|
---|
| 9 | // Author : Richard C. Bilson
|
---|
| 10 | // Created On : Mon May 18 07:44:20 2015
|
---|
[6d49ea3] | 11 | // Last Modified By : Peter A. Buhr
|
---|
| 12 | // Last Modified On : Thu Aug 17 15:39:38 2017
|
---|
| 13 | // Update Count : 29
|
---|
[0dd3a2f] | 14 | //
|
---|
| 15 |
|
---|
[ea6332d] | 16 | #include <cassert> // for assert
|
---|
| 17 | #include <list> // for list
|
---|
| 18 |
|
---|
| 19 | #include "Constant.h" // for Constant
|
---|
| 20 | #include "Declaration.h" // for DeclarationWithType, ObjectDecl, Declaration
|
---|
| 21 | #include "Expression.h" // for Expression, ConstantExpr, ImplicitCopyCtorExpr
|
---|
| 22 | #include "Initializer.h" // for Initializer, Designation, ConstructorInit
|
---|
| 23 | #include "Statement.h" // for Statement, CatchStmt, AsmStmt, CompoundStmt
|
---|
| 24 | #include "Type.h" // for Type, Type::ForallList, AttrType, FunctionType
|
---|
[51b73452] | 25 | #include "Visitor.h"
|
---|
[ea6332d] | 26 |
|
---|
| 27 | class Subrange;
|
---|
[51b73452] | 28 |
|
---|
[d9a0e76] | 29 | Visitor::Visitor() {}
|
---|
[51b73452] | 30 |
|
---|
[d9a0e76] | 31 | Visitor::~Visitor() {}
|
---|
[51b73452] | 32 |
|
---|
[0dd3a2f] | 33 | void Visitor::visit( ObjectDecl *objectDecl ) {
|
---|
| 34 | maybeAccept( objectDecl->get_type(), *this );
|
---|
| 35 | maybeAccept( objectDecl->get_init(), *this );
|
---|
| 36 | maybeAccept( objectDecl->get_bitfieldWidth(), *this );
|
---|
[51b73452] | 37 | }
|
---|
| 38 |
|
---|
[0dd3a2f] | 39 | void Visitor::visit( FunctionDecl *functionDecl ) {
|
---|
| 40 | maybeAccept( functionDecl->get_functionType(), *this );
|
---|
| 41 | maybeAccept( functionDecl->get_statements(), *this );
|
---|
[51b73452] | 42 | }
|
---|
| 43 |
|
---|
[1e1e15b] | 44 | void Visitor::handleAggregateDecl( AggregateDecl *aggregateDecl ) {
|
---|
[0dd3a2f] | 45 | acceptAll( aggregateDecl->get_parameters(), *this );
|
---|
| 46 | acceptAll( aggregateDecl->get_members(), *this );
|
---|
[51b73452] | 47 | }
|
---|
| 48 |
|
---|
[0dd3a2f] | 49 | void Visitor::visit( StructDecl *aggregateDecl ) {
|
---|
[1e1e15b] | 50 | handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
|
---|
[51b73452] | 51 | }
|
---|
| 52 |
|
---|
[0dd3a2f] | 53 | void Visitor::visit( UnionDecl *aggregateDecl ) {
|
---|
[1e1e15b] | 54 | handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
|
---|
[51b73452] | 55 | }
|
---|
| 56 |
|
---|
[0dd3a2f] | 57 | void Visitor::visit( EnumDecl *aggregateDecl ) {
|
---|
[1e1e15b] | 58 | handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
|
---|
[51b73452] | 59 | }
|
---|
| 60 |
|
---|
[4040425] | 61 | void Visitor::visit( TraitDecl *aggregateDecl ) {
|
---|
[1e1e15b] | 62 | handleAggregateDecl( static_cast< AggregateDecl* >( aggregateDecl ) );
|
---|
[51b73452] | 63 | }
|
---|
| 64 |
|
---|
[1e1e15b] | 65 | void Visitor::handleNamedTypeDecl( NamedTypeDecl *typeDecl ) {
|
---|
[0dd3a2f] | 66 | acceptAll( typeDecl->get_parameters(), *this );
|
---|
| 67 | acceptAll( typeDecl->get_assertions(), *this );
|
---|
| 68 | maybeAccept( typeDecl->get_base(), *this );
|
---|
[51b73452] | 69 | }
|
---|
| 70 |
|
---|
[0dd3a2f] | 71 | void Visitor::visit( TypeDecl *typeDecl ) {
|
---|
[1e1e15b] | 72 | handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
|
---|
[67cf18c] | 73 | maybeAccept( typeDecl->get_init(), *this );
|
---|
[51b73452] | 74 | }
|
---|
| 75 |
|
---|
[0dd3a2f] | 76 | void Visitor::visit( TypedefDecl *typeDecl ) {
|
---|
[1e1e15b] | 77 | handleNamedTypeDecl( static_cast< NamedTypeDecl* >( typeDecl ) );
|
---|
[51b73452] | 78 | }
|
---|
| 79 |
|
---|
[e994912] | 80 | void Visitor::visit( AsmDecl *asmDecl ) {
|
---|
| 81 | maybeAccept( asmDecl->get_stmt(), *this );
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 |
|
---|
[0dd3a2f] | 85 | void Visitor::visit( CompoundStmt *compoundStmt ) {
|
---|
| 86 | acceptAll( compoundStmt->get_kids(), *this );
|
---|
[51b73452] | 87 | }
|
---|
| 88 |
|
---|
[0dd3a2f] | 89 | void Visitor::visit( ExprStmt *exprStmt ) {
|
---|
| 90 | maybeAccept( exprStmt->get_expr(), *this );
|
---|
[51b73452] | 91 | }
|
---|
| 92 |
|
---|
[7f5566b] | 93 | void Visitor::visit( AsmStmt *asmStmt ) {
|
---|
| 94 | maybeAccept( asmStmt->get_instruction(), *this );
|
---|
| 95 | acceptAll( asmStmt->get_output(), *this );
|
---|
| 96 | acceptAll( asmStmt->get_input(), *this );
|
---|
| 97 | acceptAll( asmStmt->get_clobber(), *this );
|
---|
| 98 | }
|
---|
| 99 |
|
---|
[0dd3a2f] | 100 | void Visitor::visit( IfStmt *ifStmt ) {
|
---|
[6d49ea3] | 101 | acceptAll( ifStmt->get_initialization(), *this );
|
---|
[0dd3a2f] | 102 | maybeAccept( ifStmt->get_condition(), *this );
|
---|
| 103 | maybeAccept( ifStmt->get_thenPart(), *this );
|
---|
| 104 | maybeAccept( ifStmt->get_elsePart(), *this );
|
---|
[51b73452] | 105 | }
|
---|
| 106 |
|
---|
[0dd3a2f] | 107 | void Visitor::visit( WhileStmt *whileStmt ) {
|
---|
| 108 | maybeAccept( whileStmt->get_condition(), *this );
|
---|
| 109 | maybeAccept( whileStmt->get_body(), *this );
|
---|
[51b73452] | 110 | }
|
---|
| 111 |
|
---|
[0dd3a2f] | 112 | void Visitor::visit( ForStmt *forStmt ) {
|
---|
[145f1fc] | 113 | acceptAll( forStmt->get_initialization(), *this );
|
---|
[0dd3a2f] | 114 | maybeAccept( forStmt->get_condition(), *this );
|
---|
| 115 | maybeAccept( forStmt->get_increment(), *this );
|
---|
| 116 | maybeAccept( forStmt->get_body(), *this );
|
---|
[51b73452] | 117 | }
|
---|
| 118 |
|
---|
[0dd3a2f] | 119 | void Visitor::visit( SwitchStmt *switchStmt ) {
|
---|
| 120 | maybeAccept( switchStmt->get_condition(), *this );
|
---|
[8688ce1] | 121 | acceptAll( switchStmt->get_statements(), *this );
|
---|
[51b73452] | 122 | }
|
---|
| 123 |
|
---|
[0dd3a2f] | 124 | void Visitor::visit( CaseStmt *caseStmt ) {
|
---|
| 125 | maybeAccept( caseStmt->get_condition(), *this );
|
---|
| 126 | acceptAll( caseStmt->get_statements(), *this );
|
---|
[51b73452] | 127 | }
|
---|
| 128 |
|
---|
[b3c36f4] | 129 | void Visitor::visit( __attribute__((unused)) BranchStmt *branchStmt ) {
|
---|
[51b73452] | 130 | }
|
---|
| 131 |
|
---|
[0dd3a2f] | 132 | void Visitor::visit( ReturnStmt *returnStmt ) {
|
---|
| 133 | maybeAccept( returnStmt->get_expr(), *this );
|
---|
[51b73452] | 134 | }
|
---|
| 135 |
|
---|
[daf1af8] | 136 | void Visitor::visit( ThrowStmt * throwStmt ) {
|
---|
| 137 | maybeAccept( throwStmt->get_expr(), *this );
|
---|
| 138 | maybeAccept( throwStmt->get_target(), *this );
|
---|
| 139 | }
|
---|
| 140 |
|
---|
[0dd3a2f] | 141 | void Visitor::visit( TryStmt *tryStmt ) {
|
---|
| 142 | maybeAccept( tryStmt->get_block(), *this );
|
---|
| 143 | acceptAll( tryStmt->get_catchers(), *this );
|
---|
[25a8631] | 144 | maybeAccept( tryStmt->get_finally(), *this );
|
---|
[51b73452] | 145 | }
|
---|
| 146 |
|
---|
[0dd3a2f] | 147 | void Visitor::visit( CatchStmt *catchStmt ) {
|
---|
| 148 | maybeAccept( catchStmt->get_decl(), *this );
|
---|
[25a8631] | 149 | maybeAccept( catchStmt->get_cond(), *this );
|
---|
[0dd3a2f] | 150 | maybeAccept( catchStmt->get_body(), *this );
|
---|
[51b73452] | 151 | }
|
---|
| 152 |
|
---|
[0dd3a2f] | 153 | void Visitor::visit( FinallyStmt *finalStmt ) {
|
---|
| 154 | maybeAccept( finalStmt->get_block(), *this );
|
---|
[51b73452] | 155 | }
|
---|
| 156 |
|
---|
[b3c36f4] | 157 | void Visitor::visit( __attribute__((unused)) NullStmt *nullStmt ) {
|
---|
[51b73452] | 158 | }
|
---|
| 159 |
|
---|
[0dd3a2f] | 160 | void Visitor::visit( DeclStmt *declStmt ) {
|
---|
| 161 | maybeAccept( declStmt->get_decl(), *this );
|
---|
[51b73452] | 162 | }
|
---|
| 163 |
|
---|
[f1b1e4c] | 164 | void Visitor::visit( ImplicitCtorDtorStmt *impCtorDtorStmt ) {
|
---|
| 165 | maybeAccept( impCtorDtorStmt->get_callStmt(), *this );
|
---|
| 166 | }
|
---|
| 167 |
|
---|
[e994912] | 168 |
|
---|
[0dd3a2f] | 169 | void Visitor::visit( ApplicationExpr *applicationExpr ) {
|
---|
[906e24d] | 170 | maybeAccept( applicationExpr->get_result(), *this );
|
---|
[0dd3a2f] | 171 | maybeAccept( applicationExpr->get_function(), *this );
|
---|
| 172 | acceptAll( applicationExpr->get_args(), *this );
|
---|
[51b73452] | 173 | }
|
---|
| 174 |
|
---|
[0dd3a2f] | 175 | void Visitor::visit( UntypedExpr *untypedExpr ) {
|
---|
[906e24d] | 176 | maybeAccept( untypedExpr->get_result(), *this );
|
---|
[0dd3a2f] | 177 | acceptAll( untypedExpr->get_args(), *this );
|
---|
[51b73452] | 178 | }
|
---|
| 179 |
|
---|
[0dd3a2f] | 180 | void Visitor::visit( NameExpr *nameExpr ) {
|
---|
[906e24d] | 181 | maybeAccept( nameExpr->get_result(), *this );
|
---|
[51b73452] | 182 | }
|
---|
| 183 |
|
---|
[0dd3a2f] | 184 | void Visitor::visit( AddressExpr *addressExpr ) {
|
---|
[906e24d] | 185 | maybeAccept( addressExpr->get_result(), *this );
|
---|
[0dd3a2f] | 186 | maybeAccept( addressExpr->get_arg(), *this );
|
---|
[51b73452] | 187 | }
|
---|
| 188 |
|
---|
[0dd3a2f] | 189 | void Visitor::visit( LabelAddressExpr *labAddressExpr ) {
|
---|
[906e24d] | 190 | maybeAccept( labAddressExpr->get_result(), *this );
|
---|
[0dd3a2f] | 191 | maybeAccept( labAddressExpr->get_arg(), *this );
|
---|
[51b73452] | 192 | }
|
---|
| 193 |
|
---|
[0dd3a2f] | 194 | void Visitor::visit( CastExpr *castExpr ) {
|
---|
[906e24d] | 195 | maybeAccept( castExpr->get_result(), *this );
|
---|
[0dd3a2f] | 196 | maybeAccept( castExpr->get_arg(), *this );
|
---|
[51b73452] | 197 | }
|
---|
| 198 |
|
---|
[a5f0529] | 199 | void Visitor::visit( VirtualCastExpr *castExpr ) {
|
---|
| 200 | maybeAccept( castExpr->get_result(), *this );
|
---|
| 201 | maybeAccept( castExpr->get_arg(), *this );
|
---|
| 202 | }
|
---|
| 203 |
|
---|
[0dd3a2f] | 204 | void Visitor::visit( UntypedMemberExpr *memberExpr ) {
|
---|
[906e24d] | 205 | maybeAccept( memberExpr->get_result(), *this );
|
---|
[0dd3a2f] | 206 | maybeAccept( memberExpr->get_aggregate(), *this );
|
---|
[3b58d91] | 207 | maybeAccept( memberExpr->get_member(), *this );
|
---|
[51b73452] | 208 | }
|
---|
| 209 |
|
---|
[0dd3a2f] | 210 | void Visitor::visit( MemberExpr *memberExpr ) {
|
---|
[906e24d] | 211 | maybeAccept( memberExpr->get_result(), *this );
|
---|
[0dd3a2f] | 212 | maybeAccept( memberExpr->get_aggregate(), *this );
|
---|
[51b73452] | 213 | }
|
---|
| 214 |
|
---|
[0dd3a2f] | 215 | void Visitor::visit( VariableExpr *variableExpr ) {
|
---|
[906e24d] | 216 | maybeAccept( variableExpr->get_result(), *this );
|
---|
[51b73452] | 217 | }
|
---|
| 218 |
|
---|
[0dd3a2f] | 219 | void Visitor::visit( ConstantExpr *constantExpr ) {
|
---|
[906e24d] | 220 | maybeAccept( constantExpr->get_result(), *this );
|
---|
[0dd3a2f] | 221 | maybeAccept( constantExpr->get_constant(), *this );
|
---|
[51b73452] | 222 | }
|
---|
| 223 |
|
---|
[0dd3a2f] | 224 | void Visitor::visit( SizeofExpr *sizeofExpr ) {
|
---|
[906e24d] | 225 | maybeAccept( sizeofExpr->get_result(), *this );
|
---|
[0dd3a2f] | 226 | if ( sizeofExpr->get_isType() ) {
|
---|
| 227 | maybeAccept( sizeofExpr->get_type(), *this );
|
---|
| 228 | } else {
|
---|
| 229 | maybeAccept( sizeofExpr->get_expr(), *this );
|
---|
| 230 | }
|
---|
[51b73452] | 231 | }
|
---|
| 232 |
|
---|
[47534159] | 233 | void Visitor::visit( AlignofExpr *alignofExpr ) {
|
---|
[906e24d] | 234 | maybeAccept( alignofExpr->get_result(), *this );
|
---|
[47534159] | 235 | if ( alignofExpr->get_isType() ) {
|
---|
| 236 | maybeAccept( alignofExpr->get_type(), *this );
|
---|
| 237 | } else {
|
---|
| 238 | maybeAccept( alignofExpr->get_expr(), *this );
|
---|
| 239 | }
|
---|
| 240 | }
|
---|
| 241 |
|
---|
[2a4b088] | 242 | void Visitor::visit( UntypedOffsetofExpr *offsetofExpr ) {
|
---|
[906e24d] | 243 | maybeAccept( offsetofExpr->get_result(), *this );
|
---|
[2a4b088] | 244 | maybeAccept( offsetofExpr->get_type(), *this );
|
---|
| 245 | }
|
---|
| 246 |
|
---|
[25a054f] | 247 | void Visitor::visit( OffsetofExpr *offsetofExpr ) {
|
---|
[906e24d] | 248 | maybeAccept( offsetofExpr->get_result(), *this );
|
---|
[25a054f] | 249 | maybeAccept( offsetofExpr->get_type(), *this );
|
---|
| 250 | maybeAccept( offsetofExpr->get_member(), *this );
|
---|
| 251 | }
|
---|
| 252 |
|
---|
[afc1045] | 253 | void Visitor::visit( OffsetPackExpr *offsetPackExpr ) {
|
---|
[906e24d] | 254 | maybeAccept( offsetPackExpr->get_result(), *this );
|
---|
[afc1045] | 255 | maybeAccept( offsetPackExpr->get_type(), *this );
|
---|
| 256 | }
|
---|
| 257 |
|
---|
[0dd3a2f] | 258 | void Visitor::visit( AttrExpr *attrExpr ) {
|
---|
[906e24d] | 259 | maybeAccept( attrExpr->get_result(), *this );
|
---|
[0dd3a2f] | 260 | if ( attrExpr->get_isType() ) {
|
---|
| 261 | maybeAccept( attrExpr->get_type(), *this );
|
---|
| 262 | } else {
|
---|
| 263 | maybeAccept( attrExpr->get_expr(), *this );
|
---|
| 264 | }
|
---|
[51b73452] | 265 | }
|
---|
| 266 |
|
---|
[0dd3a2f] | 267 | void Visitor::visit( LogicalExpr *logicalExpr ) {
|
---|
[906e24d] | 268 | maybeAccept( logicalExpr->get_result(), *this );
|
---|
[0dd3a2f] | 269 | maybeAccept( logicalExpr->get_arg1(), *this );
|
---|
| 270 | maybeAccept( logicalExpr->get_arg2(), *this );
|
---|
[51b73452] | 271 | }
|
---|
| 272 |
|
---|
[0dd3a2f] | 273 | void Visitor::visit( ConditionalExpr *conditionalExpr ) {
|
---|
[906e24d] | 274 | maybeAccept( conditionalExpr->get_result(), *this );
|
---|
[0dd3a2f] | 275 | maybeAccept( conditionalExpr->get_arg1(), *this );
|
---|
| 276 | maybeAccept( conditionalExpr->get_arg2(), *this );
|
---|
| 277 | maybeAccept( conditionalExpr->get_arg3(), *this );
|
---|
[51b73452] | 278 | }
|
---|
| 279 |
|
---|
[0dd3a2f] | 280 | void Visitor::visit( CommaExpr *commaExpr ) {
|
---|
[906e24d] | 281 | maybeAccept( commaExpr->get_result(), *this );
|
---|
[0dd3a2f] | 282 | maybeAccept( commaExpr->get_arg1(), *this );
|
---|
| 283 | maybeAccept( commaExpr->get_arg2(), *this );
|
---|
[51b73452] | 284 | }
|
---|
| 285 |
|
---|
[0dd3a2f] | 286 | void Visitor::visit( TypeExpr *typeExpr ) {
|
---|
[906e24d] | 287 | maybeAccept( typeExpr->get_result(), *this );
|
---|
[0dd3a2f] | 288 | maybeAccept( typeExpr->get_type(), *this );
|
---|
[51b73452] | 289 | }
|
---|
| 290 |
|
---|
[7f5566b] | 291 | void Visitor::visit( AsmExpr *asmExpr ) {
|
---|
| 292 | maybeAccept( asmExpr->get_inout(), *this );
|
---|
| 293 | maybeAccept( asmExpr->get_constraint(), *this );
|
---|
| 294 | maybeAccept( asmExpr->get_operand(), *this );
|
---|
| 295 | }
|
---|
| 296 |
|
---|
[db4ecc5] | 297 | void Visitor::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
|
---|
[907eccb] | 298 | maybeAccept( impCpCtorExpr->get_result(), *this );
|
---|
[db4ecc5] | 299 | maybeAccept( impCpCtorExpr->get_callExpr(), *this );
|
---|
| 300 | acceptAll( impCpCtorExpr->get_tempDecls(), *this );
|
---|
[dc2e7e0] | 301 | acceptAll( impCpCtorExpr->get_returnDecls(), *this );
|
---|
[d5556a3] | 302 | acceptAll( impCpCtorExpr->get_dtors(), *this );
|
---|
[db4ecc5] | 303 | }
|
---|
| 304 |
|
---|
[b6fe7e6] | 305 | void Visitor::visit( ConstructorExpr * ctorExpr ) {
|
---|
[906e24d] | 306 | maybeAccept( ctorExpr->get_result(), *this );
|
---|
[b6fe7e6] | 307 | maybeAccept( ctorExpr->get_callExpr(), *this );
|
---|
[51b73452] | 308 | }
|
---|
| 309 |
|
---|
[630a82a] | 310 | void Visitor::visit( CompoundLiteralExpr *compLitExpr ) {
|
---|
[906e24d] | 311 | maybeAccept( compLitExpr->get_result(), *this );
|
---|
[630a82a] | 312 | maybeAccept( compLitExpr->get_initializer(), *this );
|
---|
| 313 | }
|
---|
| 314 |
|
---|
[8688ce1] | 315 | void Visitor::visit( RangeExpr *rangeExpr ) {
|
---|
| 316 | maybeAccept( rangeExpr->get_low(), *this );
|
---|
| 317 | maybeAccept( rangeExpr->get_high(), *this );
|
---|
| 318 | }
|
---|
| 319 |
|
---|
[907eccb] | 320 | void Visitor::visit( UntypedTupleExpr *tupleExpr ) {
|
---|
| 321 | maybeAccept( tupleExpr->get_result(), *this );
|
---|
| 322 | acceptAll( tupleExpr->get_exprs(), *this );
|
---|
| 323 | }
|
---|
| 324 |
|
---|
[6eb8948] | 325 | void Visitor::visit( TupleExpr *tupleExpr ) {
|
---|
[aa8f9df] | 326 | maybeAccept( tupleExpr->get_result(), *this );
|
---|
[6eb8948] | 327 | acceptAll( tupleExpr->get_exprs(), *this );
|
---|
| 328 | }
|
---|
| 329 |
|
---|
[3b58d91] | 330 | void Visitor::visit( TupleIndexExpr *tupleExpr ) {
|
---|
[aa8f9df] | 331 | maybeAccept( tupleExpr->get_result(), *this );
|
---|
[3b58d91] | 332 | maybeAccept( tupleExpr->get_tuple(), *this );
|
---|
| 333 | }
|
---|
| 334 |
|
---|
[6eb8948] | 335 | void Visitor::visit( TupleAssignExpr *assignExpr ) {
|
---|
[aa8f9df] | 336 | maybeAccept( assignExpr->get_result(), *this );
|
---|
[d5556a3] | 337 | maybeAccept( assignExpr->get_stmtExpr(), *this );
|
---|
[3b58d91] | 338 | }
|
---|
| 339 |
|
---|
[6eb8948] | 340 | void Visitor::visit( StmtExpr *stmtExpr ) {
|
---|
[aa8f9df] | 341 | maybeAccept( stmtExpr->get_result(), *this );
|
---|
[6eb8948] | 342 | maybeAccept( stmtExpr->get_statements(), *this );
|
---|
[d5556a3] | 343 | acceptAll( stmtExpr->get_returnDecls(), *this );
|
---|
| 344 | acceptAll( stmtExpr->get_dtors(), *this );
|
---|
[3b58d91] | 345 | }
|
---|
| 346 |
|
---|
[3c13c03] | 347 | void Visitor::visit( UniqueExpr *uniqueExpr ) {
|
---|
| 348 | maybeAccept( uniqueExpr->get_result(), *this );
|
---|
| 349 | maybeAccept( uniqueExpr->get_expr(), *this );
|
---|
| 350 | }
|
---|
| 351 |
|
---|
[e4d829b] | 352 | void Visitor::visit( UntypedInitExpr * initExpr ) {
|
---|
| 353 | maybeAccept( initExpr->get_result(), *this );
|
---|
| 354 | maybeAccept( initExpr->get_expr(), *this );
|
---|
| 355 | // not currently visiting initAlts, but this doesn't matter since this node is only used in the resolver.
|
---|
| 356 | }
|
---|
| 357 |
|
---|
| 358 | void Visitor::visit( InitExpr * initExpr ) {
|
---|
| 359 | maybeAccept( initExpr->get_result(), *this );
|
---|
| 360 | maybeAccept( initExpr->get_expr(), *this );
|
---|
| 361 | maybeAccept( initExpr->get_designation(), *this );
|
---|
| 362 | }
|
---|
| 363 |
|
---|
[e994912] | 364 |
|
---|
[0dd3a2f] | 365 | void Visitor::visit( VoidType *voidType ) {
|
---|
| 366 | acceptAll( voidType->get_forall(), *this );
|
---|
[51b73452] | 367 | }
|
---|
| 368 |
|
---|
[0dd3a2f] | 369 | void Visitor::visit( BasicType *basicType ) {
|
---|
| 370 | acceptAll( basicType->get_forall(), *this );
|
---|
[51b73452] | 371 | }
|
---|
| 372 |
|
---|
[0dd3a2f] | 373 | void Visitor::visit( PointerType *pointerType ) {
|
---|
| 374 | acceptAll( pointerType->get_forall(), *this );
|
---|
[ce8c12f] | 375 | // xxx - should PointerType visit/mutate dimension?
|
---|
[0dd3a2f] | 376 | maybeAccept( pointerType->get_base(), *this );
|
---|
[51b73452] | 377 | }
|
---|
| 378 |
|
---|
[0dd3a2f] | 379 | void Visitor::visit( ArrayType *arrayType ) {
|
---|
| 380 | acceptAll( arrayType->get_forall(), *this );
|
---|
| 381 | maybeAccept( arrayType->get_dimension(), *this );
|
---|
| 382 | maybeAccept( arrayType->get_base(), *this );
|
---|
[51b73452] | 383 | }
|
---|
| 384 |
|
---|
[ce8c12f] | 385 | void Visitor::visit( ReferenceType *refType ) {
|
---|
| 386 | acceptAll( refType->get_forall(), *this );
|
---|
| 387 | maybeAccept( refType->get_base(), *this );
|
---|
| 388 | }
|
---|
| 389 |
|
---|
[0dd3a2f] | 390 | void Visitor::visit( FunctionType *functionType ) {
|
---|
| 391 | acceptAll( functionType->get_forall(), *this );
|
---|
| 392 | acceptAll( functionType->get_returnVals(), *this );
|
---|
| 393 | acceptAll( functionType->get_parameters(), *this );
|
---|
[51b73452] | 394 | }
|
---|
| 395 |
|
---|
[1e1e15b] | 396 | void Visitor::handleReferenceToType( ReferenceToType *aggregateUseType ) {
|
---|
[0dd3a2f] | 397 | acceptAll( aggregateUseType->get_forall(), *this );
|
---|
| 398 | acceptAll( aggregateUseType->get_parameters(), *this );
|
---|
[51b73452] | 399 | }
|
---|
| 400 |
|
---|
[0dd3a2f] | 401 | void Visitor::visit( StructInstType *aggregateUseType ) {
|
---|
[1e1e15b] | 402 | handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
|
---|
[51b73452] | 403 | }
|
---|
| 404 |
|
---|
[0dd3a2f] | 405 | void Visitor::visit( UnionInstType *aggregateUseType ) {
|
---|
[1e1e15b] | 406 | handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
|
---|
[51b73452] | 407 | }
|
---|
| 408 |
|
---|
[0dd3a2f] | 409 | void Visitor::visit( EnumInstType *aggregateUseType ) {
|
---|
[1e1e15b] | 410 | handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
|
---|
[51b73452] | 411 | }
|
---|
| 412 |
|
---|
[4040425] | 413 | void Visitor::visit( TraitInstType *aggregateUseType ) {
|
---|
[1e1e15b] | 414 | handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
|
---|
[0dd3a2f] | 415 | acceptAll( aggregateUseType->get_members(), *this );
|
---|
[51b73452] | 416 | }
|
---|
| 417 |
|
---|
[0dd3a2f] | 418 | void Visitor::visit( TypeInstType *aggregateUseType ) {
|
---|
[1e1e15b] | 419 | handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) );
|
---|
[51b73452] | 420 | }
|
---|
| 421 |
|
---|
[0dd3a2f] | 422 | void Visitor::visit( TupleType *tupleType ) {
|
---|
| 423 | acceptAll( tupleType->get_forall(), *this );
|
---|
| 424 | acceptAll( tupleType->get_types(), *this );
|
---|
[62423350] | 425 | acceptAll( tupleType->get_members(), *this );
|
---|
[51b73452] | 426 | }
|
---|
| 427 |
|
---|
[0dd3a2f] | 428 | void Visitor::visit( TypeofType *typeofType ) {
|
---|
| 429 | assert( typeofType->get_expr() );
|
---|
| 430 | typeofType->get_expr()->accept( *this );
|
---|
[51b73452] | 431 | }
|
---|
| 432 |
|
---|
[0dd3a2f] | 433 | void Visitor::visit( AttrType *attrType ) {
|
---|
| 434 | if ( attrType->get_isType() ) {
|
---|
| 435 | assert( attrType->get_type() );
|
---|
| 436 | attrType->get_type()->accept( *this );
|
---|
| 437 | } else {
|
---|
| 438 | assert( attrType->get_expr() );
|
---|
| 439 | attrType->get_expr()->accept( *this );
|
---|
| 440 | } // if
|
---|
[51b73452] | 441 | }
|
---|
| 442 |
|
---|
[44b7088] | 443 | void Visitor::visit( VarArgsType *varArgsType ) {
|
---|
| 444 | acceptAll( varArgsType->get_forall(), *this );
|
---|
| 445 | }
|
---|
| 446 |
|
---|
[89e6ffc] | 447 | void Visitor::visit( ZeroType *zeroType ) {
|
---|
| 448 | acceptAll( zeroType->get_forall(), *this );
|
---|
| 449 | }
|
---|
| 450 |
|
---|
| 451 | void Visitor::visit( OneType *oneType ) {
|
---|
| 452 | acceptAll( oneType->get_forall(), *this );
|
---|
| 453 | }
|
---|
| 454 |
|
---|
[e4d829b] | 455 | void Visitor::visit( Designation * designation ) {
|
---|
| 456 | acceptAll( designation->get_designators(), *this );
|
---|
| 457 | }
|
---|
[e994912] | 458 |
|
---|
[0dd3a2f] | 459 | void Visitor::visit( SingleInit *singleInit ) {
|
---|
| 460 | singleInit->get_value()->accept( *this );
|
---|
[51b73452] | 461 | }
|
---|
| 462 |
|
---|
[0dd3a2f] | 463 | void Visitor::visit( ListInit *listInit ) {
|
---|
[e4d829b] | 464 | acceptAll( listInit->get_designations(), *this );
|
---|
[0dd3a2f] | 465 | acceptAll( listInit->get_initializers(), *this );
|
---|
[51b73452] | 466 | }
|
---|
| 467 |
|
---|
[71f4e4f] | 468 | void Visitor::visit( ConstructorInit *ctorInit ) {
|
---|
| 469 | maybeAccept( ctorInit->get_ctor(), *this );
|
---|
[d5556a3] | 470 | maybeAccept( ctorInit->get_dtor(), *this );
|
---|
[71f4e4f] | 471 | maybeAccept( ctorInit->get_init(), *this );
|
---|
| 472 | }
|
---|
| 473 |
|
---|
[e994912] | 474 |
|
---|
[b3c36f4] | 475 | void Visitor::visit( __attribute__((unused)) Subrange *subrange ) {}
|
---|
[51b73452] | 476 |
|
---|
[e994912] | 477 |
|
---|
[b3c36f4] | 478 | void Visitor::visit( __attribute__((unused)) Constant *constant ) {}
|
---|
[0dd3a2f] | 479 | // Local Variables: //
|
---|
| 480 | // tab-width: 4 //
|
---|
| 481 | // mode: c++ //
|
---|
| 482 | // compile-command: "make install" //
|
---|
| 483 | // End: //
|
---|