mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-14 15:28:20 +00:00
Fix delay slot filler for non mips1 targets. Patch by Akira Hatanaka
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121376 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -31,7 +31,7 @@ namespace {
|
|||||||
const TargetInstrInfo *TII;
|
const TargetInstrInfo *TII;
|
||||||
|
|
||||||
static char ID;
|
static char ID;
|
||||||
Filler(TargetMachine &tm)
|
Filler(TargetMachine &tm)
|
||||||
: MachineFunctionPass(ID), TM(tm), TII(tm.getInstrInfo()) { }
|
: MachineFunctionPass(ID), TM(tm), TII(tm.getInstrInfo()) { }
|
||||||
|
|
||||||
virtual const char *getPassName() const {
|
virtual const char *getPassName() const {
|
||||||
@@ -55,18 +55,22 @@ namespace {
|
|||||||
/// Currently, we fill delay slots with NOPs. We assume there is only one
|
/// Currently, we fill delay slots with NOPs. We assume there is only one
|
||||||
/// delay slot per delayed instruction.
|
/// delay slot per delayed instruction.
|
||||||
bool Filler::
|
bool Filler::
|
||||||
runOnMachineBasicBlock(MachineBasicBlock &MBB)
|
runOnMachineBasicBlock(MachineBasicBlock &MBB)
|
||||||
{
|
{
|
||||||
bool Changed = false;
|
bool Changed = false;
|
||||||
for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ++I)
|
for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ++I) {
|
||||||
if (TM.getSubtarget<MipsSubtarget>().isMips1() &&
|
const TargetInstrDesc& Tid = I->getDesc();
|
||||||
I->getDesc().hasDelaySlot()) {
|
if (Tid.hasDelaySlot() &&
|
||||||
|
(TM.getSubtarget<MipsSubtarget>().isMips1() ||
|
||||||
|
Tid.isCall() || Tid.isBranch() || Tid.isReturn())) {
|
||||||
MachineBasicBlock::iterator J = I;
|
MachineBasicBlock::iterator J = I;
|
||||||
++J;
|
++J;
|
||||||
BuildMI(MBB, J, I->getDebugLoc(), TII->get(Mips::NOP));
|
BuildMI(MBB, J, I->getDebugLoc(), TII->get(Mips::NOP));
|
||||||
++FilledSlots;
|
++FilledSlots;
|
||||||
Changed = true;
|
Changed = true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return Changed;
|
return Changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user