mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 13:44:28 +00:00
First pass at checking for the creation of a new join point when doing pre-alloc splitting. This is not turned on yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58726 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3eb22e835f
commit
f1f75b1bd1
@ -17,6 +17,7 @@
|
||||
#define DEBUG_TYPE "pre-alloc-split"
|
||||
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
||||
#include "llvm/CodeGen/LiveStackAnalysis.h"
|
||||
#include "llvm/CodeGen/MachineDominators.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
#include "llvm/CodeGen/MachineLoopInfo.h"
|
||||
@ -89,6 +90,10 @@ namespace {
|
||||
AU.addPreservedID(StrongPHIEliminationID);
|
||||
else
|
||||
AU.addPreservedID(PHIEliminationID);
|
||||
AU.addRequired<MachineDominatorTree>();
|
||||
AU.addRequired<MachineLoopInfo>();
|
||||
AU.addPreserved<MachineDominatorTree>();
|
||||
AU.addPreserved<MachineLoopInfo>();
|
||||
MachineFunctionPass::getAnalysisUsage(AU);
|
||||
}
|
||||
|
||||
@ -145,6 +150,9 @@ namespace {
|
||||
bool SplitRegLiveInterval(LiveInterval*);
|
||||
|
||||
bool SplitRegLiveIntervals(const TargetRegisterClass **);
|
||||
|
||||
bool createsNewJoin(LiveRange* LR, MachineBasicBlock* DefMBB,
|
||||
MachineBasicBlock* BarrierMBB);
|
||||
};
|
||||
} // end anonymous namespace
|
||||
|
||||
@ -817,6 +825,71 @@ PreAllocSplitting::SplitRegLiveIntervals(const TargetRegisterClass **RCs) {
|
||||
return Change;
|
||||
}
|
||||
|
||||
bool PreAllocSplitting::createsNewJoin(LiveRange* LR,
|
||||
MachineBasicBlock* DefMBB,
|
||||
MachineBasicBlock* BarrierMBB) {
|
||||
if (DefMBB == BarrierMBB)
|
||||
return false;
|
||||
|
||||
if (LR->valno->hasPHIKill)
|
||||
return false;
|
||||
|
||||
unsigned MBBEnd = LIs->getMBBEndIdx(BarrierMBB);
|
||||
if (LR->end < MBBEnd)
|
||||
return false;
|
||||
|
||||
MachineLoopInfo& MLI = getAnalysis<MachineLoopInfo>();
|
||||
if (MLI.getLoopFor(DefMBB) != MLI.getLoopFor(BarrierMBB))
|
||||
return true;
|
||||
|
||||
MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
|
||||
SmallPtrSet<MachineBasicBlock*, 4> Visited;
|
||||
typedef std::pair<MachineBasicBlock*,
|
||||
MachineBasicBlock::succ_iterator> ItPair;
|
||||
SmallVector<ItPair, 4> Stack;
|
||||
Stack.push_back(std::make_pair(BarrierMBB, BarrierMBB->succ_begin()));
|
||||
|
||||
while (!Stack.empty()) {
|
||||
ItPair P = Stack.back();
|
||||
Stack.pop_back();
|
||||
|
||||
MachineBasicBlock* PredMBB = P.first;
|
||||
MachineBasicBlock::succ_iterator S = P.second;
|
||||
|
||||
if (S == PredMBB->succ_end())
|
||||
continue;
|
||||
else if (Visited.count(*S)) {
|
||||
Stack.push_back(std::make_pair(PredMBB, ++S));
|
||||
continue;
|
||||
} else
|
||||
Stack.push_back(std::make_pair(PredMBB, ++S));
|
||||
|
||||
MachineBasicBlock* MBB = *S;
|
||||
Visited.insert(MBB);
|
||||
|
||||
if (MBB == BarrierMBB)
|
||||
return true;
|
||||
|
||||
MachineDomTreeNode* DefMDTN = MDT.getNode(DefMBB);
|
||||
MachineDomTreeNode* BarrierMDTN = MDT.getNode(BarrierMBB);
|
||||
MachineDomTreeNode* MDTN = MDT.getNode(MBB)->getIDom();
|
||||
while (MDTN) {
|
||||
if (MDTN == DefMDTN)
|
||||
return true;
|
||||
else if (MDTN == BarrierMDTN)
|
||||
break;
|
||||
MDTN = MDTN->getIDom();
|
||||
}
|
||||
|
||||
MBBEnd = LIs->getMBBEndIdx(MBB);
|
||||
if (LR->end > MBBEnd)
|
||||
Stack.push_back(std::make_pair(MBB, MBB->succ_begin()));
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
bool PreAllocSplitting::runOnMachineFunction(MachineFunction &MF) {
|
||||
CurrMF = &MF;
|
||||
TM = &MF.getTarget();
|
||||
|
Loading…
Reference in New Issue
Block a user