Home
last modified time | relevance | path

Searched defs:MapRegionCounters (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
DCodeGenPGO.cpp108 struct MapRegionCounters : public RecursiveASTVisitor<MapRegionCounters> { struct
110 unsigned NextCounter;
112 PGOHash Hash;
114 llvm::DenseMap<const Stmt *, unsigned> &CounterMap;
116 MapRegionCounters(llvm::DenseMap<const Stmt *, unsigned> &CounterMap) in MapRegionCounters() function
121 bool TraverseBlockExpr(BlockExpr *BE) { return true; } in TraverseBlockExpr()
122 bool TraverseLambdaBody(LambdaExpr *LE) { return true; } in TraverseLambdaBody()
123 bool TraverseCapturedStmt(CapturedStmt *CS) { return true; } in TraverseCapturedStmt()
125 bool VisitDecl(const Decl *D) { in VisitDecl()
143 bool VisitStmt(const Stmt *S) { in VisitStmt()
[all …]