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

  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 558 uint32_t MaxWeight = 0;
569 if (Weight > MaxWeight) {
570 MaxWeight = Weight;
576 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5))
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 774 static uint64_t calculateWeightScale(uint64_t MaxWeight) {
775 return MaxWeight < UINT32_MAX ? 1 : MaxWeight / UINT32_MAX + 1;
815 uint64_t MaxWeight = *std::max_element(Weights.begin(), Weights.end());
816 if (MaxWeight == 0)
820 uint64_t Scale = calculateWeightScale(MaxWeight);
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp     [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 232 float MaxWeight; ///< Maximum spill weight evicted.
234 EvictionCost(): BrokenHints(0), MaxWeight(0) {}
243 return std::tie(BrokenHints, MaxWeight) <
244 std::tie(O.BrokenHints, O.MaxWeight);
749 // Check if any interfering live range is heavier than MaxWeight.
780 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight);
    [all...]

Completed in 117 milliseconds