Searched refs:MaxCost (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp474 EvictionCost MaxCost(1);
475 if (canEvictInterference(VirtReg, Hint, true, MaxCost)) {
555 /// @param MaxCost Only look for cheaper candidates and update with new cost
557 /// @returns True when interference can be evicted cheaper than MaxCost.
559 bool IsHint, EvictionCost &MaxCost) {
617 if (!(Cost < MaxCost))
621 // If !MaxCost.isMax(), then we're just looking for a cheap register.
624 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) &&
633 MaxCost = Cost;
558 canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg, bool IsHint, EvictionCost &MaxCost) argument

Completed in 87 milliseconds