Home
last modified time | relevance | path

Searched refs:PointId (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
DAnalysis.cpp119 void Analysis::printInstructionRowCsv(const size_t PointId, in printInstructionRowCsv() argument
121 const InstructionBenchmark &Point = Clustering_.getPoints()[PointId]; in printInstructionRowCsv()
122 writeClusterId<kEscapeCsv>(OS, Clustering_.getClusterIdForPoint(PointId)); in printInstructionRowCsv()
188 for (const size_t PointId : Clusters[I].PointIndices) { in run() local
189 printInstructionRowCsv(PointId, OS); in run()
200 for (size_t PointId = 0, E = Points.size(); PointId < E; ++PointId) { in makePointsPerSchedClass() local
201 const InstructionBenchmark &Point = Points[PointId]; in makePointsPerSchedClass()
208 PointId); in makePointsPerSchedClass()
266 for (const size_t PointId : Cluster.getPointIds()) { in printSchedClassClustersHtml() local
267 const auto &Point = Points[PointId]; in printSchedClassClustersHtml()
[all …]
DAnalysis.h81 void addPoint(size_t PointId,
91 void printInstructionRowCsv(size_t PointId, llvm::raw_ostream &OS) const;
/external/swiftshader/third_party/llvm-7.0/llvm/tools/sancov/
Dsancov.cpp510 auto PointId = parseScalarString(PointKVNode.getKey()); in read() local
519 if (Points.find(PointId) == Points.end()) in read()
520 Points.insert(std::make_pair(PointId, CoveragePoint(PointId))); in read()
529 CoveragePoint *CoveragePoint = &Points.find(PointId)->second; in read()