HomeSort by relevance Sort by last modified time
    Searched defs:MaxWeight (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 90 uint32_t MaxWeight = 0;
95 if (Weight > MaxWeight) {
96 MaxWeight = Weight;
RegAllocGreedy.cpp 219 float MaxWeight; ///< Maximum spill weight evicted.
221 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
230 return std::tie(BrokenHints, MaxWeight) <
231 std::tie(O.BrokenHints, O.MaxWeight);
726 // Check if any interfering live range is heavier than MaxWeight.
757 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
839 BestCost.MaxWeight = VirtReg.weight;
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 571 uint32_t MaxWeight = 0;
582 if (Weight > MaxWeight) {
583 MaxWeight = Weight;
589 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5))
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp     [all...]

Completed in 278 milliseconds