Home
last modified time | relevance | path

Searched refs:block_id_ (Results 1 – 2 of 2) 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()
353 return block_id_; in GetBlockId()
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()
369 uint32_t block_id_; member in art::LSEVisitor::PhiPlaceholder
Dnodes.h1107 block_id_(kInvalidBlockId), in graph_()
1184 uint32_t GetBlockId() const { return block_id_; } in GetBlockId()
1185 void SetBlockId(int id) { block_id_ = id; } in SetBlockId()
1472 uint32_t block_id_; variable