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

  /art/compiler/optimizing/
register_allocator.cc 180 : current_interval_(interval),
183 bool Done() const { return current_interval_ == nullptr; }
185 LiveInterval* CurrentInterval() const { return current_interval_; }
190 current_interval_ = current_interval_->GetNextSibling();
191 if (current_interval_ != nullptr) {
192 current_range_ = current_interval_->GetFirstRange();
198 LiveInterval* current_interval_; member in class:art::AllRangesIterator
    [all...]
  /external/chromium_org/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/chromium_org/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 1315 milliseconds