mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Eliminate MarkVirtRegAliveInBlock recursion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36943 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6603d7ec67
commit
56184904cd
@ -283,6 +283,8 @@ public:
|
||||
VarInfo &getVarInfo(unsigned RegIdx);
|
||||
|
||||
void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB);
|
||||
void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB,
|
||||
std::vector<MachineBasicBlock*> &WorkList);
|
||||
void HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
|
||||
MachineInstr *MI);
|
||||
};
|
||||
|
@ -112,7 +112,8 @@ bool LiveVariables::ModifiesRegister(MachineInstr *MI, unsigned Reg) const {
|
||||
}
|
||||
|
||||
void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
|
||||
MachineBasicBlock *MBB) {
|
||||
MachineBasicBlock *MBB,
|
||||
std::vector<MachineBasicBlock*> &WorkList) {
|
||||
unsigned BBNum = MBB->getNumber();
|
||||
|
||||
// Check to see if this basic block is one of the killing blocks. If so,
|
||||
@ -131,11 +132,23 @@ void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
|
||||
// Mark the variable known alive in this bb
|
||||
VRInfo.AliveBlocks[BBNum] = true;
|
||||
|
||||
for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
|
||||
E = MBB->pred_end(); PI != E; ++PI)
|
||||
MarkVirtRegAliveInBlock(VRInfo, *PI);
|
||||
for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(),
|
||||
E = MBB->pred_rend(); PI != E; ++PI)
|
||||
WorkList.push_back(*PI);
|
||||
}
|
||||
|
||||
void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
|
||||
MachineBasicBlock *MBB) {
|
||||
std::vector<MachineBasicBlock*> WorkList;
|
||||
MarkVirtRegAliveInBlock(VRInfo, MBB, WorkList);
|
||||
while (!WorkList.empty()) {
|
||||
MachineBasicBlock *Pred = WorkList.back();
|
||||
WorkList.pop_back();
|
||||
MarkVirtRegAliveInBlock(VRInfo, Pred, WorkList);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void LiveVariables::HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
|
||||
MachineInstr *MI) {
|
||||
assert(VRInfo.DefInst && "Register use before def!");
|
||||
|
Loading…
Reference in New Issue
Block a user