LiveInterval.h revision 86fb9fdb2000213d3cd5a082e8501cb8fe974a14
1//===-- llvm/CodeGen/LiveInterval.h - Interval representation ---*- 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 implements the LiveRange and LiveInterval classes.  Given some
11// numbering of each the machine instructions an interval [i, j) is said to be a
12// live interval for register v if there is no instruction with number j' >= j
13// such that v is live at j' and there is no instruction with number i' < i such
14// that v is live at i'. In this implementation intervals can have holes,
15// i.e. an interval might look like [1,20), [50,65), [1000,1001).  Each
16// individual range is represented as an instance of LiveRange, and the whole
17// interval is represented as an instance of LiveInterval.
18//
19//===----------------------------------------------------------------------===//
20
21#ifndef LLVM_CODEGEN_LIVEINTERVAL_H
22#define LLVM_CODEGEN_LIVEINTERVAL_H
23
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/Support/Allocator.h"
26#include <iosfwd>
27#include <cassert>
28
29namespace llvm {
30  class MachineInstr;
31  class TargetRegisterInfo;
32  struct LiveInterval;
33
34  /// VNInfo - If the value number definition is undefined (e.g. phi
35  /// merge point), it contains ~0u,x. If the value number is not in use, it
36  /// contains ~1u,x to indicate that the value # is not used.
37  ///   def   - Instruction # of the definition.
38  ///         - or reg # of the definition if it's a stack slot liveinterval.
39  ///   copy  - Copy iff val# is defined by a copy; zero otherwise.
40  ///   hasPHIKill - One or more of the kills are PHI nodes.
41  ///   redefByEC - Re-defined by early clobber somewhere during the live range.
42  ///   kills - Instruction # of the kills.
43  struct VNInfo {
44    unsigned id;
45    unsigned def;
46    MachineInstr *copy;
47    bool hasPHIKill : 1;
48    bool redefByEC : 1;
49    SmallVector<unsigned, 4> kills;
50    VNInfo()
51      : id(~1U), def(~1U), copy(0), hasPHIKill(false), redefByEC(false) {}
52    VNInfo(unsigned i, unsigned d, MachineInstr *c)
53      : id(i), def(d), copy(c), hasPHIKill(false), redefByEC(false) {}
54  };
55
56  /// LiveRange structure - This represents a simple register range in the
57  /// program, with an inclusive start point and an exclusive end point.
58  /// These ranges are rendered as [start,end).
59  struct LiveRange {
60    unsigned start;  // Start point of the interval (inclusive)
61    unsigned end;    // End point of the interval (exclusive)
62    VNInfo *valno;   // identifier for the value contained in this interval.
63
64    LiveRange(unsigned S, unsigned E, VNInfo *V) : start(S), end(E), valno(V) {
65      assert(S < E && "Cannot create empty or backwards range");
66    }
67
68    /// contains - Return true if the index is covered by this range.
69    ///
70    bool contains(unsigned I) const {
71      return start <= I && I < end;
72    }
73
74    bool operator<(const LiveRange &LR) const {
75      return start < LR.start || (start == LR.start && end < LR.end);
76    }
77    bool operator==(const LiveRange &LR) const {
78      return start == LR.start && end == LR.end;
79    }
80
81    void dump() const;
82    void print(std::ostream &os) const;
83    void print(std::ostream *os) const { if (os) print(*os); }
84
85  private:
86    LiveRange(); // DO NOT IMPLEMENT
87  };
88
89  std::ostream& operator<<(std::ostream& os, const LiveRange &LR);
90
91
92  inline bool operator<(unsigned V, const LiveRange &LR) {
93    return V < LR.start;
94  }
95
96  inline bool operator<(const LiveRange &LR, unsigned V) {
97    return LR.start < V;
98  }
99
100  /// LiveInterval - This class represents some number of live ranges for a
101  /// register or value.  This class also contains a bit of register allocator
102  /// state.
103  struct LiveInterval {
104    typedef SmallVector<LiveRange,4> Ranges;
105    typedef SmallVector<VNInfo*,4> VNInfoList;
106
107    unsigned reg;        // the register or stack slot of this interval
108                         // if the top bits is set, it represents a stack slot.
109    float weight;        // weight of this interval
110    unsigned short preference; // preferred register for this interval
111    Ranges ranges;       // the ranges in which this register is live
112    VNInfoList valnos;   // value#'s
113
114  public:
115    LiveInterval(unsigned Reg, float Weight, bool IsSS = false)
116      : reg(Reg), weight(Weight), preference(0)  {
117      if (IsSS)
118        reg = reg | (1U << (sizeof(unsigned)*8-1));
119    }
120
121    typedef Ranges::iterator iterator;
122    iterator begin() { return ranges.begin(); }
123    iterator end()   { return ranges.end(); }
124
125    typedef Ranges::const_iterator const_iterator;
126    const_iterator begin() const { return ranges.begin(); }
127    const_iterator end() const  { return ranges.end(); }
128
129    typedef VNInfoList::iterator vni_iterator;
130    vni_iterator vni_begin() { return valnos.begin(); }
131    vni_iterator vni_end() { return valnos.end(); }
132
133    typedef VNInfoList::const_iterator const_vni_iterator;
134    const_vni_iterator vni_begin() const { return valnos.begin(); }
135    const_vni_iterator vni_end() const { return valnos.end(); }
136
137    /// advanceTo - Advance the specified iterator to point to the LiveRange
138    /// containing the specified position, or end() if the position is past the
139    /// end of the interval.  If no LiveRange contains this position, but the
140    /// position is in a hole, this method returns an iterator pointing the the
141    /// LiveRange immediately after the hole.
142    iterator advanceTo(iterator I, unsigned Pos) {
143      if (Pos >= endNumber())
144        return end();
145      while (I->end <= Pos) ++I;
146      return I;
147    }
148
149    void clear() {
150      while (!valnos.empty()) {
151        VNInfo *VNI = valnos.back();
152        valnos.pop_back();
153        VNI->~VNInfo();
154      }
155
156      ranges.clear();
157    }
158
159    /// isStackSlot - Return true if this is a stack slot interval.
160    ///
161    bool isStackSlot() const {
162      return reg & (1U << (sizeof(unsigned)*8-1));
163    }
164
165    /// getStackSlotIndex - Return stack slot index if this is a stack slot
166    /// interval.
167    int getStackSlotIndex() const {
168      assert(isStackSlot() && "Interval is not a stack slot interval!");
169      return reg & ~(1U << (sizeof(unsigned)*8-1));
170    }
171
172    bool hasAtLeastOneValue() const { return !valnos.empty(); }
173
174    bool containsOneValue() const { return valnos.size() == 1; }
175
176    unsigned getNumValNums() const { return (unsigned)valnos.size(); }
177
178    /// getValNumInfo - Returns pointer to the specified val#.
179    ///
180    inline VNInfo *getValNumInfo(unsigned ValNo) {
181      return valnos[ValNo];
182    }
183    inline const VNInfo *getValNumInfo(unsigned ValNo) const {
184      return valnos[ValNo];
185    }
186
187    /// copyValNumInfo - Copy the value number info for one value number to
188    /// another.
189    void copyValNumInfo(VNInfo *DstValNo, const VNInfo *SrcValNo) {
190      DstValNo->def = SrcValNo->def;
191      DstValNo->copy = SrcValNo->copy;
192      DstValNo->hasPHIKill = SrcValNo->hasPHIKill;
193      DstValNo->redefByEC = SrcValNo->redefByEC;
194      DstValNo->kills = SrcValNo->kills;
195    }
196
197    /// getNextValue - Create a new value number and return it.  MIIdx specifies
198    /// the instruction that defines the value number.
199    VNInfo *getNextValue(unsigned MIIdx, MachineInstr *CopyMI,
200                         BumpPtrAllocator &VNInfoAllocator) {
201#ifdef __GNUC__
202      unsigned Alignment = (unsigned)__alignof__(VNInfo);
203#else
204      // FIXME: ugly.
205      unsigned Alignment = 8;
206#endif
207      VNInfo *VNI =
208        static_cast<VNInfo*>(VNInfoAllocator.Allocate((unsigned)sizeof(VNInfo),
209                                                      Alignment));
210      new (VNI) VNInfo((unsigned)valnos.size(), MIIdx, CopyMI);
211      valnos.push_back(VNI);
212      return VNI;
213    }
214
215    /// addKill - Add a kill instruction index to the specified value
216    /// number.
217    static void addKill(VNInfo *VNI, unsigned KillIdx) {
218      SmallVector<unsigned, 4> &kills = VNI->kills;
219      if (kills.empty()) {
220        kills.push_back(KillIdx);
221      } else {
222        SmallVector<unsigned, 4>::iterator
223          I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
224        kills.insert(I, KillIdx);
225      }
226    }
227
228    /// addKills - Add a number of kills into the VNInfo kill vector. If this
229    /// interval is live at a kill point, then the kill is not added.
230    void addKills(VNInfo *VNI, const SmallVector<unsigned, 4> &kills) {
231      for (unsigned i = 0, e = static_cast<unsigned>(kills.size());
232           i != e; ++i) {
233        unsigned KillIdx = kills[i];
234        if (!liveBeforeAndAt(KillIdx)) {
235          SmallVector<unsigned, 4>::iterator
236            I = std::lower_bound(VNI->kills.begin(), VNI->kills.end(), KillIdx);
237          VNI->kills.insert(I, KillIdx);
238        }
239      }
240    }
241
242    /// removeKill - Remove the specified kill from the list of kills of
243    /// the specified val#.
244    static bool removeKill(VNInfo *VNI, unsigned KillIdx) {
245      SmallVector<unsigned, 4> &kills = VNI->kills;
246      SmallVector<unsigned, 4>::iterator
247        I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
248      if (I != kills.end() && *I == KillIdx) {
249        kills.erase(I);
250        return true;
251      }
252      return false;
253    }
254
255    /// removeKills - Remove all the kills in specified range
256    /// [Start, End] of the specified val#.
257    static void removeKills(VNInfo *VNI, unsigned Start, unsigned End) {
258      SmallVector<unsigned, 4> &kills = VNI->kills;
259      SmallVector<unsigned, 4>::iterator
260        I = std::lower_bound(kills.begin(), kills.end(), Start);
261      SmallVector<unsigned, 4>::iterator
262        E = std::upper_bound(kills.begin(), kills.end(), End);
263      kills.erase(I, E);
264    }
265
266    /// isKill - Return true if the specified index is a kill of the
267    /// specified val#.
268    static bool isKill(const VNInfo *VNI, unsigned KillIdx) {
269      const SmallVector<unsigned, 4> &kills = VNI->kills;
270      SmallVector<unsigned, 4>::const_iterator
271        I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
272      return I != kills.end() && *I == KillIdx;
273    }
274
275    /// isOnlyLROfValNo - Return true if the specified live range is the only
276    /// one defined by the its val#.
277    bool isOnlyLROfValNo( const LiveRange *LR) {
278      for (const_iterator I = begin(), E = end(); I != E; ++I) {
279        const LiveRange *Tmp = I;
280        if (Tmp != LR && Tmp->valno == LR->valno)
281          return false;
282      }
283      return true;
284    }
285
286    /// MergeValueNumberInto - This method is called when two value nubmers
287    /// are found to be equivalent.  This eliminates V1, replacing all
288    /// LiveRanges with the V1 value number with the V2 value number.  This can
289    /// cause merging of V1/V2 values numbers and compaction of the value space.
290    VNInfo* MergeValueNumberInto(VNInfo *V1, VNInfo *V2);
291
292    /// MergeInClobberRanges - For any live ranges that are not defined in the
293    /// current interval, but are defined in the Clobbers interval, mark them
294    /// used with an unknown definition value. Caller must pass in reference to
295    /// VNInfoAllocator since it will create a new val#.
296    void MergeInClobberRanges(const LiveInterval &Clobbers,
297                              BumpPtrAllocator &VNInfoAllocator);
298
299    /// MergeValueInAsValue - Merge all of the live ranges of a specific val#
300    /// in RHS into this live interval as the specified value number.
301    /// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
302    /// current interval, it will replace the value numbers of the overlaped
303    /// live ranges with the specified value number.
304    void MergeRangesInAsValue(const LiveInterval &RHS, VNInfo *LHSValNo);
305
306    /// MergeValueInAsValue - Merge all of the live ranges of a specific val#
307    /// in RHS into this live interval as the specified value number.
308    /// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
309    /// current interval, but only if the overlapping LiveRanges have the
310    /// specified value number.
311    void MergeValueInAsValue(const LiveInterval &RHS,
312                             const VNInfo *RHSValNo, VNInfo *LHSValNo);
313
314    /// Copy - Copy the specified live interval. This copies all the fields
315    /// except for the register of the interval.
316    void Copy(const LiveInterval &RHS, BumpPtrAllocator &VNInfoAllocator);
317
318    bool empty() const { return ranges.empty(); }
319
320    /// beginNumber - Return the lowest numbered slot covered by interval.
321    unsigned beginNumber() const {
322      if (empty())
323        return 0;
324      return ranges.front().start;
325    }
326
327    /// endNumber - return the maximum point of the interval of the whole,
328    /// exclusive.
329    unsigned endNumber() const {
330      if (empty())
331        return 0;
332      return ranges.back().end;
333    }
334
335    bool expiredAt(unsigned index) const {
336      return index >= endNumber();
337    }
338
339    bool liveAt(unsigned index) const;
340
341    // liveBeforeAndAt - Check if the interval is live at the index and the
342    // index just before it. If index is liveAt, check if it starts a new live
343    // range.If it does, then check if the previous live range ends at index-1.
344    bool liveBeforeAndAt(unsigned index) const;
345
346    /// getLiveRangeContaining - Return the live range that contains the
347    /// specified index, or null if there is none.
348    const LiveRange *getLiveRangeContaining(unsigned Idx) const {
349      const_iterator I = FindLiveRangeContaining(Idx);
350      return I == end() ? 0 : &*I;
351    }
352
353    /// FindLiveRangeContaining - Return an iterator to the live range that
354    /// contains the specified index, or end() if there is none.
355    const_iterator FindLiveRangeContaining(unsigned Idx) const;
356
357    /// FindLiveRangeContaining - Return an iterator to the live range that
358    /// contains the specified index, or end() if there is none.
359    iterator FindLiveRangeContaining(unsigned Idx);
360
361    /// findDefinedVNInfo - Find the VNInfo that's defined at the specified
362    /// index (register interval) or defined by the specified register (stack
363    /// inteval).
364    VNInfo *findDefinedVNInfo(unsigned DefIdxOrReg) const;
365
366    /// overlaps - Return true if the intersection of the two live intervals is
367    /// not empty.
368    bool overlaps(const LiveInterval& other) const {
369      return overlapsFrom(other, other.begin());
370    }
371
372    /// overlapsFrom - Return true if the intersection of the two live intervals
373    /// is not empty.  The specified iterator is a hint that we can begin
374    /// scanning the Other interval starting at I.
375    bool overlapsFrom(const LiveInterval& other, const_iterator I) const;
376
377    /// addRange - Add the specified LiveRange to this interval, merging
378    /// intervals as appropriate.  This returns an iterator to the inserted live
379    /// range (which may have grown since it was inserted.
380    void addRange(LiveRange LR) {
381      addRangeFrom(LR, ranges.begin());
382    }
383
384    /// join - Join two live intervals (this, and other) together.  This applies
385    /// mappings to the value numbers in the LHS/RHS intervals as specified.  If
386    /// the intervals are not joinable, this aborts.
387    void join(LiveInterval &Other, const int *ValNoAssignments,
388              const int *RHSValNoAssignments,
389              SmallVector<VNInfo*, 16> &NewVNInfo);
390
391    /// isInOneLiveRange - Return true if the range specified is entirely in the
392    /// a single LiveRange of the live interval.
393    bool isInOneLiveRange(unsigned Start, unsigned End);
394
395    /// removeRange - Remove the specified range from this interval.  Note that
396    /// the range must be a single LiveRange in its entirety.
397    void removeRange(unsigned Start, unsigned End, bool RemoveDeadValNo = false);
398
399    void removeRange(LiveRange LR, bool RemoveDeadValNo = false) {
400      removeRange(LR.start, LR.end, RemoveDeadValNo);
401    }
402
403    /// removeValNo - Remove all the ranges defined by the specified value#.
404    /// Also remove the value# from value# list.
405    void removeValNo(VNInfo *ValNo);
406
407    /// getSize - Returns the sum of sizes of all the LiveRange's.
408    ///
409    unsigned getSize() const;
410
411    bool operator<(const LiveInterval& other) const {
412      return beginNumber() < other.beginNumber();
413    }
414
415    void print(std::ostream &OS, const TargetRegisterInfo *TRI = 0) const;
416    void print(std::ostream *OS, const TargetRegisterInfo *TRI = 0) const {
417      if (OS) print(*OS, TRI);
418    }
419    void dump() const;
420
421  private:
422    Ranges::iterator addRangeFrom(LiveRange LR, Ranges::iterator From);
423    void extendIntervalEndTo(Ranges::iterator I, unsigned NewEnd);
424    Ranges::iterator extendIntervalStartTo(Ranges::iterator I, unsigned NewStr);
425    LiveInterval& operator=(const LiveInterval& rhs); // DO NOT IMPLEMENT
426  };
427
428  inline std::ostream &operator<<(std::ostream &OS, const LiveInterval &LI) {
429    LI.print(OS);
430    return OS;
431  }
432}
433
434#endif
435