forked from OSchip/llvm-project
A pass to remove the worst of the replay trap offenders, and as a bonus, align basic blocks when it is free to do so
llvm-svn: 30467
This commit is contained in:
parent
51cb632a1b
commit
f23e3bfcb2
|
@ -31,6 +31,8 @@ namespace llvm {
|
||||||
FunctionPass *createAlphaPatternInstructionSelector(TargetMachine &TM);
|
FunctionPass *createAlphaPatternInstructionSelector(TargetMachine &TM);
|
||||||
FunctionPass *createAlphaCodeEmitterPass(AlphaTargetMachine &TM,
|
FunctionPass *createAlphaCodeEmitterPass(AlphaTargetMachine &TM,
|
||||||
MachineCodeEmitter &MCE);
|
MachineCodeEmitter &MCE);
|
||||||
|
FunctionPass *createAlphaLLRPPass(AlphaTargetMachine &tm);
|
||||||
|
|
||||||
} // end namespace llvm;
|
} // end namespace llvm;
|
||||||
|
|
||||||
// Defines symbolic names for Alpha registers. This defines a mapping from
|
// Defines symbolic names for Alpha registers. This defines a mapping from
|
||||||
|
|
|
@ -0,0 +1,143 @@
|
||||||
|
//===-- AlphaLLRP.cpp - Alpha Load Load Replay Trap elimination pass. -- --===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file was developed by Andrew Lenharth and is distributed under the
|
||||||
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// Here we check for potential replay traps introduced by the spiller
|
||||||
|
// We also align some branch targets if we can do so for free
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
|
||||||
|
#include "Alpha.h"
|
||||||
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||||
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||||
|
#include "llvm/ADT/SetOperations.h"
|
||||||
|
#include "llvm/ADT/Statistic.h"
|
||||||
|
#include "llvm/Support/CommandLine.h"
|
||||||
|
using namespace llvm;
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
Statistic<> nopintro("alpha-nops", "Number of nops inserted");
|
||||||
|
Statistic<> nopalign("alpha-nops-align",
|
||||||
|
"Number of nops inserted for alignment");
|
||||||
|
|
||||||
|
cl::opt<bool>
|
||||||
|
AlignAll("alpha-align-all", cl::Hidden,
|
||||||
|
cl::desc("Align all blocks"));
|
||||||
|
|
||||||
|
struct AlphaLLRPPass : public MachineFunctionPass {
|
||||||
|
/// Target machine description which we query for reg. names, data
|
||||||
|
/// layout, etc.
|
||||||
|
///
|
||||||
|
AlphaTargetMachine &TM;
|
||||||
|
|
||||||
|
AlphaLLRPPass(AlphaTargetMachine &tm) : TM(tm) { }
|
||||||
|
|
||||||
|
virtual const char *getPassName() const {
|
||||||
|
return "Alpha NOP inserter";
|
||||||
|
}
|
||||||
|
|
||||||
|
bool runOnMachineFunction(MachineFunction &F) {
|
||||||
|
bool Changed = false;
|
||||||
|
MachineInstr* prev[3] = {0,0,0};
|
||||||
|
unsigned count = 0;
|
||||||
|
for (MachineFunction::iterator FI = F.begin(), FE = F.end();
|
||||||
|
FI != FE; ++FI) {
|
||||||
|
MachineBasicBlock& MBB = *FI;
|
||||||
|
bool ub = false;
|
||||||
|
for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ) {
|
||||||
|
if (count%4 == 0)
|
||||||
|
prev[0] = prev[1] = prev[2] = 0; //Slots cleared at fetch boundary
|
||||||
|
++count;
|
||||||
|
MachineInstr *MI = I++;
|
||||||
|
switch (MI->getOpcode()) {
|
||||||
|
case Alpha::LDQ: case Alpha::LDL:
|
||||||
|
case Alpha::LDWU: case Alpha::LDBU:
|
||||||
|
case Alpha::LDT: case Alpha::LDS:
|
||||||
|
|
||||||
|
case Alpha::STQ: case Alpha::STL:
|
||||||
|
case Alpha::STW: case Alpha::STB:
|
||||||
|
case Alpha::STT: case Alpha::STS:
|
||||||
|
if (MI->getOperand(2).getReg() == Alpha::R30) {
|
||||||
|
if (prev[0]
|
||||||
|
&& prev[0]->getOperand(2).getReg() ==
|
||||||
|
MI->getOperand(2).getReg()
|
||||||
|
&& prev[0]->getOperand(1).getImmedValue() ==
|
||||||
|
MI->getOperand(1).getImmedValue()) {
|
||||||
|
prev[0] = prev[1];
|
||||||
|
prev[1] = prev[2];
|
||||||
|
prev[2] = 0;
|
||||||
|
BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
|
||||||
|
.addReg(Alpha::R31);
|
||||||
|
Changed = true; nopintro += 1;
|
||||||
|
count += 1;
|
||||||
|
} else if (prev[1]
|
||||||
|
&& prev[1]->getOperand(2).getReg() ==
|
||||||
|
MI->getOperand(2).getReg()
|
||||||
|
&& prev[1]->getOperand(1).getImmedValue() ==
|
||||||
|
MI->getOperand(1).getImmedValue()) {
|
||||||
|
prev[0] = prev[2];
|
||||||
|
prev[1] = prev[2] = 0;
|
||||||
|
BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
|
||||||
|
.addReg(Alpha::R31);
|
||||||
|
BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
|
||||||
|
.addReg(Alpha::R31);
|
||||||
|
Changed = true; nopintro += 2;
|
||||||
|
count += 2;
|
||||||
|
} else if (prev[2]
|
||||||
|
&& prev[2]->getOperand(2).getReg() ==
|
||||||
|
MI->getOperand(2).getReg()
|
||||||
|
&& prev[2]->getOperand(1).getImmedValue() ==
|
||||||
|
MI->getOperand(1).getImmedValue()) {
|
||||||
|
prev[0] = prev[1] = prev[2] = 0;
|
||||||
|
BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
|
||||||
|
.addReg(Alpha::R31);
|
||||||
|
BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
|
||||||
|
.addReg(Alpha::R31);
|
||||||
|
BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
|
||||||
|
.addReg(Alpha::R31);
|
||||||
|
Changed = true; nopintro += 3;
|
||||||
|
count += 3;
|
||||||
|
}
|
||||||
|
prev[0] = prev[1];
|
||||||
|
prev[1] = prev[2];
|
||||||
|
prev[2] = MI;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
//fall through
|
||||||
|
case Alpha::BR:
|
||||||
|
case Alpha::JMP:
|
||||||
|
ub = true;
|
||||||
|
//fall through
|
||||||
|
default:
|
||||||
|
prev[0] = prev[1];
|
||||||
|
prev[1] = prev[2];
|
||||||
|
prev[2] = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (ub || AlignAll) {
|
||||||
|
//we can align stuff for free at this point
|
||||||
|
while (count % 4) {
|
||||||
|
BuildMI(MBB, MBB.end(), Alpha::BIS, 2, Alpha::R31)
|
||||||
|
.addReg(Alpha::R31).addReg(Alpha::R31);
|
||||||
|
++count;
|
||||||
|
++nopalign;
|
||||||
|
prev[0] = prev[1];
|
||||||
|
prev[1] = prev[2];
|
||||||
|
prev[2] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Changed;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // end of anonymous namespace
|
||||||
|
|
||||||
|
FunctionPass *llvm::createAlphaLLRPPass(AlphaTargetMachine &tm) {
|
||||||
|
return new AlphaLLRPPass(tm);
|
||||||
|
}
|
|
@ -77,6 +77,7 @@ bool AlphaTargetMachine::addPreEmitPass(FunctionPassManager &PM, bool Fast) {
|
||||||
}
|
}
|
||||||
bool AlphaTargetMachine::addAssemblyEmitter(FunctionPassManager &PM, bool Fast,
|
bool AlphaTargetMachine::addAssemblyEmitter(FunctionPassManager &PM, bool Fast,
|
||||||
std::ostream &Out) {
|
std::ostream &Out) {
|
||||||
|
PM.add(createAlphaLLRPPass(*this));
|
||||||
PM.add(createAlphaCodePrinterPass(Out, *this));
|
PM.add(createAlphaCodePrinterPass(Out, *this));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue