Home
last modified time | relevance | path

Searched refs:EdgeWeights (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseImpl.h250 BlockWeightMap &BlockWeights, EdgeWeightMap &EdgeWeights);
276 EdgeWeightMap EdgeWeights;
340 EdgeWeights.clear();
362 << "]: " << EdgeWeights[E] << "\n";
711 return EdgeWeights[E];
810 EdgeWeights[SingleEdge] < BlockWeights[EC]) {
813 EdgeWeights[SingleEdge] = BlockWeights[EC];
820 EdgeWeights[UnknownEdge] = BBWeight - TotalWeight;
822 EdgeWeights[UnknownEdge] = 0;
830 EdgeWeights[UnknownEdge] > BlockWeights[OtherEC])
[all …]
H A DSampleProfileInference.h135 void apply(BlockWeightMap &BlockWeights, EdgeWeightMap &EdgeWeights);
164 EdgeWeightMap &EdgeWeights) { in apply() argument
195 EdgeWeights.clear(); in apply()
223 EdgeWeights[E] = Jump.Flow; in apply()
232 for (auto &I : EdgeWeights) { in apply()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCFGPrinter.h70 bool EdgeWeights; variable
102 void setEdgeWeights(bool EdgeWeights) { this->EdgeWeights = EdgeWeights; } in setEdgeWeights() argument
104 bool showEdgeWeights() { return EdgeWeights; } in showEdgeWeights()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRSampleProfile.cpp217 SumEdgeWeight += EdgeWeights[E]; in setBranchProbs()
247 uint64_t EdgeWeight = EdgeWeights[E]; in setBranchProbs()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCFGPrinter.cpp98 EdgeWeights = !!BPI; // Print EdgeWeights when BPI is available. in DOTFuncInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1716 uint64_t Weight = EdgeWeights[E]; in generateMDProfMetadata()