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