Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DAnalysis.cpp206 for (const size_t PointId : ClusterIt.PointIndices) { in run() local
207 printInstructionRowCsv(PointId, OS); in run()
224 for (size_t PointId = 0, E = Points.size(); PointId < E; ++PointId) { in makePointsPerSchedClass() local
225 const InstructionBenchmark &Point = Points[PointId]; in makePointsPerSchedClass()
243 Entry.PointIds.push_back(PointId); in makePointsPerSchedClass()
324 for (const size_t PointId : Cluster.getPointIds()) { in printSchedClassClustersHtml() local
325 printPointHtml(Points[PointId], OS); in printSchedClassClustersHtml()
344 PointIds.push_back(PointId); in addPoint()
345 const auto &Point = Clustering.getPoints()[PointId]; in addPoint()
458 for (const auto &PointId : Cluster.PointIndices) { in printClusterRawHtml() local
[all …]
H A DAnalysis.h65 void addPoint(size_t PointId,
84 void printInstructionRowCsv(size_t PointId, raw_ostream &OS) const;
/llvm-project-15.0.7/llvm/tools/sancov/
H A Dsancov.cpp432 auto PointId = parseScalarString(PointKVNode.getKey()); in read() local
441 if (Points.find(PointId) == Points.end()) in read()
442 Points.insert(std::make_pair(PointId, CoveragePoint(PointId))); in read()
451 CoveragePoint *CoveragePoint = &Points.find(PointId)->second; in read()