mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
R600/SI: Implement findCommutedOpIndices
The base implementation of commuteInstruction is used in some cases, but it turns out this has been broken for a long time since modifiers were inserted between the real operands. The base implementation of commuteInstruction also fails on immediates, which also needs to be fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218530 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8a70e28114
commit
29202835d8
@ -740,6 +740,38 @@ MachineInstr *SIInstrInfo::commuteInstruction(MachineInstr *MI,
|
||||
return MI;
|
||||
}
|
||||
|
||||
// This needs to be implemented because the source modifiers may be inserted
|
||||
// between the true commutable operands, and the base
|
||||
// TargetInstrInfo::commuteInstruction uses it.
|
||||
bool SIInstrInfo::findCommutedOpIndices(MachineInstr *MI,
|
||||
unsigned &SrcOpIdx1,
|
||||
unsigned &SrcOpIdx2) const {
|
||||
const MCInstrDesc &MCID = MI->getDesc();
|
||||
if (!MCID.isCommutable())
|
||||
return false;
|
||||
|
||||
unsigned Opc = MI->getOpcode();
|
||||
int Src0Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src0);
|
||||
if (Src0Idx == -1)
|
||||
return false;
|
||||
|
||||
// FIXME: Workaround TargetInstrInfo::commuteInstruction asserting on
|
||||
// immediate.
|
||||
if (!MI->getOperand(Src0Idx).isReg())
|
||||
return false;
|
||||
|
||||
int Src1Idx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::src1);
|
||||
if (Src1Idx == -1)
|
||||
return false;
|
||||
|
||||
if (!MI->getOperand(Src1Idx).isReg())
|
||||
return false;
|
||||
|
||||
SrcOpIdx1 = Src0Idx;
|
||||
SrcOpIdx2 = Src1Idx;
|
||||
return true;
|
||||
}
|
||||
|
||||
MachineInstr *SIInstrInfo::buildMovInstr(MachineBasicBlock *MBB,
|
||||
MachineBasicBlock::iterator I,
|
||||
unsigned DstReg,
|
||||
|
@ -103,7 +103,10 @@ public:
|
||||
unsigned commuteOpcode(unsigned Opcode) const;
|
||||
|
||||
MachineInstr *commuteInstruction(MachineInstr *MI,
|
||||
bool NewMI=false) const override;
|
||||
bool NewMI = false) const override;
|
||||
bool findCommutedOpIndices(MachineInstr *MI,
|
||||
unsigned &SrcOpIdx1,
|
||||
unsigned &SrcOpIdx2) const override;
|
||||
|
||||
bool isTriviallyReMaterializable(const MachineInstr *MI,
|
||||
AliasAnalysis *AA = nullptr) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user