Home
last modified time | relevance | path

Searched refs:heap_location_ (Results 1 – 1 of 1) sorted by relevance

/art/compiler/optimizing/
Dload_store_elimination.cc343 constexpr PhiPlaceholder() : block_id_(-1), heap_location_(-1) {} in PhiPlaceholder()
345 : block_id_(block_id), heap_location_(dchecked_integral_cast<uint32_t>(heap_location)) {} in PhiPlaceholder()
357 return heap_location_; in GetHeapLocation()
361 return block_id_ == p2.block_id_ && heap_location_ == p2.heap_location_; in Equals()
365 oss << "PhiPlaceholder[blk: " << block_id_ << ", heap_location_: " << heap_location_ << "]"; in Dump()
370 uint32_t heap_location_; member in art::LSEVisitor::PhiPlaceholder