Lines Matching refs:EdgeFreq
1153 BlockFrequency EdgeFreq = MBFI->getBlockFreq(SuccPred) * in getBestTrellisSuccessor() local
1155 Edges[SuccIndex].push_back({EdgeFreq, SuccPred, Succ}); in getBestTrellisSuccessor()
2048 BlockFrequency EdgeFreq = in TopFallThroughFreq() local
2050 if (EdgeFreq > MaxFreq) in TopFallThroughFreq()
2051 MaxFreq = EdgeFreq; in TopFallThroughFreq()
2098 BlockFrequency EdgeFreq = in FallThroughGains() local
2100 if (EdgeFreq > FallThroughFromPred) { in FallThroughGains()
2101 FallThroughFromPred = EdgeFreq; in FallThroughGains()
2120 BlockFrequency EdgeFreq = MBFI->getBlockFreq(BestPred) * in FallThroughGains() local
2122 if (EdgeFreq > NewFreq) in FallThroughGains()
2123 NewFreq = EdgeFreq; in FallThroughGains()
2538 auto EdgeFreq = MBFI->getBlockFreq(Pred) * in rotateLoopWithProfile() local
2540 auto FallThruCost = ScaleBlockFrequency(EdgeFreq, MisfetchCost); in rotateLoopWithProfile()
2544 FallThruCost += ScaleBlockFrequency(EdgeFreq, JumpInstCost); in rotateLoopWithProfile()
3933 BlockFrequency EdgeFreq = in run() local
3936 BranchTakenFreq += EdgeFreq.getFrequency(); in run()