mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
Move the search for the appropriate AND instruction
into OptimizeCompareInstr. This necessitates the passing of CmpValue around, so widen the virtual functions to accomodate. No functionality changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114428 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -581,7 +581,7 @@ public:
|
|||||||
/// in SrcReg and the value it compares against in CmpValue. Return true if
|
/// in SrcReg and the value it compares against in CmpValue. Return true if
|
||||||
/// the comparison instruction can be analyzed.
|
/// the comparison instruction can be analyzed.
|
||||||
virtual bool AnalyzeCompare(const MachineInstr *MI,
|
virtual bool AnalyzeCompare(const MachineInstr *MI,
|
||||||
unsigned &SrcReg, int &CmpValue) const {
|
unsigned &SrcReg, int &Mask, int &Value) const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -589,8 +589,8 @@ public:
|
|||||||
/// into something more efficient. E.g., on ARM most instructions can set the
|
/// into something more efficient. E.g., on ARM most instructions can set the
|
||||||
/// flags register, obviating the need for a separate CMP. Update the iterator
|
/// flags register, obviating the need for a separate CMP. Update the iterator
|
||||||
/// *only* if a transformation took place.
|
/// *only* if a transformation took place.
|
||||||
virtual bool OptimizeCompareInstr(MachineInstr * /*CmpInstr*/,
|
virtual bool OptimizeCompareInstr(MachineInstr *CmpInstr,
|
||||||
unsigned /*SrcReg*/, int /*CmpValue*/,
|
unsigned SrcReg, int Mask, int Value,
|
||||||
MachineBasicBlock::iterator &) const {
|
MachineBasicBlock::iterator &) const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@@ -238,13 +238,13 @@ bool PeepholeOptimizer::OptimizeCmpInstr(MachineInstr *MI,
|
|||||||
// If this instruction is a comparison against zero and isn't comparing a
|
// If this instruction is a comparison against zero and isn't comparing a
|
||||||
// physical register, we can try to optimize it.
|
// physical register, we can try to optimize it.
|
||||||
unsigned SrcReg;
|
unsigned SrcReg;
|
||||||
int CmpValue;
|
int CmpMask, CmpValue;
|
||||||
if (!TII->AnalyzeCompare(MI, SrcReg, CmpValue) ||
|
if (!TII->AnalyzeCompare(MI, SrcReg, CmpMask, CmpValue) ||
|
||||||
TargetRegisterInfo::isPhysicalRegister(SrcReg))
|
TargetRegisterInfo::isPhysicalRegister(SrcReg))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Attempt to optimize the comparison instruction.
|
// Attempt to optimize the comparison instruction.
|
||||||
if (TII->OptimizeCompareInstr(MI, SrcReg, CmpValue, NextIter)) {
|
if (TII->OptimizeCompareInstr(MI, SrcReg, CmpMask, CmpValue, NextIter)) {
|
||||||
++NumEliminated;
|
++NumEliminated;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@@ -1376,7 +1376,7 @@ bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool ARMBaseInstrInfo::
|
bool ARMBaseInstrInfo::
|
||||||
AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpValue) const {
|
AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpMask, int &CmpValue) const {
|
||||||
switch (MI->getOpcode()) {
|
switch (MI->getOpcode()) {
|
||||||
default: break;
|
default: break;
|
||||||
case ARM::CMPri:
|
case ARM::CMPri:
|
||||||
@@ -1384,23 +1384,29 @@ AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpValue) const {
|
|||||||
case ARM::t2CMPri:
|
case ARM::t2CMPri:
|
||||||
case ARM::t2CMPzri:
|
case ARM::t2CMPzri:
|
||||||
SrcReg = MI->getOperand(0).getReg();
|
SrcReg = MI->getOperand(0).getReg();
|
||||||
|
CmpMask = ~0;
|
||||||
CmpValue = MI->getOperand(1).getImm();
|
CmpValue = MI->getOperand(1).getImm();
|
||||||
return true;
|
return true;
|
||||||
case ARM::TSTri: {
|
case ARM::TSTri:
|
||||||
MachineBasicBlock::const_iterator MII(MI);
|
case ARM::t2TSTri:
|
||||||
if (MI->getParent()->begin() == MII)
|
SrcReg = MI->getOperand(0).getReg();
|
||||||
return false;
|
CmpMask = MI->getOperand(1).getImm();
|
||||||
const MachineInstr *AND = llvm::prior(MII);
|
CmpValue = 0;
|
||||||
if (AND->getOpcode() != ARM::ANDri)
|
return true;
|
||||||
return false;
|
}
|
||||||
if (MI->getOperand(0).getReg() == AND->getOperand(1).getReg() &&
|
|
||||||
MI->getOperand(1).getImm() == AND->getOperand(2).getImm()) {
|
return false;
|
||||||
SrcReg = AND->getOperand(0).getReg();
|
}
|
||||||
CmpValue = 0;
|
|
||||||
return true;
|
static bool isSuitableForMask(const MachineInstr &MI, unsigned SrcReg,
|
||||||
}
|
int CmpMask) {
|
||||||
}
|
switch (MI.getOpcode()) {
|
||||||
break;
|
case ARM::ANDri:
|
||||||
|
case ARM::t2ANDri:
|
||||||
|
if (SrcReg == MI.getOperand(1).getReg() &&
|
||||||
|
CmpMask == MI.getOperand(2).getImm())
|
||||||
|
return true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
@@ -1410,8 +1416,8 @@ AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpValue) const {
|
|||||||
/// comparison into one that sets the zero bit in the flags register. Update the
|
/// comparison into one that sets the zero bit in the flags register. Update the
|
||||||
/// iterator *only* if a transformation took place.
|
/// iterator *only* if a transformation took place.
|
||||||
bool ARMBaseInstrInfo::
|
bool ARMBaseInstrInfo::
|
||||||
OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpValue,
|
OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpMask,
|
||||||
MachineBasicBlock::iterator &MII) const {
|
int CmpValue, MachineBasicBlock::iterator &MII) const {
|
||||||
if (CmpValue != 0)
|
if (CmpValue != 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@@ -1423,6 +1429,24 @@ OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpValue,
|
|||||||
|
|
||||||
MachineInstr *MI = &*DI;
|
MachineInstr *MI = &*DI;
|
||||||
|
|
||||||
|
// Masked compares sometimes use the same register as the corresponding 'and'.
|
||||||
|
if (CmpMask != ~0) {
|
||||||
|
if (!isSuitableForMask(*MI, SrcReg, CmpMask)) {
|
||||||
|
MI = 0;
|
||||||
|
for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(SrcReg),
|
||||||
|
UE = MRI.use_end(); UI != UE; ++UI) {
|
||||||
|
if (UI->getParent() != CmpInstr->getParent()) continue;
|
||||||
|
MachineInstr &PotentialAND = *UI;
|
||||||
|
if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask))
|
||||||
|
continue;
|
||||||
|
SrcReg = PotentialAND.getOperand(0).getReg();
|
||||||
|
MI = &PotentialAND;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (!MI) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Conservatively refuse to convert an instruction which isn't in the same BB
|
// Conservatively refuse to convert an instruction which isn't in the same BB
|
||||||
// as the comparison.
|
// as the comparison.
|
||||||
if (MI->getParent() != CmpInstr->getParent())
|
if (MI->getParent() != CmpInstr->getParent())
|
||||||
|
@@ -326,12 +326,12 @@ public:
|
|||||||
/// in SrcReg and the value it compares against in CmpValue. Return true if
|
/// in SrcReg and the value it compares against in CmpValue. Return true if
|
||||||
/// the comparison instruction can be analyzed.
|
/// the comparison instruction can be analyzed.
|
||||||
virtual bool AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg,
|
virtual bool AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg,
|
||||||
int &CmpValue) const;
|
int &CmpMask, int &CmpValue) const;
|
||||||
|
|
||||||
/// OptimizeCompareInstr - Convert the instruction to set the zero flag so
|
/// OptimizeCompareInstr - Convert the instruction to set the zero flag so
|
||||||
/// that we can remove a "comparison with zero".
|
/// that we can remove a "comparison with zero".
|
||||||
virtual bool OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg,
|
virtual bool OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg,
|
||||||
int CmpValue,
|
int CmpMask, int CmpValue,
|
||||||
MachineBasicBlock::iterator &MII) const;
|
MachineBasicBlock::iterator &MII) const;
|
||||||
|
|
||||||
virtual unsigned getNumMicroOps(const MachineInstr *MI,
|
virtual unsigned getNumMicroOps(const MachineInstr *MI,
|
||||||
|
Reference in New Issue
Block a user