Searched refs:ScalingUpFactor (Results 1 – 1 of 1) sorted by relevance
2142 const unsigned ScalingUpFactor = 1024; in isProfitableToIfCvt() local2144 unsigned PredCost = (TCycles + FCycles + TExtra + FExtra) * ScalingUpFactor; in isProfitableToIfCvt()2162 PredCost -= 1 * ScalingUpFactor; in isProfitableToIfCvt()2165 unsigned TUnpredCost = Probability.scale(TUnpredCycles * ScalingUpFactor); in isProfitableToIfCvt()2166 unsigned FUnpredCost = Probability.getCompl().scale(FUnpredCycles * ScalingUpFactor); in isProfitableToIfCvt()2171 PredCost += ((TCycles + FCycles - 4) / 4) * ScalingUpFactor; in isProfitableToIfCvt()2174 unsigned TUnpredCost = Probability.scale(TCycles * ScalingUpFactor); in isProfitableToIfCvt()2176 Probability.getCompl().scale(FCycles * ScalingUpFactor); in isProfitableToIfCvt()2178 UnpredCost += 1 * ScalingUpFactor; // The branch itself in isProfitableToIfCvt()2179 UnpredCost += Subtarget.getMispredictionPenalty() * ScalingUpFactor / 10; in isProfitableToIfCvt()