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 | |
Jakob Stoklund Olesen | d67582e | 2012-06-20 21:25:05 +0000 | [diff] [blame^] | 42 | bool CalculateSpillWeights::runOnMachineFunction(MachineFunction &MF) { |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 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: " |
Jakob Stoklund Olesen | d67582e | 2012-06-20 21:25:05 +0000 | [diff] [blame^] | 46 | << MF.getFunction()->getName() << '\n'); |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 47 | |
Jakob Stoklund Olesen | d67582e | 2012-06-20 21:25:05 +0000 | [diff] [blame^] | 48 | LiveIntervals &LIS = getAnalysis<LiveIntervals>(); |
| 49 | MachineRegisterInfo &MRI = MF.getRegInfo(); |
| 50 | VirtRegAuxInfo VRAI(MF, LIS, getAnalysis<MachineLoopInfo>()); |
| 51 | for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) { |
| 52 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
| 53 | if (MRI.reg_nodbg_empty(Reg)) |
| 54 | continue; |
| 55 | VRAI.CalculateWeightAndHint(LIS.getInterval(Reg)); |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 56 | } |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 57 | return false; |
| 58 | } |
| 59 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 60 | // Return the preferred allocation register for reg, given a COPY instruction. |
| 61 | static unsigned copyHint(const MachineInstr *mi, unsigned reg, |
| 62 | const TargetRegisterInfo &tri, |
| 63 | const MachineRegisterInfo &mri) { |
| 64 | unsigned sub, hreg, hsub; |
| 65 | if (mi->getOperand(0).getReg() == reg) { |
| 66 | sub = mi->getOperand(0).getSubReg(); |
| 67 | hreg = mi->getOperand(1).getReg(); |
| 68 | hsub = mi->getOperand(1).getSubReg(); |
| 69 | } else { |
| 70 | sub = mi->getOperand(1).getSubReg(); |
| 71 | hreg = mi->getOperand(0).getReg(); |
| 72 | hsub = mi->getOperand(0).getSubReg(); |
| 73 | } |
| 74 | |
| 75 | if (!hreg) |
| 76 | return 0; |
| 77 | |
| 78 | if (TargetRegisterInfo::isVirtualRegister(hreg)) |
| 79 | return sub == hsub ? hreg : 0; |
| 80 | |
| 81 | const TargetRegisterClass *rc = mri.getRegClass(reg); |
| 82 | |
| 83 | // Only allow physreg hints in rc. |
| 84 | if (sub == 0) |
| 85 | return rc->contains(hreg) ? hreg : 0; |
| 86 | |
| 87 | // reg:sub should match the physreg hreg. |
| 88 | return tri.getMatchingSuperReg(hreg, sub, rc); |
Lang Hames | a937f22 | 2009-12-14 06:49:42 +0000 | [diff] [blame] | 89 | } |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 90 | |
Jakob Stoklund Olesen | 3dfd59b | 2012-06-05 01:06:12 +0000 | [diff] [blame] | 91 | // Check if all values in LI are rematerializable |
| 92 | static bool isRematerializable(const LiveInterval &LI, |
| 93 | const LiveIntervals &LIS, |
| 94 | const TargetInstrInfo &TII) { |
| 95 | for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end(); |
| 96 | I != E; ++I) { |
| 97 | const VNInfo *VNI = *I; |
| 98 | if (VNI->isUnused()) |
| 99 | continue; |
| 100 | if (VNI->isPHIDef()) |
| 101 | return false; |
| 102 | |
| 103 | MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def); |
| 104 | assert(MI && "Dead valno in interval"); |
| 105 | |
| 106 | if (!TII.isTriviallyReMaterializable(MI, LIS.getAliasAnalysis())) |
| 107 | return false; |
| 108 | } |
| 109 | return true; |
| 110 | } |
| 111 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 112 | void VirtRegAuxInfo::CalculateWeightAndHint(LiveInterval &li) { |
Jakob Stoklund Olesen | 1394e6d | 2011-04-26 18:52:36 +0000 | [diff] [blame] | 113 | MachineRegisterInfo &mri = MF.getRegInfo(); |
| 114 | const TargetRegisterInfo &tri = *MF.getTarget().getRegisterInfo(); |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 115 | MachineBasicBlock *mbb = 0; |
| 116 | MachineLoop *loop = 0; |
| 117 | unsigned loopDepth = 0; |
| 118 | bool isExiting = false; |
| 119 | float totalWeight = 0; |
| 120 | SmallPtrSet<MachineInstr*, 8> visited; |
| 121 | |
| 122 | // Find the best physreg hist and the best virtreg hint. |
| 123 | float bestPhys = 0, bestVirt = 0; |
| 124 | unsigned hintPhys = 0, hintVirt = 0; |
| 125 | |
| 126 | // Don't recompute a target specific hint. |
| 127 | bool noHint = mri.getRegAllocationHint(li.reg).first != 0; |
| 128 | |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 129 | // Don't recompute spill weight for an unspillable register. |
| 130 | bool Spillable = li.isSpillable(); |
| 131 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 132 | for (MachineRegisterInfo::reg_iterator I = mri.reg_begin(li.reg); |
| 133 | MachineInstr *mi = I.skipInstruction();) { |
| 134 | if (mi->isIdentityCopy() || mi->isImplicitDef() || mi->isDebugValue()) |
| 135 | continue; |
| 136 | if (!visited.insert(mi)) |
| 137 | continue; |
| 138 | |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 139 | float weight = 1.0f; |
| 140 | if (Spillable) { |
| 141 | // Get loop info for mi. |
| 142 | if (mi->getParent() != mbb) { |
| 143 | mbb = mi->getParent(); |
Jakob Stoklund Olesen | 1394e6d | 2011-04-26 18:52:36 +0000 | [diff] [blame] | 144 | loop = Loops.getLoopFor(mbb); |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 145 | loopDepth = loop ? loop->getLoopDepth() : 0; |
| 146 | isExiting = loop ? loop->isLoopExiting(mbb) : false; |
| 147 | } |
| 148 | |
| 149 | // Calculate instr weight. |
| 150 | bool reads, writes; |
| 151 | tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg); |
| 152 | weight = LiveIntervals::getSpillWeight(writes, reads, loopDepth); |
| 153 | |
| 154 | // Give extra weight to what looks like a loop induction variable update. |
Jakob Stoklund Olesen | 1394e6d | 2011-04-26 18:52:36 +0000 | [diff] [blame] | 155 | if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb)) |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 156 | weight *= 3; |
| 157 | |
| 158 | totalWeight += weight; |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 161 | // Get allocation hints from copies. |
| 162 | if (noHint || !mi->isCopy()) |
| 163 | continue; |
| 164 | unsigned hint = copyHint(mi, li.reg, tri, mri); |
| 165 | if (!hint) |
| 166 | continue; |
Jakob Stoklund Olesen | 1394e6d | 2011-04-26 18:52:36 +0000 | [diff] [blame] | 167 | float hweight = Hint[hint] += weight; |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 168 | if (TargetRegisterInfo::isPhysicalRegister(hint)) { |
Jakob Stoklund Olesen | 1394e6d | 2011-04-26 18:52:36 +0000 | [diff] [blame] | 169 | if (hweight > bestPhys && LIS.isAllocatable(hint)) |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 170 | bestPhys = hweight, hintPhys = hint; |
| 171 | } else { |
| 172 | if (hweight > bestVirt) |
| 173 | bestVirt = hweight, hintVirt = hint; |
| 174 | } |
| 175 | } |
| 176 | |
Jakob Stoklund Olesen | 1394e6d | 2011-04-26 18:52:36 +0000 | [diff] [blame] | 177 | Hint.clear(); |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 178 | |
| 179 | // Always prefer the physreg hint. |
| 180 | if (unsigned hint = hintPhys ? hintPhys : hintVirt) { |
| 181 | mri.setRegAllocationHint(li.reg, 0, hint); |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 182 | // Weakly boost the spill weight of hinted registers. |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 183 | totalWeight *= 1.01F; |
| 184 | } |
| 185 | |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 186 | // If the live interval was already unspillable, leave it that way. |
| 187 | if (!Spillable) |
| 188 | return; |
| 189 | |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 190 | // Mark li as unspillable if all live ranges are tiny. |
Jakob Stoklund Olesen | f5497fb | 2011-05-16 23:50:05 +0000 | [diff] [blame] | 191 | if (li.isZeroLength(LIS.getSlotIndexes())) { |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 192 | li.markNotSpillable(); |
| 193 | return; |
| 194 | } |
| 195 | |
| 196 | // If all of the definitions of the interval are re-materializable, |
Jakob Stoklund Olesen | 3dfd59b | 2012-06-05 01:06:12 +0000 | [diff] [blame] | 197 | // it is a preferred candidate for spilling. |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 198 | // FIXME: this gets much more complicated once we support non-trivial |
| 199 | // re-materialization. |
Jakob Stoklund Olesen | 3dfd59b | 2012-06-05 01:06:12 +0000 | [diff] [blame] | 200 | if (isRematerializable(li, LIS, *MF.getTarget().getInstrInfo())) |
| 201 | totalWeight *= 0.5F; |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 202 | |
Jakob Stoklund Olesen | eb9f040 | 2011-02-14 23:15:38 +0000 | [diff] [blame] | 203 | li.weight = normalizeSpillWeight(totalWeight, li.getSize()); |
Jakob Stoklund Olesen | df30cf9 | 2010-08-10 00:02:26 +0000 | [diff] [blame] | 204 | } |