Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dregister-allocator.cc1247 use_interval_ = result; in SpillRange()
1254 if (this->use_interval_ == nullptr || other->use_interval_ == nullptr || in IsIntersectingWith()
1255 this->End() <= other->use_interval_->start() || in IsIntersectingWith()
1256 other->End() <= this->use_interval_->start()) { in IsIntersectingWith()
1259 return AreUseIntervalsIntersecting(use_interval_, other->use_interval_); in IsIntersectingWith()
1274 MergeDisjointIntervals(other->use_interval_); in TryMerge()
1275 other->use_interval_ = nullptr; in TryMerge()
1292 UseInterval* current = use_interval_; in MergeDisjointIntervals()
1302 use_interval_ = current; in MergeDisjointIntervals()
Dregister-allocator.h680 UseInterval* interval() const { return use_interval_; } in interval()
709 UseInterval* use_interval_; variable