Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/compiler/backend/
Dregister-allocator.cc1197 use_interval_ = result; in SpillRange()
1204 if (this->use_interval_ == nullptr || other->use_interval_ == nullptr || in IsIntersectingWith()
1205 this->End() <= other->use_interval_->start() || in IsIntersectingWith()
1206 other->End() <= this->use_interval_->start()) { in IsIntersectingWith()
1209 return AreUseIntervalsIntersecting(use_interval_, other->use_interval_); in IsIntersectingWith()
1223 MergeDisjointIntervals(other->use_interval_); in TryMerge()
1224 other->use_interval_ = nullptr; in TryMerge()
1240 UseInterval* current = use_interval_; in MergeDisjointIntervals()
1250 use_interval_ = current; in MergeDisjointIntervals()
Dregister-allocator.h1080 UseInterval* interval() const { return use_interval_; } in interval()
1109 UseInterval* use_interval_; variable