HomeSort by relevance Sort by last modified time
    Searched defs:UseInterval (Results 1 - 2 of 2) sorted by null

  /external/v8/src/crankshaft/
lithium-allocator.h 121 class UseInterval: public ZoneObject {
123 UseInterval(LifetimePosition start, LifetimePosition end)
130 UseInterval* next() const { return next_; }
138 LifetimePosition Intersect(const UseInterval* other) const {
150 void set_next(UseInterval* next) { next_ = next; }
154 UseInterval* next_;
196 UseInterval* first_interval() const { return first_interval_; }
296 bool HasOverlap(UseInterval* target) const;
302 UseInterval* FirstSearchIntervalForPosition(LifetimePosition position) const;
303 void AdvanceLastProcessedMarker(UseInterval* to_start_of
    [all...]
  /external/v8/src/compiler/
register-allocator.h 175 class UseInterval final : public ZoneObject {
177 UseInterval(LifetimePosition start, LifetimePosition end)
186 UseInterval* next() const { return next_; }
187 void set_next(UseInterval* next) { next_ = next; }
191 UseInterval* SplitAt(LifetimePosition pos, Zone* zone);
195 LifetimePosition Intersect(const UseInterval* other) const {
226 UseInterval* next_;
228 DISALLOW_COPY_AND_ASSIGN(UseInterval);
313 UseInterval* first_interval() const { return first_interval_; }
440 UseInterval* FirstSearchIntervalForPosition(LifetimePosition position) const
    [all...]

Completed in 433 milliseconds