Rework the global split cost calculation.
[oota-llvm.git] / lib / CodeGen / LiveIntervalUnion.h
1 //===-- LiveIntervalUnion.h - Live interval union data struct --*- 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 // LiveIntervalUnion is a union of live segments across multiple live virtual
11 // registers. This may be used during coalescing to represent a congruence
12 // class, or during register allocation to model liveness of a physical
13 // register.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_CODEGEN_LIVEINTERVALUNION
18 #define LLVM_CODEGEN_LIVEINTERVALUNION
19
20 #include "llvm/ADT/IntervalMap.h"
21 #include "llvm/CodeGen/LiveInterval.h"
22
23 #include <algorithm>
24
25 namespace llvm {
26
27 class MachineLoopRange;
28 class TargetRegisterInfo;
29
30 #ifndef NDEBUG
31 // forward declaration
32 template <unsigned Element> class SparseBitVector;
33 typedef SparseBitVector<128> LiveVirtRegBitSet;
34 #endif
35
36 /// Compare a live virtual register segment to a LiveIntervalUnion segment.
37 inline bool
38 overlap(const LiveRange &VRSeg,
39         const IntervalMap<SlotIndex, LiveInterval*>::const_iterator &LUSeg) {
40   return VRSeg.start < LUSeg.stop() && LUSeg.start() < VRSeg.end;
41 }
42
43 /// Union of live intervals that are strong candidates for coalescing into a
44 /// single register (either physical or virtual depending on the context).  We
45 /// expect the constituent live intervals to be disjoint, although we may
46 /// eventually make exceptions to handle value-based interference.
47 class LiveIntervalUnion {
48   // A set of live virtual register segments that supports fast insertion,
49   // intersection, and removal.
50   // Mapping SlotIndex intervals to virtual register numbers.
51   typedef IntervalMap<SlotIndex, LiveInterval*> LiveSegments;
52
53 public:
54   // SegmentIter can advance to the next segment ordered by starting position
55   // which may belong to a different live virtual register. We also must be able
56   // to reach the current segment's containing virtual register.
57   typedef LiveSegments::iterator SegmentIter;
58
59   // LiveIntervalUnions share an external allocator.
60   typedef LiveSegments::Allocator Allocator;
61
62   class InterferenceResult;
63   class Query;
64
65 private:
66   const unsigned RepReg;  // representative register number
67   unsigned Tag;           // unique tag for current contents.
68   LiveSegments Segments;  // union of virtual reg segments
69
70 public:
71   LiveIntervalUnion(unsigned r, Allocator &a) : RepReg(r), Tag(0), Segments(a)
72     {}
73
74   // Iterate over all segments in the union of live virtual registers ordered
75   // by their starting position.
76   SegmentIter begin() { return Segments.begin(); }
77   SegmentIter end() { return Segments.end(); }
78   SegmentIter find(SlotIndex x) { return Segments.find(x); }
79   bool empty() const { return Segments.empty(); }
80   SlotIndex startIndex() const { return Segments.start(); }
81
82   // Provide public access to the underlying map to allow overlap iteration.
83   typedef LiveSegments Map;
84   const Map &getMap() { return Segments; }
85
86   /// getTag - Return an opaque tag representing the current state of the union.
87   unsigned getTag() const { return Tag; }
88
89   /// changedSince - Return true if the union change since getTag returned tag.
90   bool changedSince(unsigned tag) const { return tag != Tag; }
91
92   // Add a live virtual register to this union and merge its segments.
93   void unify(LiveInterval &VirtReg);
94
95   // Remove a live virtual register's segments from this union.
96   void extract(LiveInterval &VirtReg);
97
98   // Print union, using TRI to translate register names
99   void print(raw_ostream &OS, const TargetRegisterInfo *TRI) const;
100
101 #ifndef NDEBUG
102   // Verify the live intervals in this union and add them to the visited set.
103   void verify(LiveVirtRegBitSet& VisitedVRegs);
104 #endif
105
106   /// Cache a single interference test result in the form of two intersecting
107   /// segments. This allows efficiently iterating over the interferences. The
108   /// iteration logic is handled by LiveIntervalUnion::Query which may
109   /// filter interferences depending on the type of query.
110   class InterferenceResult {
111     friend class Query;
112
113     LiveInterval::iterator VirtRegI; // current position in VirtReg
114     SegmentIter LiveUnionI;          // current position in LiveUnion
115
116     // Internal ctor.
117     InterferenceResult(LiveInterval::iterator VRegI, SegmentIter UnionI)
118       : VirtRegI(VRegI), LiveUnionI(UnionI) {}
119
120   public:
121     // Public default ctor.
122     InterferenceResult(): VirtRegI(), LiveUnionI() {}
123
124     /// start - Return the start of the current overlap.
125     SlotIndex start() const {
126       return std::max(VirtRegI->start, LiveUnionI.start());
127     }
128
129     /// stop - Return the end of the current overlap.
130     SlotIndex stop() const {
131       return std::min(VirtRegI->end, LiveUnionI.stop());
132     }
133
134     /// interference - Return the register that is interfering here.
135     LiveInterval *interference() const { return LiveUnionI.value(); }
136
137     // Note: this interface provides raw access to the iterators because the
138     // result has no way to tell if it's valid to dereference them.
139
140     // Access the VirtReg segment.
141     LiveInterval::iterator virtRegPos() const { return VirtRegI; }
142
143     // Access the LiveUnion segment.
144     const SegmentIter &liveUnionPos() const { return LiveUnionI; }
145
146     bool operator==(const InterferenceResult &IR) const {
147       return VirtRegI == IR.VirtRegI && LiveUnionI == IR.LiveUnionI;
148     }
149     bool operator!=(const InterferenceResult &IR) const {
150       return !operator==(IR);
151     }
152
153     void print(raw_ostream &OS, const TargetRegisterInfo *TRI) const;
154   };
155
156   /// Query interferences between a single live virtual register and a live
157   /// interval union.
158   class Query {
159     LiveIntervalUnion *LiveUnion;
160     LiveInterval *VirtReg;
161     InterferenceResult FirstInterference;
162     SmallVector<LiveInterval*,4> InterferingVRegs;
163     bool CheckedFirstInterference;
164     bool SeenAllInterferences;
165     bool SeenUnspillableVReg;
166     unsigned Tag;
167
168   public:
169     Query(): LiveUnion(), VirtReg() {}
170
171     Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
172       LiveUnion(LIU), VirtReg(VReg), CheckedFirstInterference(false),
173       SeenAllInterferences(false), SeenUnspillableVReg(false)
174     {}
175
176     void clear() {
177       LiveUnion = NULL;
178       VirtReg = NULL;
179       InterferingVRegs.clear();
180       CheckedFirstInterference = false;
181       SeenAllInterferences = false;
182       SeenUnspillableVReg = false;
183       Tag = 0;
184     }
185
186     void init(LiveInterval *VReg, LiveIntervalUnion *LIU) {
187       assert(VReg && LIU && "Invalid arguments");
188       if (VirtReg == VReg && LiveUnion == LIU && !LIU->changedSince(Tag)) {
189         // Retain cached results, e.g. firstInterference.
190         return;
191       }
192       clear();
193       LiveUnion = LIU;
194       VirtReg = VReg;
195       Tag = LIU->getTag();
196     }
197
198     LiveInterval &virtReg() const {
199       assert(VirtReg && "uninitialized");
200       return *VirtReg;
201     }
202
203     bool isInterference(const InterferenceResult &IR) const {
204       if (IR.VirtRegI != VirtReg->end()) {
205         assert(overlap(*IR.VirtRegI, IR.LiveUnionI) &&
206                "invalid segment iterators");
207         return true;
208       }
209       return false;
210     }
211
212     // Does this live virtual register interfere with the union?
213     bool checkInterference() { return isInterference(firstInterference()); }
214
215     // Get the first pair of interfering segments, or a noninterfering result.
216     // This initializes the firstInterference_ cache.
217     const InterferenceResult &firstInterference();
218
219     // Treat the result as an iterator and advance to the next interfering pair
220     // of segments. Visiting each unique interfering pairs means that the same
221     // VirtReg or LiveUnion segment may be visited multiple times.
222     bool nextInterference(InterferenceResult &IR) const;
223
224     // Count the virtual registers in this union that interfere with this
225     // query's live virtual register, up to maxInterferingRegs.
226     unsigned collectInterferingVRegs(unsigned MaxInterferingRegs = UINT_MAX);
227
228     // Was this virtual register visited during collectInterferingVRegs?
229     bool isSeenInterference(LiveInterval *VReg) const;
230
231     // Did collectInterferingVRegs collect all interferences?
232     bool seenAllInterferences() const { return SeenAllInterferences; }
233
234     // Did collectInterferingVRegs encounter an unspillable vreg?
235     bool seenUnspillableVReg() const { return SeenUnspillableVReg; }
236
237     // Vector generated by collectInterferingVRegs.
238     const SmallVectorImpl<LiveInterval*> &interferingVRegs() const {
239       return InterferingVRegs;
240     }
241
242     /// checkLoopInterference - Return true if there is interference overlapping
243     /// Loop.
244     bool checkLoopInterference(MachineLoopRange*);
245
246     void print(raw_ostream &OS, const TargetRegisterInfo *TRI);
247   private:
248     Query(const Query&);          // DO NOT IMPLEMENT
249     void operator=(const Query&); // DO NOT IMPLEMENT
250
251     // Private interface for queries
252     void findIntersection(InterferenceResult &IR) const;
253   };
254 };
255
256 } // end namespace llvm
257
258 #endif // !defined(LLVM_CODEGEN_LIVEINTERVALUNION)