1 //===---- StmtProfile.cpp - Profile implementation for Stmt ASTs ----------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the Stmt::Profile method, which builds a unique bit 10 // representation that identifies a statement/expression. 11 // 12 //===----------------------------------------------------------------------===// 13 #include "clang/AST/ASTContext.h" 14 #include "clang/AST/DeclCXX.h" 15 #include "clang/AST/DeclObjC.h" 16 #include "clang/AST/DeclTemplate.h" 17 #include "clang/AST/Expr.h" 18 #include "clang/AST/ExprCXX.h" 19 #include "clang/AST/ExprObjC.h" 20 #include "clang/AST/ExprOpenMP.h" 21 #include "clang/AST/ODRHash.h" 22 #include "clang/AST/OpenMPClause.h" 23 #include "clang/AST/StmtVisitor.h" 24 #include "llvm/ADT/FoldingSet.h" 25 using namespace clang; 26 27 namespace { 28 class StmtProfiler : public ConstStmtVisitor<StmtProfiler> { 29 protected: 30 llvm::FoldingSetNodeID &ID; 31 bool Canonical; 32 33 public: 34 StmtProfiler(llvm::FoldingSetNodeID &ID, bool Canonical) 35 : ID(ID), Canonical(Canonical) {} 36 37 virtual ~StmtProfiler() {} 38 39 void VisitStmt(const Stmt *S); 40 41 virtual void HandleStmtClass(Stmt::StmtClass SC) = 0; 42 43 #define STMT(Node, Base) void Visit##Node(const Node *S); 44 #include "clang/AST/StmtNodes.inc" 45 46 /// Visit a declaration that is referenced within an expression 47 /// or statement. 48 virtual void VisitDecl(const Decl *D) = 0; 49 50 /// Visit a type that is referenced within an expression or 51 /// statement. 52 virtual void VisitType(QualType T) = 0; 53 54 /// Visit a name that occurs within an expression or statement. 55 virtual void VisitName(DeclarationName Name, bool TreatAsDecl = false) = 0; 56 57 /// Visit identifiers that are not in Decl's or Type's. 58 virtual void VisitIdentifierInfo(IdentifierInfo *II) = 0; 59 60 /// Visit a nested-name-specifier that occurs within an expression 61 /// or statement. 62 virtual void VisitNestedNameSpecifier(NestedNameSpecifier *NNS) = 0; 63 64 /// Visit a template name that occurs within an expression or 65 /// statement. 66 virtual void VisitTemplateName(TemplateName Name) = 0; 67 68 /// Visit template arguments that occur within an expression or 69 /// statement. 70 void VisitTemplateArguments(const TemplateArgumentLoc *Args, 71 unsigned NumArgs); 72 73 /// Visit a single template argument. 74 void VisitTemplateArgument(const TemplateArgument &Arg); 75 }; 76 77 class StmtProfilerWithPointers : public StmtProfiler { 78 const ASTContext &Context; 79 80 public: 81 StmtProfilerWithPointers(llvm::FoldingSetNodeID &ID, 82 const ASTContext &Context, bool Canonical) 83 : StmtProfiler(ID, Canonical), Context(Context) {} 84 private: 85 void HandleStmtClass(Stmt::StmtClass SC) override { 86 ID.AddInteger(SC); 87 } 88 89 void VisitDecl(const Decl *D) override { 90 ID.AddInteger(D ? D->getKind() : 0); 91 92 if (Canonical && D) { 93 if (const NonTypeTemplateParmDecl *NTTP = 94 dyn_cast<NonTypeTemplateParmDecl>(D)) { 95 ID.AddInteger(NTTP->getDepth()); 96 ID.AddInteger(NTTP->getIndex()); 97 ID.AddBoolean(NTTP->isParameterPack()); 98 VisitType(NTTP->getType()); 99 return; 100 } 101 102 if (const ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(D)) { 103 // The Itanium C++ ABI uses the type, scope depth, and scope 104 // index of a parameter when mangling expressions that involve 105 // function parameters, so we will use the parameter's type for 106 // establishing function parameter identity. That way, our 107 // definition of "equivalent" (per C++ [temp.over.link]) is at 108 // least as strong as the definition of "equivalent" used for 109 // name mangling. 110 VisitType(Parm->getType()); 111 ID.AddInteger(Parm->getFunctionScopeDepth()); 112 ID.AddInteger(Parm->getFunctionScopeIndex()); 113 return; 114 } 115 116 if (const TemplateTypeParmDecl *TTP = 117 dyn_cast<TemplateTypeParmDecl>(D)) { 118 ID.AddInteger(TTP->getDepth()); 119 ID.AddInteger(TTP->getIndex()); 120 ID.AddBoolean(TTP->isParameterPack()); 121 return; 122 } 123 124 if (const TemplateTemplateParmDecl *TTP = 125 dyn_cast<TemplateTemplateParmDecl>(D)) { 126 ID.AddInteger(TTP->getDepth()); 127 ID.AddInteger(TTP->getIndex()); 128 ID.AddBoolean(TTP->isParameterPack()); 129 return; 130 } 131 } 132 133 ID.AddPointer(D ? D->getCanonicalDecl() : nullptr); 134 } 135 136 void VisitType(QualType T) override { 137 if (Canonical && !T.isNull()) 138 T = Context.getCanonicalType(T); 139 140 ID.AddPointer(T.getAsOpaquePtr()); 141 } 142 143 void VisitName(DeclarationName Name, bool /*TreatAsDecl*/) override { 144 ID.AddPointer(Name.getAsOpaquePtr()); 145 } 146 147 void VisitIdentifierInfo(IdentifierInfo *II) override { 148 ID.AddPointer(II); 149 } 150 151 void VisitNestedNameSpecifier(NestedNameSpecifier *NNS) override { 152 if (Canonical) 153 NNS = Context.getCanonicalNestedNameSpecifier(NNS); 154 ID.AddPointer(NNS); 155 } 156 157 void VisitTemplateName(TemplateName Name) override { 158 if (Canonical) 159 Name = Context.getCanonicalTemplateName(Name); 160 161 Name.Profile(ID); 162 } 163 }; 164 165 class StmtProfilerWithoutPointers : public StmtProfiler { 166 ODRHash &Hash; 167 public: 168 StmtProfilerWithoutPointers(llvm::FoldingSetNodeID &ID, ODRHash &Hash) 169 : StmtProfiler(ID, false), Hash(Hash) {} 170 171 private: 172 void HandleStmtClass(Stmt::StmtClass SC) override { 173 if (SC == Stmt::UnresolvedLookupExprClass) { 174 // Pretend that the name looked up is a Decl due to how templates 175 // handle some Decl lookups. 176 ID.AddInteger(Stmt::DeclRefExprClass); 177 } else { 178 ID.AddInteger(SC); 179 } 180 } 181 182 void VisitType(QualType T) override { 183 Hash.AddQualType(T); 184 } 185 186 void VisitName(DeclarationName Name, bool TreatAsDecl) override { 187 if (TreatAsDecl) { 188 // A Decl can be null, so each Decl is preceded by a boolean to 189 // store its nullness. Add a boolean here to match. 190 ID.AddBoolean(true); 191 } 192 Hash.AddDeclarationName(Name, TreatAsDecl); 193 } 194 void VisitIdentifierInfo(IdentifierInfo *II) override { 195 ID.AddBoolean(II); 196 if (II) { 197 Hash.AddIdentifierInfo(II); 198 } 199 } 200 void VisitDecl(const Decl *D) override { 201 ID.AddBoolean(D); 202 if (D) { 203 Hash.AddDecl(D); 204 } 205 } 206 void VisitTemplateName(TemplateName Name) override { 207 Hash.AddTemplateName(Name); 208 } 209 void VisitNestedNameSpecifier(NestedNameSpecifier *NNS) override { 210 ID.AddBoolean(NNS); 211 if (NNS) { 212 Hash.AddNestedNameSpecifier(NNS); 213 } 214 } 215 }; 216 } 217 218 void StmtProfiler::VisitStmt(const Stmt *S) { 219 assert(S && "Requires non-null Stmt pointer"); 220 221 HandleStmtClass(S->getStmtClass()); 222 223 for (const Stmt *SubStmt : S->children()) { 224 if (SubStmt) 225 Visit(SubStmt); 226 else 227 ID.AddInteger(0); 228 } 229 } 230 231 void StmtProfiler::VisitDeclStmt(const DeclStmt *S) { 232 VisitStmt(S); 233 for (const auto *D : S->decls()) 234 VisitDecl(D); 235 } 236 237 void StmtProfiler::VisitNullStmt(const NullStmt *S) { 238 VisitStmt(S); 239 } 240 241 void StmtProfiler::VisitCompoundStmt(const CompoundStmt *S) { 242 VisitStmt(S); 243 } 244 245 void StmtProfiler::VisitCaseStmt(const CaseStmt *S) { 246 VisitStmt(S); 247 } 248 249 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { 250 VisitStmt(S); 251 } 252 253 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) { 254 VisitStmt(S); 255 VisitDecl(S->getDecl()); 256 } 257 258 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { 259 VisitStmt(S); 260 // TODO: maybe visit attributes? 261 } 262 263 void StmtProfiler::VisitIfStmt(const IfStmt *S) { 264 VisitStmt(S); 265 VisitDecl(S->getConditionVariable()); 266 } 267 268 void StmtProfiler::VisitSwitchStmt(const SwitchStmt *S) { 269 VisitStmt(S); 270 VisitDecl(S->getConditionVariable()); 271 } 272 273 void StmtProfiler::VisitWhileStmt(const WhileStmt *S) { 274 VisitStmt(S); 275 VisitDecl(S->getConditionVariable()); 276 } 277 278 void StmtProfiler::VisitDoStmt(const DoStmt *S) { 279 VisitStmt(S); 280 } 281 282 void StmtProfiler::VisitForStmt(const ForStmt *S) { 283 VisitStmt(S); 284 } 285 286 void StmtProfiler::VisitGotoStmt(const GotoStmt *S) { 287 VisitStmt(S); 288 VisitDecl(S->getLabel()); 289 } 290 291 void StmtProfiler::VisitIndirectGotoStmt(const IndirectGotoStmt *S) { 292 VisitStmt(S); 293 } 294 295 void StmtProfiler::VisitContinueStmt(const ContinueStmt *S) { 296 VisitStmt(S); 297 } 298 299 void StmtProfiler::VisitBreakStmt(const BreakStmt *S) { 300 VisitStmt(S); 301 } 302 303 void StmtProfiler::VisitReturnStmt(const ReturnStmt *S) { 304 VisitStmt(S); 305 } 306 307 void StmtProfiler::VisitGCCAsmStmt(const GCCAsmStmt *S) { 308 VisitStmt(S); 309 ID.AddBoolean(S->isVolatile()); 310 ID.AddBoolean(S->isSimple()); 311 VisitStringLiteral(S->getAsmString()); 312 ID.AddInteger(S->getNumOutputs()); 313 for (unsigned I = 0, N = S->getNumOutputs(); I != N; ++I) { 314 ID.AddString(S->getOutputName(I)); 315 VisitStringLiteral(S->getOutputConstraintLiteral(I)); 316 } 317 ID.AddInteger(S->getNumInputs()); 318 for (unsigned I = 0, N = S->getNumInputs(); I != N; ++I) { 319 ID.AddString(S->getInputName(I)); 320 VisitStringLiteral(S->getInputConstraintLiteral(I)); 321 } 322 ID.AddInteger(S->getNumClobbers()); 323 for (unsigned I = 0, N = S->getNumClobbers(); I != N; ++I) 324 VisitStringLiteral(S->getClobberStringLiteral(I)); 325 ID.AddInteger(S->getNumLabels()); 326 for (auto *L : S->labels()) 327 VisitDecl(L->getLabel()); 328 } 329 330 void StmtProfiler::VisitMSAsmStmt(const MSAsmStmt *S) { 331 // FIXME: Implement MS style inline asm statement profiler. 332 VisitStmt(S); 333 } 334 335 void StmtProfiler::VisitCXXCatchStmt(const CXXCatchStmt *S) { 336 VisitStmt(S); 337 VisitType(S->getCaughtType()); 338 } 339 340 void StmtProfiler::VisitCXXTryStmt(const CXXTryStmt *S) { 341 VisitStmt(S); 342 } 343 344 void StmtProfiler::VisitCXXForRangeStmt(const CXXForRangeStmt *S) { 345 VisitStmt(S); 346 } 347 348 void StmtProfiler::VisitMSDependentExistsStmt(const MSDependentExistsStmt *S) { 349 VisitStmt(S); 350 ID.AddBoolean(S->isIfExists()); 351 VisitNestedNameSpecifier(S->getQualifierLoc().getNestedNameSpecifier()); 352 VisitName(S->getNameInfo().getName()); 353 } 354 355 void StmtProfiler::VisitSEHTryStmt(const SEHTryStmt *S) { 356 VisitStmt(S); 357 } 358 359 void StmtProfiler::VisitSEHFinallyStmt(const SEHFinallyStmt *S) { 360 VisitStmt(S); 361 } 362 363 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { 364 VisitStmt(S); 365 } 366 367 void StmtProfiler::VisitSEHLeaveStmt(const SEHLeaveStmt *S) { 368 VisitStmt(S); 369 } 370 371 void StmtProfiler::VisitCapturedStmt(const CapturedStmt *S) { 372 VisitStmt(S); 373 } 374 375 void StmtProfiler::VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) { 376 VisitStmt(S); 377 } 378 379 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { 380 VisitStmt(S); 381 ID.AddBoolean(S->hasEllipsis()); 382 if (S->getCatchParamDecl()) 383 VisitType(S->getCatchParamDecl()->getType()); 384 } 385 386 void StmtProfiler::VisitObjCAtFinallyStmt(const ObjCAtFinallyStmt *S) { 387 VisitStmt(S); 388 } 389 390 void StmtProfiler::VisitObjCAtTryStmt(const ObjCAtTryStmt *S) { 391 VisitStmt(S); 392 } 393 394 void 395 StmtProfiler::VisitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt *S) { 396 VisitStmt(S); 397 } 398 399 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { 400 VisitStmt(S); 401 } 402 403 void 404 StmtProfiler::VisitObjCAutoreleasePoolStmt(const ObjCAutoreleasePoolStmt *S) { 405 VisitStmt(S); 406 } 407 408 namespace { 409 class OMPClauseProfiler : public ConstOMPClauseVisitor<OMPClauseProfiler> { 410 StmtProfiler *Profiler; 411 /// Process clauses with list of variables. 412 template <typename T> 413 void VisitOMPClauseList(T *Node); 414 415 public: 416 OMPClauseProfiler(StmtProfiler *P) : Profiler(P) { } 417 #define OMP_CLAUSE_CLASS(Enum, Str, Class) void Visit##Class(const Class *C); 418 #include "llvm/Frontend/OpenMP/OMPKinds.def" 419 void VistOMPClauseWithPreInit(const OMPClauseWithPreInit *C); 420 void VistOMPClauseWithPostUpdate(const OMPClauseWithPostUpdate *C); 421 }; 422 423 void OMPClauseProfiler::VistOMPClauseWithPreInit( 424 const OMPClauseWithPreInit *C) { 425 if (auto *S = C->getPreInitStmt()) 426 Profiler->VisitStmt(S); 427 } 428 429 void OMPClauseProfiler::VistOMPClauseWithPostUpdate( 430 const OMPClauseWithPostUpdate *C) { 431 VistOMPClauseWithPreInit(C); 432 if (auto *E = C->getPostUpdateExpr()) 433 Profiler->VisitStmt(E); 434 } 435 436 void OMPClauseProfiler::VisitOMPIfClause(const OMPIfClause *C) { 437 VistOMPClauseWithPreInit(C); 438 if (C->getCondition()) 439 Profiler->VisitStmt(C->getCondition()); 440 } 441 442 void OMPClauseProfiler::VisitOMPFinalClause(const OMPFinalClause *C) { 443 VistOMPClauseWithPreInit(C); 444 if (C->getCondition()) 445 Profiler->VisitStmt(C->getCondition()); 446 } 447 448 void OMPClauseProfiler::VisitOMPNumThreadsClause(const OMPNumThreadsClause *C) { 449 VistOMPClauseWithPreInit(C); 450 if (C->getNumThreads()) 451 Profiler->VisitStmt(C->getNumThreads()); 452 } 453 454 void OMPClauseProfiler::VisitOMPSafelenClause(const OMPSafelenClause *C) { 455 if (C->getSafelen()) 456 Profiler->VisitStmt(C->getSafelen()); 457 } 458 459 void OMPClauseProfiler::VisitOMPSimdlenClause(const OMPSimdlenClause *C) { 460 if (C->getSimdlen()) 461 Profiler->VisitStmt(C->getSimdlen()); 462 } 463 464 void OMPClauseProfiler::VisitOMPAllocatorClause(const OMPAllocatorClause *C) { 465 if (C->getAllocator()) 466 Profiler->VisitStmt(C->getAllocator()); 467 } 468 469 void OMPClauseProfiler::VisitOMPCollapseClause(const OMPCollapseClause *C) { 470 if (C->getNumForLoops()) 471 Profiler->VisitStmt(C->getNumForLoops()); 472 } 473 474 void OMPClauseProfiler::VisitOMPDetachClause(const OMPDetachClause *C) { 475 if (Expr *Evt = C->getEventHandler()) 476 Profiler->VisitStmt(Evt); 477 } 478 479 void OMPClauseProfiler::VisitOMPDefaultClause(const OMPDefaultClause *C) { } 480 481 void OMPClauseProfiler::VisitOMPProcBindClause(const OMPProcBindClause *C) { } 482 483 void OMPClauseProfiler::VisitOMPUnifiedAddressClause( 484 const OMPUnifiedAddressClause *C) {} 485 486 void OMPClauseProfiler::VisitOMPUnifiedSharedMemoryClause( 487 const OMPUnifiedSharedMemoryClause *C) {} 488 489 void OMPClauseProfiler::VisitOMPReverseOffloadClause( 490 const OMPReverseOffloadClause *C) {} 491 492 void OMPClauseProfiler::VisitOMPDynamicAllocatorsClause( 493 const OMPDynamicAllocatorsClause *C) {} 494 495 void OMPClauseProfiler::VisitOMPAtomicDefaultMemOrderClause( 496 const OMPAtomicDefaultMemOrderClause *C) {} 497 498 void OMPClauseProfiler::VisitOMPScheduleClause(const OMPScheduleClause *C) { 499 VistOMPClauseWithPreInit(C); 500 if (auto *S = C->getChunkSize()) 501 Profiler->VisitStmt(S); 502 } 503 504 void OMPClauseProfiler::VisitOMPOrderedClause(const OMPOrderedClause *C) { 505 if (auto *Num = C->getNumForLoops()) 506 Profiler->VisitStmt(Num); 507 } 508 509 void OMPClauseProfiler::VisitOMPNowaitClause(const OMPNowaitClause *) {} 510 511 void OMPClauseProfiler::VisitOMPUntiedClause(const OMPUntiedClause *) {} 512 513 void OMPClauseProfiler::VisitOMPMergeableClause(const OMPMergeableClause *) {} 514 515 void OMPClauseProfiler::VisitOMPReadClause(const OMPReadClause *) {} 516 517 void OMPClauseProfiler::VisitOMPWriteClause(const OMPWriteClause *) {} 518 519 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} 520 521 void OMPClauseProfiler::VisitOMPCaptureClause(const OMPCaptureClause *) {} 522 523 void OMPClauseProfiler::VisitOMPSeqCstClause(const OMPSeqCstClause *) {} 524 525 void OMPClauseProfiler::VisitOMPAcqRelClause(const OMPAcqRelClause *) {} 526 527 void OMPClauseProfiler::VisitOMPAcquireClause(const OMPAcquireClause *) {} 528 529 void OMPClauseProfiler::VisitOMPReleaseClause(const OMPReleaseClause *) {} 530 531 void OMPClauseProfiler::VisitOMPRelaxedClause(const OMPRelaxedClause *) {} 532 533 void OMPClauseProfiler::VisitOMPThreadsClause(const OMPThreadsClause *) {} 534 535 void OMPClauseProfiler::VisitOMPSIMDClause(const OMPSIMDClause *) {} 536 537 void OMPClauseProfiler::VisitOMPNogroupClause(const OMPNogroupClause *) {} 538 539 void OMPClauseProfiler::VisitOMPDestroyClause(const OMPDestroyClause *) {} 540 541 template<typename T> 542 void OMPClauseProfiler::VisitOMPClauseList(T *Node) { 543 for (auto *E : Node->varlists()) { 544 if (E) 545 Profiler->VisitStmt(E); 546 } 547 } 548 549 void OMPClauseProfiler::VisitOMPPrivateClause(const OMPPrivateClause *C) { 550 VisitOMPClauseList(C); 551 for (auto *E : C->private_copies()) { 552 if (E) 553 Profiler->VisitStmt(E); 554 } 555 } 556 void 557 OMPClauseProfiler::VisitOMPFirstprivateClause(const OMPFirstprivateClause *C) { 558 VisitOMPClauseList(C); 559 VistOMPClauseWithPreInit(C); 560 for (auto *E : C->private_copies()) { 561 if (E) 562 Profiler->VisitStmt(E); 563 } 564 for (auto *E : C->inits()) { 565 if (E) 566 Profiler->VisitStmt(E); 567 } 568 } 569 void 570 OMPClauseProfiler::VisitOMPLastprivateClause(const OMPLastprivateClause *C) { 571 VisitOMPClauseList(C); 572 VistOMPClauseWithPostUpdate(C); 573 for (auto *E : C->source_exprs()) { 574 if (E) 575 Profiler->VisitStmt(E); 576 } 577 for (auto *E : C->destination_exprs()) { 578 if (E) 579 Profiler->VisitStmt(E); 580 } 581 for (auto *E : C->assignment_ops()) { 582 if (E) 583 Profiler->VisitStmt(E); 584 } 585 } 586 void OMPClauseProfiler::VisitOMPSharedClause(const OMPSharedClause *C) { 587 VisitOMPClauseList(C); 588 } 589 void OMPClauseProfiler::VisitOMPReductionClause( 590 const OMPReductionClause *C) { 591 Profiler->VisitNestedNameSpecifier( 592 C->getQualifierLoc().getNestedNameSpecifier()); 593 Profiler->VisitName(C->getNameInfo().getName()); 594 VisitOMPClauseList(C); 595 VistOMPClauseWithPostUpdate(C); 596 for (auto *E : C->privates()) { 597 if (E) 598 Profiler->VisitStmt(E); 599 } 600 for (auto *E : C->lhs_exprs()) { 601 if (E) 602 Profiler->VisitStmt(E); 603 } 604 for (auto *E : C->rhs_exprs()) { 605 if (E) 606 Profiler->VisitStmt(E); 607 } 608 for (auto *E : C->reduction_ops()) { 609 if (E) 610 Profiler->VisitStmt(E); 611 } 612 if (C->getModifier() == clang::OMPC_REDUCTION_inscan) { 613 for (auto *E : C->copy_ops()) { 614 if (E) 615 Profiler->VisitStmt(E); 616 } 617 for (auto *E : C->copy_array_temps()) { 618 if (E) 619 Profiler->VisitStmt(E); 620 } 621 for (auto *E : C->copy_array_elems()) { 622 if (E) 623 Profiler->VisitStmt(E); 624 } 625 } 626 } 627 void OMPClauseProfiler::VisitOMPTaskReductionClause( 628 const OMPTaskReductionClause *C) { 629 Profiler->VisitNestedNameSpecifier( 630 C->getQualifierLoc().getNestedNameSpecifier()); 631 Profiler->VisitName(C->getNameInfo().getName()); 632 VisitOMPClauseList(C); 633 VistOMPClauseWithPostUpdate(C); 634 for (auto *E : C->privates()) { 635 if (E) 636 Profiler->VisitStmt(E); 637 } 638 for (auto *E : C->lhs_exprs()) { 639 if (E) 640 Profiler->VisitStmt(E); 641 } 642 for (auto *E : C->rhs_exprs()) { 643 if (E) 644 Profiler->VisitStmt(E); 645 } 646 for (auto *E : C->reduction_ops()) { 647 if (E) 648 Profiler->VisitStmt(E); 649 } 650 } 651 void OMPClauseProfiler::VisitOMPInReductionClause( 652 const OMPInReductionClause *C) { 653 Profiler->VisitNestedNameSpecifier( 654 C->getQualifierLoc().getNestedNameSpecifier()); 655 Profiler->VisitName(C->getNameInfo().getName()); 656 VisitOMPClauseList(C); 657 VistOMPClauseWithPostUpdate(C); 658 for (auto *E : C->privates()) { 659 if (E) 660 Profiler->VisitStmt(E); 661 } 662 for (auto *E : C->lhs_exprs()) { 663 if (E) 664 Profiler->VisitStmt(E); 665 } 666 for (auto *E : C->rhs_exprs()) { 667 if (E) 668 Profiler->VisitStmt(E); 669 } 670 for (auto *E : C->reduction_ops()) { 671 if (E) 672 Profiler->VisitStmt(E); 673 } 674 for (auto *E : C->taskgroup_descriptors()) { 675 if (E) 676 Profiler->VisitStmt(E); 677 } 678 } 679 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { 680 VisitOMPClauseList(C); 681 VistOMPClauseWithPostUpdate(C); 682 for (auto *E : C->privates()) { 683 if (E) 684 Profiler->VisitStmt(E); 685 } 686 for (auto *E : C->inits()) { 687 if (E) 688 Profiler->VisitStmt(E); 689 } 690 for (auto *E : C->updates()) { 691 if (E) 692 Profiler->VisitStmt(E); 693 } 694 for (auto *E : C->finals()) { 695 if (E) 696 Profiler->VisitStmt(E); 697 } 698 if (C->getStep()) 699 Profiler->VisitStmt(C->getStep()); 700 if (C->getCalcStep()) 701 Profiler->VisitStmt(C->getCalcStep()); 702 } 703 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { 704 VisitOMPClauseList(C); 705 if (C->getAlignment()) 706 Profiler->VisitStmt(C->getAlignment()); 707 } 708 void OMPClauseProfiler::VisitOMPCopyinClause(const OMPCopyinClause *C) { 709 VisitOMPClauseList(C); 710 for (auto *E : C->source_exprs()) { 711 if (E) 712 Profiler->VisitStmt(E); 713 } 714 for (auto *E : C->destination_exprs()) { 715 if (E) 716 Profiler->VisitStmt(E); 717 } 718 for (auto *E : C->assignment_ops()) { 719 if (E) 720 Profiler->VisitStmt(E); 721 } 722 } 723 void 724 OMPClauseProfiler::VisitOMPCopyprivateClause(const OMPCopyprivateClause *C) { 725 VisitOMPClauseList(C); 726 for (auto *E : C->source_exprs()) { 727 if (E) 728 Profiler->VisitStmt(E); 729 } 730 for (auto *E : C->destination_exprs()) { 731 if (E) 732 Profiler->VisitStmt(E); 733 } 734 for (auto *E : C->assignment_ops()) { 735 if (E) 736 Profiler->VisitStmt(E); 737 } 738 } 739 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { 740 VisitOMPClauseList(C); 741 } 742 void OMPClauseProfiler::VisitOMPDepobjClause(const OMPDepobjClause *C) { 743 if (const Expr *Depobj = C->getDepobj()) 744 Profiler->VisitStmt(Depobj); 745 } 746 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { 747 VisitOMPClauseList(C); 748 } 749 void OMPClauseProfiler::VisitOMPDeviceClause(const OMPDeviceClause *C) { 750 if (C->getDevice()) 751 Profiler->VisitStmt(C->getDevice()); 752 } 753 void OMPClauseProfiler::VisitOMPMapClause(const OMPMapClause *C) { 754 VisitOMPClauseList(C); 755 } 756 void OMPClauseProfiler::VisitOMPAllocateClause(const OMPAllocateClause *C) { 757 if (Expr *Allocator = C->getAllocator()) 758 Profiler->VisitStmt(Allocator); 759 VisitOMPClauseList(C); 760 } 761 void OMPClauseProfiler::VisitOMPNumTeamsClause(const OMPNumTeamsClause *C) { 762 VistOMPClauseWithPreInit(C); 763 if (C->getNumTeams()) 764 Profiler->VisitStmt(C->getNumTeams()); 765 } 766 void OMPClauseProfiler::VisitOMPThreadLimitClause( 767 const OMPThreadLimitClause *C) { 768 VistOMPClauseWithPreInit(C); 769 if (C->getThreadLimit()) 770 Profiler->VisitStmt(C->getThreadLimit()); 771 } 772 void OMPClauseProfiler::VisitOMPPriorityClause(const OMPPriorityClause *C) { 773 VistOMPClauseWithPreInit(C); 774 if (C->getPriority()) 775 Profiler->VisitStmt(C->getPriority()); 776 } 777 void OMPClauseProfiler::VisitOMPGrainsizeClause(const OMPGrainsizeClause *C) { 778 VistOMPClauseWithPreInit(C); 779 if (C->getGrainsize()) 780 Profiler->VisitStmt(C->getGrainsize()); 781 } 782 void OMPClauseProfiler::VisitOMPNumTasksClause(const OMPNumTasksClause *C) { 783 VistOMPClauseWithPreInit(C); 784 if (C->getNumTasks()) 785 Profiler->VisitStmt(C->getNumTasks()); 786 } 787 void OMPClauseProfiler::VisitOMPHintClause(const OMPHintClause *C) { 788 if (C->getHint()) 789 Profiler->VisitStmt(C->getHint()); 790 } 791 void OMPClauseProfiler::VisitOMPToClause(const OMPToClause *C) { 792 VisitOMPClauseList(C); 793 } 794 void OMPClauseProfiler::VisitOMPFromClause(const OMPFromClause *C) { 795 VisitOMPClauseList(C); 796 } 797 void OMPClauseProfiler::VisitOMPUseDevicePtrClause( 798 const OMPUseDevicePtrClause *C) { 799 VisitOMPClauseList(C); 800 } 801 void OMPClauseProfiler::VisitOMPUseDeviceAddrClause( 802 const OMPUseDeviceAddrClause *C) { 803 VisitOMPClauseList(C); 804 } 805 void OMPClauseProfiler::VisitOMPIsDevicePtrClause( 806 const OMPIsDevicePtrClause *C) { 807 VisitOMPClauseList(C); 808 } 809 void OMPClauseProfiler::VisitOMPNontemporalClause( 810 const OMPNontemporalClause *C) { 811 VisitOMPClauseList(C); 812 for (auto *E : C->private_refs()) 813 Profiler->VisitStmt(E); 814 } 815 void OMPClauseProfiler::VisitOMPInclusiveClause(const OMPInclusiveClause *C) { 816 VisitOMPClauseList(C); 817 } 818 void OMPClauseProfiler::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { 819 VisitOMPClauseList(C); 820 } 821 void OMPClauseProfiler::VisitOMPUsesAllocatorsClause( 822 const OMPUsesAllocatorsClause *C) { 823 for (unsigned I = 0, E = C->getNumberOfAllocators(); I < E; ++I) { 824 OMPUsesAllocatorsClause::Data D = C->getAllocatorData(I); 825 Profiler->VisitStmt(D.Allocator); 826 if (D.AllocatorTraits) 827 Profiler->VisitStmt(D.AllocatorTraits); 828 } 829 } 830 void OMPClauseProfiler::VisitOMPAffinityClause(const OMPAffinityClause *C) { 831 if (const Expr *Modifier = C->getModifier()) 832 Profiler->VisitStmt(Modifier); 833 for (const Expr *E : C->varlists()) 834 Profiler->VisitStmt(E); 835 } 836 void OMPClauseProfiler::VisitOMPOrderClause(const OMPOrderClause *C) {} 837 } // namespace 838 839 void 840 StmtProfiler::VisitOMPExecutableDirective(const OMPExecutableDirective *S) { 841 VisitStmt(S); 842 OMPClauseProfiler P(this); 843 ArrayRef<OMPClause *> Clauses = S->clauses(); 844 for (ArrayRef<OMPClause *>::iterator I = Clauses.begin(), E = Clauses.end(); 845 I != E; ++I) 846 if (*I) 847 P.Visit(*I); 848 } 849 850 void StmtProfiler::VisitOMPLoopDirective(const OMPLoopDirective *S) { 851 VisitOMPExecutableDirective(S); 852 } 853 854 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { 855 VisitOMPExecutableDirective(S); 856 } 857 858 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { 859 VisitOMPLoopDirective(S); 860 } 861 862 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { 863 VisitOMPLoopDirective(S); 864 } 865 866 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { 867 VisitOMPLoopDirective(S); 868 } 869 870 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { 871 VisitOMPExecutableDirective(S); 872 } 873 874 void StmtProfiler::VisitOMPSectionDirective(const OMPSectionDirective *S) { 875 VisitOMPExecutableDirective(S); 876 } 877 878 void StmtProfiler::VisitOMPSingleDirective(const OMPSingleDirective *S) { 879 VisitOMPExecutableDirective(S); 880 } 881 882 void StmtProfiler::VisitOMPMasterDirective(const OMPMasterDirective *S) { 883 VisitOMPExecutableDirective(S); 884 } 885 886 void StmtProfiler::VisitOMPCriticalDirective(const OMPCriticalDirective *S) { 887 VisitOMPExecutableDirective(S); 888 VisitName(S->getDirectiveName().getName()); 889 } 890 891 void 892 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { 893 VisitOMPLoopDirective(S); 894 } 895 896 void StmtProfiler::VisitOMPParallelForSimdDirective( 897 const OMPParallelForSimdDirective *S) { 898 VisitOMPLoopDirective(S); 899 } 900 901 void StmtProfiler::VisitOMPParallelMasterDirective( 902 const OMPParallelMasterDirective *S) { 903 VisitOMPExecutableDirective(S); 904 } 905 906 void StmtProfiler::VisitOMPParallelSectionsDirective( 907 const OMPParallelSectionsDirective *S) { 908 VisitOMPExecutableDirective(S); 909 } 910 911 void StmtProfiler::VisitOMPTaskDirective(const OMPTaskDirective *S) { 912 VisitOMPExecutableDirective(S); 913 } 914 915 void StmtProfiler::VisitOMPTaskyieldDirective(const OMPTaskyieldDirective *S) { 916 VisitOMPExecutableDirective(S); 917 } 918 919 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { 920 VisitOMPExecutableDirective(S); 921 } 922 923 void StmtProfiler::VisitOMPTaskwaitDirective(const OMPTaskwaitDirective *S) { 924 VisitOMPExecutableDirective(S); 925 } 926 927 void StmtProfiler::VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *S) { 928 VisitOMPExecutableDirective(S); 929 if (const Expr *E = S->getReductionRef()) 930 VisitStmt(E); 931 } 932 933 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { 934 VisitOMPExecutableDirective(S); 935 } 936 937 void StmtProfiler::VisitOMPDepobjDirective(const OMPDepobjDirective *S) { 938 VisitOMPExecutableDirective(S); 939 } 940 941 void StmtProfiler::VisitOMPScanDirective(const OMPScanDirective *S) { 942 VisitOMPExecutableDirective(S); 943 } 944 945 void StmtProfiler::VisitOMPOrderedDirective(const OMPOrderedDirective *S) { 946 VisitOMPExecutableDirective(S); 947 } 948 949 void StmtProfiler::VisitOMPAtomicDirective(const OMPAtomicDirective *S) { 950 VisitOMPExecutableDirective(S); 951 } 952 953 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { 954 VisitOMPExecutableDirective(S); 955 } 956 957 void StmtProfiler::VisitOMPTargetDataDirective(const OMPTargetDataDirective *S) { 958 VisitOMPExecutableDirective(S); 959 } 960 961 void StmtProfiler::VisitOMPTargetEnterDataDirective( 962 const OMPTargetEnterDataDirective *S) { 963 VisitOMPExecutableDirective(S); 964 } 965 966 void StmtProfiler::VisitOMPTargetExitDataDirective( 967 const OMPTargetExitDataDirective *S) { 968 VisitOMPExecutableDirective(S); 969 } 970 971 void StmtProfiler::VisitOMPTargetParallelDirective( 972 const OMPTargetParallelDirective *S) { 973 VisitOMPExecutableDirective(S); 974 } 975 976 void StmtProfiler::VisitOMPTargetParallelForDirective( 977 const OMPTargetParallelForDirective *S) { 978 VisitOMPExecutableDirective(S); 979 } 980 981 void StmtProfiler::VisitOMPTeamsDirective(const OMPTeamsDirective *S) { 982 VisitOMPExecutableDirective(S); 983 } 984 985 void StmtProfiler::VisitOMPCancellationPointDirective( 986 const OMPCancellationPointDirective *S) { 987 VisitOMPExecutableDirective(S); 988 } 989 990 void StmtProfiler::VisitOMPCancelDirective(const OMPCancelDirective *S) { 991 VisitOMPExecutableDirective(S); 992 } 993 994 void StmtProfiler::VisitOMPTaskLoopDirective(const OMPTaskLoopDirective *S) { 995 VisitOMPLoopDirective(S); 996 } 997 998 void StmtProfiler::VisitOMPTaskLoopSimdDirective( 999 const OMPTaskLoopSimdDirective *S) { 1000 VisitOMPLoopDirective(S); 1001 } 1002 1003 void StmtProfiler::VisitOMPMasterTaskLoopDirective( 1004 const OMPMasterTaskLoopDirective *S) { 1005 VisitOMPLoopDirective(S); 1006 } 1007 1008 void StmtProfiler::VisitOMPMasterTaskLoopSimdDirective( 1009 const OMPMasterTaskLoopSimdDirective *S) { 1010 VisitOMPLoopDirective(S); 1011 } 1012 1013 void StmtProfiler::VisitOMPParallelMasterTaskLoopDirective( 1014 const OMPParallelMasterTaskLoopDirective *S) { 1015 VisitOMPLoopDirective(S); 1016 } 1017 1018 void StmtProfiler::VisitOMPParallelMasterTaskLoopSimdDirective( 1019 const OMPParallelMasterTaskLoopSimdDirective *S) { 1020 VisitOMPLoopDirective(S); 1021 } 1022 1023 void StmtProfiler::VisitOMPDistributeDirective( 1024 const OMPDistributeDirective *S) { 1025 VisitOMPLoopDirective(S); 1026 } 1027 1028 void OMPClauseProfiler::VisitOMPDistScheduleClause( 1029 const OMPDistScheduleClause *C) { 1030 VistOMPClauseWithPreInit(C); 1031 if (auto *S = C->getChunkSize()) 1032 Profiler->VisitStmt(S); 1033 } 1034 1035 void OMPClauseProfiler::VisitOMPDefaultmapClause(const OMPDefaultmapClause *) {} 1036 1037 void StmtProfiler::VisitOMPTargetUpdateDirective( 1038 const OMPTargetUpdateDirective *S) { 1039 VisitOMPExecutableDirective(S); 1040 } 1041 1042 void StmtProfiler::VisitOMPDistributeParallelForDirective( 1043 const OMPDistributeParallelForDirective *S) { 1044 VisitOMPLoopDirective(S); 1045 } 1046 1047 void StmtProfiler::VisitOMPDistributeParallelForSimdDirective( 1048 const OMPDistributeParallelForSimdDirective *S) { 1049 VisitOMPLoopDirective(S); 1050 } 1051 1052 void StmtProfiler::VisitOMPDistributeSimdDirective( 1053 const OMPDistributeSimdDirective *S) { 1054 VisitOMPLoopDirective(S); 1055 } 1056 1057 void StmtProfiler::VisitOMPTargetParallelForSimdDirective( 1058 const OMPTargetParallelForSimdDirective *S) { 1059 VisitOMPLoopDirective(S); 1060 } 1061 1062 void StmtProfiler::VisitOMPTargetSimdDirective( 1063 const OMPTargetSimdDirective *S) { 1064 VisitOMPLoopDirective(S); 1065 } 1066 1067 void StmtProfiler::VisitOMPTeamsDistributeDirective( 1068 const OMPTeamsDistributeDirective *S) { 1069 VisitOMPLoopDirective(S); 1070 } 1071 1072 void StmtProfiler::VisitOMPTeamsDistributeSimdDirective( 1073 const OMPTeamsDistributeSimdDirective *S) { 1074 VisitOMPLoopDirective(S); 1075 } 1076 1077 void StmtProfiler::VisitOMPTeamsDistributeParallelForSimdDirective( 1078 const OMPTeamsDistributeParallelForSimdDirective *S) { 1079 VisitOMPLoopDirective(S); 1080 } 1081 1082 void StmtProfiler::VisitOMPTeamsDistributeParallelForDirective( 1083 const OMPTeamsDistributeParallelForDirective *S) { 1084 VisitOMPLoopDirective(S); 1085 } 1086 1087 void StmtProfiler::VisitOMPTargetTeamsDirective( 1088 const OMPTargetTeamsDirective *S) { 1089 VisitOMPExecutableDirective(S); 1090 } 1091 1092 void StmtProfiler::VisitOMPTargetTeamsDistributeDirective( 1093 const OMPTargetTeamsDistributeDirective *S) { 1094 VisitOMPLoopDirective(S); 1095 } 1096 1097 void StmtProfiler::VisitOMPTargetTeamsDistributeParallelForDirective( 1098 const OMPTargetTeamsDistributeParallelForDirective *S) { 1099 VisitOMPLoopDirective(S); 1100 } 1101 1102 void StmtProfiler::VisitOMPTargetTeamsDistributeParallelForSimdDirective( 1103 const OMPTargetTeamsDistributeParallelForSimdDirective *S) { 1104 VisitOMPLoopDirective(S); 1105 } 1106 1107 void StmtProfiler::VisitOMPTargetTeamsDistributeSimdDirective( 1108 const OMPTargetTeamsDistributeSimdDirective *S) { 1109 VisitOMPLoopDirective(S); 1110 } 1111 1112 void StmtProfiler::VisitExpr(const Expr *S) { 1113 VisitStmt(S); 1114 } 1115 1116 void StmtProfiler::VisitConstantExpr(const ConstantExpr *S) { 1117 VisitExpr(S); 1118 } 1119 1120 void StmtProfiler::VisitDeclRefExpr(const DeclRefExpr *S) { 1121 VisitExpr(S); 1122 if (!Canonical) 1123 VisitNestedNameSpecifier(S->getQualifier()); 1124 VisitDecl(S->getDecl()); 1125 if (!Canonical) { 1126 ID.AddBoolean(S->hasExplicitTemplateArgs()); 1127 if (S->hasExplicitTemplateArgs()) 1128 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs()); 1129 } 1130 } 1131 1132 void StmtProfiler::VisitPredefinedExpr(const PredefinedExpr *S) { 1133 VisitExpr(S); 1134 ID.AddInteger(S->getIdentKind()); 1135 } 1136 1137 void StmtProfiler::VisitIntegerLiteral(const IntegerLiteral *S) { 1138 VisitExpr(S); 1139 S->getValue().Profile(ID); 1140 ID.AddInteger(S->getType()->castAs<BuiltinType>()->getKind()); 1141 } 1142 1143 void StmtProfiler::VisitFixedPointLiteral(const FixedPointLiteral *S) { 1144 VisitExpr(S); 1145 S->getValue().Profile(ID); 1146 ID.AddInteger(S->getType()->castAs<BuiltinType>()->getKind()); 1147 } 1148 1149 void StmtProfiler::VisitCharacterLiteral(const CharacterLiteral *S) { 1150 VisitExpr(S); 1151 ID.AddInteger(S->getKind()); 1152 ID.AddInteger(S->getValue()); 1153 } 1154 1155 void StmtProfiler::VisitFloatingLiteral(const FloatingLiteral *S) { 1156 VisitExpr(S); 1157 S->getValue().Profile(ID); 1158 ID.AddBoolean(S->isExact()); 1159 ID.AddInteger(S->getType()->castAs<BuiltinType>()->getKind()); 1160 } 1161 1162 void StmtProfiler::VisitImaginaryLiteral(const ImaginaryLiteral *S) { 1163 VisitExpr(S); 1164 } 1165 1166 void StmtProfiler::VisitStringLiteral(const StringLiteral *S) { 1167 VisitExpr(S); 1168 ID.AddString(S->getBytes()); 1169 ID.AddInteger(S->getKind()); 1170 } 1171 1172 void StmtProfiler::VisitParenExpr(const ParenExpr *S) { 1173 VisitExpr(S); 1174 } 1175 1176 void StmtProfiler::VisitParenListExpr(const ParenListExpr *S) { 1177 VisitExpr(S); 1178 } 1179 1180 void StmtProfiler::VisitUnaryOperator(const UnaryOperator *S) { 1181 VisitExpr(S); 1182 ID.AddInteger(S->getOpcode()); 1183 } 1184 1185 void StmtProfiler::VisitOffsetOfExpr(const OffsetOfExpr *S) { 1186 VisitType(S->getTypeSourceInfo()->getType()); 1187 unsigned n = S->getNumComponents(); 1188 for (unsigned i = 0; i < n; ++i) { 1189 const OffsetOfNode &ON = S->getComponent(i); 1190 ID.AddInteger(ON.getKind()); 1191 switch (ON.getKind()) { 1192 case OffsetOfNode::Array: 1193 // Expressions handled below. 1194 break; 1195 1196 case OffsetOfNode::Field: 1197 VisitDecl(ON.getField()); 1198 break; 1199 1200 case OffsetOfNode::Identifier: 1201 VisitIdentifierInfo(ON.getFieldName()); 1202 break; 1203 1204 case OffsetOfNode::Base: 1205 // These nodes are implicit, and therefore don't need profiling. 1206 break; 1207 } 1208 } 1209 1210 VisitExpr(S); 1211 } 1212 1213 void 1214 StmtProfiler::VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *S) { 1215 VisitExpr(S); 1216 ID.AddInteger(S->getKind()); 1217 if (S->isArgumentType()) 1218 VisitType(S->getArgumentType()); 1219 } 1220 1221 void StmtProfiler::VisitArraySubscriptExpr(const ArraySubscriptExpr *S) { 1222 VisitExpr(S); 1223 } 1224 1225 void StmtProfiler::VisitMatrixSubscriptExpr(const MatrixSubscriptExpr *S) { 1226 VisitExpr(S); 1227 } 1228 1229 void StmtProfiler::VisitOMPArraySectionExpr(const OMPArraySectionExpr *S) { 1230 VisitExpr(S); 1231 } 1232 1233 void StmtProfiler::VisitOMPArrayShapingExpr(const OMPArrayShapingExpr *S) { 1234 VisitExpr(S); 1235 } 1236 1237 void StmtProfiler::VisitOMPIteratorExpr(const OMPIteratorExpr *S) { 1238 VisitExpr(S); 1239 for (unsigned I = 0, E = S->numOfIterators(); I < E; ++I) 1240 VisitDecl(S->getIteratorDecl(I)); 1241 } 1242 1243 void StmtProfiler::VisitCallExpr(const CallExpr *S) { 1244 VisitExpr(S); 1245 } 1246 1247 void StmtProfiler::VisitMemberExpr(const MemberExpr *S) { 1248 VisitExpr(S); 1249 VisitDecl(S->getMemberDecl()); 1250 if (!Canonical) 1251 VisitNestedNameSpecifier(S->getQualifier()); 1252 ID.AddBoolean(S->isArrow()); 1253 } 1254 1255 void StmtProfiler::VisitCompoundLiteralExpr(const CompoundLiteralExpr *S) { 1256 VisitExpr(S); 1257 ID.AddBoolean(S->isFileScope()); 1258 } 1259 1260 void StmtProfiler::VisitCastExpr(const CastExpr *S) { 1261 VisitExpr(S); 1262 } 1263 1264 void StmtProfiler::VisitImplicitCastExpr(const ImplicitCastExpr *S) { 1265 VisitCastExpr(S); 1266 ID.AddInteger(S->getValueKind()); 1267 } 1268 1269 void StmtProfiler::VisitExplicitCastExpr(const ExplicitCastExpr *S) { 1270 VisitCastExpr(S); 1271 VisitType(S->getTypeAsWritten()); 1272 } 1273 1274 void StmtProfiler::VisitCStyleCastExpr(const CStyleCastExpr *S) { 1275 VisitExplicitCastExpr(S); 1276 } 1277 1278 void StmtProfiler::VisitBinaryOperator(const BinaryOperator *S) { 1279 VisitExpr(S); 1280 ID.AddInteger(S->getOpcode()); 1281 } 1282 1283 void 1284 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) { 1285 VisitBinaryOperator(S); 1286 } 1287 1288 void StmtProfiler::VisitConditionalOperator(const ConditionalOperator *S) { 1289 VisitExpr(S); 1290 } 1291 1292 void StmtProfiler::VisitBinaryConditionalOperator( 1293 const BinaryConditionalOperator *S) { 1294 VisitExpr(S); 1295 } 1296 1297 void StmtProfiler::VisitAddrLabelExpr(const AddrLabelExpr *S) { 1298 VisitExpr(S); 1299 VisitDecl(S->getLabel()); 1300 } 1301 1302 void StmtProfiler::VisitStmtExpr(const StmtExpr *S) { 1303 VisitExpr(S); 1304 } 1305 1306 void StmtProfiler::VisitShuffleVectorExpr(const ShuffleVectorExpr *S) { 1307 VisitExpr(S); 1308 } 1309 1310 void StmtProfiler::VisitConvertVectorExpr(const ConvertVectorExpr *S) { 1311 VisitExpr(S); 1312 } 1313 1314 void StmtProfiler::VisitChooseExpr(const ChooseExpr *S) { 1315 VisitExpr(S); 1316 } 1317 1318 void StmtProfiler::VisitGNUNullExpr(const GNUNullExpr *S) { 1319 VisitExpr(S); 1320 } 1321 1322 void StmtProfiler::VisitVAArgExpr(const VAArgExpr *S) { 1323 VisitExpr(S); 1324 } 1325 1326 void StmtProfiler::VisitInitListExpr(const InitListExpr *S) { 1327 if (S->getSyntacticForm()) { 1328 VisitInitListExpr(S->getSyntacticForm()); 1329 return; 1330 } 1331 1332 VisitExpr(S); 1333 } 1334 1335 void StmtProfiler::VisitDesignatedInitExpr(const DesignatedInitExpr *S) { 1336 VisitExpr(S); 1337 ID.AddBoolean(S->usesGNUSyntax()); 1338 for (const DesignatedInitExpr::Designator &D : S->designators()) { 1339 if (D.isFieldDesignator()) { 1340 ID.AddInteger(0); 1341 VisitName(D.getFieldName()); 1342 continue; 1343 } 1344 1345 if (D.isArrayDesignator()) { 1346 ID.AddInteger(1); 1347 } else { 1348 assert(D.isArrayRangeDesignator()); 1349 ID.AddInteger(2); 1350 } 1351 ID.AddInteger(D.getFirstExprIndex()); 1352 } 1353 } 1354 1355 // Seems that if VisitInitListExpr() only works on the syntactic form of an 1356 // InitListExpr, then a DesignatedInitUpdateExpr is not encountered. 1357 void StmtProfiler::VisitDesignatedInitUpdateExpr( 1358 const DesignatedInitUpdateExpr *S) { 1359 llvm_unreachable("Unexpected DesignatedInitUpdateExpr in syntactic form of " 1360 "initializer"); 1361 } 1362 1363 void StmtProfiler::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *S) { 1364 VisitExpr(S); 1365 } 1366 1367 void StmtProfiler::VisitArrayInitIndexExpr(const ArrayInitIndexExpr *S) { 1368 VisitExpr(S); 1369 } 1370 1371 void StmtProfiler::VisitNoInitExpr(const NoInitExpr *S) { 1372 llvm_unreachable("Unexpected NoInitExpr in syntactic form of initializer"); 1373 } 1374 1375 void StmtProfiler::VisitImplicitValueInitExpr(const ImplicitValueInitExpr *S) { 1376 VisitExpr(S); 1377 } 1378 1379 void StmtProfiler::VisitExtVectorElementExpr(const ExtVectorElementExpr *S) { 1380 VisitExpr(S); 1381 VisitName(&S->getAccessor()); 1382 } 1383 1384 void StmtProfiler::VisitBlockExpr(const BlockExpr *S) { 1385 VisitExpr(S); 1386 VisitDecl(S->getBlockDecl()); 1387 } 1388 1389 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { 1390 VisitExpr(S); 1391 for (const GenericSelectionExpr::ConstAssociation Assoc : 1392 S->associations()) { 1393 QualType T = Assoc.getType(); 1394 if (T.isNull()) 1395 ID.AddPointer(nullptr); 1396 else 1397 VisitType(T); 1398 VisitExpr(Assoc.getAssociationExpr()); 1399 } 1400 } 1401 1402 void StmtProfiler::VisitPseudoObjectExpr(const PseudoObjectExpr *S) { 1403 VisitExpr(S); 1404 for (PseudoObjectExpr::const_semantics_iterator 1405 i = S->semantics_begin(), e = S->semantics_end(); i != e; ++i) 1406 // Normally, we would not profile the source expressions of OVEs. 1407 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(*i)) 1408 Visit(OVE->getSourceExpr()); 1409 } 1410 1411 void StmtProfiler::VisitAtomicExpr(const AtomicExpr *S) { 1412 VisitExpr(S); 1413 ID.AddInteger(S->getOp()); 1414 } 1415 1416 void StmtProfiler::VisitConceptSpecializationExpr( 1417 const ConceptSpecializationExpr *S) { 1418 VisitExpr(S); 1419 VisitDecl(S->getNamedConcept()); 1420 for (const TemplateArgument &Arg : S->getTemplateArguments()) 1421 VisitTemplateArgument(Arg); 1422 } 1423 1424 void StmtProfiler::VisitRequiresExpr(const RequiresExpr *S) { 1425 VisitExpr(S); 1426 ID.AddInteger(S->getLocalParameters().size()); 1427 for (ParmVarDecl *LocalParam : S->getLocalParameters()) 1428 VisitDecl(LocalParam); 1429 ID.AddInteger(S->getRequirements().size()); 1430 for (concepts::Requirement *Req : S->getRequirements()) { 1431 if (auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) { 1432 ID.AddInteger(concepts::Requirement::RK_Type); 1433 ID.AddBoolean(TypeReq->isSubstitutionFailure()); 1434 if (!TypeReq->isSubstitutionFailure()) 1435 VisitType(TypeReq->getType()->getType()); 1436 } else if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) { 1437 ID.AddInteger(concepts::Requirement::RK_Compound); 1438 ID.AddBoolean(ExprReq->isExprSubstitutionFailure()); 1439 if (!ExprReq->isExprSubstitutionFailure()) 1440 Visit(ExprReq->getExpr()); 1441 // C++2a [expr.prim.req.compound]p1 Example: 1442 // [...] The compound-requirement in C1 requires that x++ is a valid 1443 // expression. It is equivalent to the simple-requirement x++; [...] 1444 // We therefore do not profile isSimple() here. 1445 ID.AddBoolean(ExprReq->getNoexceptLoc().isValid()); 1446 const concepts::ExprRequirement::ReturnTypeRequirement &RetReq = 1447 ExprReq->getReturnTypeRequirement(); 1448 if (RetReq.isEmpty()) { 1449 ID.AddInteger(0); 1450 } else if (RetReq.isTypeConstraint()) { 1451 ID.AddInteger(1); 1452 Visit(RetReq.getTypeConstraint()->getImmediatelyDeclaredConstraint()); 1453 } else { 1454 assert(RetReq.isSubstitutionFailure()); 1455 ID.AddInteger(2); 1456 } 1457 } else { 1458 ID.AddInteger(concepts::Requirement::RK_Nested); 1459 auto *NestedReq = cast<concepts::NestedRequirement>(Req); 1460 ID.AddBoolean(NestedReq->isSubstitutionFailure()); 1461 if (!NestedReq->isSubstitutionFailure()) 1462 Visit(NestedReq->getConstraintExpr()); 1463 } 1464 } 1465 } 1466 1467 static Stmt::StmtClass DecodeOperatorCall(const CXXOperatorCallExpr *S, 1468 UnaryOperatorKind &UnaryOp, 1469 BinaryOperatorKind &BinaryOp) { 1470 switch (S->getOperator()) { 1471 case OO_None: 1472 case OO_New: 1473 case OO_Delete: 1474 case OO_Array_New: 1475 case OO_Array_Delete: 1476 case OO_Arrow: 1477 case OO_Conditional: 1478 case NUM_OVERLOADED_OPERATORS: 1479 llvm_unreachable("Invalid operator call kind"); 1480 1481 case OO_Plus: 1482 if (S->getNumArgs() == 1) { 1483 UnaryOp = UO_Plus; 1484 return Stmt::UnaryOperatorClass; 1485 } 1486 1487 BinaryOp = BO_Add; 1488 return Stmt::BinaryOperatorClass; 1489 1490 case OO_Minus: 1491 if (S->getNumArgs() == 1) { 1492 UnaryOp = UO_Minus; 1493 return Stmt::UnaryOperatorClass; 1494 } 1495 1496 BinaryOp = BO_Sub; 1497 return Stmt::BinaryOperatorClass; 1498 1499 case OO_Star: 1500 if (S->getNumArgs() == 1) { 1501 UnaryOp = UO_Deref; 1502 return Stmt::UnaryOperatorClass; 1503 } 1504 1505 BinaryOp = BO_Mul; 1506 return Stmt::BinaryOperatorClass; 1507 1508 case OO_Slash: 1509 BinaryOp = BO_Div; 1510 return Stmt::BinaryOperatorClass; 1511 1512 case OO_Percent: 1513 BinaryOp = BO_Rem; 1514 return Stmt::BinaryOperatorClass; 1515 1516 case OO_Caret: 1517 BinaryOp = BO_Xor; 1518 return Stmt::BinaryOperatorClass; 1519 1520 case OO_Amp: 1521 if (S->getNumArgs() == 1) { 1522 UnaryOp = UO_AddrOf; 1523 return Stmt::UnaryOperatorClass; 1524 } 1525 1526 BinaryOp = BO_And; 1527 return Stmt::BinaryOperatorClass; 1528 1529 case OO_Pipe: 1530 BinaryOp = BO_Or; 1531 return Stmt::BinaryOperatorClass; 1532 1533 case OO_Tilde: 1534 UnaryOp = UO_Not; 1535 return Stmt::UnaryOperatorClass; 1536 1537 case OO_Exclaim: 1538 UnaryOp = UO_LNot; 1539 return Stmt::UnaryOperatorClass; 1540 1541 case OO_Equal: 1542 BinaryOp = BO_Assign; 1543 return Stmt::BinaryOperatorClass; 1544 1545 case OO_Less: 1546 BinaryOp = BO_LT; 1547 return Stmt::BinaryOperatorClass; 1548 1549 case OO_Greater: 1550 BinaryOp = BO_GT; 1551 return Stmt::BinaryOperatorClass; 1552 1553 case OO_PlusEqual: 1554 BinaryOp = BO_AddAssign; 1555 return Stmt::CompoundAssignOperatorClass; 1556 1557 case OO_MinusEqual: 1558 BinaryOp = BO_SubAssign; 1559 return Stmt::CompoundAssignOperatorClass; 1560 1561 case OO_StarEqual: 1562 BinaryOp = BO_MulAssign; 1563 return Stmt::CompoundAssignOperatorClass; 1564 1565 case OO_SlashEqual: 1566 BinaryOp = BO_DivAssign; 1567 return Stmt::CompoundAssignOperatorClass; 1568 1569 case OO_PercentEqual: 1570 BinaryOp = BO_RemAssign; 1571 return Stmt::CompoundAssignOperatorClass; 1572 1573 case OO_CaretEqual: 1574 BinaryOp = BO_XorAssign; 1575 return Stmt::CompoundAssignOperatorClass; 1576 1577 case OO_AmpEqual: 1578 BinaryOp = BO_AndAssign; 1579 return Stmt::CompoundAssignOperatorClass; 1580 1581 case OO_PipeEqual: 1582 BinaryOp = BO_OrAssign; 1583 return Stmt::CompoundAssignOperatorClass; 1584 1585 case OO_LessLess: 1586 BinaryOp = BO_Shl; 1587 return Stmt::BinaryOperatorClass; 1588 1589 case OO_GreaterGreater: 1590 BinaryOp = BO_Shr; 1591 return Stmt::BinaryOperatorClass; 1592 1593 case OO_LessLessEqual: 1594 BinaryOp = BO_ShlAssign; 1595 return Stmt::CompoundAssignOperatorClass; 1596 1597 case OO_GreaterGreaterEqual: 1598 BinaryOp = BO_ShrAssign; 1599 return Stmt::CompoundAssignOperatorClass; 1600 1601 case OO_EqualEqual: 1602 BinaryOp = BO_EQ; 1603 return Stmt::BinaryOperatorClass; 1604 1605 case OO_ExclaimEqual: 1606 BinaryOp = BO_NE; 1607 return Stmt::BinaryOperatorClass; 1608 1609 case OO_LessEqual: 1610 BinaryOp = BO_LE; 1611 return Stmt::BinaryOperatorClass; 1612 1613 case OO_GreaterEqual: 1614 BinaryOp = BO_GE; 1615 return Stmt::BinaryOperatorClass; 1616 1617 case OO_Spaceship: 1618 BinaryOp = BO_Cmp; 1619 return Stmt::BinaryOperatorClass; 1620 1621 case OO_AmpAmp: 1622 BinaryOp = BO_LAnd; 1623 return Stmt::BinaryOperatorClass; 1624 1625 case OO_PipePipe: 1626 BinaryOp = BO_LOr; 1627 return Stmt::BinaryOperatorClass; 1628 1629 case OO_PlusPlus: 1630 UnaryOp = S->getNumArgs() == 1? UO_PreInc 1631 : UO_PostInc; 1632 return Stmt::UnaryOperatorClass; 1633 1634 case OO_MinusMinus: 1635 UnaryOp = S->getNumArgs() == 1? UO_PreDec 1636 : UO_PostDec; 1637 return Stmt::UnaryOperatorClass; 1638 1639 case OO_Comma: 1640 BinaryOp = BO_Comma; 1641 return Stmt::BinaryOperatorClass; 1642 1643 case OO_ArrowStar: 1644 BinaryOp = BO_PtrMemI; 1645 return Stmt::BinaryOperatorClass; 1646 1647 case OO_Subscript: 1648 return Stmt::ArraySubscriptExprClass; 1649 1650 case OO_Call: 1651 return Stmt::CallExprClass; 1652 1653 case OO_Coawait: 1654 UnaryOp = UO_Coawait; 1655 return Stmt::UnaryOperatorClass; 1656 } 1657 1658 llvm_unreachable("Invalid overloaded operator expression"); 1659 } 1660 1661 #if defined(_MSC_VER) && !defined(__clang__) 1662 #if _MSC_VER == 1911 1663 // Work around https://developercommunity.visualstudio.com/content/problem/84002/clang-cl-when-built-with-vc-2017-crashes-cause-vc.html 1664 // MSVC 2017 update 3 miscompiles this function, and a clang built with it 1665 // will crash in stage 2 of a bootstrap build. 1666 #pragma optimize("", off) 1667 #endif 1668 #endif 1669 1670 void StmtProfiler::VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *S) { 1671 if (S->isTypeDependent()) { 1672 // Type-dependent operator calls are profiled like their underlying 1673 // syntactic operator. 1674 // 1675 // An operator call to operator-> is always implicit, so just skip it. The 1676 // enclosing MemberExpr will profile the actual member access. 1677 if (S->getOperator() == OO_Arrow) 1678 return Visit(S->getArg(0)); 1679 1680 UnaryOperatorKind UnaryOp = UO_Extension; 1681 BinaryOperatorKind BinaryOp = BO_Comma; 1682 Stmt::StmtClass SC = DecodeOperatorCall(S, UnaryOp, BinaryOp); 1683 1684 ID.AddInteger(SC); 1685 for (unsigned I = 0, N = S->getNumArgs(); I != N; ++I) 1686 Visit(S->getArg(I)); 1687 if (SC == Stmt::UnaryOperatorClass) 1688 ID.AddInteger(UnaryOp); 1689 else if (SC == Stmt::BinaryOperatorClass || 1690 SC == Stmt::CompoundAssignOperatorClass) 1691 ID.AddInteger(BinaryOp); 1692 else 1693 assert(SC == Stmt::ArraySubscriptExprClass || SC == Stmt::CallExprClass); 1694 1695 return; 1696 } 1697 1698 VisitCallExpr(S); 1699 ID.AddInteger(S->getOperator()); 1700 } 1701 1702 void StmtProfiler::VisitCXXRewrittenBinaryOperator( 1703 const CXXRewrittenBinaryOperator *S) { 1704 // If a rewritten operator were ever to be type-dependent, we should profile 1705 // it following its syntactic operator. 1706 assert(!S->isTypeDependent() && 1707 "resolved rewritten operator should never be type-dependent"); 1708 ID.AddBoolean(S->isReversed()); 1709 VisitExpr(S->getSemanticForm()); 1710 } 1711 1712 #if defined(_MSC_VER) && !defined(__clang__) 1713 #if _MSC_VER == 1911 1714 #pragma optimize("", on) 1715 #endif 1716 #endif 1717 1718 void StmtProfiler::VisitCXXMemberCallExpr(const CXXMemberCallExpr *S) { 1719 VisitCallExpr(S); 1720 } 1721 1722 void StmtProfiler::VisitCUDAKernelCallExpr(const CUDAKernelCallExpr *S) { 1723 VisitCallExpr(S); 1724 } 1725 1726 void StmtProfiler::VisitAsTypeExpr(const AsTypeExpr *S) { 1727 VisitExpr(S); 1728 } 1729 1730 void StmtProfiler::VisitCXXNamedCastExpr(const CXXNamedCastExpr *S) { 1731 VisitExplicitCastExpr(S); 1732 } 1733 1734 void StmtProfiler::VisitCXXStaticCastExpr(const CXXStaticCastExpr *S) { 1735 VisitCXXNamedCastExpr(S); 1736 } 1737 1738 void StmtProfiler::VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *S) { 1739 VisitCXXNamedCastExpr(S); 1740 } 1741 1742 void 1743 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { 1744 VisitCXXNamedCastExpr(S); 1745 } 1746 1747 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { 1748 VisitCXXNamedCastExpr(S); 1749 } 1750 1751 void StmtProfiler::VisitBuiltinBitCastExpr(const BuiltinBitCastExpr *S) { 1752 VisitExpr(S); 1753 VisitType(S->getTypeInfoAsWritten()->getType()); 1754 } 1755 1756 void StmtProfiler::VisitCXXAddrspaceCastExpr(const CXXAddrspaceCastExpr *S) { 1757 VisitCXXNamedCastExpr(S); 1758 } 1759 1760 void StmtProfiler::VisitUserDefinedLiteral(const UserDefinedLiteral *S) { 1761 VisitCallExpr(S); 1762 } 1763 1764 void StmtProfiler::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *S) { 1765 VisitExpr(S); 1766 ID.AddBoolean(S->getValue()); 1767 } 1768 1769 void StmtProfiler::VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *S) { 1770 VisitExpr(S); 1771 } 1772 1773 void StmtProfiler::VisitCXXStdInitializerListExpr( 1774 const CXXStdInitializerListExpr *S) { 1775 VisitExpr(S); 1776 } 1777 1778 void StmtProfiler::VisitCXXTypeidExpr(const CXXTypeidExpr *S) { 1779 VisitExpr(S); 1780 if (S->isTypeOperand()) 1781 VisitType(S->getTypeOperandSourceInfo()->getType()); 1782 } 1783 1784 void StmtProfiler::VisitCXXUuidofExpr(const CXXUuidofExpr *S) { 1785 VisitExpr(S); 1786 if (S->isTypeOperand()) 1787 VisitType(S->getTypeOperandSourceInfo()->getType()); 1788 } 1789 1790 void StmtProfiler::VisitMSPropertyRefExpr(const MSPropertyRefExpr *S) { 1791 VisitExpr(S); 1792 VisitDecl(S->getPropertyDecl()); 1793 } 1794 1795 void StmtProfiler::VisitMSPropertySubscriptExpr( 1796 const MSPropertySubscriptExpr *S) { 1797 VisitExpr(S); 1798 } 1799 1800 void StmtProfiler::VisitCXXThisExpr(const CXXThisExpr *S) { 1801 VisitExpr(S); 1802 ID.AddBoolean(S->isImplicit()); 1803 } 1804 1805 void StmtProfiler::VisitCXXThrowExpr(const CXXThrowExpr *S) { 1806 VisitExpr(S); 1807 } 1808 1809 void StmtProfiler::VisitCXXDefaultArgExpr(const CXXDefaultArgExpr *S) { 1810 VisitExpr(S); 1811 VisitDecl(S->getParam()); 1812 } 1813 1814 void StmtProfiler::VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *S) { 1815 VisitExpr(S); 1816 VisitDecl(S->getField()); 1817 } 1818 1819 void StmtProfiler::VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *S) { 1820 VisitExpr(S); 1821 VisitDecl( 1822 const_cast<CXXDestructorDecl *>(S->getTemporary()->getDestructor())); 1823 } 1824 1825 void StmtProfiler::VisitCXXConstructExpr(const CXXConstructExpr *S) { 1826 VisitExpr(S); 1827 VisitDecl(S->getConstructor()); 1828 ID.AddBoolean(S->isElidable()); 1829 } 1830 1831 void StmtProfiler::VisitCXXInheritedCtorInitExpr( 1832 const CXXInheritedCtorInitExpr *S) { 1833 VisitExpr(S); 1834 VisitDecl(S->getConstructor()); 1835 } 1836 1837 void StmtProfiler::VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *S) { 1838 VisitExplicitCastExpr(S); 1839 } 1840 1841 void 1842 StmtProfiler::VisitCXXTemporaryObjectExpr(const CXXTemporaryObjectExpr *S) { 1843 VisitCXXConstructExpr(S); 1844 } 1845 1846 void 1847 StmtProfiler::VisitLambdaExpr(const LambdaExpr *S) { 1848 VisitExpr(S); 1849 for (LambdaExpr::capture_iterator C = S->explicit_capture_begin(), 1850 CEnd = S->explicit_capture_end(); 1851 C != CEnd; ++C) { 1852 if (C->capturesVLAType()) 1853 continue; 1854 1855 ID.AddInteger(C->getCaptureKind()); 1856 switch (C->getCaptureKind()) { 1857 case LCK_StarThis: 1858 case LCK_This: 1859 break; 1860 case LCK_ByRef: 1861 case LCK_ByCopy: 1862 VisitDecl(C->getCapturedVar()); 1863 ID.AddBoolean(C->isPackExpansion()); 1864 break; 1865 case LCK_VLAType: 1866 llvm_unreachable("VLA type in explicit captures."); 1867 } 1868 } 1869 // Note: If we actually needed to be able to match lambda 1870 // expressions, we would have to consider parameters and return type 1871 // here, among other things. 1872 VisitStmt(S->getBody()); 1873 } 1874 1875 void 1876 StmtProfiler::VisitCXXScalarValueInitExpr(const CXXScalarValueInitExpr *S) { 1877 VisitExpr(S); 1878 } 1879 1880 void StmtProfiler::VisitCXXDeleteExpr(const CXXDeleteExpr *S) { 1881 VisitExpr(S); 1882 ID.AddBoolean(S->isGlobalDelete()); 1883 ID.AddBoolean(S->isArrayForm()); 1884 VisitDecl(S->getOperatorDelete()); 1885 } 1886 1887 void StmtProfiler::VisitCXXNewExpr(const CXXNewExpr *S) { 1888 VisitExpr(S); 1889 VisitType(S->getAllocatedType()); 1890 VisitDecl(S->getOperatorNew()); 1891 VisitDecl(S->getOperatorDelete()); 1892 ID.AddBoolean(S->isArray()); 1893 ID.AddInteger(S->getNumPlacementArgs()); 1894 ID.AddBoolean(S->isGlobalNew()); 1895 ID.AddBoolean(S->isParenTypeId()); 1896 ID.AddInteger(S->getInitializationStyle()); 1897 } 1898 1899 void 1900 StmtProfiler::VisitCXXPseudoDestructorExpr(const CXXPseudoDestructorExpr *S) { 1901 VisitExpr(S); 1902 ID.AddBoolean(S->isArrow()); 1903 VisitNestedNameSpecifier(S->getQualifier()); 1904 ID.AddBoolean(S->getScopeTypeInfo() != nullptr); 1905 if (S->getScopeTypeInfo()) 1906 VisitType(S->getScopeTypeInfo()->getType()); 1907 ID.AddBoolean(S->getDestroyedTypeInfo() != nullptr); 1908 if (S->getDestroyedTypeInfo()) 1909 VisitType(S->getDestroyedType()); 1910 else 1911 VisitIdentifierInfo(S->getDestroyedTypeIdentifier()); 1912 } 1913 1914 void StmtProfiler::VisitOverloadExpr(const OverloadExpr *S) { 1915 VisitExpr(S); 1916 VisitNestedNameSpecifier(S->getQualifier()); 1917 VisitName(S->getName(), /*TreatAsDecl*/ true); 1918 ID.AddBoolean(S->hasExplicitTemplateArgs()); 1919 if (S->hasExplicitTemplateArgs()) 1920 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs()); 1921 } 1922 1923 void 1924 StmtProfiler::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *S) { 1925 VisitOverloadExpr(S); 1926 } 1927 1928 void StmtProfiler::VisitTypeTraitExpr(const TypeTraitExpr *S) { 1929 VisitExpr(S); 1930 ID.AddInteger(S->getTrait()); 1931 ID.AddInteger(S->getNumArgs()); 1932 for (unsigned I = 0, N = S->getNumArgs(); I != N; ++I) 1933 VisitType(S->getArg(I)->getType()); 1934 } 1935 1936 void StmtProfiler::VisitArrayTypeTraitExpr(const ArrayTypeTraitExpr *S) { 1937 VisitExpr(S); 1938 ID.AddInteger(S->getTrait()); 1939 VisitType(S->getQueriedType()); 1940 } 1941 1942 void StmtProfiler::VisitExpressionTraitExpr(const ExpressionTraitExpr *S) { 1943 VisitExpr(S); 1944 ID.AddInteger(S->getTrait()); 1945 VisitExpr(S->getQueriedExpression()); 1946 } 1947 1948 void StmtProfiler::VisitDependentScopeDeclRefExpr( 1949 const DependentScopeDeclRefExpr *S) { 1950 VisitExpr(S); 1951 VisitName(S->getDeclName()); 1952 VisitNestedNameSpecifier(S->getQualifier()); 1953 ID.AddBoolean(S->hasExplicitTemplateArgs()); 1954 if (S->hasExplicitTemplateArgs()) 1955 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs()); 1956 } 1957 1958 void StmtProfiler::VisitExprWithCleanups(const ExprWithCleanups *S) { 1959 VisitExpr(S); 1960 } 1961 1962 void StmtProfiler::VisitCXXUnresolvedConstructExpr( 1963 const CXXUnresolvedConstructExpr *S) { 1964 VisitExpr(S); 1965 VisitType(S->getTypeAsWritten()); 1966 ID.AddInteger(S->isListInitialization()); 1967 } 1968 1969 void StmtProfiler::VisitCXXDependentScopeMemberExpr( 1970 const CXXDependentScopeMemberExpr *S) { 1971 ID.AddBoolean(S->isImplicitAccess()); 1972 if (!S->isImplicitAccess()) { 1973 VisitExpr(S); 1974 ID.AddBoolean(S->isArrow()); 1975 } 1976 VisitNestedNameSpecifier(S->getQualifier()); 1977 VisitName(S->getMember()); 1978 ID.AddBoolean(S->hasExplicitTemplateArgs()); 1979 if (S->hasExplicitTemplateArgs()) 1980 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs()); 1981 } 1982 1983 void StmtProfiler::VisitUnresolvedMemberExpr(const UnresolvedMemberExpr *S) { 1984 ID.AddBoolean(S->isImplicitAccess()); 1985 if (!S->isImplicitAccess()) { 1986 VisitExpr(S); 1987 ID.AddBoolean(S->isArrow()); 1988 } 1989 VisitNestedNameSpecifier(S->getQualifier()); 1990 VisitName(S->getMemberName()); 1991 ID.AddBoolean(S->hasExplicitTemplateArgs()); 1992 if (S->hasExplicitTemplateArgs()) 1993 VisitTemplateArguments(S->getTemplateArgs(), S->getNumTemplateArgs()); 1994 } 1995 1996 void StmtProfiler::VisitCXXNoexceptExpr(const CXXNoexceptExpr *S) { 1997 VisitExpr(S); 1998 } 1999 2000 void StmtProfiler::VisitPackExpansionExpr(const PackExpansionExpr *S) { 2001 VisitExpr(S); 2002 } 2003 2004 void StmtProfiler::VisitSizeOfPackExpr(const SizeOfPackExpr *S) { 2005 VisitExpr(S); 2006 VisitDecl(S->getPack()); 2007 if (S->isPartiallySubstituted()) { 2008 auto Args = S->getPartialArguments(); 2009 ID.AddInteger(Args.size()); 2010 for (const auto &TA : Args) 2011 VisitTemplateArgument(TA); 2012 } else { 2013 ID.AddInteger(0); 2014 } 2015 } 2016 2017 void StmtProfiler::VisitSubstNonTypeTemplateParmPackExpr( 2018 const SubstNonTypeTemplateParmPackExpr *S) { 2019 VisitExpr(S); 2020 VisitDecl(S->getParameterPack()); 2021 VisitTemplateArgument(S->getArgumentPack()); 2022 } 2023 2024 void StmtProfiler::VisitSubstNonTypeTemplateParmExpr( 2025 const SubstNonTypeTemplateParmExpr *E) { 2026 // Profile exactly as the replacement expression. 2027 Visit(E->getReplacement()); 2028 } 2029 2030 void StmtProfiler::VisitFunctionParmPackExpr(const FunctionParmPackExpr *S) { 2031 VisitExpr(S); 2032 VisitDecl(S->getParameterPack()); 2033 ID.AddInteger(S->getNumExpansions()); 2034 for (FunctionParmPackExpr::iterator I = S->begin(), E = S->end(); I != E; ++I) 2035 VisitDecl(*I); 2036 } 2037 2038 void StmtProfiler::VisitMaterializeTemporaryExpr( 2039 const MaterializeTemporaryExpr *S) { 2040 VisitExpr(S); 2041 } 2042 2043 void StmtProfiler::VisitCXXFoldExpr(const CXXFoldExpr *S) { 2044 VisitExpr(S); 2045 ID.AddInteger(S->getOperator()); 2046 } 2047 2048 void StmtProfiler::VisitCoroutineBodyStmt(const CoroutineBodyStmt *S) { 2049 VisitStmt(S); 2050 } 2051 2052 void StmtProfiler::VisitCoreturnStmt(const CoreturnStmt *S) { 2053 VisitStmt(S); 2054 } 2055 2056 void StmtProfiler::VisitCoawaitExpr(const CoawaitExpr *S) { 2057 VisitExpr(S); 2058 } 2059 2060 void StmtProfiler::VisitDependentCoawaitExpr(const DependentCoawaitExpr *S) { 2061 VisitExpr(S); 2062 } 2063 2064 void StmtProfiler::VisitCoyieldExpr(const CoyieldExpr *S) { 2065 VisitExpr(S); 2066 } 2067 2068 void StmtProfiler::VisitOpaqueValueExpr(const OpaqueValueExpr *E) { 2069 VisitExpr(E); 2070 } 2071 2072 void StmtProfiler::VisitTypoExpr(const TypoExpr *E) { 2073 VisitExpr(E); 2074 } 2075 2076 void StmtProfiler::VisitSourceLocExpr(const SourceLocExpr *E) { 2077 VisitExpr(E); 2078 } 2079 2080 void StmtProfiler::VisitRecoveryExpr(const RecoveryExpr *E) { VisitExpr(E); } 2081 2082 void StmtProfiler::VisitObjCStringLiteral(const ObjCStringLiteral *S) { 2083 VisitExpr(S); 2084 } 2085 2086 void StmtProfiler::VisitObjCBoxedExpr(const ObjCBoxedExpr *E) { 2087 VisitExpr(E); 2088 } 2089 2090 void StmtProfiler::VisitObjCArrayLiteral(const ObjCArrayLiteral *E) { 2091 VisitExpr(E); 2092 } 2093 2094 void StmtProfiler::VisitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E) { 2095 VisitExpr(E); 2096 } 2097 2098 void StmtProfiler::VisitObjCEncodeExpr(const ObjCEncodeExpr *S) { 2099 VisitExpr(S); 2100 VisitType(S->getEncodedType()); 2101 } 2102 2103 void StmtProfiler::VisitObjCSelectorExpr(const ObjCSelectorExpr *S) { 2104 VisitExpr(S); 2105 VisitName(S->getSelector()); 2106 } 2107 2108 void StmtProfiler::VisitObjCProtocolExpr(const ObjCProtocolExpr *S) { 2109 VisitExpr(S); 2110 VisitDecl(S->getProtocol()); 2111 } 2112 2113 void StmtProfiler::VisitObjCIvarRefExpr(const ObjCIvarRefExpr *S) { 2114 VisitExpr(S); 2115 VisitDecl(S->getDecl()); 2116 ID.AddBoolean(S->isArrow()); 2117 ID.AddBoolean(S->isFreeIvar()); 2118 } 2119 2120 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { 2121 VisitExpr(S); 2122 if (S->isImplicitProperty()) { 2123 VisitDecl(S->getImplicitPropertyGetter()); 2124 VisitDecl(S->getImplicitPropertySetter()); 2125 } else { 2126 VisitDecl(S->getExplicitProperty()); 2127 } 2128 if (S->isSuperReceiver()) { 2129 ID.AddBoolean(S->isSuperReceiver()); 2130 VisitType(S->getSuperReceiverType()); 2131 } 2132 } 2133 2134 void StmtProfiler::VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *S) { 2135 VisitExpr(S); 2136 VisitDecl(S->getAtIndexMethodDecl()); 2137 VisitDecl(S->setAtIndexMethodDecl()); 2138 } 2139 2140 void StmtProfiler::VisitObjCMessageExpr(const ObjCMessageExpr *S) { 2141 VisitExpr(S); 2142 VisitName(S->getSelector()); 2143 VisitDecl(S->getMethodDecl()); 2144 } 2145 2146 void StmtProfiler::VisitObjCIsaExpr(const ObjCIsaExpr *S) { 2147 VisitExpr(S); 2148 ID.AddBoolean(S->isArrow()); 2149 } 2150 2151 void StmtProfiler::VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *S) { 2152 VisitExpr(S); 2153 ID.AddBoolean(S->getValue()); 2154 } 2155 2156 void StmtProfiler::VisitObjCIndirectCopyRestoreExpr( 2157 const ObjCIndirectCopyRestoreExpr *S) { 2158 VisitExpr(S); 2159 ID.AddBoolean(S->shouldCopy()); 2160 } 2161 2162 void StmtProfiler::VisitObjCBridgedCastExpr(const ObjCBridgedCastExpr *S) { 2163 VisitExplicitCastExpr(S); 2164 ID.AddBoolean(S->getBridgeKind()); 2165 } 2166 2167 void StmtProfiler::VisitObjCAvailabilityCheckExpr( 2168 const ObjCAvailabilityCheckExpr *S) { 2169 VisitExpr(S); 2170 } 2171 2172 void StmtProfiler::VisitTemplateArguments(const TemplateArgumentLoc *Args, 2173 unsigned NumArgs) { 2174 ID.AddInteger(NumArgs); 2175 for (unsigned I = 0; I != NumArgs; ++I) 2176 VisitTemplateArgument(Args[I].getArgument()); 2177 } 2178 2179 void StmtProfiler::VisitTemplateArgument(const TemplateArgument &Arg) { 2180 // Mostly repetitive with TemplateArgument::Profile! 2181 ID.AddInteger(Arg.getKind()); 2182 switch (Arg.getKind()) { 2183 case TemplateArgument::Null: 2184 break; 2185 2186 case TemplateArgument::Type: 2187 VisitType(Arg.getAsType()); 2188 break; 2189 2190 case TemplateArgument::Template: 2191 case TemplateArgument::TemplateExpansion: 2192 VisitTemplateName(Arg.getAsTemplateOrTemplatePattern()); 2193 break; 2194 2195 case TemplateArgument::Declaration: 2196 VisitDecl(Arg.getAsDecl()); 2197 break; 2198 2199 case TemplateArgument::NullPtr: 2200 VisitType(Arg.getNullPtrType()); 2201 break; 2202 2203 case TemplateArgument::Integral: 2204 Arg.getAsIntegral().Profile(ID); 2205 VisitType(Arg.getIntegralType()); 2206 break; 2207 2208 case TemplateArgument::Expression: 2209 Visit(Arg.getAsExpr()); 2210 break; 2211 2212 case TemplateArgument::Pack: 2213 for (const auto &P : Arg.pack_elements()) 2214 VisitTemplateArgument(P); 2215 break; 2216 } 2217 } 2218 2219 void Stmt::Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, 2220 bool Canonical) const { 2221 StmtProfilerWithPointers Profiler(ID, Context, Canonical); 2222 Profiler.Visit(this); 2223 } 2224 2225 void Stmt::ProcessODRHash(llvm::FoldingSetNodeID &ID, 2226 class ODRHash &Hash) const { 2227 StmtProfilerWithoutPointers Profiler(ID, Hash); 2228 Profiler.Visit(this); 2229 } 2230