HomeSort by relevance Sort by last modified time
    Searched refs:current_interval_ (Results 1 - 5 of 5) sorted by null

  /art/compiler/optimizing/
register_allocator.cc 402 : current_interval_(interval),
405 bool Done() const { return current_interval_ == nullptr; }
407 LiveInterval* CurrentInterval() const { return current_interval_; }
412 current_interval_ = current_interval_->GetNextSibling();
413 if (current_interval_ != nullptr) {
414 current_range_ = current_interval_->GetFirstRange();
420 LiveInterval* current_interval_; member in class:art::AllRangesIterator
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 104 current_interval_(NULL),
223 if (current_interval_ == NULL) return first_interval_;
224 if (current_interval_->start().Value() > position.Value()) {
225 current_interval_ = NULL;
228 return current_interval_;
236 LifetimePosition start = current_interval_ == NULL
238 : current_interval_->start();
240 current_interval_ = to_start_of;
316 current_interval_ = NULL;
    [all...]
register-allocator.h 309 mutable UseInterval* current_interval_; member in class:v8::internal::compiler::LiveRange
  /external/v8/src/
lithium-allocator.cc 108 current_interval_(NULL),
226 if (current_interval_ == NULL) return first_interval_;
227 if (current_interval_->start().Value() > position.Value()) {
228 current_interval_ = NULL;
231 return current_interval_;
240 current_interval_ == NULL ? LifetimePosition::Invalid()
241 : current_interval_->start();
243 current_interval_ = to_start_of;
319 current_interval_ = NULL;
    [all...]
lithium-allocator.h 316 mutable UseInterval* current_interval_; member in class:v8::internal::LiveRange

Completed in 366 milliseconds