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

  /external/llvm/lib/CodeGen/
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/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...]
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...]
  /art/compiler/optimizing/
nodes.h     [all...]

Completed in 570 milliseconds