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

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 69 uint32_t MaxWeight = 0;
81 if (Weight > MaxWeight) {
82 MaxWeight = Weight;
88 if ((uint64_t)MaxWeight * 5 >= (uint64_t)Sum * 4)
RegAllocGreedy.cpp 160 float MaxWeight; ///< Maximum spill weight evicted.
162 EvictionCost(unsigned B = 0) : BrokenHints(B), MaxWeight(0) {}
167 return MaxWeight < O.MaxWeight;
541 // Check if any interfering live range is heavier than MaxWeight.
566 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
627 BestCost.MaxWeight = VirtReg.weight;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BranchProbabilityInfo.cpp 447 uint32_t MaxWeight = 0;
458 if (Weight > MaxWeight) {
459 MaxWeight = Weight;
465 if ((uint64_t)MaxWeight * 5 > (uint64_t)Sum * 4)
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp     [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 234 float MaxWeight; ///< Maximum spill weight evicted.
236 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
245 return std::tie(BrokenHints, MaxWeight) <
246 std::tie(O.BrokenHints, O.MaxWeight);
751 // Check if any interfering live range is heavier than MaxWeight.
782 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp     [all...]

Completed in 448 milliseconds