Searched refs:IsLive (Results 1 - 4 of 4) sorted by last modified time

/art/runtime/gc/
H A Dheap.cc2876 bool IsLive(mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS {
2907 if (ref == nullptr || IsLive(ref)) {
/art/compiler/optimizing/
H A Dnodes.h2392 bool IsDead() const { return !IsLive(); }
2393 bool IsLive() const { return GetPackedFlag<kFlagIsLive>(); } function in class:art::HPhi
H A Dreference_type_propagation.cc824 DCHECK(instr->IsLive());
869 DCHECK((instr->IsPhi() && instr->AsPhi()->IsLive())
917 if ((user->IsPhi() && user->AsPhi()->IsLive())
H A Dssa_builder.cc67 if (next->IsLive()) {
113 if (user->IsPhi() && user->AsPhi()->IsLive()) {
217 DCHECK(phi->IsLive());
243 if (phi->IsLive()) {
255 if (phi->IsLive()) {
273 if (phi->IsLive() && UpdatePrimitiveType(phi, worklist)) {
603 DCHECK(phi->IsLive()) << "Cannot get equivalent of a dead phi since it would create a live one.";
625 DCHECK(new_phi->IsLive());
632 return next_phi->IsLive() ? next_phi : nullptr;

Completed in 57 milliseconds