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

  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 241 unsigned MaxCost = ShufTab[0].Cost;
244 if (ShufTab[i].Cost > MaxCost)
245 MaxCost = ShufTab[i].Cost;
300 if (ShufTab[LHS].Cost + 1 >= MaxCost)
328 if (ShufTab[RHS].Cost + 1 >= MaxCost)
  /external/swiftshader/third_party/LLVM/utils/PerfectShuffle/
PerfectShuffle.cpp 241 unsigned MaxCost = ShufTab[0].Cost;
244 if (ShufTab[i].Cost > MaxCost)
245 MaxCost = ShufTab[i].Cost;
300 if (ShufTab[LHS].Cost + 1 >= MaxCost)
328 if (ShufTab[RHS].Cost + 1 >= MaxCost)
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 346 int MaxCost = -1;
375 if (Cost > MaxCost) {
376 MaxCost = Cost;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocGreedy.cpp 462 EvictionCost MaxCost(1);
463 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
518 /// @param MaxCost Only look for cheaper candidates and update with new cost
520 /// @returns True when interference can be evicted cheaper than MaxCost.
522 bool IsHint, EvictionCost &MaxCost) {
568 if (!(Cost < MaxCost))
575 MaxCost = Cost;
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 636 EvictionCost MaxCost;
637 MaxCost.setBrokenHints(1);
638 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
722 /// @param MaxCost Only look for cheaper candidates and update with new cost
724 /// @returns True when interference can be evicted cheaper than MaxCost.
726 bool IsHint, EvictionCost &MaxCost) {
784 if (!(Cost < MaxCost))
791 // If !MaxCost.isMax(), then we're just looking for a cheap register.
794 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
800 MaxCost = Cost
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 337 milliseconds