the various ConstantExpr::get*Ty methods existed to work with issues around
[llvm/stm8.git] / lib / CodeGen / LiveIntervalUnion.h
blob5e78d5e850290021080d033d2f306ff40ab16a76
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.
15 //===----------------------------------------------------------------------===//
17 #ifndef LLVM_CODEGEN_LIVEINTERVALUNION
18 #define LLVM_CODEGEN_LIVEINTERVALUNION
20 #include "llvm/ADT/IntervalMap.h"
21 #include "llvm/CodeGen/LiveInterval.h"
23 #include <algorithm>
25 namespace llvm {
27 class MachineLoopRange;
28 class TargetRegisterInfo;
30 #ifndef NDEBUG
31 // forward declaration
32 template <unsigned Element> class SparseBitVector;
33 typedef SparseBitVector<128> LiveVirtRegBitSet;
34 #endif
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;
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;
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;
59 // LiveIntervalUnions share an external allocator.
60 typedef LiveSegments::Allocator Allocator;
62 class InterferenceResult;
63 class Query;
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
70 public:
71 LiveIntervalUnion(unsigned r, Allocator &a) : RepReg(r), Tag(0), Segments(a)
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(); }
82 // Provide public access to the underlying map to allow overlap iteration.
83 typedef LiveSegments Map;
84 const Map &getMap() { return Segments; }
86 /// getTag - Return an opaque tag representing the current state of the union.
87 unsigned getTag() const { return Tag; }
89 /// changedSince - Return true if the union change since getTag returned tag.
90 bool changedSince(unsigned tag) const { return tag != Tag; }
92 // Add a live virtual register to this union and merge its segments.
93 void unify(LiveInterval &VirtReg);
95 // Remove a live virtual register's segments from this union.
96 void extract(LiveInterval &VirtReg);
98 // Remove all inserted virtual registers.
99 void clear() { Segments.clear(); ++Tag; }
101 // Print union, using TRI to translate register names
102 void print(raw_ostream &OS, const TargetRegisterInfo *TRI) const;
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
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;
116 LiveInterval::iterator VirtRegI; // current position in VirtReg
117 SegmentIter LiveUnionI; // current position in LiveUnion
119 // Internal ctor.
120 InterferenceResult(LiveInterval::iterator VRegI, SegmentIter UnionI)
121 : VirtRegI(VRegI), LiveUnionI(UnionI) {}
123 public:
124 // Public default ctor.
125 InterferenceResult(): VirtRegI(), LiveUnionI() {}
127 /// start - Return the start of the current overlap.
128 SlotIndex start() const {
129 return std::max(VirtRegI->start, LiveUnionI.start());
132 /// stop - Return the end of the current overlap.
133 SlotIndex stop() const {
134 return std::min(VirtRegI->end, LiveUnionI.stop());
137 /// interference - Return the register that is interfering here.
138 LiveInterval *interference() const { return LiveUnionI.value(); }
140 // Note: this interface provides raw access to the iterators because the
141 // result has no way to tell if it's valid to dereference them.
143 // Access the VirtReg segment.
144 LiveInterval::iterator virtRegPos() const { return VirtRegI; }
146 // Access the LiveUnion segment.
147 const SegmentIter &liveUnionPos() const { return LiveUnionI; }
149 bool operator==(const InterferenceResult &IR) const {
150 return VirtRegI == IR.VirtRegI && LiveUnionI == IR.LiveUnionI;
152 bool operator!=(const InterferenceResult &IR) const {
153 return !operator==(IR);
156 void print(raw_ostream &OS, const TargetRegisterInfo *TRI) const;
159 /// Query interferences between a single live virtual register and a live
160 /// interval union.
161 class Query {
162 LiveIntervalUnion *LiveUnion;
163 LiveInterval *VirtReg;
164 InterferenceResult FirstInterference;
165 SmallVector<LiveInterval*,4> InterferingVRegs;
166 bool CheckedFirstInterference;
167 bool SeenAllInterferences;
168 bool SeenUnspillableVReg;
169 unsigned Tag, UserTag;
171 public:
172 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
174 Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
175 LiveUnion(LIU), VirtReg(VReg), CheckedFirstInterference(false),
176 SeenAllInterferences(false), SeenUnspillableVReg(false)
179 void clear() {
180 LiveUnion = NULL;
181 VirtReg = NULL;
182 InterferingVRegs.clear();
183 CheckedFirstInterference = false;
184 SeenAllInterferences = false;
185 SeenUnspillableVReg = false;
186 Tag = 0;
187 UserTag = 0;
190 void init(unsigned UTag, LiveInterval *VReg, LiveIntervalUnion *LIU) {
191 assert(VReg && LIU && "Invalid arguments");
192 if (UserTag == UTag && VirtReg == VReg &&
193 LiveUnion == LIU && !LIU->changedSince(Tag)) {
194 // Retain cached results, e.g. firstInterference.
195 return;
197 clear();
198 LiveUnion = LIU;
199 VirtReg = VReg;
200 Tag = LIU->getTag();
201 UserTag = UTag;
204 LiveInterval &virtReg() const {
205 assert(VirtReg && "uninitialized");
206 return *VirtReg;
209 bool isInterference(const InterferenceResult &IR) const {
210 if (IR.VirtRegI != VirtReg->end()) {
211 assert(overlap(*IR.VirtRegI, IR.LiveUnionI) &&
212 "invalid segment iterators");
213 return true;
215 return false;
218 // Does this live virtual register interfere with the union?
219 bool checkInterference() { return isInterference(firstInterference()); }
221 // Get the first pair of interfering segments, or a noninterfering result.
222 // This initializes the firstInterference_ cache.
223 const InterferenceResult &firstInterference();
225 // Treat the result as an iterator and advance to the next interfering pair
226 // of segments. Visiting each unique interfering pairs means that the same
227 // VirtReg or LiveUnion segment may be visited multiple times.
228 bool nextInterference(InterferenceResult &IR) const;
230 // Count the virtual registers in this union that interfere with this
231 // query's live virtual register, up to maxInterferingRegs.
232 unsigned collectInterferingVRegs(unsigned MaxInterferingRegs = UINT_MAX);
234 // Was this virtual register visited during collectInterferingVRegs?
235 bool isSeenInterference(LiveInterval *VReg) const;
237 // Did collectInterferingVRegs collect all interferences?
238 bool seenAllInterferences() const { return SeenAllInterferences; }
240 // Did collectInterferingVRegs encounter an unspillable vreg?
241 bool seenUnspillableVReg() const { return SeenUnspillableVReg; }
243 // Vector generated by collectInterferingVRegs.
244 const SmallVectorImpl<LiveInterval*> &interferingVRegs() const {
245 return InterferingVRegs;
248 /// checkLoopInterference - Return true if there is interference overlapping
249 /// Loop.
250 bool checkLoopInterference(MachineLoopRange*);
252 void print(raw_ostream &OS, const TargetRegisterInfo *TRI);
253 private:
254 Query(const Query&); // DO NOT IMPLEMENT
255 void operator=(const Query&); // DO NOT IMPLEMENT
257 // Private interface for queries
258 void findIntersection(InterferenceResult &IR) const;
262 } // end namespace llvm
264 #endif // !defined(LLVM_CODEGEN_LIVEINTERVALUNION)