Lines Matching refs:GraphRenderer
60 static cl::opt<GraphRenderer::StatType>
64 cl::init(GraphRenderer::StatType::NONE),
65 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
67 clEnumValN(GraphRenderer::StatType::COUNT,
69 clEnumValN(GraphRenderer::StatType::MIN, "min",
71 clEnumValN(GraphRenderer::StatType::MED, "med",
73 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
75 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
77 clEnumValN(GraphRenderer::StatType::MAX, "max",
79 clEnumValN(GraphRenderer::StatType::SUM, "sum",
84 static cl::opt<GraphRenderer::StatType> GraphVertexLabel(
88 cl::init(GraphRenderer::StatType::NONE),
89 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
91 clEnumValN(GraphRenderer::StatType::COUNT, "count",
93 clEnumValN(GraphRenderer::StatType::MIN, "min",
95 clEnumValN(GraphRenderer::StatType::MED, "med",
97 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
99 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
101 clEnumValN(GraphRenderer::StatType::MAX, "max",
103 clEnumValN(GraphRenderer::StatType::SUM, "sum",
108 static cl::opt<GraphRenderer::StatType> GraphEdgeColorType(
112 cl::init(GraphRenderer::StatType::NONE),
113 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
115 clEnumValN(GraphRenderer::StatType::COUNT, "count",
117 clEnumValN(GraphRenderer::StatType::MIN, "min",
119 clEnumValN(GraphRenderer::StatType::MED, "med",
121 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
123 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
125 clEnumValN(GraphRenderer::StatType::MAX, "max",
127 clEnumValN(GraphRenderer::StatType::SUM, "sum",
132 static cl::opt<GraphRenderer::StatType> GraphVertexColorType(
136 cl::init(GraphRenderer::StatType::NONE),
137 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
139 clEnumValN(GraphRenderer::StatType::COUNT, "count",
141 clEnumValN(GraphRenderer::StatType::MIN, "min",
143 clEnumValN(GraphRenderer::StatType::MED, "med",
145 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
147 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
149 clEnumValN(GraphRenderer::StatType::MAX, "max",
151 clEnumValN(GraphRenderer::StatType::SUM, "sum",
159 static void updateStat(GraphRenderer::TimeStat &S, int64_t L) { in updateStat()
210 Error GraphRenderer::accountRecord(const XRayRecord &Record) { in accountRecord()
278 void GraphRenderer::getStats(U begin, U end, GraphRenderer::TimeStat &S) { in getStats()
291 void GraphRenderer::updateMaxStats(const GraphRenderer::TimeStat &S, in updateMaxStats()
292 GraphRenderer::TimeStat &M) { in updateMaxStats()
302 void GraphRenderer::calculateEdgeStatistics() { in calculateEdgeStatistics()
312 void GraphRenderer::calculateVertexStatistics() { in calculateVertexStatistics()
329 static void normalizeTimeStat(GraphRenderer::TimeStat &S, in normalizeTimeStat()
337 void GraphRenderer::normalizeStatistics(double CycleFrequency) { in normalizeStatistics()
353 GraphRenderer::TimeStat::getString(GraphRenderer::StatType T) const { in getString()
360 case GraphRenderer::StatType::NONE: in getString()
362 case GraphRenderer::StatType::COUNT: in getString()
368 static_cast<int>(GraphRenderer::StatType::MIN)]; in getString()
376 double GraphRenderer::TimeStat::getDouble(StatType T) const { in getDouble()
382 case GraphRenderer::StatType::NONE: in getDouble()
385 case GraphRenderer::StatType::COUNT: in getDouble()
391 static_cast<int>(GraphRenderer::StatType::MIN)]; in getDouble()
403 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, in exportGraphAsDOT()
444 Expected<GraphRenderer> GraphRenderer::Factory::getGraphRenderer() { in getGraphRenderer()
465 xray::GraphRenderer GR(FuncIdHelper, DeduceSiblingCalls); in getGraphRenderer()
509 GraphRenderer::Factory F; in __anon2ae10c7e0302()