Home
last modified time | relevance | path

Searched refs:BestCost (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DRegBankSelect.cpp445 const RegBankSelect::MappingCost *BestCost) { in computeMapping() argument
446 assert((MBFI || !BestCost) && "Costs comparison require MBFI"); in computeMapping()
458 if (BestCost && Cost > *BestCost) { in computeMapping()
510 if (!BestCost || Saturated) in computeMapping()
566 if (BestCost && Cost > *BestCost) { in computeMapping()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DRegAllocGreedy.cpp493 BlockFrequency &BestCost,
1115 EvictionCost BestCost; in tryEvict() local
1116 BestCost.setMax(); in tryEvict()
1123 BestCost.BrokenHints = 0; in tryEvict()
1124 BestCost.MaxWeight = VirtReg.weight; in tryEvict()
1158 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost, in tryEvict()
1835 BlockFrequency BestCost; in tryRegionSplit() local
1842 BestCost = BlockFrequency::getMaxFrequency(); in tryRegionSplit()
1846 BestCost = SpillCost; in tryRegionSplit()
1848 MBFI->printBlockFreq(dbgs(), BestCost) << '\n'); in tryRegionSplit()
[all …]
DRegAllocFast.cpp715 unsigned BestCost = spillImpossible; in allocVirtReg() local
720 LLVM_DEBUG(dbgs() << "Cost: " << Cost << " BestCost: " << BestCost << '\n'); in allocVirtReg()
730 if (Cost < BestCost) { in allocVirtReg()
732 BestCost = Cost; in allocVirtReg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DResourcePriorityQueue.cpp592 int BestCost = SUSchedulingCost(*Best); in pop() local
595 if (SUSchedulingCost(*I) > BestCost) { in pop()
596 BestCost = SUSchedulingCost(*I); in pop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.h128 BestCost, Weak}; enumerator
DHexagonMachineScheduler.cpp815 FoundCandidate = BestCost; in pickNodeFromQueue()
847 FoundCandidate = BestCost; in pickNodeFromQueue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DRegBankSelect.h595 const MappingCost *BestCost = nullptr);