Searched refs:UsePosition (Results 1 - 4 of 4) sorted by relevance

/art/compiler/optimizing/
H A Dssa_liveness_analysis.h104 class UsePosition : public ArenaObject<kArenaAllocMisc> { class in namespace:art
106 UsePosition(HInstruction* user, function in class:art::UsePosition
110 UsePosition* next)
127 UsePosition* GetNext() const { return next_; }
128 void SetNext(UsePosition* next) { next_ = next; }
145 UsePosition* Dup(ArenaAllocator* allocator) const {
146 return new (allocator) UsePosition(
165 UsePosition* next_;
167 DISALLOW_COPY_AND_ASSIGN(UsePosition);
239 first_use_ = new (allocator_) UsePosition(
[all...]
H A Dregister_allocator_test.cc817 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_);
841 third->first_use_ = new(&allocator) UsePosition(user, 0, false, 3, third->first_use_);
H A Dssa_liveness_analysis.cc358 UsePosition* use = first_use_;
H A Dregister_allocator.cc1498 UsePosition* use = current->GetFirstUse();
1499 UsePosition* env_use = current->GetFirstEnvironmentUse();

Completed in 37 milliseconds