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

  /external/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 236 DCHECK(first_use_ == nullptr) << "A temporary can only have one user";
239 first_use_ = new (allocator_) UsePosition(
240 instruction, /* environment */ nullptr, temp_index, position, first_use_);
271 if ((first_use_ != nullptr)
272 && (first_use_->GetUser() == instruction)
273 && (first_use_->GetPosition() < position)) {
277 UsePosition* cursor = first_use_;
281 DCHECK(first_use_->GetPosition() + 1 == position);
285 if (first_range_->GetEnd() == first_use_->GetPosition()) {
295 first_use_ = new (allocator_) UsePosition
1032 UsePosition* first_use_; member in class:art::LiveInterval
    [all...]
register_allocator_test.cc 817 first->first_use_ = new(&allocator) UsePosition(user, 0, false, 8, first->first_use_);
818 first->first_use_ = new(&allocator) UsePosition(user, 0, false, 7, first->first_use_);
819 first->first_use_ = new(&allocator) UsePosition(user, 0, false, 6, first->first_use_);
839 third->first_use_ = new(&allocator) UsePosition(user, 0, false, 8, third->first_use_);
840 third->first_use_ = new(&allocator) UsePosition(user, 0, false, 4, third->first_use_);
    [all...]
ssa_liveness_analysis.cc 358 UsePosition* use = first_use_;
  /external/vixl/src/vixl/a64/
macro-assembler-a64.cc 47 : Pool(masm), size_(0), first_use_(-1),
65 first_use_ = -1;
74 ptrdiff_t distance = masm_->CursorOffset() + amount - first_use_;
116 first_use_ = masm_->CursorOffset();
118 SetNextCheckpoint(first_use_ + Instruction::kLoadLiteralRange);
120 VIXL_ASSERT(masm_->CursorOffset() > first_use_);
    [all...]
macro-assembler-a64.h 129 ptrdiff_t first_use_; member in class:vixl::LiteralPool
152 return first_use_ + kRecommendedLiteralPoolRange;
    [all...]
  /external/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 143 milliseconds