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(),
478 if ((info->SReg() == s_reg) && info->IsLive()) {
577 bool Mir2Lir::IsLive(RegStorage reg) { function in class:art::Mir2Lir
582 DCHECK_EQ(p_lo->IsLive(), p_hi->IsLive());
583 res = p_lo->IsLive() || p_hi->IsLive();
586 res = p->IsLive();
750 if ((info1->IsLive() && info1->IsDirty()) || (info2->IsLive()
[all...]
H A Dmir_to_lir.h362 bool IsLive() { return (master_->liveness_ & storage_mask_) == storage_mask_; } function in class:art::Mir2Lir::RegisterInfo
391 int SReg() { return (!IsTemp() || IsLive()) ? s_reg_ : INVALID_SREG; }
762 virtual bool IsLive(RegStorage reg);
/art/compiler/optimizing/
H A Dnodes.h1292 bool IsLive() const { return is_live_; } function in class:art::HPhi

Completed in 53 milliseconds