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

  /external/chromium_org/v8/src/compiler/
generic-node-inl.h 24 first_use_(NULL),
61 for (Use* use = first_use_; use != NULL; use = use->next) {
65 DCHECK_EQ(NULL, replace_to->first_use_);
66 replace_to->first_use_ = first_use_;
68 } else if (first_use_ != NULL) {
69 DCHECK_NE(NULL, replace_to->first_use_);
70 replace_to->last_use_->next = first_use_;
71 first_use_->prev = replace_to->last_use_;
76 first_use_ = NULL
    [all...]
generic-node.h 49 Use* current = first_use_;
150 Use* first_use_;
259 : current_(node->first_use_), index_(0) {}
  /art/compiler/optimizing/
ssa_liveness_analysis.h 140 first_use_(nullptr),
179 first_use_ = new (allocator_) UsePosition(
180 instruction, input_index, is_environment, position, first_use_);
185 first_use_ = new (allocator_) UsePosition(
186 instruction, input_index, false, block->GetLifetimeEnd(), first_use_);
306 UsePosition* use = first_use_;
326 return first_use_;
358 new_interval->first_use_ = first_use_;
417 UsePosition* use = first_use_;
438 UsePosition* first_use_; member in class:art::LiveInterval
    [all...]
  /external/chromium_org/v8/src/arm64/
assembler-arm64.cc 314 first_use_ = offset;
335 DCHECK(first_use_ >= 0);
336 return assm_->pc_offset() - first_use_;
347 return first_use_ + kMaxLoadLiteralRange - WorstCaseSize();
441 first_use_ = -1;
544 first_use_ = -1;
    [all...]
assembler-arm64.h 757 first_use_(-1),
792 int first_use_;
    [all...]

Completed in 76 milliseconds