diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-07-24 20:23:50 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-07-24 20:23:50 +0000 |
commit | 56a56eb80e516852f87a9aeb147c1443ab4731e1 (patch) | |
tree | 06064b4b407df574d2666e24c4a2cfef3623ea4d /llvm/lib/CodeGen/SplitKit.cpp | |
parent | 5b0bdc204313b6f266a87ee4d95cf69dabf79a83 (diff) | |
download | bcm5719-llvm-56a56eb80e516852f87a9aeb147c1443ab4731e1.tar.gz bcm5719-llvm-56a56eb80e516852f87a9aeb147c1443ab4731e1.zip |
Correctly handle <undef> tied uses when rewriting after a split.
This fixes PR10463. A two-address instruction with an <undef> use
operand was incorrectly rewritten so the def and use no longer used the
same register, violating the tie constraint.
Fix this by always rewriting <undef> operands with the register a def
operand would use.
llvm-svn: 135885
Diffstat (limited to 'llvm/lib/CodeGen/SplitKit.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SplitKit.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.cpp b/llvm/lib/CodeGen/SplitKit.cpp index d607e37331a..46a43d8bd72 100644 --- a/llvm/lib/CodeGen/SplitKit.cpp +++ b/llvm/lib/CodeGen/SplitKit.cpp @@ -938,15 +938,11 @@ void SplitEditor::rewriteAssigned(bool ExtendRanges) { continue; } - // <undef> operands don't really read the register, so just assign them to - // the complement. - if (MO.isUse() && MO.isUndef()) { - MO.setReg(Edit->get(0)->reg); - continue; - } - + // <undef> operands don't really read the register, so it doesn't matter + // which register we choose. When the use operand is tied to a def, we must + // use the same register as the def, so just do that always. SlotIndex Idx = LIS.getInstructionIndex(MI); - if (MO.isDef()) + if (MO.isDef() || MO.isUndef()) Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex(); // Rewrite to the mapped register at Idx. |