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

/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DMachineBranchProbabilityInfo.cpp89 uint32_t MaxWeight = 0; local
94 if (Weight > MaxWeight) {
95 MaxWeight = Weight;
H A DRegAllocGreedy.cpp161 float MaxWeight; ///< Maximum spill weight evicted. member in struct:__anon2309::RAGreedy::EvictionCost
163 EvictionCost(unsigned B = 0) : BrokenHints(B), MaxWeight(0) {}
170 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;
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp556 uint32_t MaxWeight = 0; local
567 if (Weight > MaxWeight) {
568 MaxWeight = Weight;
574 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5))
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1319 unsigned MaxWeight = 0, Weight = 0; local
1322 if (Weight > MaxWeight)
1323 MaxWeight = Weight;
1334 if (Weight > MaxWeight)
1335 MaxWeight = Weight;
1336 if (I->Weight != MaxWeight) {
1338 dbgs() << "UberSet " << I - UberSets.begin() << " Weight " << MaxWeight;
1346 I->Weight = MaxWeight;

Completed in 93 milliseconds