Home
last modified time | relevance | path

Searched refs:use_interval_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dregister-allocator.cc1252 use_interval_ = result; in SpillRange()
1259 if (this->use_interval_ == nullptr || other->use_interval_ == nullptr || in IsIntersectingWith()
1260 this->End() <= other->use_interval_->start() || in IsIntersectingWith()
1261 other->End() <= this->use_interval_->start()) { in IsIntersectingWith()
1264 return AreUseIntervalsIntersecting(use_interval_, other->use_interval_); in IsIntersectingWith()
1279 MergeDisjointIntervals(other->use_interval_); in TryMerge()
1280 other->use_interval_ = nullptr; in TryMerge()
1297 UseInterval* current = use_interval_; in MergeDisjointIntervals()
1307 use_interval_ = current; in MergeDisjointIntervals()
Dregister-allocator.h692 UseInterval* interval() const { return use_interval_; } in interval()
721 UseInterval* use_interval_; variable