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

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

Completed in 146 milliseconds