diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-10-25 00:52:41 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-10-25 00:52:41 +0000 |
commit | c75704b9210873e6eb3b5cea8aa8dfb155d993ac (patch) | |
tree | 8f67e728ffd0b885e2d287fc9e0bcd8249b3a7ad /lib/CodeGen/PreAllocSplitting.cpp | |
parent | 586b75d53072cd09a36f56e8e62c0f196f8b1603 (diff) | |
download | external_llvm-c75704b9210873e6eb3b5cea8aa8dfb155d993ac.zip external_llvm-c75704b9210873e6eb3b5cea8aa8dfb155d993ac.tar.gz external_llvm-c75704b9210873e6eb3b5cea8aa8dfb155d993ac.tar.bz2 |
If val# def is ~0U, meaning it's defined by a PHI, and it's previously split, spill before the barrier because it's impossible to determine if all the defs are spilled in the same spill slot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58129 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PreAllocSplitting.cpp')
-rw-r--r-- | lib/CodeGen/PreAllocSplitting.cpp | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/lib/CodeGen/PreAllocSplitting.cpp b/lib/CodeGen/PreAllocSplitting.cpp index 18cac07..1b2b635 100644 --- a/lib/CodeGen/PreAllocSplitting.cpp +++ b/lib/CodeGen/PreAllocSplitting.cpp @@ -527,21 +527,23 @@ bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) { int SS; unsigned SpillIndex = 0; MachineInstr *SpillMI = NULL; - if (isAlreadySplit(CurrLI->reg, ValNo->id, SS)) { - // If it's already split, just restore the value. There is no need to spill - // the def again. - } else if (ValNo->def == ~0U) { + bool PrevSpilled = isAlreadySplit(CurrLI->reg, ValNo->id, SS); + if (ValNo->def == ~0U) { // If it's defined by a phi, we must split just before the barrier. MachineBasicBlock::iterator SpillPt = findSpillPoint(BarrierMBB, Barrier, RefsInMBB, SpillIndex); if (SpillPt == BarrierMBB->begin()) return false; // No gap to insert spill. // Add spill. - SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment()); + if (!PrevSpilled) + // If previously split, reuse the spill slot. + SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment()); TII->storeRegToStackSlot(*BarrierMBB, SpillPt, CurrLI->reg, true, SS, RC); SpillMI = prior(SpillPt); LIs->InsertMachineInstrInMaps(SpillMI, SpillIndex); - } else { + } else if (!PrevSpilled) { + // If it's already split, just restore the value. There is no need to spill + // the def again. // Check if it's possible to insert a spill after the def MI. MachineBasicBlock::iterator SpillPt = findNextEmptySlot(DefMBB, DefMI, SpillIndex); @@ -549,8 +551,8 @@ bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) { return false; // No gap to insert spill. SS = MFI->CreateStackObject(RC->getSize(), RC->getAlignment()); - // Add spill. The store instruction kills the register if def is before the - // barrier in the barrier block. + // Add spill. The store instruction kills the register if def is before + // the barrier in the barrier block. TII->storeRegToStackSlot(*DefMBB, SpillPt, CurrLI->reg, DefMBB == BarrierMBB, SS, RC); SpillMI = prior(SpillPt); @@ -567,7 +569,7 @@ bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) { // If live interval is spilled in the same block as the barrier, just // create a hole in the interval. if (!DefMBB || - (SpillIndex && SpillMI->getParent() == BarrierMBB)) { + (SpillMI && SpillMI->getParent() == BarrierMBB)) { UpdateIntervalForSplit(ValNo, LIs->getUseIndex(SpillIndex)+1, LIs->getDefIndex(RestoreIndex)); |