HomeSort by: relevance | last modified time | path
    Searched defs:MaxWeight (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 623 Optional<uint32_t> MaxWeight;
631 if (!MaxWeight || MaxWeight.getValue() < Weight.getValue())
632 MaxWeight = Weight;
635 return MaxWeight;
815 auto MaxWeight = getMaxEstimatedEdgeWeight(LoopBB, successors(BB));
817 if (MaxWeight)
818 propagateEstimatedBlockWeight(LoopBB, DT, PDT, MaxWeight.getValue(),
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegAllocGreedy.cpp 273 float MaxWeight = 0; ///< Maximum spill weight evicted.
284 return std::tie(BrokenHints, MaxWeight) <
285 std::tie(O.BrokenHints, O.MaxWeight);
944 // Check if any interfering live range is heavier than MaxWeight.
983 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight());
1025 // Check if any interfering live range is heavier than MaxWeight.
1042 Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight());
1049 if (Cost.MaxWeight == 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfile.cpp 1519 uint32_t MaxWeight = 0;
1537 if (Weight > MaxWeight) {
1538 MaxWeight = Weight;
1553 if (MaxWeight > 0 &&
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenRegisters.cpp 1662 unsigned MaxWeight = 0, Weight = 0;
1665 if (Weight > MaxWeight)
1666 MaxWeight = Weight;
1679 if (Weight > MaxWeight)
1680 MaxWeight = Weight;
1681 if (I->Weight != MaxWeight) {
1683 << MaxWeight;
1689 I->Weight = MaxWeight;

Completed in 60 milliseconds