Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp271 struct EvictionCost { struct in __anone1e285680111::RAGreedy
272 unsigned BrokenHints = 0; ///< Total number of broken hints.
273 float MaxWeight = 0; ///< Maximum spill weight evicted.
277 bool isMax() const { return BrokenHints == ~0u; } in isMax()
279 void setMax() { BrokenHints = ~0u; } in setMax()
281 void setBrokenHints(unsigned NHints) { BrokenHints = NHints; } in setBrokenHints()
283 bool operator<(const EvictionCost &O) const { in operator <()