Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dprimitive_type_propagation.cc43 DCHECK(phi->IsLive()); in UpdateType()
91 if (phi->IsLive()) { in VisitBasicBlock()
103 if (phi->IsLive()) { in VisitBasicBlock()
120 DCHECK(instruction->IsLive()); in AddToWorklist()
127 if (phi != nullptr && phi->IsLive() && phi->GetType() != instruction->GetType()) { in AddDependentInstructionsToWorklist()
Dssa_builder.cc59 DCHECK(phi->IsLive()); in UpdateType()
114 DCHECK(phi->IsLive()); in UpdateType()
144 if (instruction->IsLive() && UpdateType(instruction)) { in ProcessWorklist()
151 DCHECK(instruction->IsLive()); in AddToWorklist()
218 if (next->IsLive()) { in EquivalentPhisCleanup()
Dnodes.h3065 bool IsLive() const { return is_live_; } in IsLive() function
/art/compiler/dex/quick/
Dralloc_util.cc149 info->IsTemp(), info->InUse(), info->IsWide(), info->Partner().GetReg(), info->IsLive(), in DumpRegPool()
463 if ((info->SReg() == s_reg) && info->IsLive()) { in FindLiveReg()
562 bool Mir2Lir::IsLive(RegStorage reg) { in IsLive() function in art::Mir2Lir
567 DCHECK_EQ(p_lo->IsLive(), p_hi->IsLive()); in IsLive()
568 res = p_lo->IsLive() || p_hi->IsLive(); in IsLive()
571 res = p->IsLive(); in IsLive()
733 if ((info1->IsLive() && info1->IsDirty()) || (info2->IsLive() && info2->IsDirty())) { in FlushRegWide()
750 if (info->IsLive() && info->IsDirty()) { in FlushRegWide()
762 if (info->IsLive() && info->IsDirty()) { in FlushReg()
780 if (info->IsDirty() && info->IsLive()) { in FlushAllRegs()
[all …]
Dgen_loadstore.cc153 if (IsLive(rl_src.reg) || in StoreValue()
238 if (IsLive(rl_src.reg) || in StoreValueWide()
Dmir_to_lir-inl.h32 DCHECK(!(p->IsLive() && p->IsDirty())) << "Live & dirty temp in clobber"; in ClobberBody()
Dmir_to_lir.h341 bool IsLive() { return (master_->liveness_ & storage_mask_) == storage_mask_; } in IsLive() function
370 int SReg() { return (!IsTemp() || IsLive()) ? s_reg_ : INVALID_SREG; } in SReg()
732 virtual bool IsLive(RegStorage reg);
Dcodegen_util.cc1344 if (info->IsLive() && (info->SReg() == loc.s_reg_low)) { in NarrowRegLoc()
/art/runtime/gc/
Dheap.cc2619 bool IsLive(mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS { in IsLive() function in art::gc::VerifyReferenceVisitor
2638 if (ref == nullptr || IsLive(ref)) { in VerifyReference()
/art/compiler/dex/quick/x86/
Dint_x86.cc1106 return rl.reg.Valid() && rl.reg.GetReg() == reg.GetReg() && (pMir2Lir->IsLive(reg) || rl.home); in IsInReg()