Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCPreEmitPeephole.cpp153 for (auto AfterBBI = std::next(BBI); AfterBBI != MBB.instr_end(); in removeRedundantLIs() local
154 ++AfterBBI) { in removeRedundantLIs()
157 int KillIdx = AfterBBI->findRegisterUseOperandIdx(Reg, TRI, true); in removeRedundantLIs()
161 if (KillIdx != -1 && AfterBBI->getOperand(KillIdx).isImplicit()) { in removeRedundantLIs()
164 LLVM_DEBUG(AfterBBI->dump()); in removeRedundantLIs()
170 DeadOrKillToUnset = &AfterBBI->getOperand(KillIdx); in removeRedundantLIs()
173 << *AfterBBI << " is a unsetting candidate\n"); in removeRedundantLIs()
176 if (!AfterBBI->modifiesRegister(Reg, TRI)) in removeRedundantLIs()
180 if (AfterBBI->getOpcode() != Opc) in removeRedundantLIs()
182 assert(AfterBBI->getOperand(0).isReg() && in removeRedundantLIs()
[all …]