Lines Matching defs:MapRegionCounters
142 struct MapRegionCounters : public RecursiveASTVisitor<MapRegionCounters> { struct
144 unsigned NextCounter;
146 PGOHash Hash;
148 llvm::DenseMap<const Stmt *, unsigned> &CounterMap;
150 MapRegionCounters(llvm::DenseMap<const Stmt *, unsigned> &CounterMap) in MapRegionCounters() function
155 bool TraverseBlockExpr(BlockExpr *BE) { return true; } in TraverseBlockExpr()
156 bool TraverseLambdaBody(LambdaExpr *LE) { return true; } in TraverseLambdaBody()
157 bool TraverseCapturedStmt(CapturedStmt *CS) { return true; } in TraverseCapturedStmt()
159 bool VisitDecl(const Decl *D) { in VisitDecl()
177 bool VisitStmt(const Stmt *S) { in VisitStmt()
186 PGOHash::HashType getHashType(const Stmt *S) { in getHashType()