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 85 : current_interval_(interval),
88 bool Done() const { return current_interval_ == nullptr; }
90 LiveInterval* CurrentInterval() const { return current_interval_; }
95 current_interval_ = current_interval_->GetNextSibling();
96 if (current_interval_ != nullptr) {
97 current_range_ = current_interval_->GetFirstRange();
103 LiveInterval* current_interval_; member in class:art::AllRangesIterator
register_allocator_linear_scan.cc 403 : current_interval_(interval),
406 bool Done() const { return current_interval_ == nullptr; }
408 LiveInterval* CurrentInterval() const { return current_interval_; }
413 current_interval_ = current_interval_->GetNextSibling();
414 if (current_interval_ != nullptr) {
415 current_range_ = current_interval_->GetFirstRange();
421 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 361 milliseconds