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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp471 EvictionCost &MaxCost);
781 EvictionCost MaxCost; local
782 MaxCost.setBrokenHints(1);
783 if (canEvictInterference(VirtReg, Hint, true, MaxCost, FixedRegisters)) {
869 /// @param MaxCost Only look for cheaper candidates and update with new cost
871 /// @returns True when interference can be evicted cheaper than MaxCost.
873 bool IsHint, EvictionCost &MaxCost,
939 if (!(Cost < MaxCost))
946 // If !MaxCost.isMax(), then we're just looking for a cheap register.
949 if (!MaxCost
872 canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg, bool IsHint, EvictionCost &MaxCost, const SmallVirtRegSet &FixedRegisters) argument
969 canEvictInterferenceInRange(LiveInterval &VirtReg, unsigned PhysReg, SlotIndex Start, SlotIndex End, EvictionCost &MaxCost) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp573 int MaxCost = -1; local
603 if (Cost > MaxCost) {
604 MaxCost = Cost;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2075 unsigned MaxCost = local
2077 if (OrigCost + ThenCost > MaxCost)

Completed in 84 milliseconds