diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-01-13 18:41:05 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-01-13 18:41:05 +0000 |
commit | 0e233ae1831850085af79f08dba47b77769b124c (patch) | |
tree | 5b9c07d6a295ef5ee45b301ef5e09ff7a3abdcf7 /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | c8056a952e2bbe1d7a1d3d9092405e04f124b714 (diff) | |
download | bcm5719-llvm-0e233ae1831850085af79f08dba47b77769b124c.tar.gz bcm5719-llvm-0e233ae1831850085af79f08dba47b77769b124c.zip |
Teach MachineBasicBlock::getFirstTerminator to ignore debug values.
It will still return an iterator that points to the first terminator or end(),
but there may be DBG_VALUE instructions following the first terminator.
llvm-svn: 123384
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 813fad288e8..b5904443a8b 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -155,11 +155,22 @@ MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { } MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { - iterator I = end(); - while (I != begin() && (--I)->getDesc().isTerminator()) - ; /*noop */ - if (I != end() && !I->getDesc().isTerminator()) ++I; - return I; + iterator B = begin(), I = end(); + iterator Term = I; + while (I != B) { + --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; } void MachineBasicBlock::dump() const { |