Searched defs:BestCost (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DResourcePriorityQueue.cpp606 signed BestCost = SUSchedulingCost(*Best); local
610 if (SUSchedulingCost(*I) > BestCost) {
611 BestCost = SUSchedulingCost(*I);
/external/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.h128 BestCost}; enumerator in enum:llvm::ConvergingVLIWScheduler::CandResult
/external/llvm/lib/CodeGen/
H A DRegAllocFast.cpp550 unsigned BestReg = 0, BestCost = spillImpossible; local
555 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
561 if (Cost < BestCost)
562 BestReg = *I, BestCost = Cost;
H A DRegAllocGreedy.cpp356 BlockFrequency &BestCost,
805 EvictionCost BestCost; local
806 BestCost.setMax();
813 BestCost.BrokenHints = 0;
814 BestCost.MaxWeight = VirtReg.weight;
847 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
1293 BlockFrequency BestCost; local
1300 BestCost = BlockFrequency::getMaxFrequency();
1304 BestCost = calcSpillCost();
1306 MBFI->printBlockFreq(dbgs(), BestCost) << '\ local
1320 calculateRegionSplitCost(LiveInterval &VirtReg, AllocationOrder &Order, BlockFrequency &BestCost, unsigned &NumCands, bool IgnoreCSR) argument
[all...]

Completed in 1496 milliseconds