Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dssa_builder.cc69 if (next->IsLive()) { in EquivalentPhisCleanup()
114 if (user->IsPhi() && user->AsPhi()->IsLive()) { in AddDependentInstructionsToWorklist()
211 DCHECK(phi->IsLive()); in UpdatePrimitiveType()
236 if (phi->IsLive()) { in RunPrimitiveTypePropagation()
248 if (phi->IsLive()) { in RunPrimitiveTypePropagation()
266 if (phi->IsLive() && UpdatePrimitiveType(phi, worklist)) { in ProcessPrimitiveTypePropagationWorklist()
603 DCHECK(phi->IsLive()) << "Cannot get equivalent of a dead phi since it would create a live one."; in GetFloatDoubleOrReferenceEquivalentOfPhi()
628 DCHECK(new_phi->IsLive()); in GetFloatDoubleOrReferenceEquivalentOfPhi()
635 return next_phi->IsLive() ? next_phi : nullptr; in GetFloatDoubleOrReferenceEquivalentOfPhi()
Dreference_type_propagation.cc892 DCHECK(instr->IsLive()); in UpdatePhi()
937 DCHECK((instr->IsPhi() && instr->AsPhi()->IsLive()) in UpdateNullability()
985 if ((user->IsPhi() && user->AsPhi()->IsLive()) in AddDependentInstructionsToWorklist()
Dnodes.h2590 bool IsDead() const { return !IsLive(); } in IsDead()
2591 bool IsLive() const { return GetPackedFlag<kFlagIsLive>(); } in IsLive() function
/art/runtime/gc/
Dheap.cc2907 bool IsLive(ObjPtr<mirror::Object> obj) const NO_THREAD_SAFETY_ANALYSIS { in IsLive() function in art::gc::VerifyReferenceVisitor
2938 if (ref == nullptr || IsLive(ref)) { in VerifyReference()