Lines Matching refs:GraphRenderer
58 static cl::opt<GraphRenderer::StatType>
62 cl::init(GraphRenderer::StatType::NONE),
63 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
65 clEnumValN(GraphRenderer::StatType::COUNT,
67 clEnumValN(GraphRenderer::StatType::MIN, "min",
69 clEnumValN(GraphRenderer::StatType::MED, "med",
71 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
73 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
75 clEnumValN(GraphRenderer::StatType::MAX, "max",
77 clEnumValN(GraphRenderer::StatType::SUM, "sum",
82 static cl::opt<GraphRenderer::StatType> GraphVertexLabel(
86 cl::init(GraphRenderer::StatType::NONE),
87 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
89 clEnumValN(GraphRenderer::StatType::COUNT, "count",
91 clEnumValN(GraphRenderer::StatType::MIN, "min",
93 clEnumValN(GraphRenderer::StatType::MED, "med",
95 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
97 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
99 clEnumValN(GraphRenderer::StatType::MAX, "max",
101 clEnumValN(GraphRenderer::StatType::SUM, "sum",
106 static cl::opt<GraphRenderer::StatType> GraphEdgeColorType(
110 cl::init(GraphRenderer::StatType::NONE),
111 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
113 clEnumValN(GraphRenderer::StatType::COUNT, "count",
115 clEnumValN(GraphRenderer::StatType::MIN, "min",
117 clEnumValN(GraphRenderer::StatType::MED, "med",
119 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
121 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
123 clEnumValN(GraphRenderer::StatType::MAX, "max",
125 clEnumValN(GraphRenderer::StatType::SUM, "sum",
130 static cl::opt<GraphRenderer::StatType> GraphVertexColorType(
134 cl::init(GraphRenderer::StatType::NONE),
135 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
137 clEnumValN(GraphRenderer::StatType::COUNT, "count",
139 clEnumValN(GraphRenderer::StatType::MIN, "min",
141 clEnumValN(GraphRenderer::StatType::MED, "med",
143 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
145 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
147 clEnumValN(GraphRenderer::StatType::MAX, "max",
149 clEnumValN(GraphRenderer::StatType::SUM, "sum",
157 static void updateStat(GraphRenderer::TimeStat &S, int64_t L) { in updateStat()
208 Error GraphRenderer::accountRecord(const XRayRecord &Record) { in accountRecord()
276 void GraphRenderer::getStats(U begin, U end, GraphRenderer::TimeStat &S) { in getStats()
289 void GraphRenderer::updateMaxStats(const GraphRenderer::TimeStat &S, in updateMaxStats()
290 GraphRenderer::TimeStat &M) { in updateMaxStats()
300 void GraphRenderer::calculateEdgeStatistics() { in calculateEdgeStatistics()
310 void GraphRenderer::calculateVertexStatistics() { in calculateVertexStatistics()
327 static void normalizeTimeStat(GraphRenderer::TimeStat &S, in normalizeTimeStat()
335 void GraphRenderer::normalizeStatistics(double CycleFrequency) { in normalizeStatistics()
351 GraphRenderer::TimeStat::getString(GraphRenderer::StatType T) const { in getString()
358 case GraphRenderer::StatType::NONE: in getString()
360 case GraphRenderer::StatType::COUNT: in getString()
366 static_cast<int>(GraphRenderer::StatType::MIN)]; in getString()
374 double GraphRenderer::TimeStat::getDouble(StatType T) const { in getDouble()
380 case GraphRenderer::StatType::NONE: in getDouble()
383 case GraphRenderer::StatType::COUNT: in getDouble()
389 static_cast<int>(GraphRenderer::StatType::MIN)]; in getDouble()
401 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, in exportGraphAsDOT()
442 Expected<GraphRenderer> GraphRenderer::Factory::getGraphRenderer() { in getGraphRenderer()
463 xray::GraphRenderer GR(FuncIdHelper, DeduceSiblingCalls); in getGraphRenderer()
507 GraphRenderer::Factory F; in __anona1e4ec780302()