Lines Matching refs:GraphRenderer

62 static cl::opt<GraphRenderer::StatType>
66 cl::init(GraphRenderer::StatType::NONE),
67 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
69 clEnumValN(GraphRenderer::StatType::COUNT,
71 clEnumValN(GraphRenderer::StatType::MIN, "min",
73 clEnumValN(GraphRenderer::StatType::MED, "med",
75 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
77 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
79 clEnumValN(GraphRenderer::StatType::MAX, "max",
81 clEnumValN(GraphRenderer::StatType::SUM, "sum",
87 static cl::opt<GraphRenderer::StatType> GraphVertexLabel(
91 cl::init(GraphRenderer::StatType::NONE),
92 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
94 clEnumValN(GraphRenderer::StatType::COUNT, "count",
96 clEnumValN(GraphRenderer::StatType::MIN, "min",
98 clEnumValN(GraphRenderer::StatType::MED, "med",
100 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
102 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
104 clEnumValN(GraphRenderer::StatType::MAX, "max",
106 clEnumValN(GraphRenderer::StatType::SUM, "sum",
112 static cl::opt<GraphRenderer::StatType> GraphEdgeColorType(
116 cl::init(GraphRenderer::StatType::NONE),
117 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
119 clEnumValN(GraphRenderer::StatType::COUNT, "count",
121 clEnumValN(GraphRenderer::StatType::MIN, "min",
123 clEnumValN(GraphRenderer::StatType::MED, "med",
125 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
127 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
129 clEnumValN(GraphRenderer::StatType::MAX, "max",
131 clEnumValN(GraphRenderer::StatType::SUM, "sum",
137 static cl::opt<GraphRenderer::StatType> GraphVertexColorType(
141 cl::init(GraphRenderer::StatType::NONE),
142 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
144 clEnumValN(GraphRenderer::StatType::COUNT, "count",
146 clEnumValN(GraphRenderer::StatType::MIN, "min",
148 clEnumValN(GraphRenderer::StatType::MED, "med",
150 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
152 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
154 clEnumValN(GraphRenderer::StatType::MAX, "max",
156 clEnumValN(GraphRenderer::StatType::SUM, "sum",
165 static void updateStat(GraphRenderer::TimeStat &S, int64_t L) { in updateStat()
192 Error GraphRenderer::accountRecord(const XRayRecord &Record) { in accountRecord()
259 void GraphRenderer::getStats(U begin, U end, GraphRenderer::TimeStat &S) { in getStats()
272 void GraphRenderer::updateMaxStats(const GraphRenderer::TimeStat &S, in updateMaxStats()
273 GraphRenderer::TimeStat &M) { in updateMaxStats()
283 void GraphRenderer::calculateEdgeStatistics() { in calculateEdgeStatistics()
293 void GraphRenderer::calculateVertexStatistics() { in calculateVertexStatistics()
311 static void normalizeTimeStat(GraphRenderer::TimeStat &S, in normalizeTimeStat()
319 void GraphRenderer::normalizeStatistics(double CycleFrequency) { in normalizeStatistics()
335 GraphRenderer::TimeStat::getString(GraphRenderer::StatType T) const { in getString()
342 case GraphRenderer::StatType::NONE: in getString()
344 case GraphRenderer::StatType::COUNT: in getString()
350 static_cast<int>(GraphRenderer::StatType::MIN)]; in getString()
358 double GraphRenderer::TimeStat::getDouble(StatType T) const { in getDouble()
364 case GraphRenderer::StatType::NONE: in getDouble()
367 case GraphRenderer::StatType::COUNT: in getDouble()
373 static_cast<int>(GraphRenderer::StatType::MIN)]; in getDouble()
385 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, in exportGraphAsDOT()
425 Expected<GraphRenderer> GraphRenderer::Factory::getGraphRenderer() { in getGraphRenderer()
448 xray::GraphRenderer GR(FuncIdHelper, DeduceSiblingCalls); in getGraphRenderer()
492 GraphRenderer::Factory F; in __anon8b29e32d0302()