mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-13 23:25:06 +00:00
Use TII->findCommutedOpIndices to find the commute operands (rather than guessing).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -879,10 +879,14 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
|
||||
// so, swap the B and C operands. This makes the live ranges of A
|
||||
// and C joinable.
|
||||
// FIXME: This code also works for A := B op C instructions.
|
||||
if (TID.isCommutable() && mi->getNumOperands() >= 3) {
|
||||
assert(mi->getOperand(3-si).isReg() &&
|
||||
"Not a proper commutative instruction!");
|
||||
unsigned regC = mi->getOperand(3-si).getReg();
|
||||
unsigned SrcOp1, SrcOp2;
|
||||
if (TID.isCommutable() && mi->getNumOperands() >= 3 &&
|
||||
TII->findCommutedOpIndices(mi, SrcOp1, SrcOp2)) {
|
||||
unsigned regC = 0;
|
||||
if (si == SrcOp1)
|
||||
regC = mi->getOperand(SrcOp2).getReg();
|
||||
else if (si == SrcOp2)
|
||||
regC = mi->getOperand(SrcOp1).getReg();
|
||||
if (isKilled(*mi, regC, MRI, TII)) {
|
||||
if (CommuteInstruction(mi, mbbi, regB, regC, Dist)) {
|
||||
++NumCommuted;
|
||||
|
Reference in New Issue
Block a user