blob: 02347b9f0b5cd2740d2940c52c5f0926c341a7c7 [file] [log] [blame]
Eugene Zelenko94348112017-09-29 21:55:49 +00001//===- CalcSpillWeights.cpp -----------------------------------------------===//
Lang Hamesa937f222009-12-14 06:49:42 +00002//
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
Lang Hamesa937f222009-12-14 06:49:42 +000010#include "llvm/CodeGen/CalcSpillWeights.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000011#include "llvm/ADT/SmallPtrSet.h"
12#include "llvm/CodeGen/LiveInterval.h"
Matthias Braunfa621d22017-12-13 02:51:04 +000013#include "llvm/CodeGen/LiveIntervals.h"
Lang Hamesa937f222009-12-14 06:49:42 +000014#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000015#include "llvm/CodeGen/MachineInstr.h"
Lang Hamesa937f222009-12-14 06:49:42 +000016#include "llvm/CodeGen/MachineLoopInfo.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000017#include "llvm/CodeGen/MachineOperand.h"
Lang Hamesa937f222009-12-14 06:49:42 +000018#include "llvm/CodeGen/MachineRegisterInfo.h"
David Blaikie48319232017-11-08 01:01:31 +000019#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikiee3a9b4c2017-11-17 01:07:10 +000020#include "llvm/CodeGen/TargetRegisterInfo.h"
21#include "llvm/CodeGen/TargetSubtargetInfo.h"
Chandler Carruthe3e43d92017-06-06 11:49:48 +000022#include "llvm/CodeGen/VirtRegMap.h"
Lang Hamesa937f222009-12-14 06:49:42 +000023#include "llvm/Support/Debug.h"
24#include "llvm/Support/raw_ostream.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000025#include <cassert>
26#include <tuple>
27
Lang Hamesa937f222009-12-14 06:49:42 +000028using namespace llvm;
29
Chandler Carruth8677f2f2014-04-22 02:02:50 +000030#define DEBUG_TYPE "calcspillweights"
31
Arnaud A. de Grandmaison095f9942013-11-11 19:04:45 +000032void llvm::calculateSpillWeightsAndHints(LiveIntervals &LIS,
Arnaud A. de Grandmaisona77da052013-11-10 17:46:31 +000033 MachineFunction &MF,
Robert Lougher0d87d632015-08-10 11:59:44 +000034 VirtRegMap *VRM,
Arnaud A. de Grandmaisona77da052013-11-10 17:46:31 +000035 const MachineLoopInfo &MLI,
Arnaud A. de Grandmaisond7367632013-11-11 19:56:14 +000036 const MachineBlockFrequencyInfo &MBFI,
37 VirtRegAuxInfo::NormalizingFn norm) {
Nicola Zaghen0818e782018-05-14 12:53:11 +000038 LLVM_DEBUG(dbgs() << "********** Compute Spill Weights **********\n"
39 << "********** Function: " << MF.getName() << '\n');
Lang Hamesa937f222009-12-14 06:49:42 +000040
Jakob Stoklund Olesend67582e2012-06-20 21:25:05 +000041 MachineRegisterInfo &MRI = MF.getRegInfo();
Robert Lougher0d87d632015-08-10 11:59:44 +000042 VirtRegAuxInfo VRAI(MF, LIS, VRM, MLI, MBFI, norm);
Jakob Stoklund Olesend67582e2012-06-20 21:25:05 +000043 for (unsigned i = 0, e = MRI.getNumVirtRegs(); i != e; ++i) {
44 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
45 if (MRI.reg_nodbg_empty(Reg))
46 continue;
Arnaud A. de Grandmaison095f9942013-11-11 19:04:45 +000047 VRAI.calculateSpillWeightAndHint(LIS.getInterval(Reg));
Lang Hamesa937f222009-12-14 06:49:42 +000048 }
Lang Hamesa937f222009-12-14 06:49:42 +000049}
50
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +000051// Return the preferred allocation register for reg, given a COPY instruction.
52static unsigned copyHint(const MachineInstr *mi, unsigned reg,
53 const TargetRegisterInfo &tri,
54 const MachineRegisterInfo &mri) {
55 unsigned sub, hreg, hsub;
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 (TargetRegisterInfo::isVirtualRegister(hreg))
70 return sub == hsub ? hreg : 0;
71
72 const TargetRegisterClass *rc = mri.getRegClass(reg);
Jonas Paulsson48d461f2017-12-05 10:52:24 +000073 unsigned 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;
Lang Hamesa937f222009-12-14 06:49:42 +000082}
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +000083
Jakob Stoklund Olesen3dfd59b2012-06-05 01:06:12 +000084// Check if all values in LI are rematerializable
85static bool isRematerializable(const LiveInterval &LI,
86 const LiveIntervals &LIS,
Robert Lougher0d87d632015-08-10 11:59:44 +000087 VirtRegMap *VRM,
Jakob Stoklund Olesen3dfd59b2012-06-05 01:06:12 +000088 const TargetInstrInfo &TII) {
Robert Lougher0d87d632015-08-10 11:59:44 +000089 unsigned Reg = LI.reg;
90 unsigned Original = VRM ? VRM->getOriginal(Reg) : 0;
Jakob Stoklund Olesen3dfd59b2012-06-05 01:06:12 +000091 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
Robert Lougher0d87d632015-08-10 11:59:44 +0000102 // 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 (!TargetRegisterInfo::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
Duncan P. N. Exon Smith567409d2016-06-30 00:01:54 +0000132 if (!TII.isTriviallyReMaterializable(*MI, LIS.getAliasAnalysis()))
Jakob Stoklund Olesen3dfd59b2012-06-05 01:06:12 +0000133 return false;
134 }
135 return true;
136}
137
Marina Yatsinab76f9892017-10-22 17:59:38 +0000138void VirtRegAuxInfo::calculateSpillWeightAndHint(LiveInterval &li) {
139 float weight = weightCalcHelper(li);
140 // Check if unspillable.
141 if (weight < 0)
142 return;
143 li.weight = weight;
144}
145
146float VirtRegAuxInfo::futureWeight(LiveInterval &li, SlotIndex start,
147 SlotIndex end) {
148 return weightCalcHelper(li, &start, &end);
149}
150
151float VirtRegAuxInfo::weightCalcHelper(LiveInterval &li, SlotIndex *start,
152 SlotIndex *end) {
Jakob Stoklund Olesen1394e6d2011-04-26 18:52:36 +0000153 MachineRegisterInfo &mri = MF.getRegInfo();
Eric Christopher60355182014-08-05 02:39:49 +0000154 const TargetRegisterInfo &tri = *MF.getSubtarget().getRegisterInfo();
Craig Topper4ba84432014-04-14 00:51:57 +0000155 MachineBasicBlock *mbb = nullptr;
156 MachineLoop *loop = nullptr;
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000157 bool isExiting = false;
158 float totalWeight = 0;
Arnaud A. de Grandmaison8025a392014-11-04 20:51:24 +0000159 unsigned numInstr = 0; // Number of instructions using li
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000160 SmallPtrSet<MachineInstr*, 8> visited;
161
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000162 std::pair<unsigned, unsigned> TargetHint = mri.getRegAllocationHint(li.reg);
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000163
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000164 // Don't recompute spill weight for an unspillable register.
165 bool Spillable = li.isSpillable();
166
Marina Yatsinab76f9892017-10-22 17:59:38 +0000167 bool localSplitArtifact = start && end;
168
169 // Do not update future local split artifacts.
170 bool updateLI = !localSplitArtifact;
171
172 if (localSplitArtifact) {
173 MachineBasicBlock *localMBB = LIS.getMBBFromIndex(*end);
174 assert(localMBB == LIS.getMBBFromIndex(*start) &&
175 "start and end are expected to be in the same basic block");
176
177 // Local split artifact will have 2 additional copy instructions and they
178 // will be in the same BB.
179 // localLI = COPY other
180 // ...
181 // other = COPY localLI
182 totalWeight += LiveIntervals::getSpillWeight(true, false, &MBFI, localMBB);
183 totalWeight += LiveIntervals::getSpillWeight(false, true, &MBFI, localMBB);
184
185 numInstr += 2;
186 }
187
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000188 // CopyHint is a sortable hint derived from a COPY instruction.
189 struct CopyHint {
190 unsigned Reg;
191 float Weight;
192 bool IsPhys;
Jonas Paulssonaf9a1a12018-10-05 14:23:11 +0000193 CopyHint(unsigned R, float W, bool P) :
194 Reg(R), Weight(W), IsPhys(P) {}
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000195 bool operator<(const CopyHint &rhs) const {
196 // Always prefer any physreg hint.
197 if (IsPhys != rhs.IsPhys)
198 return (IsPhys && !rhs.IsPhys);
199 if (Weight != rhs.Weight)
200 return (Weight > rhs.Weight);
Jonas Paulssonaf9a1a12018-10-05 14:23:11 +0000201 return Reg < rhs.Reg; // Tie-breaker.
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000202 }
203 };
204 std::set<CopyHint> CopyHints;
205
Owen Anderson76604af2014-03-13 06:02:25 +0000206 for (MachineRegisterInfo::reg_instr_iterator
207 I = mri.reg_instr_begin(li.reg), E = mri.reg_instr_end();
208 I != E; ) {
209 MachineInstr *mi = &*(I++);
Marina Yatsinab76f9892017-10-22 17:59:38 +0000210
211 // For local split artifacts, we are interested only in instructions between
212 // the expected start and end of the range.
213 SlotIndex si = LIS.getInstructionIndex(*mi);
214 if (localSplitArtifact && ((si < *start) || (si > *end)))
215 continue;
216
Arnaud A. de Grandmaison8025a392014-11-04 20:51:24 +0000217 numInstr++;
Shiva Chen24abe712018-05-09 02:42:00 +0000218 if (mi->isIdentityCopy() || mi->isImplicitDef() || mi->isDebugInstr())
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000219 continue;
David Blaikie5401ba72014-11-19 07:49:26 +0000220 if (!visited.insert(mi).second)
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000221 continue;
222
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000223 float weight = 1.0f;
224 if (Spillable) {
225 // Get loop info for mi.
226 if (mi->getParent() != mbb) {
227 mbb = mi->getParent();
Jakob Stoklund Olesen1394e6d2011-04-26 18:52:36 +0000228 loop = Loops.getLoopFor(mbb);
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000229 isExiting = loop ? loop->isLoopExiting(mbb) : false;
230 }
231
232 // Calculate instr weight.
233 bool reads, writes;
Benjamin Kramera4f0aad2014-03-02 13:30:33 +0000234 std::tie(reads, writes) = mi->readsWritesVirtualRegister(li.reg);
Duncan P. N. Exon Smith5144d352016-02-27 20:14:29 +0000235 weight = LiveIntervals::getSpillWeight(writes, reads, &MBFI, *mi);
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000236
237 // Give extra weight to what looks like a loop induction variable update.
Jakob Stoklund Olesen1394e6d2011-04-26 18:52:36 +0000238 if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb))
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000239 weight *= 3;
240
241 totalWeight += weight;
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000242 }
243
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000244 // Get allocation hints from copies.
Jonas Paulssonaf9a1a12018-10-05 14:23:11 +0000245 if (!mi->isCopy())
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000246 continue;
247 unsigned hint = copyHint(mi, li.reg, tri, mri);
248 if (!hint)
249 continue;
Duncan P. N. Exon Smithd5ebbc52014-04-21 17:57:01 +0000250 // Force hweight onto the stack so that x86 doesn't add hidden precision,
251 // making the comparison incorrectly pass (i.e., 1 > 1 == true??).
252 //
253 // FIXME: we probably shouldn't use floats at all.
254 volatile float hweight = Hint[hint] += weight;
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000255 if (TargetRegisterInfo::isVirtualRegister(hint) || mri.isAllocatable(hint))
Jonas Paulssonaf9a1a12018-10-05 14:23:11 +0000256 CopyHints.insert(CopyHint(hint, hweight, tri.isPhysicalRegister(hint)));
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000257 }
258
Jakob Stoklund Olesen1394e6d2011-04-26 18:52:36 +0000259 Hint.clear();
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000260
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000261 // Pass all the sorted copy hints to mri.
262 if (updateLI && CopyHints.size()) {
263 // Remove a generic hint if previously added by target.
264 if (TargetHint.first == 0 && TargetHint.second)
265 mri.clearSimpleHint(li.reg);
266
Jonas Paulssonabaa9ca2018-10-03 12:51:19 +0000267 std::set<unsigned> HintedRegs;
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000268 for (auto &Hint : CopyHints) {
Jonas Paulssonabaa9ca2018-10-03 12:51:19 +0000269 if (!HintedRegs.insert(Hint.Reg).second ||
270 (TargetHint.first != 0 && Hint.Reg == TargetHint.second))
271 // Don't add the same reg twice or the target-type hint again.
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000272 continue;
273 mri.addRegAllocationHint(li.reg, Hint.Reg);
Marina Yatsinab76f9892017-10-22 17:59:38 +0000274 }
Jonas Paulsson48d461f2017-12-05 10:52:24 +0000275
276 // Weakly boost the spill weight of hinted registers.
277 totalWeight *= 1.01F;
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000278 }
279
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000280 // If the live interval was already unspillable, leave it that way.
281 if (!Spillable)
Marina Yatsinab76f9892017-10-22 17:59:38 +0000282 return -1.0;
Jakob Stoklund Olesen6094bd82011-03-29 21:20:19 +0000283
Andrew Kaylorfb2b3b02016-02-08 22:52:51 +0000284 // Mark li as unspillable if all live ranges are tiny and the interval
285 // is not live at any reg mask. If the interval is live at a reg mask
286 // spilling may be required.
Marina Yatsinab76f9892017-10-22 17:59:38 +0000287 if (updateLI && li.isZeroLength(LIS.getSlotIndexes()) &&
Andrew Kaylorfb2b3b02016-02-08 22:52:51 +0000288 !li.isLiveAtIndexes(LIS.getRegMaskSlots())) {
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000289 li.markNotSpillable();
Marina Yatsinab76f9892017-10-22 17:59:38 +0000290 return -1.0;
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000291 }
292
293 // If all of the definitions of the interval are re-materializable,
Jakob Stoklund Olesen3dfd59b2012-06-05 01:06:12 +0000294 // it is a preferred candidate for spilling.
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000295 // FIXME: this gets much more complicated once we support non-trivial
296 // re-materialization.
Robert Lougher0d87d632015-08-10 11:59:44 +0000297 if (isRematerializable(li, LIS, VRM, *MF.getSubtarget().getInstrInfo()))
Jakob Stoklund Olesen3dfd59b2012-06-05 01:06:12 +0000298 totalWeight *= 0.5F;
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000299
Marina Yatsinab76f9892017-10-22 17:59:38 +0000300 if (localSplitArtifact)
301 return normalize(totalWeight, start->distance(*end), numInstr);
302 return normalize(totalWeight, li.getSize(), numInstr);
Jakob Stoklund Olesendf30cf92010-08-10 00:02:26 +0000303}