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

  /external/v8/src/crankshaft/
lithium-allocator.cc 109 current_interval_(NULL),
227 if (current_interval_ == NULL) return first_interval_;
228 if (current_interval_->start().Value() > position.Value()) {
229 current_interval_ = NULL;
232 return current_interval_;
241 current_interval_ == NULL ? LifetimePosition::Invalid()
242 : current_interval_->start();
244 current_interval_ = to_start_of;
320 current_interval_ = NULL;
    [all...]
lithium-allocator.h 314 mutable UseInterval* current_interval_; member in class:v8::internal::LiveRange
  /art/compiler/optimizing/
register_allocator.cc 421 : current_interval_(interval),
424 bool Done() const { return current_interval_ == nullptr; }
426 LiveInterval* CurrentInterval() const { return current_interval_; }
431 current_interval_ = current_interval_->GetNextSibling();
432 if (current_interval_ != nullptr) {
433 current_range_ = current_interval_->GetFirstRange();
439 LiveInterval* current_interval_; member in class:art::AllRangesIterator
    [all...]
  /external/v8/src/compiler/
register-allocator.cc 271 current_interval_(nullptr),
430 if (current_interval_ == nullptr) return first_interval_;
431 if (current_interval_->start() > position) {
432 current_interval_ = nullptr;
435 return current_interval_;
443 LifetimePosition start = current_interval_ == nullptr
445 : current_interval_->start();
447 current_interval_ = to_start_of;
542 current_interval_ = nullptr;
859 // We can optimize DetachAt by setting current_interval_ accordingly
    [all...]
register-allocator.h 455 mutable UseInterval* current_interval_; member in class:v8::internal::compiler::LiveRange
    [all...]

Completed in 5407 milliseconds