Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dregister_line.h110 reg_to_lock_depths_ = src->reg_to_lock_depths_; in CopyFromLine()
120 reg_to_lock_depths_.clear(); in FillWithGarbage()
296 auto it = reg_to_lock_depths_.find(src); in CopyRegToLockDepth()
297 if (it != reg_to_lock_depths_.end()) { in CopyRegToLockDepth()
298 reg_to_lock_depths_.Put(dst, it->second); in CopyRegToLockDepth()
303 auto it = reg_to_lock_depths_.find(reg); in IsSetLockDepth()
304 if (it != reg_to_lock_depths_.end()) { in IsSetLockDepth()
314 auto it = reg_to_lock_depths_.find(reg); in SetRegToLockDepth()
315 if (it == reg_to_lock_depths_.end()) { in SetRegToLockDepth()
316 reg_to_lock_depths_.Put(reg, 1 << depth); in SetRegToLockDepth()
[all …]
Dregister_line.cc473 } else if (reg_to_lock_depths_ != incoming_line->reg_to_lock_depths_) { in MergeRegisters()
475 size_t depths = reg_to_lock_depths_.count(idx); in MergeRegisters()
476 size_t incoming_depths = incoming_line->reg_to_lock_depths_.count(idx); in MergeRegisters()
479 reg_to_lock_depths_.erase(idx); in MergeRegisters()