19
19
// ===----------------------------------------------------------------------===//
20
20
21
21
#include " llvm/CodeGen/LiveInterval.h"
22
+
23
+ #include " PHIEliminationUtils.h"
22
24
#include " RegisterCoalescer.h"
23
25
#include " llvm/ADT/STLExtras.h"
24
26
#include " llvm/ADT/SmallSet.h"
25
27
#include " llvm/CodeGen/LiveIntervalAnalysis.h"
28
+ #include " llvm/CodeGen/MachineInstrBuilder.h"
26
29
#include " llvm/CodeGen/MachineRegisterInfo.h"
27
30
#include " llvm/Support/Debug.h"
28
31
#include " llvm/Support/raw_ostream.h"
32
+ #include " llvm/Target/TargetInstrInfo.h"
29
33
#include " llvm/Target/TargetRegisterInfo.h"
30
34
#include < algorithm>
31
35
using namespace llvm ;
@@ -1654,19 +1658,65 @@ void ConnectedSubRegClasses::distribute(const IntEqClasses &Classes,
1654
1658
}
1655
1659
}
1656
1660
1661
+ static bool subRangeLiveAt (const LiveInterval &LI, SlotIndex Pos) {
1662
+ for (const LiveInterval::SubRange &SR : LI.subranges ()) {
1663
+ if (SR.liveAt (Pos))
1664
+ return true ;
1665
+ }
1666
+ return false ;
1667
+ }
1668
+
1657
1669
void ConnectedSubRegClasses::computeMainRangesFixFlags (
1658
1670
const IntEqClasses &Classes,
1659
1671
const SmallVectorImpl<SubRangeInfo> &SubRangeInfos,
1660
1672
const SmallVectorImpl<LiveInterval*> &Intervals) const {
1661
1673
BumpPtrAllocator &Allocator = LIS.getVNInfoAllocator ();
1674
+ const SlotIndexes &Indexes = *LIS.getSlotIndexes ();
1662
1675
for (size_t I = 0 , E = Intervals.size (); I < E; ++I) {
1663
- LiveInterval *LI = Intervals[I];
1664
- LI->removeEmptySubRanges ();
1676
+ LiveInterval &LI = *Intervals[I];
1677
+ unsigned Reg = LI.reg ;
1678
+
1679
+ // There must be a def (or live-in) before every use. Splitting vregs may
1680
+ // violate this principle as the splitted vreg may not have a definition on
1681
+ // every path. Fix this by creating IMPLICIT_DEF instruction as necessary.
1682
+ VNInfo::Allocator &VNInfoAllocator = LIS.getVNInfoAllocator ();
1683
+ for (const LiveInterval::SubRange &SR : LI.subranges ()) {
1684
+ // Search for "PHI" value numbers in the subranges. We must find a live
1685
+ // value in each predecessor block, add an IMPLICIT_DEF where it is
1686
+ // missing.
1687
+ for (unsigned I = 0 ; I < SR.valnos .size (); ++I) {
1688
+ const VNInfo &VNI = *SR.valnos [I];
1689
+ if (VNI.isUnused () || !VNI.isPHIDef ())
1690
+ continue ;
1691
+
1692
+ SlotIndex Def = VNI.def ;
1693
+ MachineBasicBlock &MBB = *Indexes.getMBBFromIndex (Def);
1694
+ for (MachineBasicBlock *PredMBB : MBB.predecessors ()) {
1695
+ SlotIndex PredEnd = Indexes.getMBBEndIdx (PredMBB);
1696
+ if (subRangeLiveAt (LI, PredEnd.getPrevSlot ()))
1697
+ continue ;
1698
+
1699
+ MachineBasicBlock::iterator InsertPos =
1700
+ llvm::findPHICopyInsertPoint (PredMBB, &MBB, Reg);
1701
+ const MCInstrDesc &MCDesc = TII.get (TargetOpcode::IMPLICIT_DEF);
1702
+ MachineInstrBuilder ImpDef = BuildMI (*PredMBB, InsertPos,
1703
+ DebugLoc (), MCDesc, Reg);
1704
+ SlotIndex DefIdx = LIS.InsertMachineInstrInMaps (*ImpDef);
1705
+ SlotIndex RegDefIdx = DefIdx.getRegSlot ();
1706
+ for (LiveInterval::SubRange &SR : LI.subranges ()) {
1707
+ VNInfo *SRVNI = SR.getNextValue (RegDefIdx, VNInfoAllocator);
1708
+ SR.addSegment (LiveRange::Segment (RegDefIdx, PredEnd, SRVNI));
1709
+ }
1710
+ }
1711
+ }
1712
+ }
1713
+
1714
+ LI.removeEmptySubRanges ();
1665
1715
if (I == 0 )
1666
- LI-> clear ();
1667
- LI-> constructMainRangeFromSubranges (*LIS.getSlotIndexes (), Allocator);
1716
+ LI. clear ();
1717
+ LI. constructMainRangeFromSubranges (*LIS.getSlotIndexes (), Allocator);
1668
1718
1669
- for (MachineOperand &MO : MRI.reg_nodbg_operands (LI-> reg )) {
1719
+ for (MachineOperand &MO : MRI.reg_nodbg_operands (Reg )) {
1670
1720
if (!MO.isDef ())
1671
1721
continue ;
1672
1722
unsigned SubRegIdx = MO.getSubReg ();
@@ -1677,12 +1727,12 @@ void ConnectedSubRegClasses::computeMainRangesFixFlags(
1677
1727
// flags in these cases.
1678
1728
if (!MO.isUndef ()) {
1679
1729
SlotIndex Pos = LIS.getInstructionIndex (*MO.getParent ());
1680
- if (!LI-> liveAt (Pos.getBaseIndex ()))
1730
+ if (!LI. liveAt (Pos.getBaseIndex ()))
1681
1731
MO.setIsUndef ();
1682
1732
}
1683
1733
if (!MO.isDead ()) {
1684
1734
SlotIndex Pos = LIS.getInstructionIndex (*MO.getParent ());
1685
- if (!LI-> liveAt (Pos.getDeadSlot ()))
1735
+ if (!LI. liveAt (Pos.getDeadSlot ()))
1686
1736
MO.setIsDead ();
1687
1737
}
1688
1738
}
0 commit comments