Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 1 | //===------------------------ CalcSpillWeights.cpp ------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #define DEBUG_TYPE "calcspillweights" |
| 11 | |
| 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" |
Evan Cheng | 8112b53 | 2010-02-10 01:21:02 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetMachine.h" |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetRegisterInfo.h" |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 25 | using namespace llvm; |
| 26 | |
| 27 | char CalculateSpillWeights::ID = 0; |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 28 | INITIALIZE_PASS_BEGIN(CalculateSpillWeights, "calcspillweights", |
| 29 | "Calculate spill weights", false, false) |
| 30 | INITIALIZE_PASS_DEPENDENCY(LiveIntervals) |
| 31 | INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) |
| 32 | INITIALIZE_PASS_END(CalculateSpillWeights, "calcspillweights", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 33 | "Calculate spill weights", false, false) |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 34 | |
| 35 | void CalculateSpillWeights::getAnalysisUsage(AnalysisUsage &au) const { |
| 36 | au.addRequired<LiveIntervals>(); |
| 37 | au.addRequired<MachineLoopInfo>(); |
| 38 | au.setPreservesAll(); |
| 39 | MachineFunctionPass::getAnalysisUsage(au); |
| 40 | } |
| 41 | |
| 42 | bool CalculateSpillWeights::runOnMachineFunction(MachineFunction &fn) { |
| 43 | |
David Greene | 7ed6dd6 | 2009-12-24 00:39:02 +0000 | [diff] [blame] | 44 | DEBUG(dbgs() << "********** Compute Spill Weights **********\n" |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 45 | << "********** Function: " |
| 46 | << fn.getFunction()->getName() << '\n'); |
| 47 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 48 | LiveIntervals &lis = getAnalysis<LiveIntervals>(); |
| 49 | VirtRegAuxInfo vrai(fn, lis, getAnalysis<MachineLoopInfo>()); |
| 50 | for (LiveIntervals::iterator I = lis.begin(), E = lis.end(); I != E; ++I) { |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 51 | LiveInterval &li = *I->second; |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 52 | if (TargetRegisterInfo::isVirtualRegister(li.reg)) |
| 53 | vrai.CalculateWeightAndHint(li); |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 54 | } |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 55 | return false; |
| 56 | } |
| 57 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 58 | // Return the preferred allocation register for reg, given a COPY instruction. |
| 59 | static unsigned copyHint(const MachineInstr *mi, unsigned reg, |
| 60 | const TargetRegisterInfo &tri, |
| 61 | const MachineRegisterInfo &mri) { |
| 62 | unsigned sub, hreg, hsub; |
| 63 | if (mi->getOperand(0).getReg() == reg) { |
| 64 | sub = mi->getOperand(0).getSubReg(); |
| 65 | hreg = mi->getOperand(1).getReg(); |
| 66 | hsub = mi->getOperand(1).getSubReg(); |
| 67 | } else { |
| 68 | sub = mi->getOperand(1).getSubReg(); |
| 69 | hreg = mi->getOperand(0).getReg(); |
| 70 | hsub = mi->getOperand(0).getSubReg(); |
| 71 | } |
| 72 | |
| 73 | if (!hreg) |
| 74 | return 0; |
| 75 | |
| 76 | if (TargetRegisterInfo::isVirtualRegister(hreg)) |
| 77 | return sub == hsub ? hreg : 0; |
| 78 | |
| 79 | const TargetRegisterClass *rc = mri.getRegClass(reg); |
| 80 | |
| 81 | // Only allow physreg hints in rc. |
| 82 | if (sub == 0) |
| 83 | return rc->contains(hreg) ? hreg : 0; |
| 84 | |
| 85 | // reg:sub should match the physreg hreg. |
| 86 | return tri.getMatchingSuperReg(hreg, sub, rc); |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 87 | } |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 88 | |
| 89 | void VirtRegAuxInfo::CalculateWeightAndHint(LiveInterval &li) { |
| 90 | MachineRegisterInfo &mri = mf_.getRegInfo(); |
| 91 | const TargetRegisterInfo &tri = *mf_.getTarget().getRegisterInfo(); |
| 92 | MachineBasicBlock *mbb = 0; |
| 93 | MachineLoop *loop = 0; |
| 94 | unsigned loopDepth = 0; |
| 95 | bool isExiting = false; |
| 96 | float totalWeight = 0; |
| 97 | SmallPtrSet<MachineInstr*, 8> visited; |
| 98 | |
| 99 | // Find the best physreg hist and the best virtreg hint. |
| 100 | float bestPhys = 0, bestVirt = 0; |
| 101 | unsigned hintPhys = 0, hintVirt = 0; |
| 102 | |
| 103 | // Don't recompute a target specific hint. |
| 104 | bool noHint = mri.getRegAllocationHint(li.reg).first != 0; |
| 105 | |
| 106 | for (MachineRegisterInfo::reg_iterator I = mri.reg_begin(li.reg); |
| 107 | MachineInstr *mi = I.skipInstruction();) { |
| 108 | if (mi->isIdentityCopy() || mi->isImplicitDef() || mi->isDebugValue()) |
| 109 | continue; |
| 110 | if (!visited.insert(mi)) |
| 111 | continue; |
| 112 | |
| 113 | // Get loop info for mi. |
| 114 | if (mi->getParent() != mbb) { |
| 115 | mbb = mi->getParent(); |
| 116 | loop = loops_.getLoopFor(mbb); |
| 117 | loopDepth = loop ? loop->getLoopDepth() : 0; |
| 118 | isExiting = loop ? loop->isLoopExiting(mbb) : false; |
| 119 | } |
| 120 | |
| 121 | // Calculate instr weight. |
| 122 | bool reads, writes; |
| 123 | tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg); |
| 124 | float weight = LiveIntervals::getSpillWeight(writes, reads, loopDepth); |
| 125 | |
| 126 | // Give extra weight to what looks like a loop induction variable update. |
| 127 | if (writes && isExiting && lis_.isLiveOutOfMBB(li, mbb)) |
| 128 | weight *= 3; |
| 129 | |
| 130 | totalWeight += weight; |
| 131 | |
| 132 | // Get allocation hints from copies. |
| 133 | if (noHint || !mi->isCopy()) |
| 134 | continue; |
| 135 | unsigned hint = copyHint(mi, li.reg, tri, mri); |
| 136 | if (!hint) |
| 137 | continue; |
| 138 | float hweight = hint_[hint] += weight; |
| 139 | if (TargetRegisterInfo::isPhysicalRegister(hint)) { |
| 140 | if (hweight > bestPhys && lis_.isAllocatable(hint)) |
| 141 | bestPhys = hweight, hintPhys = hint; |
| 142 | } else { |
| 143 | if (hweight > bestVirt) |
| 144 | bestVirt = hweight, hintVirt = hint; |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | hint_.clear(); |
| 149 | |
| 150 | // Always prefer the physreg hint. |
| 151 | if (unsigned hint = hintPhys ? hintPhys : hintVirt) { |
| 152 | mri.setRegAllocationHint(li.reg, 0, hint); |
| 153 | // Weakly boost the spill weifght of hinted registers. |
| 154 | totalWeight *= 1.01F; |
| 155 | } |
| 156 | |
| 157 | // Mark li as unspillable if all live ranges are tiny. |
| 158 | if (li.isZeroLength()) { |
| 159 | li.markNotSpillable(); |
| 160 | return; |
| 161 | } |
| 162 | |
| 163 | // If all of the definitions of the interval are re-materializable, |
| 164 | // it is a preferred candidate for spilling. If none of the defs are |
| 165 | // loads, then it's potentially very cheap to re-materialize. |
| 166 | // FIXME: this gets much more complicated once we support non-trivial |
| 167 | // re-materialization. |
| 168 | bool isLoad = false; |
| 169 | SmallVector<LiveInterval*, 4> spillIs; |
| 170 | if (lis_.isReMaterializable(li, spillIs, isLoad)) { |
| 171 | if (isLoad) |
| 172 | totalWeight *= 0.9F; |
| 173 | else |
| 174 | totalWeight *= 0.5F; |
| 175 | } |
| 176 | |
Jakob Stoklund Olesen | eb9f040 | 2011-02-14 23:15:38 +0000 | [diff] [blame] | 177 | li.weight = normalizeSpillWeight(totalWeight, li.getSize()); |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Jakob Stoklund Olesen | 9db3ea4 | 2010-08-10 18:37:40 +0000 | [diff] [blame] | 180 | void VirtRegAuxInfo::CalculateRegClass(unsigned reg) { |
| 181 | MachineRegisterInfo &mri = mf_.getRegInfo(); |
| 182 | const TargetRegisterInfo *tri = mf_.getTarget().getRegisterInfo(); |
| 183 | const TargetRegisterClass *orc = mri.getRegClass(reg); |
| 184 | SmallPtrSet<const TargetRegisterClass*,8> rcs; |
| 185 | |
| 186 | for (MachineRegisterInfo::reg_nodbg_iterator I = mri.reg_nodbg_begin(reg), |
Jakob Stoklund Olesen | a516e94 | 2010-08-10 21:16:16 +0000 | [diff] [blame] | 187 | E = mri.reg_nodbg_end(); I != E; ++I) { |
| 188 | // The targets don't have accurate enough regclass descriptions that we can |
| 189 | // handle subregs. We need something similar to |
| 190 | // TRI::getMatchingSuperRegClass, but returning a super class instead of a |
| 191 | // sub class. |
| 192 | if (I.getOperand().getSubReg()) { |
| 193 | DEBUG(dbgs() << "Cannot handle subregs: " << I.getOperand() << '\n'); |
| 194 | return; |
| 195 | } |
Jakob Stoklund Olesen | 9db3ea4 | 2010-08-10 18:37:40 +0000 | [diff] [blame] | 196 | if (const TargetRegisterClass *rc = |
| 197 | I->getDesc().getRegClass(I.getOperandNo(), tri)) |
| 198 | rcs.insert(rc); |
Jakob Stoklund Olesen | a516e94 | 2010-08-10 21:16:16 +0000 | [diff] [blame] | 199 | } |
Jakob Stoklund Olesen | 9db3ea4 | 2010-08-10 18:37:40 +0000 | [diff] [blame] | 200 | |
| 201 | // If we found no regclass constraints, just leave reg as is. |
| 202 | // In theory, we could inflate to the largest superclass of reg's existing |
| 203 | // class, but that might not be legal for the current cpu setting. |
| 204 | // This could happen if reg is only used by COPY instructions, so we may need |
| 205 | // to improve on this. |
| 206 | if (rcs.empty()) { |
Jakob Stoklund Olesen | 9db3ea4 | 2010-08-10 18:37:40 +0000 | [diff] [blame] | 207 | return; |
| 208 | } |
| 209 | |
| 210 | // Compute the intersection of all classes in rcs. |
| 211 | // This ought to be independent of iteration order, but if the target register |
| 212 | // classes don't form a proper algebra, it is possible to get different |
| 213 | // results. The solution is to make sure the intersection of any two register |
| 214 | // classes is also a register class or the null set. |
| 215 | const TargetRegisterClass *rc = 0; |
| 216 | for (SmallPtrSet<const TargetRegisterClass*,8>::iterator I = rcs.begin(), |
| 217 | E = rcs.end(); I != E; ++I) { |
| 218 | rc = rc ? getCommonSubClass(rc, *I) : *I; |
| 219 | assert(rc && "Incompatible regclass constraints found"); |
| 220 | } |
| 221 | |
| 222 | if (rc == orc) |
| 223 | return; |
Jakob Stoklund Olesen | 4314268 | 2011-01-09 03:05:53 +0000 | [diff] [blame] | 224 | DEBUG(dbgs() << "Inflating " << orc->getName() << ':' << PrintReg(reg) |
| 225 | << " to " << rc->getName() <<".\n"); |
Jakob Stoklund Olesen | 9db3ea4 | 2010-08-10 18:37:40 +0000 | [diff] [blame] | 226 | mri.setRegClass(reg, rc); |
| 227 | } |