1 //===------------------------ CalcSpillWeights.cpp ------------------------===//
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 #define DEBUG_TYPE "calcspillweights"
12 #include "llvm/Function.h"
13 #include "llvm/ADT/SmallSet.h"
14 #include "llvm/CodeGen/CalcSpillWeights.h"
15 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
16 #include "llvm/CodeGen/MachineFunction.h"
17 #include "llvm/CodeGen/MachineLoopInfo.h"
18 #include "llvm/CodeGen/MachineRegisterInfo.h"
19 #include "llvm/CodeGen/SlotIndexes.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/Support/raw_ostream.h"
22 #include "llvm/Target/TargetInstrInfo.h"
23 #include "llvm/Target/TargetMachine.h"
24 #include "llvm/Target/TargetRegisterInfo.h"
27 char CalculateSpillWeights::ID = 0;
28 static RegisterPass<CalculateSpillWeights> X("calcspillweights",
29 "Calculate spill weights");
31 void CalculateSpillWeights::getAnalysisUsage(AnalysisUsage &au) const {
32 au.addRequired<LiveIntervals>();
33 au.addRequired<MachineLoopInfo>();
35 MachineFunctionPass::getAnalysisUsage(au);
38 bool CalculateSpillWeights::runOnMachineFunction(MachineFunction &fn) {
40 DEBUG(dbgs() << "********** Compute Spill Weights **********\n"
41 << "********** Function: "
42 << fn.getFunction()->getName() << '\n');
44 LiveIntervals *lis = &getAnalysis<LiveIntervals>();
45 MachineLoopInfo *loopInfo = &getAnalysis<MachineLoopInfo>();
46 MachineRegisterInfo *mri = &fn.getRegInfo();
48 SmallSet<unsigned, 4> processed;
49 for (MachineFunction::iterator mbbi = fn.begin(), mbbe = fn.end();
50 mbbi != mbbe; ++mbbi) {
51 MachineBasicBlock* mbb = mbbi;
52 SlotIndex mbbEnd = lis->getMBBEndIdx(mbb);
53 MachineLoop* loop = loopInfo->getLoopFor(mbb);
54 unsigned loopDepth = loop ? loop->getLoopDepth() : 0;
55 bool isExiting = loop ? loop->isLoopExiting(mbb) : false;
57 for (MachineBasicBlock::const_iterator mii = mbb->begin(), mie = mbb->end();
59 const MachineInstr *mi = mii;
60 if (mi->isIdentityCopy() || mi->isImplicitDef() || mi->isDebugValue())
63 for (unsigned i = 0, e = mi->getNumOperands(); i != e; ++i) {
64 const MachineOperand &mopi = mi->getOperand(i);
65 if (!mopi.isReg() || mopi.getReg() == 0)
67 unsigned reg = mopi.getReg();
68 if (!TargetRegisterInfo::isVirtualRegister(mopi.getReg()))
70 // Multiple uses of reg by the same instruction. It should not
71 // contribute to spill weight again.
72 if (!processed.insert(reg))
75 bool hasDef = mopi.isDef();
76 bool hasUse = !hasDef;
77 for (unsigned j = i+1; j != e; ++j) {
78 const MachineOperand &mopj = mi->getOperand(j);
79 if (!mopj.isReg() || mopj.getReg() != reg)
81 hasDef |= mopj.isDef();
82 hasUse |= mopj.isUse();
87 LiveInterval ®Int = lis->getInterval(reg);
88 float weight = lis->getSpillWeight(hasDef, hasUse, loopDepth);
89 if (hasDef && isExiting) {
90 // Looks like this is a loop count variable update.
91 SlotIndex defIdx = lis->getInstructionIndex(mi).getDefIndex();
92 const LiveRange *dlr =
93 lis->getInterval(reg).getLiveRangeContaining(defIdx);
94 if (dlr->end >= mbbEnd)
97 regInt.weight += weight;
103 for (LiveIntervals::iterator I = lis->begin(), E = lis->end(); I != E; ++I) {
104 LiveInterval &li = *I->second;
105 if (TargetRegisterInfo::isVirtualRegister(li.reg)) {
106 // If the live interval length is essentially zero, i.e. in every live
107 // range the use follows def immediately, it doesn't make sense to spill
108 // it and hope it will be easier to allocate for this li.
109 if (isZeroLengthInterval(&li)) {
110 li.weight = HUGE_VALF;
115 SmallVector<LiveInterval*, 4> spillIs;
116 if (lis->isReMaterializable(li, spillIs, isLoad)) {
117 // If all of the definitions of the interval are re-materializable,
118 // it is a preferred candidate for spilling. If none of the defs are
119 // loads, then it's potentially very cheap to re-materialize.
120 // FIXME: this gets much more complicated once we support non-trivial
121 // re-materialization.
128 // Slightly prefer live interval that has been assigned a preferred reg.
129 std::pair<unsigned, unsigned> Hint = mri->getRegAllocationHint(li.reg);
130 if (Hint.first || Hint.second)
133 lis->normalizeSpillWeight(li);
140 /// Returns true if the given live interval is zero length.
141 bool CalculateSpillWeights::isZeroLengthInterval(LiveInterval *li) const {
142 for (LiveInterval::Ranges::const_iterator
143 i = li->ranges.begin(), e = li->ranges.end(); i != e; ++i)
144 if (i->end.getPrevIndex() > i->start)