Privatize an unused part of the LiveIntervalUnion::Query interface.
[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   // Remove all inserted virtual registers.
99   void clear() { Segments.clear(); ++Tag; }
100
101   // Print union, using TRI to translate register names
102   void print(raw_ostream &OS, const TargetRegisterInfo *TRI) const;
103
104 #ifndef NDEBUG
105   // Verify the live intervals in this union and add them to the visited set.
106   void verify(LiveVirtRegBitSet& VisitedVRegs);
107 #endif
108
109   /// Cache a single interference test result in the form of two intersecting
110   /// segments. This allows efficiently iterating over the interferences. The
111   /// iteration logic is handled by LiveIntervalUnion::Query which may
112   /// filter interferences depending on the type of query.
113   class InterferenceResult {
114     friend class Query;
115
116     LiveInterval::iterator VirtRegI; // current position in VirtReg
117     SegmentIter LiveUnionI;          // current position in LiveUnion
118
119     // Internal ctor.
120     InterferenceResult(LiveInterval::iterator VRegI, SegmentIter UnionI)
121       : VirtRegI(VRegI), LiveUnionI(UnionI) {}
122
123   public:
124     // Public default ctor.
125     InterferenceResult(): VirtRegI(), LiveUnionI() {}
126
127     /// interference - Return the register that is interfering here.
128     LiveInterval *interference() const { return LiveUnionI.value(); }
129
130     // Note: this interface provides raw access to the iterators because the
131     // result has no way to tell if it's valid to dereference them.
132
133     // Access the VirtReg segment.
134     LiveInterval::iterator virtRegPos() const { return VirtRegI; }
135
136     // Access the LiveUnion segment.
137     const SegmentIter &liveUnionPos() const { return LiveUnionI; }
138   };
139
140   /// Query interferences between a single live virtual register and a live
141   /// interval union.
142   class Query {
143     LiveIntervalUnion *LiveUnion;
144     LiveInterval *VirtReg;
145     InterferenceResult FirstInterference;
146     SmallVector<LiveInterval*,4> InterferingVRegs;
147     bool CheckedFirstInterference;
148     bool SeenAllInterferences;
149     bool SeenUnspillableVReg;
150     unsigned Tag, UserTag;
151
152   public:
153     Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
154
155     Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
156       LiveUnion(LIU), VirtReg(VReg), CheckedFirstInterference(false),
157       SeenAllInterferences(false), SeenUnspillableVReg(false)
158     {}
159
160     void clear() {
161       LiveUnion = NULL;
162       VirtReg = NULL;
163       InterferingVRegs.clear();
164       CheckedFirstInterference = false;
165       SeenAllInterferences = false;
166       SeenUnspillableVReg = false;
167       Tag = 0;
168       UserTag = 0;
169     }
170
171     void init(unsigned UTag, LiveInterval *VReg, LiveIntervalUnion *LIU) {
172       assert(VReg && LIU && "Invalid arguments");
173       if (UserTag == UTag && VirtReg == VReg &&
174           LiveUnion == LIU && !LIU->changedSince(Tag)) {
175         // Retain cached results, e.g. firstInterference.
176         return;
177       }
178       clear();
179       LiveUnion = LIU;
180       VirtReg = VReg;
181       Tag = LIU->getTag();
182       UserTag = UTag;
183     }
184
185     LiveInterval &virtReg() const {
186       assert(VirtReg && "uninitialized");
187       return *VirtReg;
188     }
189
190     // Does this live virtual register interfere with the union?
191     bool checkInterference() { return isInterference(firstInterference()); }
192
193     // Count the virtual registers in this union that interfere with this
194     // query's live virtual register, up to maxInterferingRegs.
195     unsigned collectInterferingVRegs(unsigned MaxInterferingRegs = UINT_MAX);
196
197     // Was this virtual register visited during collectInterferingVRegs?
198     bool isSeenInterference(LiveInterval *VReg) const;
199
200     // Did collectInterferingVRegs collect all interferences?
201     bool seenAllInterferences() const { return SeenAllInterferences; }
202
203     // Did collectInterferingVRegs encounter an unspillable vreg?
204     bool seenUnspillableVReg() const { return SeenUnspillableVReg; }
205
206     // Vector generated by collectInterferingVRegs.
207     const SmallVectorImpl<LiveInterval*> &interferingVRegs() const {
208       return InterferingVRegs;
209     }
210
211     /// checkLoopInterference - Return true if there is interference overlapping
212     /// Loop.
213     bool checkLoopInterference(MachineLoopRange*);
214
215   private:
216     Query(const Query&);          // DO NOT IMPLEMENT
217     void operator=(const Query&); // DO NOT IMPLEMENT
218
219     // Private interface for queries
220     const InterferenceResult &firstInterference();
221     bool nextInterference(InterferenceResult &IR) const;
222     void findIntersection(InterferenceResult &IR) const;
223
224     bool isInterference(const InterferenceResult &IR) const {
225       if (IR.VirtRegI != VirtReg->end()) {
226         assert(overlap(*IR.VirtRegI, IR.LiveUnionI) &&
227                "invalid segment iterators");
228         return true;
229       }
230       return false;
231     }
232   };
233 };
234
235 } // end namespace llvm
236
237 #endif // !defined(LLVM_CODEGEN_LIVEINTERVALUNION)