HomeSort by relevance Sort by last modified time
    Searched refs:IsLive (Results 1 - 11 of 11) sorted by null

  /art/compiler/dex/quick/
ralloc_util.cc 149 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) {
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() && info2->IsDirty()))
    [all...]
gen_loadstore.cc 191 if (IsLive(rl_src.reg) ||
275 if (IsLive(rl_src.reg) ||
mir_to_lir-inl.h 30 DCHECK(!(p->IsLive() && p->IsDirty())) << "Live & dirty temp in clobber";
mir_to_lir.h 362 bool IsLive() { return (master_->liveness_ & storage_mask_) == storage_mask_; }
391 int SReg() { return (!IsTemp() || IsLive()) ? s_reg_ : INVALID_SREG; }
    [all...]
codegen_util.cc     [all...]
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.h 111 /// IsLive - Return true if Reg is live
112 bool IsLive(unsigned Reg);
AggressiveAntiDepBreaker.cpp 107 bool AggressiveAntiDepState::IsLive(unsigned Reg)
211 if (State->IsLive(Reg)) {
308 if (!State->IsLive(Reg)) {
320 if (!State->IsLive(SubregReg)) {
378 if (State->IsLive(AliasReg)) {
414 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI))
666 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) {
673 if (State->IsLive(AliasReg) ||
757 if (!State->IsLive(Reg))
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 113 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
114 if (!IsLive || !IsImplicit) {
115 MIB.addReg(GPR64, getImplRegState(IsImplicit) | getKillRegState(!IsLive));
116 if (!IsLive)
  /art/compiler/optimizing/
nodes.h     [all...]
  /art/runtime/gc/
heap.cc     [all...]
  /art/compiler/dex/quick/x86/
int_x86.cc     [all...]

Completed in 131 milliseconds