Searched defs:IsLive (Results 1 - 3 of 3) sorted by relevance

/art/compiler/dex/quick/
H A Dralloc_util.cc149 info->IsTemp(), info->InUse(), info->IsWide(), info->Partner().GetReg(), info->IsLive(),
463 if ((info->SReg() == s_reg) && info->IsLive()) {
562 bool Mir2Lir::IsLive(RegStorage reg) { function in class:art::Mir2Lir
567 DCHECK_EQ(p_lo->IsLive(), p_hi->IsLive());
568 res = p_lo->IsLive() || p_hi->IsLive();
571 res = p->IsLive();
733 if ((info1->IsLive() && info1->IsDirty()) || (info2->IsLive()
[all...]
H A Dmir_to_lir.h341 bool IsLive() { return (master_->liveness_ & storage_mask_) == storage_mask_; } function in class:art::Mir2Lir::RegisterInfo
370 int SReg() { return (!IsTemp() || IsLive()) ? s_reg_ : INVALID_SREG; }
732 virtual bool IsLive(RegStorage reg);
/art/compiler/optimizing/
H A Dnodes.h3065 bool IsLive() const { return is_live_; } function in class:art::HPhi

Completed in 66 milliseconds