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