mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-14 07:31:39 +00:00
Try again to teach getFirstTerminator() about debug values.
Fix some callers to better deal with debug values. llvm-svn: 123419
This commit is contained in:
parent
6de2a4d67c
commit
3d8deb13ee
@ -155,11 +155,22 @@ MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
|
MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
|
||||||
iterator I = end();
|
iterator B = begin(), I = end();
|
||||||
while (I != begin() && (--I)->getDesc().isTerminator())
|
iterator Term = I;
|
||||||
; /*noop */
|
while (I != B) {
|
||||||
if (I != end() && !I->getDesc().isTerminator()) ++I;
|
--I;
|
||||||
return I;
|
// Ignore any debug values after the first terminator.
|
||||||
|
if (I->isDebugValue())
|
||||||
|
continue;
|
||||||
|
// Stop once we see a non-debug non-terminator.
|
||||||
|
if (!I->getDesc().isTerminator())
|
||||||
|
break;
|
||||||
|
// Earliest terminator so far.
|
||||||
|
Term = I;
|
||||||
|
}
|
||||||
|
// Return the first terminator, or end().
|
||||||
|
// Everything after Term is terminators and debug values.
|
||||||
|
return Term;
|
||||||
}
|
}
|
||||||
|
|
||||||
MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
|
MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
|
||||||
|
@ -339,6 +339,8 @@ void PHIElimination::LowerAtomicPHINode(
|
|||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
for (MachineBasicBlock::iterator TI = llvm::next(Term);
|
for (MachineBasicBlock::iterator TI = llvm::next(Term);
|
||||||
TI != opBlock.end(); ++TI) {
|
TI != opBlock.end(); ++TI) {
|
||||||
|
if (TI->isDebugValue())
|
||||||
|
continue;
|
||||||
assert(!TI->readsRegister(SrcReg) &&
|
assert(!TI->readsRegister(SrcReg) &&
|
||||||
"Terminator instructions cannot use virtual registers unless"
|
"Terminator instructions cannot use virtual registers unless"
|
||||||
"they are the first terminator in a block!");
|
"they are the first terminator in a block!");
|
||||||
@ -347,9 +349,13 @@ void PHIElimination::LowerAtomicPHINode(
|
|||||||
} else if (reusedIncoming || !IncomingReg) {
|
} else if (reusedIncoming || !IncomingReg) {
|
||||||
// We may have to rewind a bit if we didn't insert a copy this time.
|
// We may have to rewind a bit if we didn't insert a copy this time.
|
||||||
KillInst = Term;
|
KillInst = Term;
|
||||||
while (KillInst != opBlock.begin())
|
while (KillInst != opBlock.begin()) {
|
||||||
if ((--KillInst)->readsRegister(SrcReg))
|
--KillInst;
|
||||||
|
if (KillInst->isDebugValue())
|
||||||
|
continue;
|
||||||
|
if (KillInst->readsRegister(SrcReg))
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// We just inserted this copy.
|
// We just inserted this copy.
|
||||||
KillInst = prior(InsertPos);
|
KillInst = prior(InsertPos);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user