mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
R600: Factorize Fetch size limit inside AMDGPUSubTarget
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182122 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9a9e936650
commit
dcfcf1d1ff
@ -37,6 +37,7 @@ AMDGPUSubtarget::AMDGPUSubtarget(StringRef TT, StringRef CPU, StringRef FS) :
|
||||
ParseSubtargetFeatures(GPU, FS);
|
||||
DevName = GPU;
|
||||
Device = AMDGPUDeviceInfo::getDeviceFromName(DevName, this, Is64bit);
|
||||
TexVTXClauseSize = (Device->getGeneration() >= AMDGPUDeviceInfo::HD4XXX)?16:8;
|
||||
}
|
||||
|
||||
AMDGPUSubtarget::~AMDGPUSubtarget() {
|
||||
@ -57,6 +58,10 @@ bool
|
||||
AMDGPUSubtarget::hasVertexCache() const {
|
||||
return HasVertexCache;
|
||||
}
|
||||
short
|
||||
AMDGPUSubtarget::getTexVTXClauseSize() const {
|
||||
return TexVTXClauseSize;
|
||||
}
|
||||
bool
|
||||
AMDGPUSubtarget::isTargetELF() const {
|
||||
return false;
|
||||
|
@ -37,6 +37,7 @@ private:
|
||||
bool DumpCode;
|
||||
bool R600ALUInst;
|
||||
bool HasVertexCache;
|
||||
short TexVTXClauseSize;
|
||||
|
||||
InstrItineraryData InstrItins;
|
||||
|
||||
@ -50,6 +51,7 @@ public:
|
||||
bool isOverride(AMDGPUDeviceInfo::Caps) const;
|
||||
bool is64bit() const;
|
||||
bool hasVertexCache() const;
|
||||
short getTexVTXClauseSize() const;
|
||||
|
||||
// Helper functions to simplify if statements
|
||||
bool isTargetELF() const;
|
||||
|
@ -148,7 +148,7 @@ private:
|
||||
for (MachineBasicBlock::iterator E = MBB.end(); I != E; ++I) {
|
||||
if (IsTrivialInst(I))
|
||||
continue;
|
||||
if (AluInstCount > MaxFetchInst)
|
||||
if (AluInstCount >= MaxFetchInst)
|
||||
break;
|
||||
if ((IsTex && !TII->usesTextureCache(I)) ||
|
||||
(!IsTex && !TII->usesVertexCache(I)))
|
||||
@ -316,10 +316,7 @@ public:
|
||||
TRI(TII->getRegisterInfo()),
|
||||
ST(tm.getSubtarget<AMDGPUSubtarget>()) {
|
||||
const AMDGPUSubtarget &ST = tm.getSubtarget<AMDGPUSubtarget>();
|
||||
if (ST.device()->getGeneration() <= AMDGPUDeviceInfo::HD4XXX)
|
||||
MaxFetchInst = 8;
|
||||
else
|
||||
MaxFetchInst = 16;
|
||||
MaxFetchInst = ST.getTexVTXClauseSize();
|
||||
}
|
||||
|
||||
virtual bool runOnMachineFunction(MachineFunction &MF) {
|
||||
|
@ -41,11 +41,7 @@ void R600SchedStrategy::initialize(ScheduleDAGMI *dag) {
|
||||
|
||||
|
||||
const AMDGPUSubtarget &ST = DAG->TM.getSubtarget<AMDGPUSubtarget>();
|
||||
if (ST.device()->getGeneration() <= AMDGPUDeviceInfo::HD5XXX) {
|
||||
InstKindLimit[IDFetch] = 7; // 8 minus 1 for security
|
||||
} else {
|
||||
InstKindLimit[IDFetch] = 15; // 16 minus 1 for security
|
||||
}
|
||||
InstKindLimit[IDFetch] = ST.getTexVTXClauseSize();
|
||||
}
|
||||
|
||||
void R600SchedStrategy::MoveUnits(ReadyQueue *QSrc, ReadyQueue *QDst)
|
||||
@ -67,9 +63,9 @@ SUnit* R600SchedStrategy::pickNode(bool &IsTopNode) {
|
||||
|
||||
// check if we might want to switch current clause type
|
||||
bool AllowSwitchToAlu = (CurInstKind == IDOther) ||
|
||||
(CurEmitted > InstKindLimit[CurInstKind]) ||
|
||||
(CurEmitted >= InstKindLimit[CurInstKind]) ||
|
||||
(Available[CurInstKind]->empty());
|
||||
bool AllowSwitchFromAlu = (CurEmitted > InstKindLimit[CurInstKind]) &&
|
||||
bool AllowSwitchFromAlu = (CurEmitted >= InstKindLimit[CurInstKind]) &&
|
||||
(!Available[IDFetch]->empty() || !Available[IDOther]->empty());
|
||||
|
||||
if ((AllowSwitchToAlu && CurInstKind != IDAlu) ||
|
||||
@ -77,7 +73,7 @@ SUnit* R600SchedStrategy::pickNode(bool &IsTopNode) {
|
||||
// try to pick ALU
|
||||
SU = pickAlu();
|
||||
if (SU) {
|
||||
if (CurEmitted > InstKindLimit[IDAlu])
|
||||
if (CurEmitted >= InstKindLimit[IDAlu])
|
||||
CurEmitted = 0;
|
||||
NextInstKind = IDAlu;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user