Searched defs:EvictionCost (Results 1 – 1 of 1) sorted by relevance
159 struct EvictionCost { struct in __anon5e3dbd360111::RAGreedy160 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() argument165 bool isMax() const { return BrokenHints == ~0u; } in isMax()167 bool operator<(const EvictionCost &O) const { in operator <()