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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp465 EvictionCost &MaxCost);
774 EvictionCost MaxCost; local
775 MaxCost.setBrokenHints(1);
776 if (canEvictInterference(VirtReg, Hint, true, MaxCost, FixedRegisters)) {
862 /// @param MaxCost Only look for cheaper candidates and update with new cost
864 /// @returns True when interference can be evicted cheaper than MaxCost.
866 bool IsHint, EvictionCost &MaxCost,
932 if (!(Cost < MaxCost))
939 // If !MaxCost.isMax(), then we're just looking for a cheap register.
942 if (!MaxCost
865 canEvictInterference(LiveInterval &VirtReg, Register PhysReg, bool IsHint, EvictionCost &MaxCost, const SmallVirtRegSet &FixedRegisters) argument
962 canEvictInterferenceInRange(LiveInterval &VirtReg, Register PhysReg, SlotIndex Start, SlotIndex End, EvictionCost &MaxCost) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp576 int MaxCost = -1; local
607 if (Cost > MaxCost) {
608 MaxCost = Cost;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2112 unsigned MaxCost = local
2114 if (OrigCost + ThenCost > MaxCost)

Completed in 307 milliseconds