Home | History | Annotate | Download | only in compiler

Lines Matching defs:UseInterval

117 class UseInterval : public ZoneObject {
119 UseInterval(LifetimePosition start, LifetimePosition end)
126 UseInterval* next() const { return next_; }
134 LifetimePosition Intersect(const UseInterval* other) const {
145 void set_next(UseInterval* next) { next_ = next; }
149 UseInterval* next_;
187 UseInterval* first_interval() const { return first_interval_; }
287 bool HasOverlap(UseInterval* target) const;
293 UseInterval* FirstSearchIntervalForPosition(LifetimePosition position) const;
294 void AdvanceLastProcessedMarker(UseInterval* to_start_of,
303 UseInterval* last_interval_;
304 UseInterval* first_interval_;
309 mutable UseInterval* current_interval_;