1 //===- CalcSpillWeights.cpp -----------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "llvm/CodeGen/CalcSpillWeights.h" 10 #include "llvm/ADT/SmallPtrSet.h" 11 #include "llvm/CodeGen/LiveInterval.h" 12 #include "llvm/CodeGen/LiveIntervals.h" 13 #include "llvm/CodeGen/MachineFunction.h" 14 #include "llvm/CodeGen/MachineInstr.h" 15 #include "llvm/CodeGen/MachineLoopInfo.h" 16 #include "llvm/CodeGen/MachineOperand.h" 17 #include "llvm/CodeGen/MachineRegisterInfo.h" 18 #include "llvm/CodeGen/TargetInstrInfo.h" 19 #include "llvm/CodeGen/TargetRegisterInfo.h" 20 #include "llvm/CodeGen/TargetSubtargetInfo.h" 21 #include "llvm/CodeGen/VirtRegMap.h" 22 #include "llvm/Support/Debug.h" 23 #include "llvm/Support/raw_ostream.h" 24 #include <cassert> 25 #include <tuple> 26 27 using namespace llvm; 28 29 #define DEBUG_TYPE "calcspillweights" 30 31 void llvm::calculateSpillWeightsAndHints(LiveIntervals &LIS, 32 MachineFunction &MF, 33 VirtRegMap *VRM, 34 const MachineLoopInfo &MLI, 35 const MachineBlockFrequencyInfo &MBFI, 36 VirtRegAuxInfo::NormalizingFn norm) { 37 LLVM_DEBUG(dbgs() << "********** Compute Spill Weights **********\n" 38 << "********** Function: " << MF.getName() << '\n'); 39 40 MachineRegisterInfo &MRI = MF.getRegInfo(); 41 VirtRegAuxInfo VRAI(MF, LIS, VRM, MLI, MBFI, norm); 42 for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) { 43 unsigned Reg = Register::index2VirtReg(i); 44 if (MRI.reg_nodbg_empty(Reg)) 45 continue; 46 VRAI.calculateSpillWeightAndHint(LIS.getInterval(Reg)); 47 } 48 } 49 50 // Return the preferred allocation register for reg, given a COPY instruction. 51 static Register copyHint(const MachineInstr *mi, unsigned reg, 52 const TargetRegisterInfo &tri, 53 const MachineRegisterInfo &mri) { 54 unsigned sub, hsub; 55 Register hreg; 56 if (mi->getOperand(0).getReg() == reg) { 57 sub = mi->getOperand(0).getSubReg(); 58 hreg = mi->getOperand(1).getReg(); 59 hsub = mi->getOperand(1).getSubReg(); 60 } else { 61 sub = mi->getOperand(1).getSubReg(); 62 hreg = mi->getOperand(0).getReg(); 63 hsub = mi->getOperand(0).getSubReg(); 64 } 65 66 if (!hreg) 67 return 0; 68 69 if (Register::isVirtualRegister(hreg)) 70 return sub == hsub ? hreg : Register(); 71 72 const TargetRegisterClass *rc = mri.getRegClass(reg); 73 Register CopiedPReg = (hsub ? tri.getSubReg(hreg, hsub) : hreg); 74 if (rc->contains(CopiedPReg)) 75 return CopiedPReg; 76 77 // Check if reg:sub matches so that a super register could be hinted. 78 if (sub) 79 return tri.getMatchingSuperReg(CopiedPReg, sub, rc); 80 81 return 0; 82 } 83 84 // Check if all values in LI are rematerializable 85 static bool isRematerializable(const LiveInterval &LI, 86 const LiveIntervals &LIS, 87 VirtRegMap *VRM, 88 const TargetInstrInfo &TII) { 89 unsigned Reg = LI.reg(); 90 unsigned Original = VRM ? VRM->getOriginal(Reg) : 0; 91 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end(); 92 I != E; ++I) { 93 const VNInfo *VNI = *I; 94 if (VNI->isUnused()) 95 continue; 96 if (VNI->isPHIDef()) 97 return false; 98 99 MachineInstr *MI = LIS.getInstructionFromIndex(VNI->def); 100 assert(MI && "Dead valno in interval"); 101 102 // Trace copies introduced by live range splitting. The inline 103 // spiller can rematerialize through these copies, so the spill 104 // weight must reflect this. 105 if (VRM) { 106 while (MI->isFullCopy()) { 107 // The copy destination must match the interval register. 108 if (MI->getOperand(0).getReg() != Reg) 109 return false; 110 111 // Get the source register. 112 Reg = MI->getOperand(1).getReg(); 113 114 // If the original (pre-splitting) registers match this 115 // copy came from a split. 116 if (!Register::isVirtualRegister(Reg) || 117 VRM->getOriginal(Reg) != Original) 118 return false; 119 120 // Follow the copy live-in value. 121 const LiveInterval &SrcLI = LIS.getInterval(Reg); 122 LiveQueryResult SrcQ = SrcLI.Query(VNI->def); 123 VNI = SrcQ.valueIn(); 124 assert(VNI && "Copy from non-existing value"); 125 if (VNI->isPHIDef()) 126 return false; 127 MI = LIS.getInstructionFromIndex(VNI->def); 128 assert(MI && "Dead valno in interval"); 129 } 130 } 131 132 if (!TII.isTriviallyReMaterializable(*MI, LIS.getAliasAnalysis())) 133 return false; 134 } 135 return true; 136 } 137 138 void VirtRegAuxInfo::calculateSpillWeightAndHint(LiveInterval &li) { 139 float weight = weightCalcHelper(li); 140 // Check if unspillable. 141 if (weight < 0) 142 return; 143 li.setWeight(weight); 144 } 145 146 float VirtRegAuxInfo::futureWeight(LiveInterval &li, SlotIndex start, 147 SlotIndex end) { 148 return weightCalcHelper(li, &start, &end); 149 } 150 151 float VirtRegAuxInfo::weightCalcHelper(LiveInterval &li, SlotIndex *start, 152 SlotIndex *end) { 153 MachineRegisterInfo &mri = MF.getRegInfo(); 154 const TargetRegisterInfo &tri = *MF.getSubtarget().getRegisterInfo(); 155 MachineBasicBlock *mbb = nullptr; 156 MachineLoop *loop = nullptr; 157 bool isExiting = false; 158 float totalWeight = 0; 159 unsigned numInstr = 0; // Number of instructions using li 160 SmallPtrSet<MachineInstr*, 8> visited; 161 162 std::pair<unsigned, unsigned> TargetHint = mri.getRegAllocationHint(li.reg()); 163 164 if (li.isSpillable() && VRM) { 165 Register Reg = li.reg(); 166 Register Original = VRM->getOriginal(Reg); 167 const LiveInterval &OrigInt = LIS.getInterval(Original); 168 // li comes from a split of OrigInt. If OrigInt was marked 169 // as not spillable, make sure the new interval is marked 170 // as not spillable as well. 171 if (!OrigInt.isSpillable()) 172 li.markNotSpillable(); 173 } 174 175 // Don't recompute spill weight for an unspillable register. 176 bool Spillable = li.isSpillable(); 177 178 bool localSplitArtifact = start && end; 179 180 // Do not update future local split artifacts. 181 bool updateLI = !localSplitArtifact; 182 183 if (localSplitArtifact) { 184 MachineBasicBlock *localMBB = LIS.getMBBFromIndex(*end); 185 assert(localMBB == LIS.getMBBFromIndex(*start) && 186 "start and end are expected to be in the same basic block"); 187 188 // Local split artifact will have 2 additional copy instructions and they 189 // will be in the same BB. 190 // localLI = COPY other 191 // ... 192 // other = COPY localLI 193 totalWeight += LiveIntervals::getSpillWeight(true, false, &MBFI, localMBB); 194 totalWeight += LiveIntervals::getSpillWeight(false, true, &MBFI, localMBB); 195 196 numInstr += 2; 197 } 198 199 // CopyHint is a sortable hint derived from a COPY instruction. 200 struct CopyHint { 201 unsigned Reg; 202 float Weight; 203 bool IsPhys; 204 CopyHint(unsigned R, float W, bool P) : 205 Reg(R), Weight(W), IsPhys(P) {} 206 bool operator<(const CopyHint &rhs) const { 207 // Always prefer any physreg hint. 208 if (IsPhys != rhs.IsPhys) 209 return (IsPhys && !rhs.IsPhys); 210 if (Weight != rhs.Weight) 211 return (Weight > rhs.Weight); 212 return Reg < rhs.Reg; // Tie-breaker. 213 } 214 }; 215 std::set<CopyHint> CopyHints; 216 217 for (MachineRegisterInfo::reg_instr_nodbg_iterator 218 I = mri.reg_instr_nodbg_begin(li.reg()), 219 E = mri.reg_instr_nodbg_end(); 220 I != E;) { 221 MachineInstr *mi = &*(I++); 222 223 // For local split artifacts, we are interested only in instructions between 224 // the expected start and end of the range. 225 SlotIndex si = LIS.getInstructionIndex(*mi); 226 if (localSplitArtifact && ((si < *start) || (si > *end))) 227 continue; 228 229 numInstr++; 230 if (mi->isIdentityCopy() || mi->isImplicitDef()) 231 continue; 232 if (!visited.insert(mi).second) 233 continue; 234 235 float weight = 1.0f; 236 if (Spillable) { 237 // Get loop info for mi. 238 if (mi->getParent() != mbb) { 239 mbb = mi->getParent(); 240 loop = Loops.getLoopFor(mbb); 241 isExiting = loop ? loop->isLoopExiting(mbb) : false; 242 } 243 244 // Calculate instr weight. 245 bool reads, writes; 246 std::tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg()); 247 weight = LiveIntervals::getSpillWeight(writes, reads, &MBFI, *mi); 248 249 // Give extra weight to what looks like a loop induction variable update. 250 if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb)) 251 weight *= 3; 252 253 totalWeight += weight; 254 } 255 256 // Get allocation hints from copies. 257 if (!mi->isCopy()) 258 continue; 259 Register hint = copyHint(mi, li.reg(), tri, mri); 260 if (!hint) 261 continue; 262 // Force hweight onto the stack so that x86 doesn't add hidden precision, 263 // making the comparison incorrectly pass (i.e., 1 > 1 == true??). 264 // 265 // FIXME: we probably shouldn't use floats at all. 266 volatile float hweight = Hint[hint] += weight; 267 if (Register::isVirtualRegister(hint) || mri.isAllocatable(hint)) 268 CopyHints.insert( 269 CopyHint(hint, hweight, Register::isPhysicalRegister(hint))); 270 } 271 272 Hint.clear(); 273 274 // Pass all the sorted copy hints to mri. 275 if (updateLI && CopyHints.size()) { 276 // Remove a generic hint if previously added by target. 277 if (TargetHint.first == 0 && TargetHint.second) 278 mri.clearSimpleHint(li.reg()); 279 280 std::set<unsigned> HintedRegs; 281 for (auto &Hint : CopyHints) { 282 if (!HintedRegs.insert(Hint.Reg).second || 283 (TargetHint.first != 0 && Hint.Reg == TargetHint.second)) 284 // Don't add the same reg twice or the target-type hint again. 285 continue; 286 mri.addRegAllocationHint(li.reg(), Hint.Reg); 287 } 288 289 // Weakly boost the spill weight of hinted registers. 290 totalWeight *= 1.01F; 291 } 292 293 // If the live interval was already unspillable, leave it that way. 294 if (!Spillable) 295 return -1.0; 296 297 // Mark li as unspillable if all live ranges are tiny and the interval 298 // is not live at any reg mask. If the interval is live at a reg mask 299 // spilling may be required. 300 if (updateLI && li.isZeroLength(LIS.getSlotIndexes()) && 301 !li.isLiveAtIndexes(LIS.getRegMaskSlots())) { 302 li.markNotSpillable(); 303 return -1.0; 304 } 305 306 // If all of the definitions of the interval are re-materializable, 307 // it is a preferred candidate for spilling. 308 // FIXME: this gets much more complicated once we support non-trivial 309 // re-materialization. 310 if (isRematerializable(li, LIS, VRM, *MF.getSubtarget().getInstrInfo())) 311 totalWeight *= 0.5F; 312 313 if (localSplitArtifact) 314 return normalize(totalWeight, start->distance(*end), numInstr); 315 return normalize(totalWeight, li.getSize(), numInstr); 316 } 317