Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DPHIElimination.cpp362 MachineBasicBlock::iterator KillInst = opBlock.end(); in LowerAtomicPHINode() local
367 KillInst = Term; in LowerAtomicPHINode()
370 if (KillInst == opBlock.end()) { in LowerAtomicPHINode()
375 KillInst = FirstTerm; in LowerAtomicPHINode()
376 while (KillInst != opBlock.begin()) { in LowerAtomicPHINode()
377 --KillInst; in LowerAtomicPHINode()
378 if (KillInst->isDebugValue()) in LowerAtomicPHINode()
380 if (KillInst->readsRegister(SrcReg)) in LowerAtomicPHINode()
385 KillInst = prior(InsertPos); in LowerAtomicPHINode()
388 assert(KillInst->readsRegister(SrcReg) && "Cannot find kill instruction"); in LowerAtomicPHINode()
[all …]