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