Home
last modified time | relevance | path

Searched refs:EdgeWeight (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Analysis/
DProfileVerifierPass.cpp105 double EdgeWeight = PI->getEdgeWeight(E); in printDebugInfo() local
106 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; } in printDebugInfo()
108 << format("%20.20g",EdgeWeight) << "\n"; in printDebugInfo()
109 inWeight += EdgeWeight; in printDebugInfo()
120 double EdgeWeight = PI->getEdgeWeight(E); in printDebugInfo() local
121 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; } in printDebugInfo()
123 << format("%20.20g",EdgeWeight) << "\n"; in printDebugInfo()
124 outWeight += EdgeWeight; in printDebugInfo()
201 double EdgeWeight = PI->getEdgeWeight(E); in ReadOrAssert() local
202 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { in ReadOrAssert()
[all …]
/external/llvm/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h33 bool operator()(typename MaximumSpanningTree<CT>::EdgeWeight X, in operator()
34 typename MaximumSpanningTree<CT>::EdgeWeight Y) const { in operator()
55 typedef std::pair<Edge, double> EdgeWeight; typedef
56 typedef std::vector<EdgeWeight> EdgeWeights;
DOptimalEdgeProfiling.cpp141 std::vector<ProfileInfo::EdgeWeight> EdgeVector(ECs.begin(), ECs.end()); in runOnModule()
/external/llvm/lib/CompilerDriver/
DCompilationGraph.cpp497 int EdgeWeight = (*EB)->Weight(Dummy); in CheckMultipleDefaultEdges() local
498 if (EdgeWeight > MaxWeight) { in CheckMultipleDefaultEdges()
499 MaxWeight = EdgeWeight; in CheckMultipleDefaultEdges()
501 else if (EdgeWeight == MaxWeight) { in CheckMultipleDefaultEdges()
/external/llvm/include/llvm/Analysis/
DProfileInfo.h58 typedef std::pair<Edge, double> EdgeWeight; typedef