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

  /art/compiler/optimizing/
register_allocator.cc 67 : current_interval_(interval),
70 bool Done() const { return current_interval_ == nullptr; }
72 LiveInterval* CurrentInterval() const { return current_interval_; }
77 current_interval_ = current_interval_->GetNextSibling();
78 if (current_interval_ != nullptr) {
79 current_range_ = current_interval_->GetFirstRange();
85 LiveInterval* current_interval_; member in class:art::AllRangesIterator
register_allocator_linear_scan.cc 401 : current_interval_(interval),
404 bool Done() const { return current_interval_ == nullptr; }
406 LiveInterval* CurrentInterval() const { return current_interval_; }
411 current_interval_ = current_interval_->GetNextSibling();
412 if (current_interval_ != nullptr) {
413 current_range_ = current_interval_->GetFirstRange();
419 LiveInterval* current_interval_; member in class:art::AllRangesIterator
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.cc 112 current_interval_(NULL),
230 if (current_interval_ == NULL) return first_interval_;
231 if (current_interval_->start().Value() > position.Value()) {
232 current_interval_ = NULL;
235 return current_interval_;
244 current_interval_ == NULL ? LifetimePosition::Invalid()
245 : current_interval_->start();
247 current_interval_ = to_start_of;
323 current_interval_ = NULL;
    [all...]
lithium-allocator.h 316 mutable UseInterval* current_interval_; member in class:v8::internal::LiveRange
  /external/v8/src/compiler/
register-allocator.cc 412 current_interval_(nullptr),
573 if (current_interval_ == nullptr) return first_interval_;
574 if (current_interval_->start() > position) {
575 current_interval_ = nullptr;
578 return current_interval_;
586 LifetimePosition start = current_interval_ == nullptr
588 : current_interval_->start();
590 current_interval_ = to_start_of;
687 current_interval_ = nullptr;
954 // We can optimize DetachAt by setting current_interval_ accordingly
    [all...]
register-allocator.h 460 mutable UseInterval* current_interval_; variable
    [all...]

Completed in 408 milliseconds