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

  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 604 int BestCost = SUSchedulingCost(*Best);
608 if (SUSchedulingCost(*I) > BestCost) {
609 BestCost = SUSchedulingCost(*I);
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 127 BestCost};
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 589 int BestCost = SUSchedulingCost(*Best);
592 if (SUSchedulingCost(*I) > BestCost) {
593 BestCost = SUSchedulingCost(*I);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 129 BestCost, Weak};
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 566 unsigned BestReg = 0, BestCost = spillImpossible;
571 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
577 if (Cost < BestCost)
578 BestReg = *I, BestCost = Cost;
    [all...]
RegAllocGreedy.cpp 375 BlockFrequency &BestCost,
865 EvictionCost BestCost;
866 BestCost.setMax();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocFast.cpp 515 unsigned BestReg = 0, BestCost = spillImpossible;
520 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
524 if (Cost < BestCost)
525 BestReg = *I, BestCost = Cost;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
RegAllocFast.cpp 580 unsigned BestCost = spillImpossible;
585 LLVM_DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
591 if (Cost < BestCost)
592 BestReg = PhysReg, BestCost = Cost;
    [all...]
RegAllocGreedy.cpp 491 BlockFrequency &BestCost,
    [all...]

Completed in 209 milliseconds