Improve the LiveInterval class to keep track of which machine instruction

defines each value# tracked by the interval.  This will be used to improve
coallescing.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29830 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2006-08-22 18:19:46 +00:00
parent ad6f758f89
commit be4f88a8b8
3 changed files with 63 additions and 19 deletions

View File

@ -79,6 +79,11 @@ namespace llvm {
Ranges ranges; // the ranges in which this register is live
private:
unsigned NumValues; // the number of distinct values in this interval.
/// InstDefiningValue - This tracks the def index of the instruction that
/// defines a particular value number in the interval. This may be ~0,
/// which is treated as unknown.
SmallVector<unsigned, 4> InstDefiningValue;
public:
LiveInterval(unsigned Reg, float Weight)
@ -109,15 +114,31 @@ namespace llvm {
void swap(LiveInterval& other) {
std::swap(reg, other.reg);
std::swap(weight, other.weight);
ranges.swap(other.ranges);
std::swap(ranges, other.ranges);
std::swap(NumValues, other.NumValues);
}
bool containsOneValue() const { return NumValues == 1; }
unsigned getNextValue() {
/// getNextValue - Create a new value number and return it. MIIdx specifies
/// the instruction that defines the value number.
unsigned getNextValue(unsigned MIIdx) {
InstDefiningValue.push_back(MIIdx);
return NumValues++;
}
/// getInstForValNum - Return the machine instruction index that defines the
/// specified value number.
unsigned getInstForValNum(unsigned ValNo) const {
return InstDefiningValue[ValNo];
}
/// setInstDefiningValNum - Change the instruction defining the specified
/// value number to the specified instruction.
void setInstDefiningValNum(unsigned ValNo, unsigned MIIdx) {
InstDefiningValue[ValNo] = MIIdx;
}
bool empty() const { return ranges.empty(); }