Searched refs:first_use_ (Results 1 – 3 of 3) sorted by relevance
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 236 DCHECK(first_use_ == nullptr) << "A temporary can only have one user"; in AddTempUse() 239 first_use_ = new (allocator_) UsePosition( in AddTempUse() 240 instruction, /* environment */ nullptr, temp_index, position, first_use_); in AddTempUse() 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( [all …]
|
D | register_allocator_test.cc | 817 first->first_use_ = new(&allocator) UsePosition(user, 0, false, 8, first->first_use_); in TEST() 818 first->first_use_ = new(&allocator) UsePosition(user, 0, false, 7, first->first_use_); in TEST() 819 first->first_use_ = new(&allocator) UsePosition(user, 0, false, 6, first->first_use_); in TEST() 839 third->first_use_ = new(&allocator) UsePosition(user, 0, false, 8, third->first_use_); in TEST() 840 third->first_use_ = new(&allocator) UsePosition(user, 0, false, 4, third->first_use_); in TEST() 841 third->first_use_ = new(&allocator) UsePosition(user, 0, false, 3, third->first_use_); in TEST()
|
D | ssa_liveness_analysis.cc | 358 UsePosition* use = first_use_; in FindFirstRegisterHint()
|