dde7a86712cdc583e25b08c4867c78558546eb6e
[oota-llvm.git] / lib / CodeGen / LiveInterval.h
1 //===-- llvm/CodeGen/LiveInterval.h - Interval representation ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source 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 <iosfwd>
25 #include <vector>
26 #include <cassert>
27
28 namespace llvm {
29   /// LiveRange structure - This represents a simple register range in the
30   /// program, with an inclusive start point and an exclusive end point.
31   /// These ranges are rendered as [start,end).
32   struct LiveRange {
33     unsigned start;  // Start point of the interval (inclusive)
34     unsigned end;    // End point of the interval (exclusive)
35     unsigned ValId;  // identifier for the value contained in this interval.
36
37     LiveRange(unsigned S, unsigned E, unsigned V) : start(S), end(E), ValId(V) {
38       assert(S < E && "Cannot create empty or backwards range");
39     }
40
41     /// contains - Return true if the index is covered by this range.
42     ///
43     bool contains(unsigned I) const {
44       return start <= I && I < end;
45     }
46
47     bool operator<(const LiveRange &LR) const {
48       return start < LR.start || (start == LR.start && end < LR.end);
49     }
50     bool operator==(const LiveRange &LR) const {
51       return start == LR.start && end == LR.end;
52     }
53
54     void dump() const;
55
56   private:
57     LiveRange(); // DO NOT IMPLEMENT
58   };
59   std::ostream& operator<<(std::ostream& os, const LiveRange &LR);
60
61   inline bool operator<(unsigned V, const LiveRange &LR) {
62     return V < LR.start;
63   }
64
65
66   /// LiveInterval - This class represents some number of live ranges for a
67   /// register or value.  This class also contains a bit of register allocator
68   /// state.
69   struct LiveInterval {
70     typedef std::vector<LiveRange> Ranges;
71     unsigned reg;        // the register of this interval
72     float weight;        // weight of this interval
73     Ranges ranges;       // the ranges in which this register is live
74
75     LiveInterval(unsigned Reg, float Weight)
76       : reg(Reg), weight(Weight), NumValues(0) {
77     }
78
79     LiveInterval& operator=(const LiveInterval& rhs) {
80       reg = rhs.reg;
81       weight = rhs.weight;
82       ranges = rhs.ranges;
83       NumValues = rhs.NumValues;
84       return *this;
85     }
86
87     void swap(LiveInterval& other) {
88       std::swap(reg, other.reg);
89       std::swap(weight, other.weight);
90       ranges.swap(other.ranges);
91       std::swap(NumValues, other.NumValues);
92     }
93
94     bool containsOneValue() const { return NumValues == 1; }
95
96     unsigned getNextValue() {
97       return NumValues++;
98     }
99
100     bool empty() const { return ranges.empty(); }
101
102     /// start - Return the lowest numbered slot covered by interval.
103     unsigned start() const {
104       assert(!empty() && "empty interval for register");
105       return ranges.front().start;
106     }
107
108     /// end - return the maximum point of the interval of the whole,
109     /// exclusive.
110     unsigned end() const {
111       assert(!empty() && "empty interval for register");
112       return ranges.back().end;
113     }
114
115     bool expiredAt(unsigned index) const {
116       return end() <= (index + 1);
117     }
118
119     bool liveAt(unsigned index) const;
120
121     /// getLiveRangeContaining - Return the live range that contains the
122     /// specified index, or null if there is none.
123     LiveRange *getLiveRangeContaining(unsigned Idx);
124
125
126     /// joinable - Two intervals are joinable if the either don't overlap at all
127     /// or if the destination of the copy is a single assignment value, and it
128     /// only overlaps with one value in the source interval.
129     bool joinable(const LiveInterval& other, unsigned CopyIdx) const;
130
131
132     bool overlaps(const LiveInterval& other) const;
133
134     /// addRange - Add the specified LiveRange to this interval, merging
135     /// intervals as appropriate.  This returns an iterator to the inserted live
136     /// range (which may have grown since it was inserted.
137     void addRange(LiveRange LR) {
138       addRangeFrom(LR, ranges.begin());
139     }
140
141     /// join - Join two live intervals (this, and other) together.  This
142     /// operation is the result of a copy instruction in the source program,
143     /// that occurs at index 'CopyIdx' that copies from 'other' to 'this'.  This
144     /// destroys 'other'.
145     void join(LiveInterval& other, unsigned CopyIdx);
146
147
148     /// removeRange - Remove the specified range from this interval.  Note that
149     /// the range must already be in this interval in its entirety.
150     void removeRange(unsigned Start, unsigned End);
151
152     bool operator<(const LiveInterval& other) const {
153       return start() < other.start();
154     }
155
156     void dump() const;
157
158   private:
159     unsigned NumValues;  // the number of distinct values in this interval.
160     Ranges::iterator addRangeFrom(LiveRange LR, Ranges::iterator From);
161     void extendIntervalEndTo(Ranges::iterator I, unsigned NewEnd);
162     Ranges::iterator extendIntervalStartTo(Ranges::iterator I, unsigned NewStr);
163   };
164
165   std::ostream& operator<<(std::ostream& os, const LiveInterval& li);
166 }
167
168 #endif