Delete dead code.
[oota-llvm.git] / lib / CodeGen / SplitKit.h
1 //===-------- SplitKit.h - Toolkit for splitting live ranges ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the SplitAnalysis class as well as mutator functions for
11 // live range splitting.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/ADT/DenseMap.h"
16 #include "llvm/ADT/IntervalMap.h"
17 #include "llvm/ADT/SmallPtrSet.h"
18 #include "llvm/CodeGen/SlotIndexes.h"
19
20 namespace llvm {
21
22 class ConnectedVNInfoEqClasses;
23 class LiveInterval;
24 class LiveIntervals;
25 class LiveRangeEdit;
26 class MachineInstr;
27 class MachineLoopInfo;
28 class MachineRegisterInfo;
29 class TargetInstrInfo;
30 class TargetRegisterInfo;
31 class VirtRegMap;
32 class VNInfo;
33 class raw_ostream;
34
35 /// At some point we should just include MachineDominators.h:
36 class MachineDominatorTree;
37 template <class NodeT> class DomTreeNodeBase;
38 typedef DomTreeNodeBase<MachineBasicBlock> MachineDomTreeNode;
39
40
41 /// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting
42 /// opportunities.
43 class SplitAnalysis {
44 public:
45   const MachineFunction &MF;
46   const VirtRegMap &VRM;
47   const LiveIntervals &LIS;
48   const MachineLoopInfo &Loops;
49   const TargetInstrInfo &TII;
50
51   // Instructions using the the current register.
52   typedef SmallPtrSet<const MachineInstr*, 16> InstrPtrSet;
53   InstrPtrSet UsingInstrs;
54
55   // Sorted slot indexes of using instructions.
56   SmallVector<SlotIndex, 8> UseSlots;
57
58   // The number of instructions using CurLI in each basic block.
59   typedef DenseMap<const MachineBasicBlock*, unsigned> BlockCountMap;
60   BlockCountMap UsingBlocks;
61
62   /// Additional information about basic blocks where the current variable is
63   /// live. Such a block will look like one of these templates:
64   ///
65   ///  1. |   o---x   | Internal to block. Variable is only live in this block.
66   ///  2. |---x       | Live-in, kill.
67   ///  3. |       o---| Def, live-out.
68   ///  4. |---x   o---| Live-in, kill, def, live-out.
69   ///  5. |---o---o---| Live-through with uses or defs.
70   ///  6. |-----------| Live-through without uses. Transparent.
71   ///
72   struct BlockInfo {
73     MachineBasicBlock *MBB;
74     SlotIndex FirstUse;   ///< First instr using current reg.
75     SlotIndex LastUse;    ///< Last instr using current reg.
76     SlotIndex Kill;       ///< Interval end point inside block.
77     SlotIndex Def;        ///< Interval start point inside block.
78     /// Last possible point for splitting live ranges.
79     SlotIndex LastSplitPoint;
80     bool Uses;            ///< Current reg has uses or defs in block.
81     bool LiveThrough;     ///< Live in whole block (Templ 5. or 6. above).
82     bool LiveIn;          ///< Current reg is live in.
83     bool LiveOut;         ///< Current reg is live out.
84
85     // Per-interference pattern scratch data.
86     bool OverlapEntry;    ///< Interference overlaps entering interval.
87     bool OverlapExit;     ///< Interference overlaps exiting interval.
88   };
89
90   /// Basic blocks where var is live. This array is parallel to
91   /// SpillConstraints.
92   SmallVector<BlockInfo, 8> LiveBlocks;
93
94 private:
95   // Current live interval.
96   const LiveInterval *CurLI;
97
98   // Sumarize statistics by counting instructions using CurLI.
99   void analyzeUses();
100
101   /// calcLiveBlockInfo - Compute per-block information about CurLI.
102   void calcLiveBlockInfo();
103
104   /// canAnalyzeBranch - Return true if MBB ends in a branch that can be
105   /// analyzed.
106   bool canAnalyzeBranch(const MachineBasicBlock *MBB);
107
108 public:
109   SplitAnalysis(const VirtRegMap &vrm, const LiveIntervals &lis,
110                 const MachineLoopInfo &mli);
111
112   /// analyze - set CurLI to the specified interval, and analyze how it may be
113   /// split.
114   void analyze(const LiveInterval *li);
115
116   /// clear - clear all data structures so SplitAnalysis is ready to analyze a
117   /// new interval.
118   void clear();
119
120   /// getParent - Return the last analyzed interval.
121   const LiveInterval &getParent() const { return *CurLI; }
122
123   /// hasUses - Return true if MBB has any uses of CurLI.
124   bool hasUses(const MachineBasicBlock *MBB) const {
125     return UsingBlocks.lookup(MBB);
126   }
127
128   /// isOriginalEndpoint - Return true if the original live range was killed or
129   /// (re-)defined at Idx. Idx should be the 'def' slot for a normal kill/def,
130   /// and 'use' for an early-clobber def.
131   /// This can be used to recognize code inserted by earlier live range
132   /// splitting.
133   bool isOriginalEndpoint(SlotIndex Idx) const;
134
135   typedef SmallPtrSet<const MachineBasicBlock*, 16> BlockPtrSet;
136
137   // Print a set of blocks with use counts.
138   void print(const BlockPtrSet&, raw_ostream&) const;
139
140   /// getMultiUseBlocks - Add basic blocks to Blocks that may benefit from
141   /// having CurLI split to a new live interval. Return true if Blocks can be
142   /// passed to SplitEditor::splitSingleBlocks.
143   bool getMultiUseBlocks(BlockPtrSet &Blocks);
144 };
145
146
147 /// LiveIntervalMap - Map values from a large LiveInterval into a small
148 /// interval that is a subset. Insert phi-def values as needed. This class is
149 /// used by SplitEditor to create new smaller LiveIntervals.
150 ///
151 /// ParentLI is the larger interval, LI is the subset interval. Every value
152 /// in LI corresponds to exactly one value in ParentLI, and the live range
153 /// of the value is contained within the live range of the ParentLI value.
154 /// Values in ParentLI may map to any number of OpenLI values, including 0.
155 class LiveIntervalMap {
156   LiveIntervals &LIS;
157   MachineDominatorTree &MDT;
158
159   // The parent interval is never changed.
160   const LiveInterval &ParentLI;
161
162   // The child interval's values are fully contained inside ParentLI values.
163   LiveInterval *LI;
164
165   typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
166   typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap;
167
168   // LiveOutCache - Map each basic block where LI is live out to the live-out
169   // value and its defining block. One of these conditions shall be true:
170   //
171   //  1. !LiveOutCache.count(MBB)
172   //  2. LiveOutCache[MBB].second.getNode() == MBB
173   //  3. forall P in preds(MBB): LiveOutCache[P] == LiveOutCache[MBB]
174   //
175   // This is only a cache, the values can be computed as:
176   //
177   //  VNI = LI->getVNInfoAt(LIS.getMBBEndIdx(MBB))
178   //  Node = mbt_[LIS.getMBBFromIndex(VNI->def)]
179   //
180   // The cache is also used as a visiteed set by mapValue().
181   LiveOutMap LiveOutCache;
182
183   // Dump the live-out cache to dbgs().
184   void dumpCache();
185
186 public:
187   LiveIntervalMap(LiveIntervals &lis,
188                   MachineDominatorTree &mdt,
189                   const LiveInterval &parentli)
190     : LIS(lis), MDT(mdt), ParentLI(parentli), LI(0) {}
191
192   /// reset - clear all data structures and start a new live interval.
193   void reset(LiveInterval *);
194
195   /// getLI - return the current live interval.
196   LiveInterval *getLI() const { return LI; }
197
198   /// mapValue - map ParentVNI to the corresponding LI value at Idx. It is
199   /// assumed that ParentVNI is live at Idx.
200   /// If ParentVNI has not been defined by defValue, it is assumed that
201   /// ParentVNI->def dominates Idx.
202   /// If ParentVNI has been defined by defValue one or more times, a value that
203   /// dominates Idx will be returned. This may require creating extra phi-def
204   /// values and adding live ranges to LI.
205   /// If simple is not NULL, *simple will indicate if ParentVNI is a simply
206   /// mapped value.
207   VNInfo *mapValue(const VNInfo *ParentVNI, SlotIndex Idx, bool *simple = 0);
208
209   // extendTo - Find the last LI value defined in MBB at or before Idx. The
210   // parentli is assumed to be live at Idx. Extend the live range to include
211   // Idx. Return the found VNInfo, or NULL.
212   VNInfo *extendTo(const MachineBasicBlock *MBB, SlotIndex Idx);
213 };
214
215
216 /// SplitEditor - Edit machine code and LiveIntervals for live range
217 /// splitting.
218 ///
219 /// - Create a SplitEditor from a SplitAnalysis.
220 /// - Start a new live interval with openIntv.
221 /// - Mark the places where the new interval is entered using enterIntv*
222 /// - Mark the ranges where the new interval is used with useIntv* 
223 /// - Mark the places where the interval is exited with exitIntv*.
224 /// - Finish the current interval with closeIntv and repeat from 2.
225 /// - Rewrite instructions with finish().
226 ///
227 class SplitEditor {
228   SplitAnalysis &SA;
229   LiveIntervals &LIS;
230   VirtRegMap &VRM;
231   MachineRegisterInfo &MRI;
232   MachineDominatorTree &MDT;
233   const TargetInstrInfo &TII;
234   const TargetRegisterInfo &TRI;
235
236   /// Edit - The current parent register and new intervals created.
237   LiveRangeEdit &Edit;
238
239   /// Index into Edit of the currently open interval.
240   /// The index 0 is used for the complement, so the first interval started by
241   /// openIntv will be 1.
242   unsigned OpenIdx;
243
244   typedef IntervalMap<SlotIndex, unsigned> RegAssignMap;
245
246   /// Allocator for the interval map. This will eventually be shared with
247   /// SlotIndexes and LiveIntervals.
248   RegAssignMap::Allocator Allocator;
249
250   /// RegAssign - Map of the assigned register indexes.
251   /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
252   /// Idx.
253   RegAssignMap RegAssign;
254
255   /// LIMappers - One LiveIntervalMap or each interval in Edit.
256   SmallVector<LiveIntervalMap, 4> LIMappers;
257
258   typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
259
260   /// Values - keep track of the mapping from parent values to values in the new
261   /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
262   ///
263   /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
264   /// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
265   ///    Each value is represented by a minimal live range at its def.
266   /// 3. A non-null VNInfo - the value is mapped to a single new value.
267   ///    The new value has no live ranges anywhere.
268   ValueMap Values;
269
270   /// defValue - define a value in RegIdx from ParentVNI at Idx.
271   /// Idx does not have to be ParentVNI->def, but it must be contained within
272   /// ParentVNI's live range in ParentLI. The new value is added to the value
273   /// map.
274   /// Return the new LI value.
275   VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
276
277   /// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
278   /// of the number of defs.
279   void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
280
281   /// defFromParent - Define Reg from ParentVNI at UseIdx using either
282   /// rematerialization or a COPY from parent. Return the new value.
283   VNInfo *defFromParent(unsigned RegIdx,
284                         VNInfo *ParentVNI,
285                         SlotIndex UseIdx,
286                         MachineBasicBlock &MBB,
287                         MachineBasicBlock::iterator I);
288
289   /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
290   void rewriteAssigned();
291
292   /// rewriteComponents - Rewrite all uses of Intv[0] according to the eq
293   /// classes in ConEQ.
294   /// This must be done when Intvs[0] is styill live at all uses, before calling
295   /// ConEq.Distribute().
296   void rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
297                          const ConnectedVNInfoEqClasses &ConEq);
298
299 public:
300   /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
301   /// Newly created intervals will be appended to newIntervals.
302   SplitEditor(SplitAnalysis &SA, LiveIntervals&, VirtRegMap&,
303               MachineDominatorTree&, LiveRangeEdit&);
304
305   /// getAnalysis - Get the corresponding analysis.
306   SplitAnalysis &getAnalysis() { return SA; }
307
308   /// Create a new virtual register and live interval.
309   void openIntv();
310
311   /// enterIntvBefore - Enter the open interval before the instruction at Idx.
312   /// If the parent interval is not live before Idx, a COPY is not inserted.
313   /// Return the beginning of the new live range.
314   SlotIndex enterIntvBefore(SlotIndex Idx);
315
316   /// enterIntvAtEnd - Enter the open interval at the end of MBB.
317   /// Use the open interval from he inserted copy to the MBB end.
318   /// Return the beginning of the new live range.
319   SlotIndex enterIntvAtEnd(MachineBasicBlock &MBB);
320
321   /// useIntv - indicate that all instructions in MBB should use OpenLI.
322   void useIntv(const MachineBasicBlock &MBB);
323
324   /// useIntv - indicate that all instructions in range should use OpenLI.
325   void useIntv(SlotIndex Start, SlotIndex End);
326
327   /// leaveIntvAfter - Leave the open interval after the instruction at Idx.
328   /// Return the end of the live range.
329   SlotIndex leaveIntvAfter(SlotIndex Idx);
330
331   /// leaveIntvBefore - Leave the open interval before the instruction at Idx.
332   /// Return the end of the live range.
333   SlotIndex leaveIntvBefore(SlotIndex Idx);
334
335   /// leaveIntvAtTop - Leave the interval at the top of MBB.
336   /// Add liveness from the MBB top to the copy.
337   /// Return the end of the live range.
338   SlotIndex leaveIntvAtTop(MachineBasicBlock &MBB);
339
340   /// overlapIntv - Indicate that all instructions in range should use the open
341   /// interval, but also let the complement interval be live.
342   ///
343   /// This doubles the register pressure, but is sometimes required to deal with
344   /// register uses after the last valid split point.
345   ///
346   /// The Start index should be a return value from a leaveIntv* call, and End
347   /// should be in the same basic block. The parent interval must have the same
348   /// value across the range.
349   ///
350   void overlapIntv(SlotIndex Start, SlotIndex End);
351
352   /// closeIntv - Indicate that we are done editing the currently open
353   /// LiveInterval, and ranges can be trimmed.
354   void closeIntv();
355
356   /// finish - after all the new live ranges have been created, compute the
357   /// remaining live range, and rewrite instructions to use the new registers.
358   void finish();
359
360   /// dump - print the current interval maping to dbgs().
361   void dump() const;
362
363   // ===--- High level methods ---===
364
365   /// splitSingleBlocks - Split CurLI into a separate live interval inside each
366   /// basic block in Blocks.
367   void splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks);
368 };
369
370 }