Home
last modified time | relevance | path

Searched refs:MaxWeight (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/CodeGen/
DMachineBranchProbabilityInfo.cpp89 uint32_t MaxWeight = 0; in getHotSucc() local
94 if (Weight > MaxWeight) { in getHotSucc()
95 MaxWeight = Weight; in getHotSucc()
DRegAllocGreedy.cpp159 float MaxWeight; ///< Maximum spill weight evicted. member
161 EvictionCost(unsigned B = 0) : BrokenHints(B), MaxWeight(0) {} in EvictionCost()
168 return MaxWeight < O.MaxWeight; in operator <()
615 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight); in canEvictInterference()
696 BestCost.MaxWeight = VirtReg.weight; in tryEvict()
/external/llvm/lib/Analysis/
DBranchProbabilityInfo.cpp542 uint32_t MaxWeight = 0; in getHotSucc() local
553 if (Weight > MaxWeight) { in getHotSucc()
554 MaxWeight = Weight; in getHotSucc()
560 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5)) in getHotSucc()
/external/llvm/utils/TableGen/
DCodeGenRegisters.cpp1318 unsigned MaxWeight = 0, Weight = 0; in computeUberWeights() local
1321 if (Weight > MaxWeight) in computeUberWeights()
1322 MaxWeight = Weight; in computeUberWeights()
1333 if (Weight > MaxWeight) in computeUberWeights()
1334 MaxWeight = Weight; in computeUberWeights()
1335 if (I->Weight != MaxWeight) { in computeUberWeights()
1337 dbgs() << "UberSet " << I - UberSets.begin() << " Weight " << MaxWeight; in computeUberWeights()
1345 I->Weight = MaxWeight; in computeUberWeights()