2004-07-23 17:49:16 +00:00
|
|
|
//===-- llvm/CodeGen/LiveInterval.h - Interval representation ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2004-07-23 17:49:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the LiveRange and LiveInterval classes. Given some
|
|
|
|
// numbering of each the machine instructions an interval [i, j) is said to be a
|
2008-11-26 05:50:31 +00:00
|
|
|
// live interval for register v if there is no instruction with number j' >= j
|
2004-07-24 02:52:23 +00:00
|
|
|
// such that v is live at j' and there is no instruction with number i' < i such
|
2004-07-23 17:49:16 +00:00
|
|
|
// that v is live at i'. In this implementation intervals can have holes,
|
|
|
|
// i.e. an interval might look like [1,20), [50,65), [1000,1001). Each
|
|
|
|
// individual range is represented as an instance of LiveRange, and the whole
|
|
|
|
// interval is represented as an instance of LiveInterval.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_LIVEINTERVAL_H
|
|
|
|
#define LLVM_CODEGEN_LIVEINTERVAL_H
|
|
|
|
|
2006-08-22 06:32:56 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2007-09-05 21:46:51 +00:00
|
|
|
#include "llvm/Support/Allocator.h"
|
2004-07-23 17:49:16 +00:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
namespace llvm {
|
2007-03-20 08:13:50 +00:00
|
|
|
class MachineInstr;
|
2008-02-10 18:45:23 +00:00
|
|
|
class TargetRegisterInfo;
|
2007-08-29 20:45:00 +00:00
|
|
|
struct LiveInterval;
|
|
|
|
|
|
|
|
/// VNInfo - If the value number definition is undefined (e.g. phi
|
|
|
|
/// merge point), it contains ~0u,x. If the value number is not in use, it
|
|
|
|
/// contains ~1u,x to indicate that the value # is not used.
|
|
|
|
/// def - Instruction # of the definition.
|
2008-06-04 09:18:41 +00:00
|
|
|
/// - or reg # of the definition if it's a stack slot liveinterval.
|
2008-02-15 18:24:29 +00:00
|
|
|
/// copy - Copy iff val# is defined by a copy; zero otherwise.
|
2007-11-29 09:49:23 +00:00
|
|
|
/// hasPHIKill - One or more of the kills are PHI nodes.
|
Fix PR3149. If an early clobber def is a physical register and it is tied to an input operand, it effectively extends the live range of the physical register. Currently we do not have a good way to represent this.
172 %ECX<def> = MOV32rr %reg1039<kill>
180 INLINEASM <es:subl $5,$1
sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
188 %EAX<def> = MOV32rr %EAX<kill>
196 %ECX<def> = MOV32rr %ECX<kill>
204 %ECX<def> = MOV32rr %ECX<kill>
212 %EAX<def> = MOV32rr %EAX<kill>
220 %EAX<def> = MOV32rr %EAX
228 %reg1039<def> = MOV32rr %ECX<kill>
The early clobber operand ties ECX input to the ECX def.
The live interval of ECX is represented as this:
%reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
The right way to represent this is something like
%reg20,inf = [46,47:2)[174,182:1)[181:230:0) 0@174-(182) 1@181-230 @2@46-(47)
Of course that won't work since that means overlapping live ranges defined by two val#.
The workaround for now is to add a bit to val# which says the val# is redefined by a early clobber def somewhere. This prevents the move at 228 from being optimized away by SimpleRegisterCoalescing::AdjustCopiesBackFrom.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61259 91177308-0d34-0410-b5e6-96231b3b80d8
2008-12-19 20:58:01 +00:00
|
|
|
/// redefByEC - Re-defined by early clobber somewhere during the live range.
|
2008-02-15 18:24:29 +00:00
|
|
|
/// kills - Instruction # of the kills.
|
2007-08-29 20:45:00 +00:00
|
|
|
struct VNInfo {
|
|
|
|
unsigned id;
|
|
|
|
unsigned def;
|
2008-02-15 18:24:29 +00:00
|
|
|
MachineInstr *copy;
|
Fix PR3149. If an early clobber def is a physical register and it is tied to an input operand, it effectively extends the live range of the physical register. Currently we do not have a good way to represent this.
172 %ECX<def> = MOV32rr %reg1039<kill>
180 INLINEASM <es:subl $5,$1
sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
188 %EAX<def> = MOV32rr %EAX<kill>
196 %ECX<def> = MOV32rr %ECX<kill>
204 %ECX<def> = MOV32rr %ECX<kill>
212 %EAX<def> = MOV32rr %EAX<kill>
220 %EAX<def> = MOV32rr %EAX
228 %reg1039<def> = MOV32rr %ECX<kill>
The early clobber operand ties ECX input to the ECX def.
The live interval of ECX is represented as this:
%reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
The right way to represent this is something like
%reg20,inf = [46,47:2)[174,182:1)[181:230:0) 0@174-(182) 1@181-230 @2@46-(47)
Of course that won't work since that means overlapping live ranges defined by two val#.
The workaround for now is to add a bit to val# which says the val# is redefined by a early clobber def somewhere. This prevents the move at 228 from being optimized away by SimpleRegisterCoalescing::AdjustCopiesBackFrom.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61259 91177308-0d34-0410-b5e6-96231b3b80d8
2008-12-19 20:58:01 +00:00
|
|
|
bool hasPHIKill : 1;
|
|
|
|
bool redefByEC : 1;
|
2007-08-29 20:45:00 +00:00
|
|
|
SmallVector<unsigned, 4> kills;
|
Fix PR3149. If an early clobber def is a physical register and it is tied to an input operand, it effectively extends the live range of the physical register. Currently we do not have a good way to represent this.
172 %ECX<def> = MOV32rr %reg1039<kill>
180 INLINEASM <es:subl $5,$1
sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
188 %EAX<def> = MOV32rr %EAX<kill>
196 %ECX<def> = MOV32rr %ECX<kill>
204 %ECX<def> = MOV32rr %ECX<kill>
212 %EAX<def> = MOV32rr %EAX<kill>
220 %EAX<def> = MOV32rr %EAX
228 %reg1039<def> = MOV32rr %ECX<kill>
The early clobber operand ties ECX input to the ECX def.
The live interval of ECX is represented as this:
%reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
The right way to represent this is something like
%reg20,inf = [46,47:2)[174,182:1)[181:230:0) 0@174-(182) 1@181-230 @2@46-(47)
Of course that won't work since that means overlapping live ranges defined by two val#.
The workaround for now is to add a bit to val# which says the val# is redefined by a early clobber def somewhere. This prevents the move at 228 from being optimized away by SimpleRegisterCoalescing::AdjustCopiesBackFrom.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61259 91177308-0d34-0410-b5e6-96231b3b80d8
2008-12-19 20:58:01 +00:00
|
|
|
VNInfo()
|
|
|
|
: id(~1U), def(~1U), copy(0), hasPHIKill(false), redefByEC(false) {}
|
2008-02-15 18:24:29 +00:00
|
|
|
VNInfo(unsigned i, unsigned d, MachineInstr *c)
|
Fix PR3149. If an early clobber def is a physical register and it is tied to an input operand, it effectively extends the live range of the physical register. Currently we do not have a good way to represent this.
172 %ECX<def> = MOV32rr %reg1039<kill>
180 INLINEASM <es:subl $5,$1
sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
188 %EAX<def> = MOV32rr %EAX<kill>
196 %ECX<def> = MOV32rr %ECX<kill>
204 %ECX<def> = MOV32rr %ECX<kill>
212 %EAX<def> = MOV32rr %EAX<kill>
220 %EAX<def> = MOV32rr %EAX
228 %reg1039<def> = MOV32rr %ECX<kill>
The early clobber operand ties ECX input to the ECX def.
The live interval of ECX is represented as this:
%reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
The right way to represent this is something like
%reg20,inf = [46,47:2)[174,182:1)[181:230:0) 0@174-(182) 1@181-230 @2@46-(47)
Of course that won't work since that means overlapping live ranges defined by two val#.
The workaround for now is to add a bit to val# which says the val# is redefined by a early clobber def somewhere. This prevents the move at 228 from being optimized away by SimpleRegisterCoalescing::AdjustCopiesBackFrom.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61259 91177308-0d34-0410-b5e6-96231b3b80d8
2008-12-19 20:58:01 +00:00
|
|
|
: id(i), def(d), copy(c), hasPHIKill(false), redefByEC(false) {}
|
2007-08-29 20:45:00 +00:00
|
|
|
};
|
2005-05-14 05:34:15 +00:00
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
/// LiveRange structure - This represents a simple register range in the
|
|
|
|
/// program, with an inclusive start point and an exclusive end point.
|
|
|
|
/// These ranges are rendered as [start,end).
|
|
|
|
struct LiveRange {
|
|
|
|
unsigned start; // Start point of the interval (inclusive)
|
2004-07-24 02:52:23 +00:00
|
|
|
unsigned end; // End point of the interval (exclusive)
|
2007-08-29 20:45:00 +00:00
|
|
|
VNInfo *valno; // identifier for the value contained in this interval.
|
2004-07-24 02:52:23 +00:00
|
|
|
|
2007-08-29 20:45:00 +00:00
|
|
|
LiveRange(unsigned S, unsigned E, VNInfo *V) : start(S), end(E), valno(V) {
|
2004-07-23 17:49:16 +00:00
|
|
|
assert(S < E && "Cannot create empty or backwards range");
|
|
|
|
}
|
|
|
|
|
2004-07-23 18:39:12 +00:00
|
|
|
/// contains - Return true if the index is covered by this range.
|
|
|
|
///
|
|
|
|
bool contains(unsigned I) const {
|
|
|
|
return start <= I && I < end;
|
|
|
|
}
|
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
bool operator<(const LiveRange &LR) const {
|
|
|
|
return start < LR.start || (start == LR.start && end < LR.end);
|
|
|
|
}
|
|
|
|
bool operator==(const LiveRange &LR) const {
|
|
|
|
return start == LR.start && end == LR.end;
|
|
|
|
}
|
2004-07-24 02:52:23 +00:00
|
|
|
|
|
|
|
void dump() const;
|
2006-12-16 02:15:42 +00:00
|
|
|
void print(std::ostream &os) const;
|
2006-12-17 05:15:13 +00:00
|
|
|
void print(std::ostream *os) const { if (os) print(*os); }
|
2004-07-24 02:52:23 +00:00
|
|
|
|
2004-07-23 18:39:12 +00:00
|
|
|
private:
|
2004-07-23 17:49:16 +00:00
|
|
|
LiveRange(); // DO NOT IMPLEMENT
|
|
|
|
};
|
2006-11-28 22:21:29 +00:00
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
std::ostream& operator<<(std::ostream& os, const LiveRange &LR);
|
2006-12-16 02:15:42 +00:00
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
|
2004-07-23 18:13:24 +00:00
|
|
|
inline bool operator<(unsigned V, const LiveRange &LR) {
|
|
|
|
return V < LR.start;
|
|
|
|
}
|
|
|
|
|
2006-01-26 20:41:32 +00:00
|
|
|
inline bool operator<(const LiveRange &LR, unsigned V) {
|
|
|
|
return LR.start < V;
|
|
|
|
}
|
2004-07-23 18:13:24 +00:00
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
/// LiveInterval - This class represents some number of live ranges for a
|
|
|
|
/// register or value. This class also contains a bit of register allocator
|
|
|
|
/// state.
|
|
|
|
struct LiveInterval {
|
2006-08-22 06:32:56 +00:00
|
|
|
typedef SmallVector<LiveRange,4> Ranges;
|
2007-08-29 20:45:00 +00:00
|
|
|
typedef SmallVector<VNInfo*,4> VNInfoList;
|
|
|
|
|
2008-06-04 09:18:41 +00:00
|
|
|
unsigned reg; // the register or stack slot of this interval
|
2008-06-23 21:03:19 +00:00
|
|
|
// if the top bits is set, it represents a stack slot.
|
2004-07-23 17:49:16 +00:00
|
|
|
float weight; // weight of this interval
|
2008-09-20 17:45:21 +00:00
|
|
|
unsigned short preference; // preferred register for this interval
|
2004-07-23 17:49:16 +00:00
|
|
|
Ranges ranges; // the ranges in which this register is live
|
2007-08-29 20:45:00 +00:00
|
|
|
VNInfoList valnos; // value#'s
|
2007-08-28 08:28:51 +00:00
|
|
|
|
|
|
|
public:
|
2008-09-24 01:07:17 +00:00
|
|
|
LiveInterval(unsigned Reg, float Weight, bool IsSS = false)
|
|
|
|
: reg(Reg), weight(Weight), preference(0) {
|
2008-06-23 21:03:19 +00:00
|
|
|
if (IsSS)
|
|
|
|
reg = reg | (1U << (sizeof(unsigned)*8-1));
|
2007-08-28 08:28:51 +00:00
|
|
|
}
|
|
|
|
|
2004-11-18 01:29:39 +00:00
|
|
|
typedef Ranges::iterator iterator;
|
|
|
|
iterator begin() { return ranges.begin(); }
|
|
|
|
iterator end() { return ranges.end(); }
|
|
|
|
|
2004-11-18 03:47:34 +00:00
|
|
|
typedef Ranges::const_iterator const_iterator;
|
|
|
|
const_iterator begin() const { return ranges.begin(); }
|
|
|
|
const_iterator end() const { return ranges.end(); }
|
|
|
|
|
2007-08-28 08:28:51 +00:00
|
|
|
typedef VNInfoList::iterator vni_iterator;
|
2007-08-29 20:45:00 +00:00
|
|
|
vni_iterator vni_begin() { return valnos.begin(); }
|
|
|
|
vni_iterator vni_end() { return valnos.end(); }
|
2007-08-28 08:28:51 +00:00
|
|
|
|
|
|
|
typedef VNInfoList::const_iterator const_vni_iterator;
|
2007-08-29 20:45:00 +00:00
|
|
|
const_vni_iterator vni_begin() const { return valnos.begin(); }
|
|
|
|
const_vni_iterator vni_end() const { return valnos.end(); }
|
|
|
|
|
2004-11-18 02:37:31 +00:00
|
|
|
/// advanceTo - Advance the specified iterator to point to the LiveRange
|
|
|
|
/// containing the specified position, or end() if the position is past the
|
|
|
|
/// end of the interval. If no LiveRange contains this position, but the
|
|
|
|
/// position is in a hole, this method returns an iterator pointing the the
|
2004-11-18 04:31:10 +00:00
|
|
|
/// LiveRange immediately after the hole.
|
2004-11-18 02:37:31 +00:00
|
|
|
iterator advanceTo(iterator I, unsigned Pos) {
|
|
|
|
if (Pos >= endNumber())
|
|
|
|
return end();
|
|
|
|
while (I->end <= Pos) ++I;
|
|
|
|
return I;
|
|
|
|
}
|
2008-12-28 21:57:02 +00:00
|
|
|
|
|
|
|
void clear() {
|
|
|
|
while (!valnos.empty()) {
|
|
|
|
VNInfo *VNI = valnos.back();
|
|
|
|
valnos.pop_back();
|
|
|
|
VNI->~VNInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
ranges.clear();
|
|
|
|
}
|
2004-11-18 02:37:31 +00:00
|
|
|
|
2008-06-04 09:18:41 +00:00
|
|
|
/// isStackSlot - Return true if this is a stack slot interval.
|
|
|
|
///
|
2008-06-23 21:03:19 +00:00
|
|
|
bool isStackSlot() const {
|
|
|
|
return reg & (1U << (sizeof(unsigned)*8-1));
|
|
|
|
}
|
2008-06-04 09:18:41 +00:00
|
|
|
|
|
|
|
/// getStackSlotIndex - Return stack slot index if this is a stack slot
|
|
|
|
/// interval.
|
|
|
|
int getStackSlotIndex() const {
|
|
|
|
assert(isStackSlot() && "Interval is not a stack slot interval!");
|
2008-06-23 21:03:19 +00:00
|
|
|
return reg & ~(1U << (sizeof(unsigned)*8-1));
|
2008-06-04 09:18:41 +00:00
|
|
|
}
|
|
|
|
|
2008-10-29 08:39:34 +00:00
|
|
|
bool hasAtLeastOneValue() const { return !valnos.empty(); }
|
|
|
|
|
2007-08-31 08:26:44 +00:00
|
|
|
bool containsOneValue() const { return valnos.size() == 1; }
|
2004-07-24 02:52:23 +00:00
|
|
|
|
2008-05-05 18:30:58 +00:00
|
|
|
unsigned getNumValNums() const { return (unsigned)valnos.size(); }
|
2006-08-24 22:43:55 +00:00
|
|
|
|
2007-09-05 21:46:51 +00:00
|
|
|
/// getValNumInfo - Returns pointer to the specified val#.
|
2007-08-28 08:28:51 +00:00
|
|
|
///
|
2007-09-05 21:46:51 +00:00
|
|
|
inline VNInfo *getValNumInfo(unsigned ValNo) {
|
|
|
|
return valnos[ValNo];
|
2007-08-28 08:28:51 +00:00
|
|
|
}
|
2007-09-05 21:46:51 +00:00
|
|
|
inline const VNInfo *getValNumInfo(unsigned ValNo) const {
|
|
|
|
return valnos[ValNo];
|
2007-08-28 08:28:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// copyValNumInfo - Copy the value number info for one value number to
|
|
|
|
/// another.
|
2007-10-12 08:50:34 +00:00
|
|
|
void copyValNumInfo(VNInfo *DstValNo, const VNInfo *SrcValNo) {
|
2007-09-05 21:46:51 +00:00
|
|
|
DstValNo->def = SrcValNo->def;
|
2008-02-15 18:24:29 +00:00
|
|
|
DstValNo->copy = SrcValNo->copy;
|
2007-11-29 09:49:23 +00:00
|
|
|
DstValNo->hasPHIKill = SrcValNo->hasPHIKill;
|
Fix PR3149. If an early clobber def is a physical register and it is tied to an input operand, it effectively extends the live range of the physical register. Currently we do not have a good way to represent this.
172 %ECX<def> = MOV32rr %reg1039<kill>
180 INLINEASM <es:subl $5,$1
sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
188 %EAX<def> = MOV32rr %EAX<kill>
196 %ECX<def> = MOV32rr %ECX<kill>
204 %ECX<def> = MOV32rr %ECX<kill>
212 %EAX<def> = MOV32rr %EAX<kill>
220 %EAX<def> = MOV32rr %EAX
228 %reg1039<def> = MOV32rr %ECX<kill>
The early clobber operand ties ECX input to the ECX def.
The live interval of ECX is represented as this:
%reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
The right way to represent this is something like
%reg20,inf = [46,47:2)[174,182:1)[181:230:0) 0@174-(182) 1@181-230 @2@46-(47)
Of course that won't work since that means overlapping live ranges defined by two val#.
The workaround for now is to add a bit to val# which says the val# is redefined by a early clobber def somewhere. This prevents the move at 228 from being optimized away by SimpleRegisterCoalescing::AdjustCopiesBackFrom.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61259 91177308-0d34-0410-b5e6-96231b3b80d8
2008-12-19 20:58:01 +00:00
|
|
|
DstValNo->redefByEC = SrcValNo->redefByEC;
|
2007-09-05 21:46:51 +00:00
|
|
|
DstValNo->kills = SrcValNo->kills;
|
2007-08-28 08:28:51 +00:00
|
|
|
}
|
|
|
|
|
2006-08-22 18:19:46 +00:00
|
|
|
/// getNextValue - Create a new value number and return it. MIIdx specifies
|
|
|
|
/// the instruction that defines the value number.
|
2008-02-15 18:24:29 +00:00
|
|
|
VNInfo *getNextValue(unsigned MIIdx, MachineInstr *CopyMI,
|
2007-09-05 21:58:18 +00:00
|
|
|
BumpPtrAllocator &VNInfoAllocator) {
|
2007-09-05 21:46:51 +00:00
|
|
|
#ifdef __GNUC__
|
2008-05-05 18:30:58 +00:00
|
|
|
unsigned Alignment = (unsigned)__alignof__(VNInfo);
|
2007-09-05 21:46:51 +00:00
|
|
|
#else
|
|
|
|
// FIXME: ugly.
|
|
|
|
unsigned Alignment = 8;
|
|
|
|
#endif
|
2008-05-05 18:30:58 +00:00
|
|
|
VNInfo *VNI =
|
|
|
|
static_cast<VNInfo*>(VNInfoAllocator.Allocate((unsigned)sizeof(VNInfo),
|
|
|
|
Alignment));
|
|
|
|
new (VNI) VNInfo((unsigned)valnos.size(), MIIdx, CopyMI);
|
2007-08-29 20:45:00 +00:00
|
|
|
valnos.push_back(VNI);
|
|
|
|
return VNI;
|
2007-08-08 03:00:28 +00:00
|
|
|
}
|
2007-08-11 00:59:19 +00:00
|
|
|
|
2008-11-12 16:53:40 +00:00
|
|
|
/// addKill - Add a kill instruction index to the specified value
|
2007-08-08 03:00:28 +00:00
|
|
|
/// number.
|
2007-09-05 21:46:51 +00:00
|
|
|
static void addKill(VNInfo *VNI, unsigned KillIdx) {
|
|
|
|
SmallVector<unsigned, 4> &kills = VNI->kills;
|
2007-08-11 00:59:19 +00:00
|
|
|
if (kills.empty()) {
|
|
|
|
kills.push_back(KillIdx);
|
|
|
|
} else {
|
|
|
|
SmallVector<unsigned, 4>::iterator
|
|
|
|
I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
|
|
|
|
kills.insert(I, KillIdx);
|
|
|
|
}
|
2006-08-31 05:54:43 +00:00
|
|
|
}
|
2007-08-08 07:03:29 +00:00
|
|
|
|
2007-08-11 00:59:19 +00:00
|
|
|
/// addKills - Add a number of kills into the VNInfo kill vector. If this
|
|
|
|
/// interval is live at a kill point, then the kill is not added.
|
2007-09-05 21:46:51 +00:00
|
|
|
void addKills(VNInfo *VNI, const SmallVector<unsigned, 4> &kills) {
|
2008-05-05 18:30:58 +00:00
|
|
|
for (unsigned i = 0, e = static_cast<unsigned>(kills.size());
|
|
|
|
i != e; ++i) {
|
2007-08-11 00:59:19 +00:00
|
|
|
unsigned KillIdx = kills[i];
|
2008-02-15 18:24:29 +00:00
|
|
|
if (!liveBeforeAndAt(KillIdx)) {
|
2007-08-11 00:59:19 +00:00
|
|
|
SmallVector<unsigned, 4>::iterator
|
2007-09-05 21:46:51 +00:00
|
|
|
I = std::lower_bound(VNI->kills.begin(), VNI->kills.end(), KillIdx);
|
|
|
|
VNI->kills.insert(I, KillIdx);
|
2007-08-11 00:59:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// removeKill - Remove the specified kill from the list of kills of
|
|
|
|
/// the specified val#.
|
2007-09-05 21:46:51 +00:00
|
|
|
static bool removeKill(VNInfo *VNI, unsigned KillIdx) {
|
|
|
|
SmallVector<unsigned, 4> &kills = VNI->kills;
|
2007-08-11 00:59:19 +00:00
|
|
|
SmallVector<unsigned, 4>::iterator
|
|
|
|
I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
|
|
|
|
if (I != kills.end() && *I == KillIdx) {
|
|
|
|
kills.erase(I);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-08-29 20:45:00 +00:00
|
|
|
/// removeKills - Remove all the kills in specified range
|
2007-08-11 00:59:19 +00:00
|
|
|
/// [Start, End] of the specified val#.
|
2008-12-20 16:44:40 +00:00
|
|
|
static void removeKills(VNInfo *VNI, unsigned Start, unsigned End) {
|
2007-09-05 21:46:51 +00:00
|
|
|
SmallVector<unsigned, 4> &kills = VNI->kills;
|
2007-08-11 00:59:19 +00:00
|
|
|
SmallVector<unsigned, 4>::iterator
|
|
|
|
I = std::lower_bound(kills.begin(), kills.end(), Start);
|
|
|
|
SmallVector<unsigned, 4>::iterator
|
|
|
|
E = std::upper_bound(kills.begin(), kills.end(), End);
|
|
|
|
kills.erase(I, E);
|
|
|
|
}
|
2008-02-15 18:24:29 +00:00
|
|
|
|
|
|
|
/// isKill - Return true if the specified index is a kill of the
|
|
|
|
/// specified val#.
|
2008-12-20 16:44:40 +00:00
|
|
|
static bool isKill(const VNInfo *VNI, unsigned KillIdx) {
|
2008-02-15 18:24:29 +00:00
|
|
|
const SmallVector<unsigned, 4> &kills = VNI->kills;
|
|
|
|
SmallVector<unsigned, 4>::const_iterator
|
|
|
|
I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
|
|
|
|
return I != kills.end() && *I == KillIdx;
|
|
|
|
}
|
2006-08-31 05:54:43 +00:00
|
|
|
|
2006-08-24 22:43:55 +00:00
|
|
|
/// MergeValueNumberInto - This method is called when two value nubmers
|
|
|
|
/// are found to be equivalent. This eliminates V1, replacing all
|
|
|
|
/// LiveRanges with the V1 value number with the V2 value number. This can
|
|
|
|
/// cause merging of V1/V2 values numbers and compaction of the value space.
|
2007-08-29 20:45:00 +00:00
|
|
|
void MergeValueNumberInto(VNInfo *V1, VNInfo *V2);
|
2006-08-22 18:19:46 +00:00
|
|
|
|
2006-08-25 23:41:24 +00:00
|
|
|
/// MergeInClobberRanges - For any live ranges that are not defined in the
|
|
|
|
/// current interval, but are defined in the Clobbers interval, mark them
|
2007-09-05 21:46:51 +00:00
|
|
|
/// used with an unknown definition value. Caller must pass in reference to
|
|
|
|
/// VNInfoAllocator since it will create a new val#.
|
|
|
|
void MergeInClobberRanges(const LiveInterval &Clobbers,
|
|
|
|
BumpPtrAllocator &VNInfoAllocator);
|
2004-07-23 17:49:16 +00:00
|
|
|
|
2007-10-17 02:16:40 +00:00
|
|
|
/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
|
|
|
|
/// in RHS into this live interval as the specified value number.
|
|
|
|
/// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
|
|
|
|
/// current interval, it will replace the value numbers of the overlaped
|
|
|
|
/// live ranges with the specified value number.
|
2007-08-29 20:45:00 +00:00
|
|
|
void MergeRangesInAsValue(const LiveInterval &RHS, VNInfo *LHSValNo);
|
2007-10-12 08:50:34 +00:00
|
|
|
|
|
|
|
/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
|
|
|
|
/// in RHS into this live interval as the specified value number.
|
|
|
|
/// The LiveRanges in RHS are allowed to overlap with LiveRanges in the
|
|
|
|
/// current interval, but only if the overlapping LiveRanges have the
|
|
|
|
/// specified value number.
|
|
|
|
void MergeValueInAsValue(const LiveInterval &RHS,
|
2007-10-14 10:08:34 +00:00
|
|
|
const VNInfo *RHSValNo, VNInfo *LHSValNo);
|
2007-10-12 08:50:34 +00:00
|
|
|
|
|
|
|
/// Copy - Copy the specified live interval. This copies all the fields
|
|
|
|
/// except for the register of the interval.
|
|
|
|
void Copy(const LiveInterval &RHS, BumpPtrAllocator &VNInfoAllocator);
|
2006-09-02 05:37:53 +00:00
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
bool empty() const { return ranges.empty(); }
|
|
|
|
|
2004-11-18 01:29:39 +00:00
|
|
|
/// beginNumber - Return the lowest numbered slot covered by interval.
|
|
|
|
unsigned beginNumber() const {
|
2008-04-03 16:40:27 +00:00
|
|
|
if (empty())
|
|
|
|
return 0;
|
2004-07-23 17:49:16 +00:00
|
|
|
return ranges.front().start;
|
|
|
|
}
|
|
|
|
|
2004-11-18 01:29:39 +00:00
|
|
|
/// endNumber - return the maximum point of the interval of the whole,
|
2004-07-23 17:49:16 +00:00
|
|
|
/// exclusive.
|
2004-11-18 01:29:39 +00:00
|
|
|
unsigned endNumber() const {
|
2008-04-03 16:40:27 +00:00
|
|
|
if (empty())
|
|
|
|
return 0;
|
2004-07-23 17:49:16 +00:00
|
|
|
return ranges.back().end;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool expiredAt(unsigned index) const {
|
2004-11-18 01:34:44 +00:00
|
|
|
return index >= endNumber();
|
2004-07-23 17:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool liveAt(unsigned index) const;
|
|
|
|
|
2008-02-15 18:24:29 +00:00
|
|
|
// liveBeforeAndAt - Check if the interval is live at the index and the
|
|
|
|
// index just before it. If index is liveAt, check if it starts a new live
|
|
|
|
// range.If it does, then check if the previous live range ends at index-1.
|
|
|
|
bool liveBeforeAndAt(unsigned index) const;
|
|
|
|
|
2004-07-24 02:52:23 +00:00
|
|
|
/// getLiveRangeContaining - Return the live range that contains the
|
|
|
|
/// specified index, or null if there is none.
|
2006-08-24 22:43:55 +00:00
|
|
|
const LiveRange *getLiveRangeContaining(unsigned Idx) const {
|
|
|
|
const_iterator I = FindLiveRangeContaining(Idx);
|
|
|
|
return I == end() ? 0 : &*I;
|
|
|
|
}
|
2004-07-24 02:52:23 +00:00
|
|
|
|
2006-08-24 22:43:55 +00:00
|
|
|
/// FindLiveRangeContaining - Return an iterator to the live range that
|
|
|
|
/// contains the specified index, or end() if there is none.
|
|
|
|
const_iterator FindLiveRangeContaining(unsigned Idx) const;
|
2004-07-24 02:52:23 +00:00
|
|
|
|
2006-08-24 22:43:55 +00:00
|
|
|
/// FindLiveRangeContaining - Return an iterator to the live range that
|
|
|
|
/// contains the specified index, or end() if there is none.
|
|
|
|
iterator FindLiveRangeContaining(unsigned Idx);
|
2008-06-04 09:18:41 +00:00
|
|
|
|
|
|
|
/// findDefinedVNInfo - Find the VNInfo that's defined at the specified
|
|
|
|
/// index (register interval) or defined by the specified register (stack
|
|
|
|
/// inteval).
|
|
|
|
VNInfo *findDefinedVNInfo(unsigned DefIdxOrReg) const;
|
2006-08-24 22:43:55 +00:00
|
|
|
|
2004-11-18 03:47:34 +00:00
|
|
|
/// overlaps - Return true if the intersection of the two live intervals is
|
|
|
|
/// not empty.
|
|
|
|
bool overlaps(const LiveInterval& other) const {
|
|
|
|
return overlapsFrom(other, other.begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// overlapsFrom - Return true if the intersection of the two live intervals
|
|
|
|
/// is not empty. The specified iterator is a hint that we can begin
|
|
|
|
/// scanning the Other interval starting at I.
|
|
|
|
bool overlapsFrom(const LiveInterval& other, const_iterator I) const;
|
2004-07-23 17:49:16 +00:00
|
|
|
|
2004-07-23 19:38:44 +00:00
|
|
|
/// addRange - Add the specified LiveRange to this interval, merging
|
|
|
|
/// intervals as appropriate. This returns an iterator to the inserted live
|
|
|
|
/// range (which may have grown since it was inserted.
|
|
|
|
void addRange(LiveRange LR) {
|
|
|
|
addRangeFrom(LR, ranges.begin());
|
|
|
|
}
|
2004-07-23 17:49:16 +00:00
|
|
|
|
2006-08-29 23:18:15 +00:00
|
|
|
/// join - Join two live intervals (this, and other) together. This applies
|
|
|
|
/// mappings to the value numbers in the LHS/RHS intervals as specified. If
|
|
|
|
/// the intervals are not joinable, this aborts.
|
2007-09-06 19:46:46 +00:00
|
|
|
void join(LiveInterval &Other, const int *ValNoAssignments,
|
|
|
|
const int *RHSValNoAssignments,
|
2008-02-26 10:49:39 +00:00
|
|
|
SmallVector<VNInfo*, 16> &NewVNInfo);
|
2004-07-24 02:52:23 +00:00
|
|
|
|
2009-01-29 02:20:59 +00:00
|
|
|
/// isInOneLiveRange - Return true if the range specified is entirely in the
|
|
|
|
/// a single LiveRange of the live interval.
|
|
|
|
bool isInOneLiveRange(unsigned Start, unsigned End);
|
|
|
|
|
2004-07-24 02:52:23 +00:00
|
|
|
/// removeRange - Remove the specified range from this interval. Note that
|
2009-01-29 00:06:09 +00:00
|
|
|
/// the range must be a single LiveRange in its entirety.
|
2008-02-13 02:48:26 +00:00
|
|
|
void removeRange(unsigned Start, unsigned End, bool RemoveDeadValNo = false);
|
2004-07-23 17:49:16 +00:00
|
|
|
|
2008-02-13 02:48:26 +00:00
|
|
|
void removeRange(LiveRange LR, bool RemoveDeadValNo = false) {
|
|
|
|
removeRange(LR.start, LR.end, RemoveDeadValNo);
|
2006-11-16 02:43:32 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 02:48:26 +00:00
|
|
|
/// removeValNo - Remove all the ranges defined by the specified value#.
|
|
|
|
/// Also remove the value# from value# list.
|
|
|
|
void removeValNo(VNInfo *ValNo);
|
|
|
|
|
2007-04-17 20:25:11 +00:00
|
|
|
/// getSize - Returns the sum of sizes of all the LiveRange's.
|
|
|
|
///
|
|
|
|
unsigned getSize() const;
|
|
|
|
|
2004-07-23 17:49:16 +00:00
|
|
|
bool operator<(const LiveInterval& other) const {
|
2004-11-18 01:29:39 +00:00
|
|
|
return beginNumber() < other.beginNumber();
|
2004-07-23 17:49:16 +00:00
|
|
|
}
|
|
|
|
|
2008-02-10 18:45:23 +00:00
|
|
|
void print(std::ostream &OS, const TargetRegisterInfo *TRI = 0) const;
|
|
|
|
void print(std::ostream *OS, const TargetRegisterInfo *TRI = 0) const {
|
|
|
|
if (OS) print(*OS, TRI);
|
2006-11-28 02:07:29 +00:00
|
|
|
}
|
2004-07-24 02:52:23 +00:00
|
|
|
void dump() const;
|
2004-07-23 17:49:16 +00:00
|
|
|
|
|
|
|
private:
|
2004-07-23 19:38:44 +00:00
|
|
|
Ranges::iterator addRangeFrom(LiveRange LR, Ranges::iterator From);
|
|
|
|
void extendIntervalEndTo(Ranges::iterator I, unsigned NewEnd);
|
|
|
|
Ranges::iterator extendIntervalStartTo(Ranges::iterator I, unsigned NewStr);
|
2004-07-24 18:55:15 +00:00
|
|
|
LiveInterval& operator=(const LiveInterval& rhs); // DO NOT IMPLEMENT
|
2004-07-23 17:49:16 +00:00
|
|
|
};
|
|
|
|
|
2006-11-28 02:07:29 +00:00
|
|
|
inline std::ostream &operator<<(std::ostream &OS, const LiveInterval &LI) {
|
2006-11-28 22:21:29 +00:00
|
|
|
LI.print(OS);
|
2006-11-28 02:07:29 +00:00
|
|
|
return OS;
|
|
|
|
}
|
2004-07-23 17:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|