Home
last modified time | relevance | path

Searched defs:EvictionCost (Results 1 – 1 of 1) sorted by relevance

/trueos/contrib/llvm/lib/CodeGen/
HDRegAllocGreedy.cpp159 struct EvictionCost { struct in __anon5e3dbd360111::RAGreedy
160 unsigned BrokenHints; ///< Total number of broken hints.
161 float MaxWeight; ///< Maximum spill weight evicted.
163 EvictionCost(unsigned B = 0) : BrokenHints(B), MaxWeight(0) {} in EvictionCost() argument
165 bool isMax() const { return BrokenHints == ~0u; } in isMax()
167 bool operator<(const EvictionCost &O) const { in operator <()