1 //===-- LiveIntervalAnalysis.h - Live Interval Analysis ---------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the LiveInterval analysis pass. Given some numbering of
11 // each the machine instructions (in this implemention depth-first order) an
12 // interval [i, j) is said to be a live interval for register v if there is no
13 // instruction with number j' > j such that v is live at j' and there is no
14 // instruction with number i' < i such that v is live at i'. In this
15 // implementation intervals can have holes, i.e. an interval might look like
16 // [1,20), [50,65), [1000,1001).
18 //===----------------------------------------------------------------------===//
20 #ifndef LLVM_CODEGEN_LIVEINTERVAL_ANALYSIS_H
21 #define LLVM_CODEGEN_LIVEINTERVAL_ANALYSIS_H
23 #include "llvm/CodeGen/MachineFunctionPass.h"
24 #include "llvm/CodeGen/LiveInterval.h"
25 #include "llvm/ADT/BitVector.h"
26 #include "llvm/ADT/DenseMap.h"
27 #include "llvm/ADT/SmallPtrSet.h"
28 #include "llvm/ADT/SmallVector.h"
29 #include "llvm/Support/Allocator.h"
36 class MachineLoopInfo;
37 class TargetRegisterInfo;
38 class MachineRegisterInfo;
39 class TargetInstrInfo;
40 class TargetRegisterClass;
42 typedef std::pair<unsigned, MachineBasicBlock*> IdxMBBPair;
44 inline bool operator<(unsigned V, const IdxMBBPair &IM) {
48 inline bool operator<(const IdxMBBPair &IM, unsigned V) {
52 struct Idx2MBBCompare {
53 bool operator()(const IdxMBBPair &LHS, const IdxMBBPair &RHS) const {
54 return LHS.first < RHS.first;
58 class LiveIntervals : public MachineFunctionPass {
60 MachineRegisterInfo* mri_;
61 const TargetMachine* tm_;
62 const TargetRegisterInfo* tri_;
63 const TargetInstrInfo* tii_;
66 /// Special pool allocator for VNInfo's (LiveInterval val#).
68 BumpPtrAllocator VNInfoAllocator;
70 /// MBB2IdxMap - The indexes of the first and last instructions in the
71 /// specified basic block.
72 std::vector<std::pair<unsigned, unsigned> > MBB2IdxMap;
74 /// Idx2MBBMap - Sorted list of pairs of index of first instruction
76 std::vector<IdxMBBPair> Idx2MBBMap;
78 typedef std::map<MachineInstr*, unsigned> Mi2IndexMap;
81 typedef std::vector<MachineInstr*> Index2MiMap;
84 typedef std::map<unsigned, LiveInterval> Reg2IntervalMap;
85 Reg2IntervalMap r2iMap_;
87 BitVector allocatableRegs_;
89 std::vector<MachineInstr*> ClonedMIs;
92 static char ID; // Pass identification, replacement for typeid
93 LiveIntervals() : MachineFunctionPass((intptr_t)&ID) {}
105 static unsigned getBaseIndex(unsigned index) {
106 return index - (index % InstrSlots::NUM);
108 static unsigned getBoundaryIndex(unsigned index) {
109 return getBaseIndex(index + InstrSlots::NUM - 1);
111 static unsigned getLoadIndex(unsigned index) {
112 return getBaseIndex(index) + InstrSlots::LOAD;
114 static unsigned getUseIndex(unsigned index) {
115 return getBaseIndex(index) + InstrSlots::USE;
117 static unsigned getDefIndex(unsigned index) {
118 return getBaseIndex(index) + InstrSlots::DEF;
120 static unsigned getStoreIndex(unsigned index) {
121 return getBaseIndex(index) + InstrSlots::STORE;
124 static float getSpillWeight(bool isDef, bool isUse, unsigned loopDepth) {
125 return (isDef + isUse) * powf(10.0F, (float)loopDepth);
128 typedef Reg2IntervalMap::iterator iterator;
129 typedef Reg2IntervalMap::const_iterator const_iterator;
130 const_iterator begin() const { return r2iMap_.begin(); }
131 const_iterator end() const { return r2iMap_.end(); }
132 iterator begin() { return r2iMap_.begin(); }
133 iterator end() { return r2iMap_.end(); }
134 unsigned getNumIntervals() const { return (unsigned)r2iMap_.size(); }
136 LiveInterval &getInterval(unsigned reg) {
137 Reg2IntervalMap::iterator I = r2iMap_.find(reg);
138 assert(I != r2iMap_.end() && "Interval does not exist for register");
142 const LiveInterval &getInterval(unsigned reg) const {
143 Reg2IntervalMap::const_iterator I = r2iMap_.find(reg);
144 assert(I != r2iMap_.end() && "Interval does not exist for register");
148 bool hasInterval(unsigned reg) const {
149 return r2iMap_.count(reg);
152 /// getMBBStartIdx - Return the base index of the first instruction in the
153 /// specified MachineBasicBlock.
154 unsigned getMBBStartIdx(MachineBasicBlock *MBB) const {
155 return getMBBStartIdx(MBB->getNumber());
157 unsigned getMBBStartIdx(unsigned MBBNo) const {
158 assert(MBBNo < MBB2IdxMap.size() && "Invalid MBB number!");
159 return MBB2IdxMap[MBBNo].first;
162 /// getMBBEndIdx - Return the store index of the last instruction in the
163 /// specified MachineBasicBlock.
164 unsigned getMBBEndIdx(MachineBasicBlock *MBB) const {
165 return getMBBEndIdx(MBB->getNumber());
167 unsigned getMBBEndIdx(unsigned MBBNo) const {
168 assert(MBBNo < MBB2IdxMap.size() && "Invalid MBB number!");
169 return MBB2IdxMap[MBBNo].second;
172 /// getMBBFromIndex - given an index in any instruction of an
173 /// MBB return a pointer the MBB
174 MachineBasicBlock* getMBBFromIndex(unsigned index) const {
175 std::vector<IdxMBBPair>::const_iterator I =
176 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), index);
177 // Take the pair containing the index
178 std::vector<IdxMBBPair>::const_iterator J =
179 ((I != Idx2MBBMap.end() && I->first > index) ||
180 (I == Idx2MBBMap.end() && Idx2MBBMap.size()>0)) ? (I-1): I;
182 assert(J != Idx2MBBMap.end() && J->first < index+1 &&
183 index <= getMBBEndIdx(J->second) &&
184 "index does not correspond to an MBB");
188 /// getInstructionIndex - returns the base index of instr
189 unsigned getInstructionIndex(MachineInstr* instr) const {
190 Mi2IndexMap::const_iterator it = mi2iMap_.find(instr);
191 assert(it != mi2iMap_.end() && "Invalid instruction!");
195 /// getInstructionFromIndex - given an index in any slot of an
196 /// instruction return a pointer the instruction
197 MachineInstr* getInstructionFromIndex(unsigned index) const {
198 index /= InstrSlots::NUM; // convert index to vector index
199 assert(index < i2miMap_.size() &&
200 "index does not correspond to an instruction");
201 return i2miMap_[index];
204 /// conflictsWithPhysRegDef - Returns true if the specified register
205 /// is defined during the duration of the specified interval.
206 bool conflictsWithPhysRegDef(const LiveInterval &li, VirtRegMap &vrm,
209 /// findLiveInMBBs - Given a live range, if the value of the range
210 /// is live in any MBB returns true as well as the list of basic blocks
211 /// where the value is live in.
212 bool findLiveInMBBs(const LiveRange &LR,
213 SmallVectorImpl<MachineBasicBlock*> &MBBs) const;
217 LiveInterval &getOrCreateInterval(unsigned reg) {
218 Reg2IntervalMap::iterator I = r2iMap_.find(reg);
219 if (I == r2iMap_.end())
220 I = r2iMap_.insert(I, std::make_pair(reg, createInterval(reg)));
224 /// addLiveRangeToEndOfBlock - Given a register and an instruction,
225 /// adds a live range from that instruction to the end of its MBB.
226 LiveRange addLiveRangeToEndOfBlock(unsigned reg,
227 MachineInstr* startInst);
231 void removeInterval(unsigned Reg) {
235 /// isRemoved - returns true if the specified machine instr has been
237 bool isRemoved(MachineInstr* instr) const {
238 return !mi2iMap_.count(instr);
241 /// RemoveMachineInstrFromMaps - This marks the specified machine instr as
243 void RemoveMachineInstrFromMaps(MachineInstr *MI) {
244 // remove index -> MachineInstr and
245 // MachineInstr -> index mappings
246 Mi2IndexMap::iterator mi2i = mi2iMap_.find(MI);
247 if (mi2i != mi2iMap_.end()) {
248 i2miMap_[mi2i->second/InstrSlots::NUM] = 0;
249 mi2iMap_.erase(mi2i);
253 /// ReplaceMachineInstrInMaps - Replacing a machine instr with a new one in
254 /// maps used by register allocator.
255 void ReplaceMachineInstrInMaps(MachineInstr *MI, MachineInstr *NewMI) {
256 Mi2IndexMap::iterator mi2i = mi2iMap_.find(MI);
257 if (mi2i == mi2iMap_.end())
259 i2miMap_[mi2i->second/InstrSlots::NUM] = NewMI;
260 Mi2IndexMap::iterator it = mi2iMap_.find(MI);
261 assert(it != mi2iMap_.end() && "Invalid instruction!");
262 unsigned Index = it->second;
264 mi2iMap_[NewMI] = Index;
267 BumpPtrAllocator& getVNInfoAllocator() { return VNInfoAllocator; }
269 /// getVNInfoSourceReg - Helper function that parses the specified VNInfo
270 /// copy field and returns the source register that defines it.
271 unsigned getVNInfoSourceReg(const VNInfo *VNI) const;
273 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
274 virtual void releaseMemory();
276 /// runOnMachineFunction - pass entry point
277 virtual bool runOnMachineFunction(MachineFunction&);
279 /// print - Implement the dump method.
280 virtual void print(std::ostream &O, const Module* = 0) const;
281 void print(std::ostream *O, const Module* M = 0) const {
285 /// addIntervalsForSpills - Create new intervals for spilled defs / uses of
286 /// the given interval.
287 std::vector<LiveInterval*>
288 addIntervalsForSpills(const LiveInterval& i,
289 const MachineLoopInfo *loopInfo, VirtRegMap& vrm);
291 /// spillPhysRegAroundRegDefsUses - Spill the specified physical register
292 /// around all defs and uses of the specified interval.
293 void spillPhysRegAroundRegDefsUses(const LiveInterval &li,
294 unsigned PhysReg, VirtRegMap &vrm);
296 /// isReMaterializable - Returns true if every definition of MI of every
297 /// val# of the specified interval is re-materializable. Also returns true
298 /// by reference if all of the defs are load instructions.
299 bool isReMaterializable(const LiveInterval &li, bool &isLoad);
301 /// getRepresentativeReg - Find the largest super register of the specified
302 /// physical register.
303 unsigned getRepresentativeReg(unsigned Reg) const;
305 /// getNumConflictsWithPhysReg - Return the number of uses and defs of the
306 /// specified interval that conflicts with the specified physical register.
307 unsigned getNumConflictsWithPhysReg(const LiveInterval &li,
308 unsigned PhysReg) const;
310 /// computeNumbering - Compute the index numbering.
311 void computeNumbering();
314 /// computeIntervals - Compute live intervals.
315 void computeIntervals();
317 /// handleRegisterDef - update intervals for a register def
318 /// (calls handlePhysicalRegisterDef and
319 /// handleVirtualRegisterDef)
320 void handleRegisterDef(MachineBasicBlock *MBB,
321 MachineBasicBlock::iterator MI, unsigned MIIdx,
324 /// handleVirtualRegisterDef - update intervals for a virtual
326 void handleVirtualRegisterDef(MachineBasicBlock *MBB,
327 MachineBasicBlock::iterator MI,
329 LiveInterval& interval);
331 /// handlePhysicalRegisterDef - update intervals for a physical register
333 void handlePhysicalRegisterDef(MachineBasicBlock* mbb,
334 MachineBasicBlock::iterator mi,
336 LiveInterval &interval,
337 MachineInstr *CopyMI);
339 /// handleLiveInRegister - Create interval for a livein register.
340 void handleLiveInRegister(MachineBasicBlock* mbb,
342 LiveInterval &interval, bool isAlias = false);
344 /// getReMatImplicitUse - If the remat definition MI has one (for now, we
345 /// only allow one) virtual register operand, then its uses are implicitly
346 /// using the register. Returns the virtual register.
347 unsigned getReMatImplicitUse(const LiveInterval &li,
348 MachineInstr *MI) const;
350 /// isValNoAvailableAt - Return true if the val# of the specified interval
351 /// which reaches the given instruction also reaches the specified use
353 bool isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
354 unsigned UseIdx) const;
356 /// isReMaterializable - Returns true if the definition MI of the specified
357 /// val# of the specified interval is re-materializable. Also returns true
358 /// by reference if the def is a load.
359 bool isReMaterializable(const LiveInterval &li, const VNInfo *ValNo,
360 MachineInstr *MI, bool &isLoad);
362 /// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
363 /// slot / to reg or any rematerialized load into ith operand of specified
364 /// MI. If it is successul, MI is updated with the newly created MI and
366 bool tryFoldMemoryOperand(MachineInstr* &MI, VirtRegMap &vrm,
367 MachineInstr *DefMI, unsigned InstrIdx,
368 SmallVector<unsigned, 2> &Ops,
369 bool isSS, int Slot, unsigned Reg);
371 /// canFoldMemoryOperand - Return true if the specified load / store
372 /// folding is possible.
373 bool canFoldMemoryOperand(MachineInstr *MI,
374 SmallVector<unsigned, 2> &Ops,
375 bool ReMatLoadSS) const;
377 /// anyKillInMBBAfterIdx - Returns true if there is a kill of the specified
378 /// VNInfo that's after the specified index but is within the basic block.
379 bool anyKillInMBBAfterIdx(const LiveInterval &li, const VNInfo *VNI,
380 MachineBasicBlock *MBB, unsigned Idx) const;
382 /// intervalIsInOneMBB - Returns true if the specified interval is entirely
383 /// within a single basic block.
384 bool intervalIsInOneMBB(const LiveInterval &li) const;
386 /// hasAllocatableSuperReg - Return true if the specified physical register
387 /// has any super register that's allocatable.
388 bool hasAllocatableSuperReg(unsigned Reg) const;
390 /// SRInfo - Spill / restore info.
395 SRInfo(int i, unsigned vr, bool f) : index(i), vreg(vr), canFold(f) {};
398 bool alsoFoldARestore(int Id, int index, unsigned vr,
399 BitVector &RestoreMBBs,
400 std::map<unsigned,std::vector<SRInfo> >&RestoreIdxes);
401 void eraseRestoreInfo(int Id, int index, unsigned vr,
402 BitVector &RestoreMBBs,
403 std::map<unsigned,std::vector<SRInfo> >&RestoreIdxes);
405 /// handleSpilledImpDefs - Remove IMPLICIT_DEF instructions which are being
406 /// spilled and create empty intervals for their uses.
407 void handleSpilledImpDefs(const LiveInterval &li, VirtRegMap &vrm,
408 const TargetRegisterClass* rc,
409 std::vector<LiveInterval*> &NewLIs);
411 /// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
412 /// interval on to-be re-materialized operands of MI) with new register.
413 void rewriteImplicitOps(const LiveInterval &li,
414 MachineInstr *MI, unsigned NewVReg, VirtRegMap &vrm);
416 /// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper
417 /// functions for addIntervalsForSpills to rewrite uses / defs for the given
419 bool rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
420 bool TrySplit, unsigned index, unsigned end, MachineInstr *MI,
421 MachineInstr *OrigDefMI, MachineInstr *DefMI, unsigned Slot, int LdSlot,
422 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
423 VirtRegMap &vrm, const TargetRegisterClass* rc,
424 SmallVector<int, 4> &ReMatIds, const MachineLoopInfo *loopInfo,
425 unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
426 std::map<unsigned,unsigned> &MBBVRegsMap,
427 std::vector<LiveInterval*> &NewLIs);
428 void rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
429 LiveInterval::Ranges::const_iterator &I,
430 MachineInstr *OrigDefMI, MachineInstr *DefMI, unsigned Slot, int LdSlot,
431 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
432 VirtRegMap &vrm, const TargetRegisterClass* rc,
433 SmallVector<int, 4> &ReMatIds, const MachineLoopInfo *loopInfo,
434 BitVector &SpillMBBs,
435 std::map<unsigned,std::vector<SRInfo> > &SpillIdxes,
436 BitVector &RestoreMBBs,
437 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes,
438 std::map<unsigned,unsigned> &MBBVRegsMap,
439 std::vector<LiveInterval*> &NewLIs);
441 static LiveInterval createInterval(unsigned Reg);
443 void printRegName(unsigned reg) const;
446 } // End llvm namespace