diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-09 18:17:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-09 18:17:41 +0000 |
commit | c37a2f13c48019eccbf009e29f2347a1ab5fa23b (patch) | |
tree | 4a3ef22b886d0d00a61b263cfd6dfa455925d1d3 /llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp | |
parent | 48356a50f3770b74dc68ad5a7642ccbe05c10887 (diff) | |
download | bcm5719-llvm-c37a2f13c48019eccbf009e29f2347a1ab5fa23b.tar.gz bcm5719-llvm-c37a2f13c48019eccbf009e29f2347a1ab5fa23b.zip |
Teach the code generator that rlwimi is commutable if the rotate amount
is zero. This lets the register allocator elide some copies in some cases.
This implements CodeGen/PowerPC/rlwimi-commute.ll
llvm-svn: 23292
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp b/llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp index 50ad423cf7c..3ec78e3456b 100644 --- a/llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp @@ -76,3 +76,35 @@ bool PPC32InstrInfo::isMoveInstr(const MachineInstr& MI, } return false; } + +// commuteInstruction - We can commute rlwimi instructions, but only if the +// rotate amt is zero. We also have to munge the immediates a bit. +MachineInstr *PPC32InstrInfo::commuteInstruction(MachineInstr *MI) const { + // Normal instructions can be commuted the obvious way. + if (MI->getOpcode() != PPC::RLWIMI) + return TargetInstrInfo::commuteInstruction(MI); + + // Cannot commute if it has a non-zero rotate count. + if (MI->getOperand(3).getImmedValue() != 0) + return 0; + + // If we have a zero rotate count, we have: + // M = mask(MB,ME) + // Op0 = (Op1 & ~M) | (Op2 & M) + // Change this to: + // M = mask((ME+1)&31, (MB-1)&31) + // Op0 = (Op2 & ~M) | (Op1 & M) + + // Swap op1/op2 + unsigned Reg1 = MI->getOperand(1).getReg(); + unsigned Reg2 = MI->getOperand(2).getReg(); + MI->SetMachineOperandReg(2, Reg1); + MI->SetMachineOperandReg(1, Reg2); + + // Swap the mask around. + unsigned MB = MI->getOperand(4).getImmedValue(); + unsigned ME = MI->getOperand(5).getImmedValue(); + MI->getOperand(4).setImmedValue((ME+1) & 31); + MI->getOperand(5).setImmedValue((MB-1) & 31); + return MI; +} |