blob: 3887fc81d826ae07fa061ac4c523d23ada8378ed [file] [log] [blame]
Chris Lattnera3b8b5c2004-07-23 17:56:30 +00001//===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LiveInterval analysis pass which is used
11// by the Linear Scan Register allocator. This pass linearizes the
12// basic blocks of the function in DFS order and uses the
13// LiveVariables pass to conservatively compute live intervals for
14// each virtual and physical register.
15//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "liveintervals"
Chris Lattner3c3fe462005-09-21 04:19:09 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Misha Brukman08a6c762004-09-03 18:25:53 +000020#include "VirtRegMap.h"
Chris Lattner015959e2004-05-01 21:24:39 +000021#include "llvm/Value.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000022#include "llvm/Analysis/AliasAnalysis.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000023#include "llvm/CodeGen/LiveVariables.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000025#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng2578ba22009-07-01 01:59:31 +000026#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000027#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000028#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000029#include "llvm/CodeGen/Passes.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000030#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000031#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000032#include "llvm/Target/TargetInstrInfo.h"
33#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000034#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000035#include "llvm/Support/CommandLine.h"
36#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000037#include "llvm/Support/ErrorHandling.h"
38#include "llvm/Support/raw_ostream.h"
Evan Cheng2578ba22009-07-01 01:59:31 +000039#include "llvm/ADT/DepthFirstIterator.h"
40#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000041#include "llvm/ADT/Statistic.h"
42#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000043#include <algorithm>
Lang Hamesf41538d2009-06-02 16:53:25 +000044#include <limits>
Jeff Cohen97af7512006-12-02 02:22:01 +000045#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000046using namespace llvm;
47
Dan Gohman844731a2008-05-13 00:00:25 +000048// Hidden options for help debugging.
49static cl::opt<bool> DisableReMat("disable-rematerialization",
50 cl::init(false), cl::Hidden);
Evan Cheng81a03822007-11-17 00:40:40 +000051
Dan Gohman844731a2008-05-13 00:00:25 +000052static cl::opt<bool> SplitAtBB("split-intervals-at-bb",
53 cl::init(true), cl::Hidden);
54static cl::opt<int> SplitLimit("split-limit",
55 cl::init(-1), cl::Hidden);
Evan Chengbc165e42007-08-16 07:24:22 +000056
Dan Gohman4c8f8702008-07-25 15:08:37 +000057static cl::opt<bool> EnableAggressiveRemat("aggressive-remat", cl::Hidden);
58
Owen Andersonae339ba2008-08-19 00:17:30 +000059static cl::opt<bool> EnableFastSpilling("fast-spill",
60 cl::init(false), cl::Hidden);
61
Chris Lattnercd3245a2006-12-19 22:41:21 +000062STATISTIC(numIntervals, "Number of original intervals");
Evan Cheng0cbb1162007-11-29 01:06:25 +000063STATISTIC(numFolds , "Number of loads/stores folded into instructions");
64STATISTIC(numSplits , "Number of intervals split");
Chris Lattnercd3245a2006-12-19 22:41:21 +000065
Devang Patel19974732007-05-03 01:11:54 +000066char LiveIntervals::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000067static RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000068
Chris Lattnerf7da2c72006-08-24 22:43:55 +000069void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman6d69ba82008-07-25 00:02:30 +000070 AU.addRequired<AliasAnalysis>();
71 AU.addPreserved<AliasAnalysis>();
David Greene25133302007-06-08 17:18:56 +000072 AU.addPreserved<LiveVariables>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000073 AU.addRequired<LiveVariables>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000074 AU.addPreservedID(MachineLoopInfoID);
75 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +000076
77 if (!StrongPHIElim) {
78 AU.addPreservedID(PHIEliminationID);
79 AU.addRequiredID(PHIEliminationID);
80 }
81
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000082 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000083 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000084}
85
Chris Lattnerf7da2c72006-08-24 22:43:55 +000086void LiveIntervals::releaseMemory() {
Owen Anderson03857b22008-08-13 21:49:13 +000087 // Free the live intervals themselves.
Owen Anderson20e28392008-08-13 22:08:30 +000088 for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
Owen Anderson03857b22008-08-13 21:49:13 +000089 E = r2iMap_.end(); I != E; ++I)
90 delete I->second;
91
Evan Cheng3f32d652008-06-04 09:18:41 +000092 MBB2IdxMap.clear();
Evan Cheng4ca980e2007-10-17 02:10:22 +000093 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000094 mi2iMap_.clear();
95 i2miMap_.clear();
96 r2iMap_.clear();
Lang Hamesffd13262009-07-09 03:57:02 +000097 terminatorGaps.clear();
98
Evan Chengdd199d22007-09-06 01:07:24 +000099 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
100 VNInfoAllocator.Reset();
Evan Cheng1ed99222008-07-19 00:37:25 +0000101 while (!ClonedMIs.empty()) {
102 MachineInstr *MI = ClonedMIs.back();
103 ClonedMIs.pop_back();
104 mf_->DeleteMachineInstr(MI);
105 }
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000106}
107
Evan Cheng2578ba22009-07-01 01:59:31 +0000108/// processImplicitDefs - Process IMPLICIT_DEF instructions and make sure
109/// there is one implicit_def for each use. Add isUndef marker to
110/// implicit_def defs and their uses.
111void LiveIntervals::processImplicitDefs() {
112 SmallSet<unsigned, 8> ImpDefRegs;
113 SmallVector<MachineInstr*, 8> ImpDefMIs;
114 MachineBasicBlock *Entry = mf_->begin();
115 SmallPtrSet<MachineBasicBlock*,16> Visited;
116 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
117 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
118 DFI != E; ++DFI) {
119 MachineBasicBlock *MBB = *DFI;
120 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
121 I != E; ) {
122 MachineInstr *MI = &*I;
123 ++I;
124 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
125 unsigned Reg = MI->getOperand(0).getReg();
126 MI->getOperand(0).setIsUndef();
127 ImpDefRegs.insert(Reg);
128 ImpDefMIs.push_back(MI);
129 continue;
130 }
Evan Cheng459a7c62009-07-01 08:19:36 +0000131
132 bool ChangedToImpDef = false;
133 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng2578ba22009-07-01 01:59:31 +0000134 MachineOperand& MO = MI->getOperand(i);
135 if (!MO.isReg() || !MO.isUse())
136 continue;
137 unsigned Reg = MO.getReg();
138 if (!Reg)
139 continue;
140 if (!ImpDefRegs.count(Reg))
141 continue;
Evan Cheng459a7c62009-07-01 08:19:36 +0000142 // Use is a copy, just turn it into an implicit_def.
143 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
144 if (tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
145 Reg == SrcReg) {
146 bool isKill = MO.isKill();
147 MI->setDesc(tii_->get(TargetInstrInfo::IMPLICIT_DEF));
148 for (int j = MI->getNumOperands() - 1, ee = 0; j > ee; --j)
149 MI->RemoveOperand(j);
150 if (isKill)
151 ImpDefRegs.erase(Reg);
152 ChangedToImpDef = true;
153 break;
154 }
155
Evan Cheng2578ba22009-07-01 01:59:31 +0000156 MO.setIsUndef();
157 if (MO.isKill() || MI->isRegTiedToDefOperand(i))
158 ImpDefRegs.erase(Reg);
159 }
160
Evan Cheng459a7c62009-07-01 08:19:36 +0000161 if (ChangedToImpDef) {
162 // Backtrack to process this new implicit_def.
163 --I;
164 } else {
165 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
166 MachineOperand& MO = MI->getOperand(i);
167 if (!MO.isReg() || !MO.isDef())
168 continue;
169 ImpDefRegs.erase(MO.getReg());
170 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000171 }
172 }
173
174 // Any outstanding liveout implicit_def's?
175 for (unsigned i = 0, e = ImpDefMIs.size(); i != e; ++i) {
176 MachineInstr *MI = ImpDefMIs[i];
177 unsigned Reg = MI->getOperand(0).getReg();
178 if (TargetRegisterInfo::isPhysicalRegister(Reg))
179 // Physical registers are not liveout (yet).
180 continue;
181 if (!ImpDefRegs.count(Reg))
182 continue;
Evan Cheng459a7c62009-07-01 08:19:36 +0000183
184 // If there are multiple defs of the same register and at least one
185 // is not an implicit_def, do not insert implicit_def's before the
186 // uses.
187 bool Skip = false;
188 for (MachineRegisterInfo::def_iterator DI = mri_->def_begin(Reg),
189 DE = mri_->def_end(); DI != DE; ++DI) {
190 if (DI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF) {
191 Skip = true;
192 break;
Evan Cheng2578ba22009-07-01 01:59:31 +0000193 }
Evan Cheng459a7c62009-07-01 08:19:36 +0000194 }
195 if (Skip)
196 continue;
197
198 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(Reg),
199 UE = mri_->use_end(); UI != UE; ) {
200 MachineOperand &RMO = UI.getOperand();
201 MachineInstr *RMI = &*UI;
202 ++UI;
Evan Cheng2578ba22009-07-01 01:59:31 +0000203 MachineBasicBlock *RMBB = RMI->getParent();
Evan Cheng459a7c62009-07-01 08:19:36 +0000204 if (RMBB == MBB)
Evan Cheng2578ba22009-07-01 01:59:31 +0000205 continue;
Evan Cheng2578ba22009-07-01 01:59:31 +0000206 const TargetRegisterClass* RC = mri_->getRegClass(Reg);
207 unsigned NewVReg = mri_->createVirtualRegister(RC);
Evan Cheng459a7c62009-07-01 08:19:36 +0000208 MachineInstrBuilder MIB =
209 BuildMI(*RMBB, RMI, RMI->getDebugLoc(),
210 tii_->get(TargetInstrInfo::IMPLICIT_DEF), NewVReg);
211 (*MIB).getOperand(0).setIsUndef();
Evan Cheng2578ba22009-07-01 01:59:31 +0000212 RMO.setReg(NewVReg);
213 RMO.setIsUndef();
214 RMO.setIsKill();
215 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000216 }
217 ImpDefRegs.clear();
218 ImpDefMIs.clear();
219 }
220}
221
Owen Anderson80b3ce62008-05-28 20:54:50 +0000222void LiveIntervals::computeNumbering() {
223 Index2MiMap OldI2MI = i2miMap_;
Owen Anderson7fbad272008-07-23 21:37:49 +0000224 std::vector<IdxMBBPair> OldI2MBB = Idx2MBBMap;
Owen Anderson80b3ce62008-05-28 20:54:50 +0000225
226 Idx2MBBMap.clear();
227 MBB2IdxMap.clear();
228 mi2iMap_.clear();
229 i2miMap_.clear();
Lang Hamesffd13262009-07-09 03:57:02 +0000230 terminatorGaps.clear();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000231
Owen Andersona1566f22008-07-22 22:46:49 +0000232 FunctionSize = 0;
233
Chris Lattner428b92e2006-09-15 03:57:23 +0000234 // Number MachineInstrs and MachineBasicBlocks.
235 // Initialize MBB indexes to a sentinal.
Evan Cheng549f27d32007-08-13 23:45:17 +0000236 MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
Chris Lattner428b92e2006-09-15 03:57:23 +0000237
238 unsigned MIIndex = 0;
239 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
240 MBB != E; ++MBB) {
Evan Cheng549f27d32007-08-13 23:45:17 +0000241 unsigned StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000242
Owen Anderson7fbad272008-07-23 21:37:49 +0000243 // Insert an empty slot at the beginning of each block.
244 MIIndex += InstrSlots::NUM;
245 i2miMap_.push_back(0);
246
Chris Lattner428b92e2006-09-15 03:57:23 +0000247 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
248 I != E; ++I) {
Lang Hamesffd13262009-07-09 03:57:02 +0000249
250 if (I == MBB->getFirstTerminator()) {
251 // Leave a gap for before terminators, this is where we will point
252 // PHI kills.
253 bool inserted =
254 terminatorGaps.insert(std::make_pair(&*MBB, MIIndex)).second;
255 assert(inserted &&
256 "Multiple 'first' terminators encountered during numbering.");
Duncan Sands413a15e2009-07-10 20:07:07 +0000257 inserted = inserted; // Avoid compiler warning if assertions turned off.
Lang Hamesffd13262009-07-09 03:57:02 +0000258 i2miMap_.push_back(0);
259
260 MIIndex += InstrSlots::NUM;
261 }
262
Chris Lattner428b92e2006-09-15 03:57:23 +0000263 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000264 assert(inserted && "multiple MachineInstr -> index mappings");
Devang Patel59500c82008-11-21 20:00:59 +0000265 inserted = true;
Chris Lattner428b92e2006-09-15 03:57:23 +0000266 i2miMap_.push_back(I);
267 MIIndex += InstrSlots::NUM;
Owen Andersona1566f22008-07-22 22:46:49 +0000268 FunctionSize++;
Owen Anderson7fbad272008-07-23 21:37:49 +0000269
Evan Cheng4ed43292008-10-18 05:21:37 +0000270 // Insert max(1, numdefs) empty slots after every instruction.
Evan Cheng99fe34b2008-10-18 05:18:55 +0000271 unsigned Slots = I->getDesc().getNumDefs();
272 if (Slots == 0)
273 Slots = 1;
274 MIIndex += InstrSlots::NUM * Slots;
275 while (Slots--)
276 i2miMap_.push_back(0);
Owen Anderson35578012008-06-16 07:10:49 +0000277 }
Lang Hamesffd13262009-07-09 03:57:02 +0000278
279 if (MBB->getFirstTerminator() == MBB->end()) {
280 // Leave a gap for before terminators, this is where we will point
281 // PHI kills.
282 bool inserted =
283 terminatorGaps.insert(std::make_pair(&*MBB, MIIndex)).second;
284 assert(inserted &&
285 "Multiple 'first' terminators encountered during numbering.");
Duncan Sands413a15e2009-07-10 20:07:07 +0000286 inserted = inserted; // Avoid compiler warning if assertions turned off.
Lang Hamesffd13262009-07-09 03:57:02 +0000287 i2miMap_.push_back(0);
288
289 MIIndex += InstrSlots::NUM;
290 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000291
Owen Anderson1fbb4542008-06-16 16:58:24 +0000292 // Set the MBB2IdxMap entry for this MBB.
293 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
294 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000295 }
Lang Hamesffd13262009-07-09 03:57:02 +0000296
Evan Cheng4ca980e2007-10-17 02:10:22 +0000297 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Owen Anderson80b3ce62008-05-28 20:54:50 +0000298
299 if (!OldI2MI.empty())
Owen Anderson788d0412008-08-06 18:35:45 +0000300 for (iterator OI = begin(), OE = end(); OI != OE; ++OI) {
Owen Anderson03857b22008-08-13 21:49:13 +0000301 for (LiveInterval::iterator LI = OI->second->begin(),
302 LE = OI->second->end(); LI != LE; ++LI) {
Owen Anderson4b5b2092008-05-29 18:15:49 +0000303
Owen Anderson7eec0c22008-05-29 23:01:22 +0000304 // Remap the start index of the live range to the corresponding new
305 // number, or our best guess at what it _should_ correspond to if the
306 // original instruction has been erased. This is either the following
307 // instruction or its predecessor.
Owen Anderson7fbad272008-07-23 21:37:49 +0000308 unsigned index = LI->start / InstrSlots::NUM;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000309 unsigned offset = LI->start % InstrSlots::NUM;
Owen Anderson0a7615a2008-07-25 23:06:59 +0000310 if (offset == InstrSlots::LOAD) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000311 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000312 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->start);
Owen Anderson7fbad272008-07-23 21:37:49 +0000313 // Take the pair containing the index
314 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000315 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000316
Owen Anderson7fbad272008-07-23 21:37:49 +0000317 LI->start = getMBBStartIdx(J->second);
318 } else {
319 LI->start = mi2iMap_[OldI2MI[index]] + offset;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000320 }
321
322 // Remap the ending index in the same way that we remapped the start,
323 // except for the final step where we always map to the immediately
324 // following instruction.
Owen Andersond7dcbec2008-07-25 19:50:48 +0000325 index = (LI->end - 1) / InstrSlots::NUM;
Owen Anderson7fbad272008-07-23 21:37:49 +0000326 offset = LI->end % InstrSlots::NUM;
Owen Anderson9382b932008-07-30 00:22:56 +0000327 if (offset == InstrSlots::LOAD) {
328 // VReg dies at end of block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000329 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000330 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->end);
Owen Anderson9382b932008-07-30 00:22:56 +0000331 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000332
Owen Anderson9382b932008-07-30 00:22:56 +0000333 LI->end = getMBBEndIdx(I->second) + 1;
Owen Anderson4b5b2092008-05-29 18:15:49 +0000334 } else {
Owen Andersond7dcbec2008-07-25 19:50:48 +0000335 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000336 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
337
338 if (index != OldI2MI.size())
339 LI->end = mi2iMap_[OldI2MI[index]] + (idx == index ? offset : 0);
340 else
341 LI->end = InstrSlots::NUM * i2miMap_.size();
Owen Anderson4b5b2092008-05-29 18:15:49 +0000342 }
Owen Anderson788d0412008-08-06 18:35:45 +0000343 }
344
Owen Anderson03857b22008-08-13 21:49:13 +0000345 for (LiveInterval::vni_iterator VNI = OI->second->vni_begin(),
346 VNE = OI->second->vni_end(); VNI != VNE; ++VNI) {
Owen Anderson788d0412008-08-06 18:35:45 +0000347 VNInfo* vni = *VNI;
Owen Anderson745825f42008-05-28 22:40:08 +0000348
Owen Anderson7eec0c22008-05-29 23:01:22 +0000349 // Remap the VNInfo def index, which works the same as the
Owen Anderson788d0412008-08-06 18:35:45 +0000350 // start indices above. VN's with special sentinel defs
351 // don't need to be remapped.
Lang Hames857c4e02009-06-17 21:01:20 +0000352 if (vni->isDefAccurate() && !vni->isUnused()) {
Owen Anderson788d0412008-08-06 18:35:45 +0000353 unsigned index = vni->def / InstrSlots::NUM;
354 unsigned offset = vni->def % InstrSlots::NUM;
Owen Anderson91292392008-07-30 17:42:47 +0000355 if (offset == InstrSlots::LOAD) {
356 std::vector<IdxMBBPair>::const_iterator I =
Owen Anderson0a7615a2008-07-25 23:06:59 +0000357 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->def);
Owen Anderson91292392008-07-30 17:42:47 +0000358 // Take the pair containing the index
359 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000360 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000361
Owen Anderson91292392008-07-30 17:42:47 +0000362 vni->def = getMBBStartIdx(J->second);
363 } else {
364 vni->def = mi2iMap_[OldI2MI[index]] + offset;
365 }
Owen Anderson7eec0c22008-05-29 23:01:22 +0000366 }
Owen Anderson745825f42008-05-28 22:40:08 +0000367
Owen Anderson7eec0c22008-05-29 23:01:22 +0000368 // Remap the VNInfo kill indices, which works the same as
369 // the end indices above.
Owen Anderson4b5b2092008-05-29 18:15:49 +0000370 for (size_t i = 0; i < vni->kills.size(); ++i) {
Lang Hamesffd13262009-07-09 03:57:02 +0000371 unsigned killIdx = vni->kills[i].killIdx;
372
373 unsigned index = (killIdx - 1) / InstrSlots::NUM;
374 unsigned offset = killIdx % InstrSlots::NUM;
375
Owen Anderson309c6162008-09-30 22:51:54 +0000376 if (offset == InstrSlots::LOAD) {
Lang Hamesffd13262009-07-09 03:57:02 +0000377 assert("Value killed at a load slot.");
378 /*std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000379 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->kills[i]);
Owen Anderson9382b932008-07-30 00:22:56 +0000380 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000381
Lang Hamesffd13262009-07-09 03:57:02 +0000382 vni->kills[i] = getMBBEndIdx(I->second);*/
Owen Anderson7fbad272008-07-23 21:37:49 +0000383 } else {
Lang Hamesffd13262009-07-09 03:57:02 +0000384 if (vni->kills[i].isPHIKill) {
385 std::vector<IdxMBBPair>::const_iterator I =
386 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), index);
387 --I;
388 vni->kills[i].killIdx = terminatorGaps[I->second];
389 } else {
390 assert(OldI2MI[index] != 0 &&
391 "Kill refers to instruction not present in index maps.");
392 vni->kills[i].killIdx = mi2iMap_[OldI2MI[index]] + offset;
393 }
394
395 /*
Owen Andersond7dcbec2008-07-25 19:50:48 +0000396 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000397 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
398
399 if (index != OldI2MI.size())
400 vni->kills[i] = mi2iMap_[OldI2MI[index]] +
401 (idx == index ? offset : 0);
402 else
403 vni->kills[i] = InstrSlots::NUM * i2miMap_.size();
Lang Hamesffd13262009-07-09 03:57:02 +0000404 */
Owen Anderson7eec0c22008-05-29 23:01:22 +0000405 }
Owen Anderson4b5b2092008-05-29 18:15:49 +0000406 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000407 }
Owen Anderson788d0412008-08-06 18:35:45 +0000408 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000409}
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000410
Lang Hamesf41538d2009-06-02 16:53:25 +0000411void LiveIntervals::scaleNumbering(int factor) {
412 // Need to
413 // * scale MBB begin and end points
414 // * scale all ranges.
415 // * Update VNI structures.
416 // * Scale instruction numberings
417
418 // Scale the MBB indices.
419 Idx2MBBMap.clear();
420 for (MachineFunction::iterator MBB = mf_->begin(), MBBE = mf_->end();
421 MBB != MBBE; ++MBB) {
422 std::pair<unsigned, unsigned> &mbbIndices = MBB2IdxMap[MBB->getNumber()];
423 mbbIndices.first = InstrSlots::scale(mbbIndices.first, factor);
424 mbbIndices.second = InstrSlots::scale(mbbIndices.second, factor);
425 Idx2MBBMap.push_back(std::make_pair(mbbIndices.first, MBB));
426 }
427 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
428
Lang Hamesffd13262009-07-09 03:57:02 +0000429 // Scale terminator gaps.
430 for (DenseMap<MachineBasicBlock*, unsigned>::iterator
431 TGI = terminatorGaps.begin(), TGE = terminatorGaps.end();
432 TGI != TGE; ++TGI) {
433 terminatorGaps[TGI->first] = InstrSlots::scale(TGI->second, factor);
434 }
435
Lang Hamesf41538d2009-06-02 16:53:25 +0000436 // Scale the intervals.
437 for (iterator LI = begin(), LE = end(); LI != LE; ++LI) {
438 LI->second->scaleNumbering(factor);
439 }
440
441 // Scale MachineInstrs.
442 Mi2IndexMap oldmi2iMap = mi2iMap_;
443 unsigned highestSlot = 0;
444 for (Mi2IndexMap::iterator MI = oldmi2iMap.begin(), ME = oldmi2iMap.end();
445 MI != ME; ++MI) {
446 unsigned newSlot = InstrSlots::scale(MI->second, factor);
447 mi2iMap_[MI->first] = newSlot;
448 highestSlot = std::max(highestSlot, newSlot);
449 }
450
451 i2miMap_.clear();
452 i2miMap_.resize(highestSlot + 1);
453 for (Mi2IndexMap::iterator MI = mi2iMap_.begin(), ME = mi2iMap_.end();
454 MI != ME; ++MI) {
455 i2miMap_[MI->second] = MI->first;
456 }
457
458}
459
460
Owen Anderson80b3ce62008-05-28 20:54:50 +0000461/// runOnMachineFunction - Register allocate the whole function
462///
463bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
464 mf_ = &fn;
465 mri_ = &mf_->getRegInfo();
466 tm_ = &fn.getTarget();
467 tri_ = tm_->getRegisterInfo();
468 tii_ = tm_->getInstrInfo();
Dan Gohman6d69ba82008-07-25 00:02:30 +0000469 aa_ = &getAnalysis<AliasAnalysis>();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000470 lv_ = &getAnalysis<LiveVariables>();
471 allocatableRegs_ = tri_->getAllocatableSet(fn);
472
Evan Cheng2578ba22009-07-01 01:59:31 +0000473 processImplicitDefs();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000474 computeNumbering();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000475 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000476
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000477 numIntervals += getNumIntervals();
478
Chris Lattner70ca3582004-09-30 15:59:17 +0000479 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000480 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000481}
482
Chris Lattner70ca3582004-09-30 15:59:17 +0000483/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000484void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000485 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000486 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +0000487 I->second->print(O, tri_);
Evan Cheng3f32d652008-06-04 09:18:41 +0000488 O << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000489 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000490
491 O << "********** MACHINEINSTRS **********\n";
492 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
493 mbbi != mbbe; ++mbbi) {
494 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
495 for (MachineBasicBlock::iterator mii = mbbi->begin(),
496 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000497 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000498 }
499 }
500}
501
Evan Chengc92da382007-11-03 07:20:12 +0000502/// conflictsWithPhysRegDef - Returns true if the specified register
503/// is defined during the duration of the specified interval.
504bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
505 VirtRegMap &vrm, unsigned reg) {
506 for (LiveInterval::Ranges::const_iterator
507 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
508 for (unsigned index = getBaseIndex(I->start),
509 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
510 index += InstrSlots::NUM) {
511 // skip deleted instructions
512 while (index != end && !getInstructionFromIndex(index))
513 index += InstrSlots::NUM;
514 if (index == end) break;
515
516 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng04ee5a12009-01-20 19:12:24 +0000517 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
518 if (tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Cheng5d446262007-11-15 08:13:29 +0000519 if (SrcReg == li.reg || DstReg == li.reg)
520 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000521 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
522 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000523 if (!mop.isReg())
Evan Chengc92da382007-11-03 07:20:12 +0000524 continue;
525 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000526 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000527 continue;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000528 if (TargetRegisterInfo::isVirtualRegister(PhysReg)) {
Evan Cheng5d446262007-11-15 08:13:29 +0000529 if (!vrm.hasPhys(PhysReg))
530 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000531 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000532 }
Dan Gohman6f0d0242008-02-10 18:45:23 +0000533 if (PhysReg && tri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000534 return true;
535 }
536 }
537 }
538
539 return false;
540}
541
Evan Cheng8f90b6e2009-01-07 02:08:57 +0000542/// conflictsWithPhysRegRef - Similar to conflictsWithPhysRegRef except
543/// it can check use as well.
544bool LiveIntervals::conflictsWithPhysRegRef(LiveInterval &li,
545 unsigned Reg, bool CheckUse,
546 SmallPtrSet<MachineInstr*,32> &JoinedCopies) {
547 for (LiveInterval::Ranges::const_iterator
548 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
549 for (unsigned index = getBaseIndex(I->start),
550 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
551 index += InstrSlots::NUM) {
552 // Skip deleted instructions.
553 MachineInstr *MI = 0;
554 while (index != end) {
555 MI = getInstructionFromIndex(index);
556 if (MI)
557 break;
558 index += InstrSlots::NUM;
559 }
560 if (index == end) break;
561
562 if (JoinedCopies.count(MI))
563 continue;
564 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
565 MachineOperand& MO = MI->getOperand(i);
566 if (!MO.isReg())
567 continue;
568 if (MO.isUse() && !CheckUse)
569 continue;
570 unsigned PhysReg = MO.getReg();
571 if (PhysReg == 0 || TargetRegisterInfo::isVirtualRegister(PhysReg))
572 continue;
573 if (tri_->isSubRegister(Reg, PhysReg))
574 return true;
575 }
576 }
577 }
578
579 return false;
580}
581
582
Evan Cheng549f27d32007-08-13 23:45:17 +0000583void LiveIntervals::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000584 if (TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000585 cerr << tri_->getName(reg);
Evan Cheng549f27d32007-08-13 23:45:17 +0000586 else
587 cerr << "%reg" << reg;
588}
589
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000590void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000591 MachineBasicBlock::iterator mi,
Owen Anderson6b098de2008-06-25 23:39:39 +0000592 unsigned MIIdx, MachineOperand& MO,
Evan Chengef0732d2008-07-10 07:35:43 +0000593 unsigned MOIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000594 LiveInterval &interval) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000595 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000596 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000597
Evan Cheng419852c2008-04-03 16:39:43 +0000598 if (mi->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
599 DOUT << "is a implicit_def\n";
600 return;
601 }
602
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000603 // Virtual registers may be defined multiple times (due to phi
604 // elimination and 2-addr elimination). Much of what we do only has to be
605 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000606 // time we see a vreg.
607 if (interval.empty()) {
608 // Get the Idx of the defining instructions.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000609 unsigned defIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000610 // Earlyclobbers move back one.
611 if (MO.isEarlyClobber())
612 defIndex = getUseIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000613 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000614 MachineInstr *CopyMI = NULL;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000615 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000616 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000617 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +0000618 mi->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
Evan Cheng04ee5a12009-01-20 19:12:24 +0000619 tii_->isMoveInstr(*mi, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +0000620 CopyMI = mi;
Evan Cheng5379f412008-12-19 20:58:01 +0000621 // Earlyclobbers move back one.
Lang Hames857c4e02009-06-17 21:01:20 +0000622 ValNo = interval.getNextValue(defIndex, CopyMI, true, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000623
624 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000625
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000626 // Loop over all of the blocks that the vreg is defined in. There are
627 // two cases we have to handle here. The most common case is a vreg
628 // whose lifetime is contained within a basic block. In this case there
629 // will be a single kill, in MBB, which comes after the definition.
630 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
631 // FIXME: what about dead vars?
632 unsigned killIdx;
633 if (vi.Kills[0] != mi)
634 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
635 else
636 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000637
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000638 // If the kill happens after the definition, we have an intra-block
639 // live range.
640 if (killIdx > defIndex) {
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000641 assert(vi.AliveBlocks.empty() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000642 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000643 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000644 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000645 DOUT << " +" << LR << "\n";
Lang Hamesffd13262009-07-09 03:57:02 +0000646 interval.addKill(ValNo, killIdx, false);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000647 return;
648 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000649 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000650
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000651 // The other case we handle is when a virtual register lives to the end
652 // of the defining block, potentially live across some blocks, then is
653 // live into some number of blocks, but gets killed. Start by adding a
654 // range that goes from this definition to the end of the defining block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000655 LiveRange NewLR(defIndex, getMBBEndIdx(mbb)+1, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000656 DOUT << " +" << NewLR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000657 interval.addRange(NewLR);
658
659 // Iterate over all of the blocks that the variable is completely
660 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
661 // live interval.
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000662 for (SparseBitVector<>::iterator I = vi.AliveBlocks.begin(),
663 E = vi.AliveBlocks.end(); I != E; ++I) {
664 LiveRange LR(getMBBStartIdx(*I),
665 getMBBEndIdx(*I)+1, // MBB ends at -1.
Dan Gohman4a829ec2008-11-13 16:31:27 +0000666 ValNo);
667 interval.addRange(LR);
668 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000669 }
670
671 // Finally, this virtual register is live from the start of any killing
672 // block to the 'use' slot of the killing instruction.
673 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
674 MachineInstr *Kill = vi.Kills[i];
Evan Cheng8df78602007-08-08 03:00:28 +0000675 unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
Chris Lattner428b92e2006-09-15 03:57:23 +0000676 LiveRange LR(getMBBStartIdx(Kill->getParent()),
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000677 killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000678 interval.addRange(LR);
Lang Hamesffd13262009-07-09 03:57:02 +0000679 interval.addKill(ValNo, killIdx, false);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000680 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000681 }
682
683 } else {
684 // If this is the second time we see a virtual register definition, it
685 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000686 // the result of two address elimination, then the vreg is one of the
687 // def-and-use register operand.
Bob Wilsond9df5012009-04-09 17:16:43 +0000688 if (mi->isRegTiedToUseOperand(MOIdx)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000689 // If this is a two-address definition, then we have already processed
690 // the live range. The only problem is that we didn't realize there
691 // are actually two values in the live interval. Because of this we
692 // need to take the LiveRegion that defines this register and split it
693 // into two values.
Evan Chenga07cec92008-01-10 08:22:10 +0000694 assert(interval.containsOneValue());
695 unsigned DefIndex = getDefIndex(interval.getValNumInfo(0)->def);
Chris Lattner6b128bd2006-09-03 08:07:11 +0000696 unsigned RedefIndex = getDefIndex(MIIdx);
Evan Chengfb112882009-03-23 08:01:15 +0000697 if (MO.isEarlyClobber())
698 RedefIndex = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000699
Evan Cheng4f8ff162007-08-11 00:59:19 +0000700 const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000701 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000702
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000703 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000704 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000705 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000706
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000707 // Two-address vregs should always only be redefined once. This means
708 // that at this point, there should be exactly one value number in it.
709 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
710
Chris Lattner91725b72006-08-31 05:54:43 +0000711 // The new value number (#1) is defined by the instruction we claimed
712 // defined value #0.
Evan Chengc8d044e2008-02-15 18:24:29 +0000713 VNInfo *ValNo = interval.getNextValue(OldValNo->def, OldValNo->copy,
Lang Hames857c4e02009-06-17 21:01:20 +0000714 false, // update at *
Evan Chengc8d044e2008-02-15 18:24:29 +0000715 VNInfoAllocator);
Lang Hames857c4e02009-06-17 21:01:20 +0000716 ValNo->setFlags(OldValNo->getFlags()); // * <- updating here
717
Chris Lattner91725b72006-08-31 05:54:43 +0000718 // Value#0 is now defined by the 2-addr instruction.
Evan Chengc8d044e2008-02-15 18:24:29 +0000719 OldValNo->def = RedefIndex;
720 OldValNo->copy = 0;
Evan Chengfb112882009-03-23 08:01:15 +0000721 if (MO.isEarlyClobber())
Lang Hames857c4e02009-06-17 21:01:20 +0000722 OldValNo->setHasRedefByEC(true);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000723
724 // Add the new live interval which replaces the range for the input copy.
725 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000726 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000727 interval.addRange(LR);
Lang Hamesffd13262009-07-09 03:57:02 +0000728 interval.addKill(ValNo, RedefIndex, false);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000729
730 // If this redefinition is dead, we need to add a dummy unit live
731 // range covering the def slot.
Owen Anderson6b098de2008-06-25 23:39:39 +0000732 if (MO.isDead())
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000733 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000734
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000735 DOUT << " RESULT: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000736 interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000737
738 } else {
739 // Otherwise, this must be because of phi elimination. If this is the
740 // first redefinition of the vreg that we have seen, go back and change
741 // the live range in the PHI block to be a different value number.
742 if (interval.containsOneValue()) {
743 assert(vi.Kills.size() == 1 &&
744 "PHI elimination vreg should have one kill, the PHI itself!");
745
746 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000747 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000748 MachineInstr *Killer = vi.Kills[0];
Chris Lattner428b92e2006-09-15 03:57:23 +0000749 unsigned Start = getMBBStartIdx(Killer->getParent());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000750 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000751 DOUT << " Removing [" << Start << "," << End << "] from: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000752 interval.print(DOUT, tri_); DOUT << "\n";
Lang Hamesffd13262009-07-09 03:57:02 +0000753 interval.removeRange(Start, End);
754 assert(interval.ranges.size() == 1 &&
755 "newly discovered PHI interval has >1 ranges.");
756 MachineBasicBlock *killMBB = getMBBFromIndex(interval.endNumber());
757 interval.addKill(VNI, terminatorGaps[killMBB], true);
Lang Hames857c4e02009-06-17 21:01:20 +0000758 VNI->setHasPHIKill(true);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000759 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000760
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000761 // Replace the interval with one of a NEW value number. Note that this
762 // value number isn't actually defined by an instruction, weird huh? :)
Lang Hames10382fb2009-06-19 02:17:53 +0000763 LiveRange LR(Start, End,
764 interval.getNextValue(mbb->getNumber(), 0, false, VNInfoAllocator));
Lang Hames857c4e02009-06-17 21:01:20 +0000765 LR.valno->setIsPHIDef(true);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000766 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000767 interval.addRange(LR);
Lang Hamesffd13262009-07-09 03:57:02 +0000768 interval.addKill(LR.valno, End, false);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000769 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000770 }
771
772 // In the case of PHI elimination, each variable definition is only
773 // live until the end of the block. We've already taken care of the
774 // rest of the live range.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000775 unsigned defIndex = getDefIndex(MIIdx);
Evan Chengfb112882009-03-23 08:01:15 +0000776 if (MO.isEarlyClobber())
777 defIndex = getUseIndex(MIIdx);
Chris Lattner91725b72006-08-31 05:54:43 +0000778
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000779 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000780 MachineInstr *CopyMI = NULL;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000781 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000782 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000783 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +0000784 mi->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
Evan Cheng04ee5a12009-01-20 19:12:24 +0000785 tii_->isMoveInstr(*mi, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +0000786 CopyMI = mi;
Lang Hames857c4e02009-06-17 21:01:20 +0000787 ValNo = interval.getNextValue(defIndex, CopyMI, true, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000788
Owen Anderson7fbad272008-07-23 21:37:49 +0000789 unsigned killIndex = getMBBEndIdx(mbb) + 1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000790 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000791 interval.addRange(LR);
Lang Hamesffd13262009-07-09 03:57:02 +0000792 interval.addKill(ValNo, terminatorGaps[mbb], true);
Lang Hames857c4e02009-06-17 21:01:20 +0000793 ValNo->setHasPHIKill(true);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000794 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000795 }
796 }
797
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000798 DOUT << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000799}
800
Chris Lattnerf35fef72004-07-23 21:24:19 +0000801void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000802 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000803 unsigned MIIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000804 MachineOperand& MO,
Chris Lattner91725b72006-08-31 05:54:43 +0000805 LiveInterval &interval,
Evan Chengc8d044e2008-02-15 18:24:29 +0000806 MachineInstr *CopyMI) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000807 // A physical register cannot be live across basic block, so its
808 // lifetime must end somewhere in its defining basic block.
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000809 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000810
Chris Lattner6b128bd2006-09-03 08:07:11 +0000811 unsigned baseIndex = MIIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000812 unsigned start = getDefIndex(baseIndex);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000813 // Earlyclobbers move back one.
814 if (MO.isEarlyClobber())
815 start = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000816 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000817
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000818 // If it is not used after definition, it is considered dead at
819 // the instruction defining it. Hence its interval is:
820 // [defSlot(def), defSlot(def)+1)
Owen Anderson6b098de2008-06-25 23:39:39 +0000821 if (MO.isDead()) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000822 DOUT << " dead";
Dale Johannesen86b49f82008-09-24 01:07:17 +0000823 end = start + 1;
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000824 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000825 }
826
827 // If it is not dead on definition, it must be killed by a
828 // subsequent instruction. Hence its interval is:
829 // [defSlot(def), useSlot(kill)+1)
Owen Anderson7fbad272008-07-23 21:37:49 +0000830 baseIndex += InstrSlots::NUM;
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000831 while (++mi != MBB->end()) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000832 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
833 getInstructionFromIndex(baseIndex) == 0)
834 baseIndex += InstrSlots::NUM;
Evan Cheng6130f662008-03-05 00:59:57 +0000835 if (mi->killsRegister(interval.reg, tri_)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000836 DOUT << " killed";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000837 end = getUseIndex(baseIndex) + 1;
838 goto exit;
Evan Chengc45288e2009-04-27 20:42:46 +0000839 } else {
840 int DefIdx = mi->findRegisterDefOperandIdx(interval.reg, false, tri_);
841 if (DefIdx != -1) {
842 if (mi->isRegTiedToUseOperand(DefIdx)) {
843 // Two-address instruction.
844 end = getDefIndex(baseIndex);
845 if (mi->getOperand(DefIdx).isEarlyClobber())
846 end = getUseIndex(baseIndex);
847 } else {
848 // Another instruction redefines the register before it is ever read.
849 // Then the register is essentially dead at the instruction that defines
850 // it. Hence its interval is:
851 // [defSlot(def), defSlot(def)+1)
852 DOUT << " dead";
853 end = start + 1;
854 }
855 goto exit;
856 }
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000857 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000858
859 baseIndex += InstrSlots::NUM;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000860 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000861
862 // The only case we should have a dead physreg here without a killing or
863 // instruction where we know it's dead is if it is live-in to the function
Evan Chengd521bc92009-04-27 17:36:47 +0000864 // and never used. Another possible case is the implicit use of the
865 // physical register has been deleted by two-address pass.
Dale Johannesen86b49f82008-09-24 01:07:17 +0000866 end = start + 1;
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000867
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000868exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000869 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000870
Evan Cheng24a3cc42007-04-25 07:30:23 +0000871 // Already exists? Extend old live interval.
872 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng5379f412008-12-19 20:58:01 +0000873 bool Extend = OldLR != interval.end();
874 VNInfo *ValNo = Extend
Lang Hames857c4e02009-06-17 21:01:20 +0000875 ? OldLR->valno : interval.getNextValue(start, CopyMI, true, VNInfoAllocator);
Evan Cheng5379f412008-12-19 20:58:01 +0000876 if (MO.isEarlyClobber() && Extend)
Lang Hames857c4e02009-06-17 21:01:20 +0000877 ValNo->setHasRedefByEC(true);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000878 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000879 interval.addRange(LR);
Lang Hamesffd13262009-07-09 03:57:02 +0000880 interval.addKill(LR.valno, end, false);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000881 DOUT << " +" << LR << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000882}
883
Chris Lattnerf35fef72004-07-23 21:24:19 +0000884void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
885 MachineBasicBlock::iterator MI,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000886 unsigned MIIdx,
Evan Chengef0732d2008-07-10 07:35:43 +0000887 MachineOperand& MO,
888 unsigned MOIdx) {
Owen Anderson6b098de2008-06-25 23:39:39 +0000889 if (TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Evan Chengef0732d2008-07-10 07:35:43 +0000890 handleVirtualRegisterDef(MBB, MI, MIIdx, MO, MOIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000891 getOrCreateInterval(MO.getReg()));
892 else if (allocatableRegs_[MO.getReg()]) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000893 MachineInstr *CopyMI = NULL;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000894 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000895 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000896 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +0000897 MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
Evan Cheng04ee5a12009-01-20 19:12:24 +0000898 tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +0000899 CopyMI = MI;
Evan Chengc45288e2009-04-27 20:42:46 +0000900 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
Owen Anderson6b098de2008-06-25 23:39:39 +0000901 getOrCreateInterval(MO.getReg()), CopyMI);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000902 // Def of a register also defines its sub-registers.
Owen Anderson6b098de2008-06-25 23:39:39 +0000903 for (const unsigned* AS = tri_->getSubRegisters(MO.getReg()); *AS; ++AS)
Evan Cheng6130f662008-03-05 00:59:57 +0000904 // If MI also modifies the sub-register explicitly, avoid processing it
905 // more than once. Do not pass in TRI here so it checks for exact match.
906 if (!MI->modifiesRegister(*AS))
Evan Chengc45288e2009-04-27 20:42:46 +0000907 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
Owen Anderson6b098de2008-06-25 23:39:39 +0000908 getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000909 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000910}
911
Evan Chengb371f452007-02-19 21:49:54 +0000912void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000913 unsigned MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +0000914 LiveInterval &interval, bool isAlias) {
Evan Chengb371f452007-02-19 21:49:54 +0000915 DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
916
917 // Look for kills, if it reaches a def before it's killed, then it shouldn't
918 // be considered a livein.
919 MachineBasicBlock::iterator mi = MBB->begin();
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000920 unsigned baseIndex = MIIdx;
921 unsigned start = baseIndex;
Owen Anderson99500ae2008-09-15 22:00:38 +0000922 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
923 getInstructionFromIndex(baseIndex) == 0)
924 baseIndex += InstrSlots::NUM;
925 unsigned end = baseIndex;
Evan Cheng0076c612009-03-05 03:34:26 +0000926 bool SeenDefUse = false;
Owen Anderson99500ae2008-09-15 22:00:38 +0000927
Evan Chengb371f452007-02-19 21:49:54 +0000928 while (mi != MBB->end()) {
Evan Cheng6130f662008-03-05 00:59:57 +0000929 if (mi->killsRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000930 DOUT << " killed";
931 end = getUseIndex(baseIndex) + 1;
Evan Cheng0076c612009-03-05 03:34:26 +0000932 SeenDefUse = true;
Lang Hamesd21c3162009-06-18 22:01:47 +0000933 break;
Evan Cheng6130f662008-03-05 00:59:57 +0000934 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000935 // Another instruction redefines the register before it is ever read.
936 // Then the register is essentially dead at the instruction that defines
937 // it. Hence its interval is:
938 // [defSlot(def), defSlot(def)+1)
939 DOUT << " dead";
940 end = getDefIndex(start) + 1;
Evan Cheng0076c612009-03-05 03:34:26 +0000941 SeenDefUse = true;
Lang Hamesd21c3162009-06-18 22:01:47 +0000942 break;
Evan Chengb371f452007-02-19 21:49:54 +0000943 }
944
945 baseIndex += InstrSlots::NUM;
946 ++mi;
Evan Cheng0076c612009-03-05 03:34:26 +0000947 if (mi != MBB->end()) {
948 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
949 getInstructionFromIndex(baseIndex) == 0)
950 baseIndex += InstrSlots::NUM;
951 }
Evan Chengb371f452007-02-19 21:49:54 +0000952 }
953
Evan Cheng75611fb2007-06-27 01:16:36 +0000954 // Live-in register might not be used at all.
Evan Cheng0076c612009-03-05 03:34:26 +0000955 if (!SeenDefUse) {
Evan Cheng292da942007-06-27 18:47:28 +0000956 if (isAlias) {
957 DOUT << " dead";
Evan Cheng75611fb2007-06-27 01:16:36 +0000958 end = getDefIndex(MIIdx) + 1;
Evan Cheng292da942007-06-27 18:47:28 +0000959 } else {
960 DOUT << " live through";
961 end = baseIndex;
962 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000963 }
964
Lang Hames10382fb2009-06-19 02:17:53 +0000965 VNInfo *vni =
966 interval.getNextValue(MBB->getNumber(), 0, false, VNInfoAllocator);
Lang Hamesd21c3162009-06-18 22:01:47 +0000967 vni->setIsPHIDef(true);
968 LiveRange LR(start, end, vni);
969
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000970 interval.addRange(LR);
Lang Hamesffd13262009-07-09 03:57:02 +0000971 interval.addKill(LR.valno, end, false);
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000972 DOUT << " +" << LR << '\n';
Evan Chengb371f452007-02-19 21:49:54 +0000973}
974
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000975/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000976/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000977/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000978/// which a variable is live
Dale Johannesen91aac102008-09-17 21:13:11 +0000979void LiveIntervals::computeIntervals() {
Dale Johannesen91aac102008-09-17 21:13:11 +0000980
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000981 DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
982 << "********** Function: "
983 << ((Value*)mf_->getFunction())->getName() << '\n';
Owen Anderson7fbad272008-07-23 21:37:49 +0000984
Chris Lattner428b92e2006-09-15 03:57:23 +0000985 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
986 MBBI != E; ++MBBI) {
987 MachineBasicBlock *MBB = MBBI;
Owen Anderson134eb732008-09-21 20:43:24 +0000988 // Track the index of the current machine instr.
989 unsigned MIIndex = getMBBStartIdx(MBB);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000990 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000991
Chris Lattner428b92e2006-09-15 03:57:23 +0000992 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000993
Dan Gohmancb406c22007-10-03 19:26:29 +0000994 // Create intervals for live-ins to this BB first.
995 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
996 LE = MBB->livein_end(); LI != LE; ++LI) {
997 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
998 // Multiple live-ins can alias the same register.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000999 for (const unsigned* AS = tri_->getSubRegisters(*LI); *AS; ++AS)
Dan Gohmancb406c22007-10-03 19:26:29 +00001000 if (!hasInterval(*AS))
1001 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
1002 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +00001003 }
1004
Owen Anderson99500ae2008-09-15 22:00:38 +00001005 // Skip over empty initial indices.
1006 while (MIIndex / InstrSlots::NUM < i2miMap_.size() &&
1007 getInstructionFromIndex(MIIndex) == 0)
1008 MIIndex += InstrSlots::NUM;
1009
Chris Lattner428b92e2006-09-15 03:57:23 +00001010 for (; MI != miEnd; ++MI) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +00001011 DOUT << MIIndex << "\t" << *MI;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001012
Evan Cheng438f7bc2006-11-10 08:43:01 +00001013 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +00001014 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
1015 MachineOperand &MO = MI->getOperand(i);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001016 // handle register defs - build intervals
Dan Gohmand735b802008-10-03 15:45:36 +00001017 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Evan Chengef0732d2008-07-10 07:35:43 +00001018 handleRegisterDef(MBB, MI, MIIndex, MO, i);
Dale Johannesen91aac102008-09-17 21:13:11 +00001019 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001020 }
Evan Cheng99fe34b2008-10-18 05:18:55 +00001021
1022 // Skip over the empty slots after each instruction.
1023 unsigned Slots = MI->getDesc().getNumDefs();
1024 if (Slots == 0)
1025 Slots = 1;
1026 MIIndex += InstrSlots::NUM * Slots;
Owen Anderson7fbad272008-07-23 21:37:49 +00001027
1028 // Skip over empty indices.
1029 while (MIIndex / InstrSlots::NUM < i2miMap_.size() &&
1030 getInstructionFromIndex(MIIndex) == 0)
1031 MIIndex += InstrSlots::NUM;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001032 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001033 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001034}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +00001035
Evan Chengd0e32c52008-10-29 05:06:14 +00001036bool LiveIntervals::findLiveInMBBs(unsigned Start, unsigned End,
Evan Chenga5bfc972007-10-17 06:53:44 +00001037 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +00001038 std::vector<IdxMBBPair>::const_iterator I =
Evan Chengd0e32c52008-10-29 05:06:14 +00001039 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), Start);
Evan Cheng4ca980e2007-10-17 02:10:22 +00001040
1041 bool ResVal = false;
1042 while (I != Idx2MBBMap.end()) {
Dan Gohman2ad82452008-11-26 05:50:31 +00001043 if (I->first >= End)
Evan Cheng4ca980e2007-10-17 02:10:22 +00001044 break;
1045 MBBs.push_back(I->second);
1046 ResVal = true;
1047 ++I;
1048 }
1049 return ResVal;
1050}
1051
Evan Chengd0e32c52008-10-29 05:06:14 +00001052bool LiveIntervals::findReachableMBBs(unsigned Start, unsigned End,
1053 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
1054 std::vector<IdxMBBPair>::const_iterator I =
1055 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), Start);
1056
1057 bool ResVal = false;
1058 while (I != Idx2MBBMap.end()) {
1059 if (I->first > End)
1060 break;
1061 MachineBasicBlock *MBB = I->second;
1062 if (getMBBEndIdx(MBB) > End)
1063 break;
1064 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
1065 SE = MBB->succ_end(); SI != SE; ++SI)
1066 MBBs.push_back(*SI);
1067 ResVal = true;
1068 ++I;
1069 }
1070 return ResVal;
1071}
1072
Owen Anderson03857b22008-08-13 21:49:13 +00001073LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001074 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ? HUGE_VALF : 0.0F;
Owen Anderson03857b22008-08-13 21:49:13 +00001075 return new LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +00001076}
Evan Chengf2fbca62007-11-12 06:35:08 +00001077
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001078/// dupInterval - Duplicate a live interval. The caller is responsible for
1079/// managing the allocated memory.
1080LiveInterval* LiveIntervals::dupInterval(LiveInterval *li) {
1081 LiveInterval *NewLI = createInterval(li->reg);
Evan Cheng90f95f82009-06-14 20:22:55 +00001082 NewLI->Copy(*li, mri_, getVNInfoAllocator());
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001083 return NewLI;
1084}
1085
Evan Chengc8d044e2008-02-15 18:24:29 +00001086/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
1087/// copy field and returns the source register that defines it.
1088unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
1089 if (!VNI->copy)
1090 return 0;
1091
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001092 if (VNI->copy->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
1093 // If it's extracting out of a physical register, return the sub-register.
1094 unsigned Reg = VNI->copy->getOperand(1).getReg();
1095 if (TargetRegisterInfo::isPhysicalRegister(Reg))
1096 Reg = tri_->getSubReg(Reg, VNI->copy->getOperand(2).getImm());
1097 return Reg;
Dan Gohman97121ba2009-04-08 00:15:30 +00001098 } else if (VNI->copy->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
1099 VNI->copy->getOpcode() == TargetInstrInfo::SUBREG_TO_REG)
Evan Cheng7e073ba2008-04-09 20:57:25 +00001100 return VNI->copy->getOperand(2).getReg();
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001101
Evan Cheng04ee5a12009-01-20 19:12:24 +00001102 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
1103 if (tii_->isMoveInstr(*VNI->copy, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +00001104 return SrcReg;
Torok Edwinc23197a2009-07-14 16:55:14 +00001105 llvm_unreachable("Unrecognized copy instruction!");
Evan Chengc8d044e2008-02-15 18:24:29 +00001106 return 0;
1107}
Evan Chengf2fbca62007-11-12 06:35:08 +00001108
1109//===----------------------------------------------------------------------===//
1110// Register allocator hooks.
1111//
1112
Evan Chengd70dbb52008-02-22 09:24:50 +00001113/// getReMatImplicitUse - If the remat definition MI has one (for now, we only
1114/// allow one) virtual register operand, then its uses are implicitly using
1115/// the register. Returns the virtual register.
1116unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
1117 MachineInstr *MI) const {
1118 unsigned RegOp = 0;
1119 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1120 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001121 if (!MO.isReg() || !MO.isUse())
Evan Chengd70dbb52008-02-22 09:24:50 +00001122 continue;
1123 unsigned Reg = MO.getReg();
1124 if (Reg == 0 || Reg == li.reg)
1125 continue;
Chris Lattner1873d0c2009-06-27 04:06:41 +00001126
1127 if (TargetRegisterInfo::isPhysicalRegister(Reg) &&
1128 !allocatableRegs_[Reg])
1129 continue;
Evan Chengd70dbb52008-02-22 09:24:50 +00001130 // FIXME: For now, only remat MI with at most one register operand.
1131 assert(!RegOp &&
1132 "Can't rematerialize instruction with multiple register operand!");
1133 RegOp = MO.getReg();
Dan Gohman6d69ba82008-07-25 00:02:30 +00001134#ifndef NDEBUG
Evan Chengd70dbb52008-02-22 09:24:50 +00001135 break;
Dan Gohman6d69ba82008-07-25 00:02:30 +00001136#endif
Evan Chengd70dbb52008-02-22 09:24:50 +00001137 }
1138 return RegOp;
1139}
1140
1141/// isValNoAvailableAt - Return true if the val# of the specified interval
1142/// which reaches the given instruction also reaches the specified use index.
1143bool LiveIntervals::isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
1144 unsigned UseIdx) const {
1145 unsigned Index = getInstructionIndex(MI);
1146 VNInfo *ValNo = li.FindLiveRangeContaining(Index)->valno;
1147 LiveInterval::const_iterator UI = li.FindLiveRangeContaining(UseIdx);
1148 return UI != li.end() && UI->valno == ValNo;
1149}
1150
Evan Chengf2fbca62007-11-12 06:35:08 +00001151/// isReMaterializable - Returns true if the definition MI of the specified
1152/// val# of the specified interval is re-materializable.
1153bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +00001154 const VNInfo *ValNo, MachineInstr *MI,
Evan Chengdc377862008-09-30 15:44:16 +00001155 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Cheng5ef3a042007-12-06 00:01:56 +00001156 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001157 if (DisableReMat)
1158 return false;
1159
Evan Cheng20ccded2008-03-15 00:19:36 +00001160 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
Evan Chengd70dbb52008-02-22 09:24:50 +00001161 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +00001162
1163 int FrameIdx = 0;
1164 if (tii_->isLoadFromStackSlot(MI, FrameIdx) &&
Evan Cheng249ded32008-02-23 03:38:34 +00001165 mf_->getFrameInfo()->isImmutableObjectIndex(FrameIdx))
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001166 // FIXME: Let target specific isReallyTriviallyReMaterializable determines
1167 // this but remember this is not safe to fold into a two-address
1168 // instruction.
Evan Cheng249ded32008-02-23 03:38:34 +00001169 // This is a load from fixed stack slot. It can be rematerialized.
Evan Chengdd3465e2008-02-23 01:44:27 +00001170 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +00001171
Dan Gohman6d69ba82008-07-25 00:02:30 +00001172 // If the target-specific rules don't identify an instruction as
1173 // being trivially rematerializable, use some target-independent
1174 // rules.
1175 if (!MI->getDesc().isRematerializable() ||
1176 !tii_->isTriviallyReMaterializable(MI)) {
Dan Gohman4c8f8702008-07-25 15:08:37 +00001177 if (!EnableAggressiveRemat)
1178 return false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001179
Dan Gohman0471a792008-07-28 18:43:51 +00001180 // If the instruction accesses memory but the memoperands have been lost,
Dan Gohman6d69ba82008-07-25 00:02:30 +00001181 // we can't analyze it.
1182 const TargetInstrDesc &TID = MI->getDesc();
1183 if ((TID.mayLoad() || TID.mayStore()) && MI->memoperands_empty())
1184 return false;
1185
1186 // Avoid instructions obviously unsafe for remat.
1187 if (TID.hasUnmodeledSideEffects() || TID.isNotDuplicable())
1188 return false;
1189
1190 // If the instruction accesses memory and the memory could be non-constant,
1191 // assume the instruction is not rematerializable.
Evan Chengdc377862008-09-30 15:44:16 +00001192 for (std::list<MachineMemOperand>::const_iterator
1193 I = MI->memoperands_begin(), E = MI->memoperands_end(); I != E; ++I){
Dan Gohman6d69ba82008-07-25 00:02:30 +00001194 const MachineMemOperand &MMO = *I;
1195 if (MMO.isVolatile() || MMO.isStore())
1196 return false;
1197 const Value *V = MMO.getValue();
1198 if (!V)
1199 return false;
1200 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
1201 if (!PSV->isConstant(mf_->getFrameInfo()))
Evan Chengd70dbb52008-02-22 09:24:50 +00001202 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +00001203 } else if (!aa_->pointsToConstantMemory(V))
1204 return false;
1205 }
1206
1207 // If any of the registers accessed are non-constant, conservatively assume
1208 // the instruction is not rematerializable.
1209 unsigned ImpUse = 0;
1210 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1211 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001212 if (MO.isReg()) {
Dan Gohman6d69ba82008-07-25 00:02:30 +00001213 unsigned Reg = MO.getReg();
1214 if (Reg == 0)
1215 continue;
1216 if (TargetRegisterInfo::isPhysicalRegister(Reg))
1217 return false;
1218
1219 // Only allow one def, and that in the first operand.
1220 if (MO.isDef() != (i == 0))
1221 return false;
1222
1223 // Only allow constant-valued registers.
1224 bool IsLiveIn = mri_->isLiveIn(Reg);
1225 MachineRegisterInfo::def_iterator I = mri_->def_begin(Reg),
1226 E = mri_->def_end();
1227
Dan Gohmanc93ced5b2008-12-08 04:53:23 +00001228 // For the def, it should be the only def of that register.
Dan Gohman6d69ba82008-07-25 00:02:30 +00001229 if (MO.isDef() && (next(I) != E || IsLiveIn))
1230 return false;
1231
1232 if (MO.isUse()) {
1233 // Only allow one use other register use, as that's all the
1234 // remat mechanisms support currently.
1235 if (Reg != li.reg) {
1236 if (ImpUse == 0)
1237 ImpUse = Reg;
1238 else if (Reg != ImpUse)
1239 return false;
1240 }
Dan Gohmanc93ced5b2008-12-08 04:53:23 +00001241 // For the use, there should be only one associated def.
Dan Gohman6d69ba82008-07-25 00:02:30 +00001242 if (I != E && (next(I) != E || IsLiveIn))
1243 return false;
1244 }
Evan Chengd70dbb52008-02-22 09:24:50 +00001245 }
1246 }
Evan Cheng5ef3a042007-12-06 00:01:56 +00001247 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001248
Dan Gohman6d69ba82008-07-25 00:02:30 +00001249 unsigned ImpUse = getReMatImplicitUse(li, MI);
1250 if (ImpUse) {
1251 const LiveInterval &ImpLi = getInterval(ImpUse);
1252 for (MachineRegisterInfo::use_iterator ri = mri_->use_begin(li.reg),
1253 re = mri_->use_end(); ri != re; ++ri) {
1254 MachineInstr *UseMI = &*ri;
1255 unsigned UseIdx = getInstructionIndex(UseMI);
1256 if (li.FindLiveRangeContaining(UseIdx)->valno != ValNo)
1257 continue;
1258 if (!isValNoAvailableAt(ImpLi, MI, UseIdx))
1259 return false;
1260 }
Evan Chengdc377862008-09-30 15:44:16 +00001261
1262 // If a register operand of the re-materialized instruction is going to
1263 // be spilled next, then it's not legal to re-materialize this instruction.
1264 for (unsigned i = 0, e = SpillIs.size(); i != e; ++i)
1265 if (ImpUse == SpillIs[i]->reg)
1266 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +00001267 }
1268 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +00001269}
1270
Evan Cheng06587492008-10-24 02:05:00 +00001271/// isReMaterializable - Returns true if the definition MI of the specified
1272/// val# of the specified interval is re-materializable.
1273bool LiveIntervals::isReMaterializable(const LiveInterval &li,
1274 const VNInfo *ValNo, MachineInstr *MI) {
1275 SmallVector<LiveInterval*, 4> Dummy1;
1276 bool Dummy2;
1277 return isReMaterializable(li, ValNo, MI, Dummy1, Dummy2);
1278}
1279
Evan Cheng5ef3a042007-12-06 00:01:56 +00001280/// isReMaterializable - Returns true if every definition of MI of every
1281/// val# of the specified interval is re-materializable.
Evan Chengdc377862008-09-30 15:44:16 +00001282bool LiveIntervals::isReMaterializable(const LiveInterval &li,
1283 SmallVectorImpl<LiveInterval*> &SpillIs,
1284 bool &isLoad) {
Evan Cheng5ef3a042007-12-06 00:01:56 +00001285 isLoad = false;
1286 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1287 i != e; ++i) {
1288 const VNInfo *VNI = *i;
Lang Hames857c4e02009-06-17 21:01:20 +00001289 if (VNI->isUnused())
Evan Cheng5ef3a042007-12-06 00:01:56 +00001290 continue; // Dead val#.
1291 // Is the def for the val# rematerializable?
Lang Hames857c4e02009-06-17 21:01:20 +00001292 if (!VNI->isDefAccurate())
Evan Cheng5ef3a042007-12-06 00:01:56 +00001293 return false;
Lang Hames857c4e02009-06-17 21:01:20 +00001294 MachineInstr *ReMatDefMI = getInstructionFromIndex(VNI->def);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001295 bool DefIsLoad = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001296 if (!ReMatDefMI ||
Evan Chengdc377862008-09-30 15:44:16 +00001297 !isReMaterializable(li, VNI, ReMatDefMI, SpillIs, DefIsLoad))
Evan Cheng5ef3a042007-12-06 00:01:56 +00001298 return false;
1299 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +00001300 }
1301 return true;
1302}
1303
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001304/// FilterFoldedOps - Filter out two-address use operands. Return
1305/// true if it finds any issue with the operands that ought to prevent
1306/// folding.
1307static bool FilterFoldedOps(MachineInstr *MI,
1308 SmallVector<unsigned, 2> &Ops,
1309 unsigned &MRInfo,
1310 SmallVector<unsigned, 2> &FoldOps) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001311 MRInfo = 0;
Evan Chengaee4af62007-12-02 08:30:39 +00001312 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
1313 unsigned OpIdx = Ops[i];
Evan Chengd70dbb52008-02-22 09:24:50 +00001314 MachineOperand &MO = MI->getOperand(OpIdx);
Evan Chengaee4af62007-12-02 08:30:39 +00001315 // FIXME: fold subreg use.
Evan Chengd70dbb52008-02-22 09:24:50 +00001316 if (MO.getSubReg())
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001317 return true;
Evan Chengd70dbb52008-02-22 09:24:50 +00001318 if (MO.isDef())
Evan Chengaee4af62007-12-02 08:30:39 +00001319 MRInfo |= (unsigned)VirtRegMap::isMod;
1320 else {
1321 // Filter out two-address use operand(s).
Evan Chenga24752f2009-03-19 20:30:06 +00001322 if (MI->isRegTiedToDefOperand(OpIdx)) {
Evan Chengaee4af62007-12-02 08:30:39 +00001323 MRInfo = VirtRegMap::isModRef;
1324 continue;
1325 }
1326 MRInfo |= (unsigned)VirtRegMap::isRef;
1327 }
1328 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +00001329 }
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001330 return false;
1331}
1332
1333
1334/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
1335/// slot / to reg or any rematerialized load into ith operand of specified
1336/// MI. If it is successul, MI is updated with the newly created MI and
1337/// returns true.
1338bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
1339 VirtRegMap &vrm, MachineInstr *DefMI,
1340 unsigned InstrIdx,
1341 SmallVector<unsigned, 2> &Ops,
1342 bool isSS, int Slot, unsigned Reg) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001343 // If it is an implicit def instruction, just delete it.
Evan Cheng20ccded2008-03-15 00:19:36 +00001344 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001345 RemoveMachineInstrFromMaps(MI);
1346 vrm.RemoveMachineInstrFromMaps(MI);
1347 MI->eraseFromParent();
1348 ++numFolds;
1349 return true;
1350 }
1351
1352 // Filter the list of operand indexes that are to be folded. Abort if
1353 // any operand will prevent folding.
1354 unsigned MRInfo = 0;
1355 SmallVector<unsigned, 2> FoldOps;
1356 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1357 return false;
Evan Chenge62f97c2007-12-01 02:07:52 +00001358
Evan Cheng427f4c12008-03-31 23:19:51 +00001359 // The only time it's safe to fold into a two address instruction is when
1360 // it's folding reload and spill from / into a spill stack slot.
1361 if (DefMI && (MRInfo & VirtRegMap::isMod))
Evan Cheng249ded32008-02-23 03:38:34 +00001362 return false;
1363
Evan Chengf2f8c2a2008-02-08 22:05:27 +00001364 MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(*mf_, MI, FoldOps, Slot)
1365 : tii_->foldMemoryOperand(*mf_, MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001366 if (fmi) {
Evan Chengd3653122008-02-27 03:04:06 +00001367 // Remember this instruction uses the spill slot.
1368 if (isSS) vrm.addSpillSlotUse(Slot, fmi);
1369
Evan Chengf2fbca62007-11-12 06:35:08 +00001370 // Attempt to fold the memory reference into the instruction. If
1371 // we can do this, we don't need to insert spill code.
Evan Chengf2fbca62007-11-12 06:35:08 +00001372 MachineBasicBlock &MBB = *MI->getParent();
Evan Cheng84802932008-01-10 08:24:38 +00001373 if (isSS && !mf_->getFrameInfo()->isImmutableObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +00001374 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +00001375 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001376 vrm.transferRestorePts(MI, fmi);
Evan Chengc1f53c72008-03-11 21:34:46 +00001377 vrm.transferEmergencySpills(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +00001378 mi2iMap_.erase(MI);
Evan Chengcddbb832007-11-30 21:23:43 +00001379 i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
1380 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +00001381 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001382 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +00001383 return true;
1384 }
1385 return false;
1386}
1387
Evan Cheng018f9b02007-12-05 03:22:34 +00001388/// canFoldMemoryOperand - Returns true if the specified load / store
1389/// folding is possible.
1390bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001391 SmallVector<unsigned, 2> &Ops,
Evan Cheng3c75ba82008-04-01 21:37:32 +00001392 bool ReMat) const {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001393 // Filter the list of operand indexes that are to be folded. Abort if
1394 // any operand will prevent folding.
1395 unsigned MRInfo = 0;
Evan Cheng018f9b02007-12-05 03:22:34 +00001396 SmallVector<unsigned, 2> FoldOps;
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001397 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1398 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001399
Evan Cheng3c75ba82008-04-01 21:37:32 +00001400 // It's only legal to remat for a use, not a def.
1401 if (ReMat && (MRInfo & VirtRegMap::isMod))
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001402 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001403
Evan Chengd70dbb52008-02-22 09:24:50 +00001404 return tii_->canFoldMemoryOperand(MI, FoldOps);
1405}
1406
Evan Cheng81a03822007-11-17 00:40:40 +00001407bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
1408 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
1409 for (LiveInterval::Ranges::const_iterator
1410 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1411 std::vector<IdxMBBPair>::const_iterator II =
1412 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
1413 if (II == Idx2MBBMap.end())
1414 continue;
1415 if (I->end > II->first) // crossing a MBB.
1416 return false;
1417 MBBs.insert(II->second);
1418 if (MBBs.size() > 1)
1419 return false;
1420 }
1421 return true;
1422}
1423
Evan Chengd70dbb52008-02-22 09:24:50 +00001424/// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
1425/// interval on to-be re-materialized operands of MI) with new register.
1426void LiveIntervals::rewriteImplicitOps(const LiveInterval &li,
1427 MachineInstr *MI, unsigned NewVReg,
1428 VirtRegMap &vrm) {
1429 // There is an implicit use. That means one of the other operand is
1430 // being remat'ed and the remat'ed instruction has li.reg as an
1431 // use operand. Make sure we rewrite that as well.
1432 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1433 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001434 if (!MO.isReg())
Evan Chengd70dbb52008-02-22 09:24:50 +00001435 continue;
1436 unsigned Reg = MO.getReg();
1437 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
1438 continue;
1439 if (!vrm.isReMaterialized(Reg))
1440 continue;
1441 MachineInstr *ReMatMI = vrm.getReMaterializedMI(Reg);
Evan Cheng6130f662008-03-05 00:59:57 +00001442 MachineOperand *UseMO = ReMatMI->findRegisterUseOperand(li.reg);
1443 if (UseMO)
1444 UseMO->setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001445 }
1446}
1447
Evan Chengf2fbca62007-11-12 06:35:08 +00001448/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
1449/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +00001450bool LiveIntervals::
Evan Chengd70dbb52008-02-22 09:24:50 +00001451rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
1452 bool TrySplit, unsigned index, unsigned end, MachineInstr *MI,
Evan Cheng81a03822007-11-17 00:40:40 +00001453 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001454 unsigned Slot, int LdSlot,
1455 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001456 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001457 const TargetRegisterClass* rc,
1458 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001459 const MachineLoopInfo *loopInfo,
Evan Cheng313d4b82008-02-23 00:33:04 +00001460 unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
Owen Anderson28998312008-08-13 22:28:50 +00001461 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Chengc781a242009-05-03 18:32:42 +00001462 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001463 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +00001464 RestartInstruction:
1465 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1466 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001467 if (!mop.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001468 continue;
1469 unsigned Reg = mop.getReg();
1470 unsigned RegI = Reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001471 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
Evan Chengf2fbca62007-11-12 06:35:08 +00001472 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +00001473 if (Reg != li.reg)
1474 continue;
1475
1476 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +00001477 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +00001478 int FoldSlot = Slot;
1479 if (DefIsReMat) {
1480 // If this is the rematerializable definition MI itself and
1481 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +00001482 if (MI == ReMatOrigDefMI && CanDelete) {
Evan Chengcddbb832007-11-30 21:23:43 +00001483 DOUT << "\t\t\t\tErasing re-materlizable def: ";
1484 DOUT << MI << '\n';
Evan Chengf2fbca62007-11-12 06:35:08 +00001485 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +00001486 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001487 MI->eraseFromParent();
1488 break;
1489 }
1490
1491 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001492 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +00001493 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +00001494 if (isLoad) {
1495 // Try fold loads (from stack slot, constant pool, etc.) into uses.
1496 FoldSS = isLoadSS;
1497 FoldSlot = LdSlot;
1498 }
1499 }
1500
Evan Chengf2fbca62007-11-12 06:35:08 +00001501 // Scan all of the operands of this instruction rewriting operands
1502 // to use NewVReg instead of li.reg as appropriate. We do this for
1503 // two reasons:
1504 //
1505 // 1. If the instr reads the same spilled vreg multiple times, we
1506 // want to reuse the NewVReg.
1507 // 2. If the instr is a two-addr instruction, we are required to
1508 // keep the src/dst regs pinned.
1509 //
1510 // Keep track of whether we replace a use and/or def so that we can
1511 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +00001512
Evan Cheng81a03822007-11-17 00:40:40 +00001513 HasUse = mop.isUse();
1514 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +00001515 SmallVector<unsigned, 2> Ops;
1516 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +00001517 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +00001518 const MachineOperand &MOj = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001519 if (!MOj.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001520 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001521 unsigned RegJ = MOj.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001522 if (RegJ == 0 || TargetRegisterInfo::isPhysicalRegister(RegJ))
Evan Chengf2fbca62007-11-12 06:35:08 +00001523 continue;
1524 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +00001525 Ops.push_back(j);
1526 HasUse |= MOj.isUse();
1527 HasDef |= MOj.isDef();
Evan Chengf2fbca62007-11-12 06:35:08 +00001528 }
1529 }
1530
Evan Cheng79a796c2008-07-12 01:56:02 +00001531 if (HasUse && !li.liveAt(getUseIndex(index)))
1532 // Must be defined by an implicit def. It should not be spilled. Note,
1533 // this is for correctness reason. e.g.
1534 // 8 %reg1024<def> = IMPLICIT_DEF
1535 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1536 // The live range [12, 14) are not part of the r1024 live interval since
1537 // it's defined by an implicit def. It will not conflicts with live
1538 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001539 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001540 // the INSERT_SUBREG and both target registers that would overlap.
1541 HasUse = false;
1542
David Greene26b86a02008-10-27 17:38:59 +00001543 // Create a new virtual register for the spill interval.
1544 // Create the new register now so we can map the fold instruction
1545 // to the new register so when it is unfolded we get the correct
1546 // answer.
1547 bool CreatedNewVReg = false;
1548 if (NewVReg == 0) {
1549 NewVReg = mri_->createVirtualRegister(rc);
1550 vrm.grow();
1551 CreatedNewVReg = true;
1552 }
1553
Evan Cheng9c3c2212008-06-06 07:54:39 +00001554 if (!TryFold)
1555 CanFold = false;
1556 else {
Evan Cheng018f9b02007-12-05 03:22:34 +00001557 // Do not fold load / store here if we are splitting. We'll find an
1558 // optimal point to insert a load / store later.
1559 if (!TrySplit) {
1560 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
David Greene26b86a02008-10-27 17:38:59 +00001561 Ops, FoldSS, FoldSlot, NewVReg)) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001562 // Folding the load/store can completely change the instruction in
1563 // unpredictable ways, rescan it from the beginning.
David Greene26b86a02008-10-27 17:38:59 +00001564
1565 if (FoldSS) {
1566 // We need to give the new vreg the same stack slot as the
1567 // spilled interval.
1568 vrm.assignVirt2StackSlot(NewVReg, FoldSlot);
1569 }
1570
Evan Cheng018f9b02007-12-05 03:22:34 +00001571 HasUse = false;
1572 HasDef = false;
1573 CanFold = false;
Evan Chengc781a242009-05-03 18:32:42 +00001574 if (isNotInMIMap(MI))
Evan Cheng7e073ba2008-04-09 20:57:25 +00001575 break;
Evan Cheng018f9b02007-12-05 03:22:34 +00001576 goto RestartInstruction;
1577 }
1578 } else {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001579 // We'll try to fold it later if it's profitable.
Evan Cheng3c75ba82008-04-01 21:37:32 +00001580 CanFold = canFoldMemoryOperand(MI, Ops, DefIsReMat);
Evan Cheng018f9b02007-12-05 03:22:34 +00001581 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001582 }
Evan Chengcddbb832007-11-30 21:23:43 +00001583
Evan Chengcddbb832007-11-30 21:23:43 +00001584 mop.setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001585 if (mop.isImplicit())
1586 rewriteImplicitOps(li, MI, NewVReg, vrm);
Evan Chengcddbb832007-11-30 21:23:43 +00001587
1588 // Reuse NewVReg for other reads.
Evan Chengd70dbb52008-02-22 09:24:50 +00001589 for (unsigned j = 0, e = Ops.size(); j != e; ++j) {
1590 MachineOperand &mopj = MI->getOperand(Ops[j]);
1591 mopj.setReg(NewVReg);
1592 if (mopj.isImplicit())
1593 rewriteImplicitOps(li, MI, NewVReg, vrm);
1594 }
Evan Chengcddbb832007-11-30 21:23:43 +00001595
Evan Cheng81a03822007-11-17 00:40:40 +00001596 if (CreatedNewVReg) {
1597 if (DefIsReMat) {
1598 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
Evan Chengd70dbb52008-02-22 09:24:50 +00001599 if (ReMatIds[VNI->id] == VirtRegMap::MAX_STACK_SLOT) {
Evan Cheng81a03822007-11-17 00:40:40 +00001600 // Each valnum may have its own remat id.
Evan Chengd70dbb52008-02-22 09:24:50 +00001601 ReMatIds[VNI->id] = vrm.assignVirtReMatId(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001602 } else {
Evan Chengd70dbb52008-02-22 09:24:50 +00001603 vrm.assignVirtReMatId(NewVReg, ReMatIds[VNI->id]);
Evan Cheng81a03822007-11-17 00:40:40 +00001604 }
1605 if (!CanDelete || (HasUse && HasDef)) {
1606 // If this is a two-addr instruction then its use operands are
1607 // rematerializable but its def is not. It should be assigned a
1608 // stack slot.
1609 vrm.assignVirt2StackSlot(NewVReg, Slot);
1610 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001611 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +00001612 vrm.assignVirt2StackSlot(NewVReg, Slot);
1613 }
Evan Chengcb3c3302007-11-29 23:02:50 +00001614 } else if (HasUse && HasDef &&
1615 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
1616 // If this interval hasn't been assigned a stack slot (because earlier
1617 // def is a deleted remat def), do it now.
1618 assert(Slot != VirtRegMap::NO_STACK_SLOT);
1619 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001620 }
1621
Evan Cheng313d4b82008-02-23 00:33:04 +00001622 // Re-matting an instruction with virtual register use. Add the
1623 // register as an implicit use on the use MI.
1624 if (DefIsReMat && ImpUse)
1625 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
1626
Evan Cheng5b69eba2009-04-21 22:46:52 +00001627 // Create a new register interval for this spill / remat.
Evan Chengf2fbca62007-11-12 06:35:08 +00001628 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001629 if (CreatedNewVReg) {
1630 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001631 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +00001632 if (TrySplit)
1633 vrm.setIsSplitFromReg(NewVReg, li.reg);
1634 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001635
1636 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +00001637 if (CreatedNewVReg) {
1638 LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
Lang Hames857c4e02009-06-17 21:01:20 +00001639 nI.getNextValue(0, 0, false, VNInfoAllocator));
Evan Cheng81a03822007-11-17 00:40:40 +00001640 DOUT << " +" << LR;
1641 nI.addRange(LR);
1642 } else {
1643 // Extend the split live interval to this def / use.
1644 unsigned End = getUseIndex(index)+1;
1645 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
1646 nI.getValNumInfo(nI.getNumValNums()-1));
1647 DOUT << " +" << LR;
1648 nI.addRange(LR);
1649 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001650 }
1651 if (HasDef) {
1652 LiveRange LR(getDefIndex(index), getStoreIndex(index),
Lang Hames857c4e02009-06-17 21:01:20 +00001653 nI.getNextValue(0, 0, false, VNInfoAllocator));
Evan Chengf2fbca62007-11-12 06:35:08 +00001654 DOUT << " +" << LR;
1655 nI.addRange(LR);
1656 }
Evan Cheng81a03822007-11-17 00:40:40 +00001657
Evan Chengf2fbca62007-11-12 06:35:08 +00001658 DOUT << "\t\t\t\tAdded new interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001659 nI.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001660 DOUT << '\n';
1661 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001662 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +00001663}
Evan Cheng81a03822007-11-17 00:40:40 +00001664bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001665 const VNInfo *VNI,
1666 MachineBasicBlock *MBB, unsigned Idx) const {
Evan Cheng81a03822007-11-17 00:40:40 +00001667 unsigned End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001668 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
Lang Hamesffd13262009-07-09 03:57:02 +00001669 if (VNI->kills[j].isPHIKill)
1670 continue;
1671
1672 unsigned KillIdx = VNI->kills[j].killIdx;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001673 if (KillIdx > Idx && KillIdx < End)
1674 return true;
Evan Cheng81a03822007-11-17 00:40:40 +00001675 }
1676 return false;
1677}
1678
Evan Cheng063284c2008-02-21 00:34:19 +00001679/// RewriteInfo - Keep track of machine instrs that will be rewritten
1680/// during spilling.
Dan Gohman844731a2008-05-13 00:00:25 +00001681namespace {
1682 struct RewriteInfo {
1683 unsigned Index;
1684 MachineInstr *MI;
1685 bool HasUse;
1686 bool HasDef;
1687 RewriteInfo(unsigned i, MachineInstr *mi, bool u, bool d)
1688 : Index(i), MI(mi), HasUse(u), HasDef(d) {}
1689 };
Evan Cheng063284c2008-02-21 00:34:19 +00001690
Dan Gohman844731a2008-05-13 00:00:25 +00001691 struct RewriteInfoCompare {
1692 bool operator()(const RewriteInfo &LHS, const RewriteInfo &RHS) const {
1693 return LHS.Index < RHS.Index;
1694 }
1695 };
1696}
Evan Cheng063284c2008-02-21 00:34:19 +00001697
Evan Chengf2fbca62007-11-12 06:35:08 +00001698void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001699rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +00001700 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +00001701 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001702 unsigned Slot, int LdSlot,
1703 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001704 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001705 const TargetRegisterClass* rc,
1706 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001707 const MachineLoopInfo *loopInfo,
Evan Cheng81a03822007-11-17 00:40:40 +00001708 BitVector &SpillMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001709 DenseMap<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001710 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001711 DenseMap<unsigned, std::vector<SRInfo> > &RestoreIdxes,
1712 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Chengc781a242009-05-03 18:32:42 +00001713 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001714 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001715 unsigned NewVReg = 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001716 unsigned start = getBaseIndex(I->start);
Evan Chengf2fbca62007-11-12 06:35:08 +00001717 unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
Evan Chengf2fbca62007-11-12 06:35:08 +00001718
Evan Cheng063284c2008-02-21 00:34:19 +00001719 // First collect all the def / use in this live range that will be rewritten.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001720 // Make sure they are sorted according to instruction index.
Evan Cheng063284c2008-02-21 00:34:19 +00001721 std::vector<RewriteInfo> RewriteMIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001722 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1723 re = mri_->reg_end(); ri != re; ) {
Evan Cheng419852c2008-04-03 16:39:43 +00001724 MachineInstr *MI = &*ri;
Evan Cheng063284c2008-02-21 00:34:19 +00001725 MachineOperand &O = ri.getOperand();
1726 ++ri;
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001727 assert(!O.isImplicit() && "Spilling register that's used as implicit use?");
Evan Cheng063284c2008-02-21 00:34:19 +00001728 unsigned index = getInstructionIndex(MI);
1729 if (index < start || index >= end)
1730 continue;
Evan Cheng79a796c2008-07-12 01:56:02 +00001731 if (O.isUse() && !li.liveAt(getUseIndex(index)))
1732 // Must be defined by an implicit def. It should not be spilled. Note,
1733 // this is for correctness reason. e.g.
1734 // 8 %reg1024<def> = IMPLICIT_DEF
1735 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1736 // The live range [12, 14) are not part of the r1024 live interval since
1737 // it's defined by an implicit def. It will not conflicts with live
1738 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001739 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001740 // the INSERT_SUBREG and both target registers that would overlap.
1741 continue;
Evan Cheng063284c2008-02-21 00:34:19 +00001742 RewriteMIs.push_back(RewriteInfo(index, MI, O.isUse(), O.isDef()));
1743 }
1744 std::sort(RewriteMIs.begin(), RewriteMIs.end(), RewriteInfoCompare());
1745
Evan Cheng313d4b82008-02-23 00:33:04 +00001746 unsigned ImpUse = DefIsReMat ? getReMatImplicitUse(li, ReMatDefMI) : 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001747 // Now rewrite the defs and uses.
1748 for (unsigned i = 0, e = RewriteMIs.size(); i != e; ) {
1749 RewriteInfo &rwi = RewriteMIs[i];
1750 ++i;
1751 unsigned index = rwi.Index;
1752 bool MIHasUse = rwi.HasUse;
1753 bool MIHasDef = rwi.HasDef;
1754 MachineInstr *MI = rwi.MI;
1755 // If MI def and/or use the same register multiple times, then there
1756 // are multiple entries.
Evan Cheng313d4b82008-02-23 00:33:04 +00001757 unsigned NumUses = MIHasUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001758 while (i != e && RewriteMIs[i].MI == MI) {
1759 assert(RewriteMIs[i].Index == index);
Evan Cheng313d4b82008-02-23 00:33:04 +00001760 bool isUse = RewriteMIs[i].HasUse;
1761 if (isUse) ++NumUses;
1762 MIHasUse |= isUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001763 MIHasDef |= RewriteMIs[i].HasDef;
1764 ++i;
1765 }
Evan Cheng81a03822007-11-17 00:40:40 +00001766 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng313d4b82008-02-23 00:33:04 +00001767
Evan Cheng0a891ed2008-05-23 23:00:04 +00001768 if (ImpUse && MI != ReMatDefMI) {
Evan Cheng313d4b82008-02-23 00:33:04 +00001769 // Re-matting an instruction with virtual register use. Update the
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001770 // register interval's spill weight to HUGE_VALF to prevent it from
1771 // being spilled.
Evan Cheng313d4b82008-02-23 00:33:04 +00001772 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001773 ImpLi.weight = HUGE_VALF;
Evan Cheng313d4b82008-02-23 00:33:04 +00001774 }
1775
Evan Cheng063284c2008-02-21 00:34:19 +00001776 unsigned MBBId = MBB->getNumber();
Evan Cheng018f9b02007-12-05 03:22:34 +00001777 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +00001778 if (TrySplit) {
Owen Anderson28998312008-08-13 22:28:50 +00001779 DenseMap<unsigned,unsigned>::iterator NVI = MBBVRegsMap.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001780 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001781 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001782 // One common case:
1783 // x = use
1784 // ...
1785 // ...
1786 // def = ...
1787 // = use
1788 // It's better to start a new interval to avoid artifically
1789 // extend the new interval.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001790 if (MIHasDef && !MIHasUse) {
1791 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00001792 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001793 }
1794 }
Evan Chengcada2452007-11-28 01:28:46 +00001795 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001796
1797 bool IsNew = ThisVReg == 0;
1798 if (IsNew) {
1799 // This ends the previous live interval. If all of its def / use
1800 // can be folded, give it a low spill weight.
1801 if (NewVReg && TrySplit && AllCanFold) {
1802 LiveInterval &nI = getOrCreateInterval(NewVReg);
1803 nI.weight /= 10.0F;
1804 }
1805 AllCanFold = true;
1806 }
1807 NewVReg = ThisVReg;
1808
Evan Cheng81a03822007-11-17 00:40:40 +00001809 bool HasDef = false;
1810 bool HasUse = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001811 bool CanFold = rewriteInstructionForSpills(li, I->valno, TrySplit,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001812 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
1813 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
1814 CanDelete, vrm, rc, ReMatIds, loopInfo, NewVReg,
Evan Chengc781a242009-05-03 18:32:42 +00001815 ImpUse, HasDef, HasUse, MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001816 if (!HasDef && !HasUse)
1817 continue;
1818
Evan Cheng018f9b02007-12-05 03:22:34 +00001819 AllCanFold &= CanFold;
1820
Evan Cheng81a03822007-11-17 00:40:40 +00001821 // Update weight of spill interval.
1822 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00001823 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00001824 // The spill weight is now infinity as it cannot be spilled again.
1825 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001826 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00001827 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001828
1829 // Keep track of the last def and first use in each MBB.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001830 if (HasDef) {
1831 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001832 bool HasKill = false;
1833 if (!HasUse)
1834 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
1835 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001836 // If this is a two-address code, then this index starts a new VNInfo.
Evan Cheng3f32d652008-06-04 09:18:41 +00001837 const VNInfo *VNI = li.findDefinedVNInfo(getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00001838 if (VNI)
1839 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
1840 }
Owen Anderson28998312008-08-13 22:28:50 +00001841 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Chenge3110d02007-12-01 04:42:39 +00001842 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001843 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001844 if (SII == SpillIdxes.end()) {
1845 std::vector<SRInfo> S;
1846 S.push_back(SRInfo(index, NewVReg, true));
1847 SpillIdxes.insert(std::make_pair(MBBId, S));
1848 } else if (SII->second.back().vreg != NewVReg) {
1849 SII->second.push_back(SRInfo(index, NewVReg, true));
1850 } else if ((int)index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001851 // If there is an earlier def and this is a two-address
1852 // instruction, then it's not possible to fold the store (which
1853 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00001854 SRInfo &Info = SII->second.back();
1855 Info.index = index;
1856 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001857 }
1858 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00001859 } else if (SII != SpillIdxes.end() &&
1860 SII->second.back().vreg == NewVReg &&
1861 (int)index > SII->second.back().index) {
1862 // There is an earlier def that's not killed (must be two-address).
1863 // The spill is no longer needed.
1864 SII->second.pop_back();
1865 if (SII->second.empty()) {
1866 SpillIdxes.erase(MBBId);
1867 SpillMBBs.reset(MBBId);
1868 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001869 }
1870 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001871 }
1872
1873 if (HasUse) {
Owen Anderson28998312008-08-13 22:28:50 +00001874 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001875 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001876 if (SII != SpillIdxes.end() &&
1877 SII->second.back().vreg == NewVReg &&
1878 (int)index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001879 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001880 SII->second.back().canFold = false;
Owen Anderson28998312008-08-13 22:28:50 +00001881 DenseMap<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001882 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001883 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001884 // If we are splitting live intervals, only fold if it's the first
1885 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001886 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001887 else if (IsNew) {
1888 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001889 if (RII == RestoreIdxes.end()) {
1890 std::vector<SRInfo> Infos;
1891 Infos.push_back(SRInfo(index, NewVReg, true));
1892 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
1893 } else {
1894 RII->second.push_back(SRInfo(index, NewVReg, true));
1895 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001896 RestoreMBBs.set(MBBId);
1897 }
1898 }
1899
1900 // Update spill weight.
Evan Cheng22f07ff2007-12-11 02:09:15 +00001901 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Chengc3417602008-06-21 06:45:54 +00001902 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00001903 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001904
1905 if (NewVReg && TrySplit && AllCanFold) {
1906 // If all of its def / use can be folded, give it a low spill weight.
1907 LiveInterval &nI = getOrCreateInterval(NewVReg);
1908 nI.weight /= 10.0F;
1909 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001910}
1911
Evan Cheng1953d0c2007-11-29 10:12:14 +00001912bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
1913 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001914 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001915 if (!RestoreMBBs[Id])
1916 return false;
1917 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1918 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1919 if (Restores[i].index == index &&
1920 Restores[i].vreg == vr &&
1921 Restores[i].canFold)
1922 return true;
1923 return false;
1924}
1925
1926void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
1927 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001928 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001929 if (!RestoreMBBs[Id])
1930 return;
1931 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1932 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1933 if (Restores[i].index == index && Restores[i].vreg)
1934 Restores[i].index = -1;
1935}
Evan Cheng81a03822007-11-17 00:40:40 +00001936
Evan Cheng4cce6b42008-04-11 17:53:36 +00001937/// handleSpilledImpDefs - Remove IMPLICIT_DEF instructions which are being
1938/// spilled and create empty intervals for their uses.
1939void
1940LiveIntervals::handleSpilledImpDefs(const LiveInterval &li, VirtRegMap &vrm,
1941 const TargetRegisterClass* rc,
1942 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng419852c2008-04-03 16:39:43 +00001943 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1944 re = mri_->reg_end(); ri != re; ) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001945 MachineOperand &O = ri.getOperand();
Evan Cheng419852c2008-04-03 16:39:43 +00001946 MachineInstr *MI = &*ri;
1947 ++ri;
Evan Cheng4cce6b42008-04-11 17:53:36 +00001948 if (O.isDef()) {
1949 assert(MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF &&
1950 "Register def was not rewritten?");
1951 RemoveMachineInstrFromMaps(MI);
1952 vrm.RemoveMachineInstrFromMaps(MI);
1953 MI->eraseFromParent();
1954 } else {
1955 // This must be an use of an implicit_def so it's not part of the live
1956 // interval. Create a new empty live interval for it.
1957 // FIXME: Can we simply erase some of the instructions? e.g. Stores?
1958 unsigned NewVReg = mri_->createVirtualRegister(rc);
1959 vrm.grow();
1960 vrm.setIsImplicitlyDefined(NewVReg);
1961 NewLIs.push_back(&getOrCreateInterval(NewVReg));
1962 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1963 MachineOperand &MO = MI->getOperand(i);
Evan Cheng4784f1f2009-06-30 08:49:04 +00001964 if (MO.isReg() && MO.getReg() == li.reg) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001965 MO.setReg(NewVReg);
Evan Cheng4784f1f2009-06-30 08:49:04 +00001966 MO.setIsUndef();
Evan Cheng4784f1f2009-06-30 08:49:04 +00001967 }
Evan Cheng4cce6b42008-04-11 17:53:36 +00001968 }
1969 }
Evan Cheng419852c2008-04-03 16:39:43 +00001970 }
1971}
1972
Evan Chengf2fbca62007-11-12 06:35:08 +00001973std::vector<LiveInterval*> LiveIntervals::
Owen Andersond6664312008-08-18 18:05:32 +00001974addIntervalsForSpillsFast(const LiveInterval &li,
1975 const MachineLoopInfo *loopInfo,
Evan Chengc781a242009-05-03 18:32:42 +00001976 VirtRegMap &vrm) {
Owen Anderson17197312008-08-18 23:41:04 +00001977 unsigned slot = vrm.assignVirt2StackSlot(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00001978
1979 std::vector<LiveInterval*> added;
1980
1981 assert(li.weight != HUGE_VALF &&
1982 "attempt to spill already spilled interval!");
1983
1984 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
1985 DEBUG(li.dump());
1986 DOUT << '\n';
1987
1988 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
1989
Owen Andersona41e47a2008-08-19 22:12:11 +00001990 MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg);
1991 while (RI != mri_->reg_end()) {
1992 MachineInstr* MI = &*RI;
1993
1994 SmallVector<unsigned, 2> Indices;
1995 bool HasUse = false;
1996 bool HasDef = false;
1997
1998 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1999 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00002000 if (!mop.isReg() || mop.getReg() != li.reg) continue;
Owen Andersona41e47a2008-08-19 22:12:11 +00002001
2002 HasUse |= MI->getOperand(i).isUse();
2003 HasDef |= MI->getOperand(i).isDef();
2004
2005 Indices.push_back(i);
2006 }
2007
2008 if (!tryFoldMemoryOperand(MI, vrm, NULL, getInstructionIndex(MI),
2009 Indices, true, slot, li.reg)) {
2010 unsigned NewVReg = mri_->createVirtualRegister(rc);
Owen Anderson9a032932008-08-18 21:20:32 +00002011 vrm.grow();
Owen Anderson17197312008-08-18 23:41:04 +00002012 vrm.assignVirt2StackSlot(NewVReg, slot);
2013
Owen Andersona41e47a2008-08-19 22:12:11 +00002014 // create a new register for this spill
2015 LiveInterval &nI = getOrCreateInterval(NewVReg);
Owen Andersond6664312008-08-18 18:05:32 +00002016
Owen Andersona41e47a2008-08-19 22:12:11 +00002017 // the spill weight is now infinity as it
2018 // cannot be spilled again
2019 nI.weight = HUGE_VALF;
2020
2021 // Rewrite register operands to use the new vreg.
2022 for (SmallVectorImpl<unsigned>::iterator I = Indices.begin(),
2023 E = Indices.end(); I != E; ++I) {
2024 MI->getOperand(*I).setReg(NewVReg);
2025
2026 if (MI->getOperand(*I).isUse())
2027 MI->getOperand(*I).setIsKill(true);
2028 }
2029
2030 // Fill in the new live interval.
2031 unsigned index = getInstructionIndex(MI);
2032 if (HasUse) {
2033 LiveRange LR(getLoadIndex(index), getUseIndex(index),
Lang Hames857c4e02009-06-17 21:01:20 +00002034 nI.getNextValue(0, 0, false, getVNInfoAllocator()));
Owen Andersona41e47a2008-08-19 22:12:11 +00002035 DOUT << " +" << LR;
2036 nI.addRange(LR);
2037 vrm.addRestorePoint(NewVReg, MI);
2038 }
2039 if (HasDef) {
2040 LiveRange LR(getDefIndex(index), getStoreIndex(index),
Lang Hames857c4e02009-06-17 21:01:20 +00002041 nI.getNextValue(0, 0, false, getVNInfoAllocator()));
Owen Andersona41e47a2008-08-19 22:12:11 +00002042 DOUT << " +" << LR;
2043 nI.addRange(LR);
2044 vrm.addSpillPoint(NewVReg, true, MI);
2045 }
2046
Owen Anderson17197312008-08-18 23:41:04 +00002047 added.push_back(&nI);
Owen Anderson8dc2cbe2008-08-18 18:38:12 +00002048
Owen Andersona41e47a2008-08-19 22:12:11 +00002049 DOUT << "\t\t\t\tadded new interval: ";
2050 DEBUG(nI.dump());
2051 DOUT << '\n';
Owen Andersona41e47a2008-08-19 22:12:11 +00002052 }
Owen Anderson9a032932008-08-18 21:20:32 +00002053
Owen Anderson9a032932008-08-18 21:20:32 +00002054
Owen Andersona41e47a2008-08-19 22:12:11 +00002055 RI = mri_->reg_begin(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00002056 }
Owen Andersond6664312008-08-18 18:05:32 +00002057
2058 return added;
2059}
2060
2061std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00002062addIntervalsForSpills(const LiveInterval &li,
Evan Chengdc377862008-09-30 15:44:16 +00002063 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Chengc781a242009-05-03 18:32:42 +00002064 const MachineLoopInfo *loopInfo, VirtRegMap &vrm) {
Owen Andersonae339ba2008-08-19 00:17:30 +00002065
2066 if (EnableFastSpilling)
Evan Chengc781a242009-05-03 18:32:42 +00002067 return addIntervalsForSpillsFast(li, loopInfo, vrm);
Owen Andersonae339ba2008-08-19 00:17:30 +00002068
Evan Chengf2fbca62007-11-12 06:35:08 +00002069 assert(li.weight != HUGE_VALF &&
2070 "attempt to spill already spilled interval!");
2071
2072 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00002073 li.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00002074 DOUT << '\n';
2075
Evan Cheng72eeb942008-12-05 17:00:16 +00002076 // Each bit specify whether a spill is required in the MBB.
Evan Cheng81a03822007-11-17 00:40:40 +00002077 BitVector SpillMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00002078 DenseMap<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002079 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00002080 DenseMap<unsigned, std::vector<SRInfo> > RestoreIdxes;
2081 DenseMap<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00002082 std::vector<LiveInterval*> NewLIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00002083 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
Evan Chengf2fbca62007-11-12 06:35:08 +00002084
2085 unsigned NumValNums = li.getNumValNums();
2086 SmallVector<MachineInstr*, 4> ReMatDefs;
2087 ReMatDefs.resize(NumValNums, NULL);
2088 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
2089 ReMatOrigDefs.resize(NumValNums, NULL);
2090 SmallVector<int, 4> ReMatIds;
2091 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
2092 BitVector ReMatDelete(NumValNums);
2093 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
2094
Evan Cheng81a03822007-11-17 00:40:40 +00002095 // Spilling a split live interval. It cannot be split any further. Also,
2096 // it's also guaranteed to be a single val# / range interval.
2097 if (vrm.getPreSplitReg(li.reg)) {
2098 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00002099 // Unset the split kill marker on the last use.
2100 unsigned KillIdx = vrm.getKillPoint(li.reg);
2101 if (KillIdx) {
2102 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
2103 assert(KillMI && "Last use disappeared?");
2104 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
2105 assert(KillOp != -1 && "Last use disappeared?");
Chris Lattnerf7382302007-12-30 21:56:09 +00002106 KillMI->getOperand(KillOp).setIsKill(false);
Evan Chengd120ffd2007-12-05 10:24:35 +00002107 }
Evan Chengadf85902007-12-05 09:51:10 +00002108 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00002109 bool DefIsReMat = vrm.isReMaterialized(li.reg);
2110 Slot = vrm.getStackSlot(li.reg);
2111 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
2112 MachineInstr *ReMatDefMI = DefIsReMat ?
2113 vrm.getReMaterializedMI(li.reg) : NULL;
2114 int LdSlot = 0;
2115 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
2116 bool isLoad = isLoadSS ||
Dan Gohman15511cf2008-12-03 18:15:48 +00002117 (DefIsReMat && (ReMatDefMI->getDesc().canFoldAsLoad()));
Evan Cheng81a03822007-11-17 00:40:40 +00002118 bool IsFirstRange = true;
2119 for (LiveInterval::Ranges::const_iterator
2120 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
2121 // If this is a split live interval with multiple ranges, it means there
2122 // are two-address instructions that re-defined the value. Only the
2123 // first def can be rematerialized!
2124 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00002125 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00002126 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
2127 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00002128 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002129 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Chengc781a242009-05-03 18:32:42 +00002130 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002131 } else {
2132 rewriteInstructionsForSpills(li, false, I, NULL, 0,
2133 Slot, 0, false, false, false,
Evan Chengd70dbb52008-02-22 09:24:50 +00002134 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002135 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Chengc781a242009-05-03 18:32:42 +00002136 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002137 }
2138 IsFirstRange = false;
2139 }
Evan Cheng419852c2008-04-03 16:39:43 +00002140
Evan Cheng4cce6b42008-04-11 17:53:36 +00002141 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002142 return NewLIs;
2143 }
2144
2145 bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002146 if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
2147 TrySplit = false;
2148 if (TrySplit)
2149 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00002150 bool NeedStackSlot = false;
2151 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
2152 i != e; ++i) {
2153 const VNInfo *VNI = *i;
2154 unsigned VN = VNI->id;
Lang Hames857c4e02009-06-17 21:01:20 +00002155 if (VNI->isUnused())
Evan Chengf2fbca62007-11-12 06:35:08 +00002156 continue; // Dead val#.
2157 // Is the def for the val# rematerializable?
Lang Hames857c4e02009-06-17 21:01:20 +00002158 MachineInstr *ReMatDefMI = VNI->isDefAccurate()
2159 ? getInstructionFromIndex(VNI->def) : 0;
Evan Cheng5ef3a042007-12-06 00:01:56 +00002160 bool dummy;
Evan Chengdc377862008-09-30 15:44:16 +00002161 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, SpillIs, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00002162 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00002163 ReMatOrigDefs[VN] = ReMatDefMI;
Dan Gohman2c3f7ae2008-07-17 23:49:46 +00002164 // Original def may be modified so we have to make a copy here.
Evan Cheng1ed99222008-07-19 00:37:25 +00002165 MachineInstr *Clone = mf_->CloneMachineInstr(ReMatDefMI);
2166 ClonedMIs.push_back(Clone);
2167 ReMatDefs[VN] = Clone;
Evan Chengf2fbca62007-11-12 06:35:08 +00002168
2169 bool CanDelete = true;
Lang Hames857c4e02009-06-17 21:01:20 +00002170 if (VNI->hasPHIKill()) {
Evan Chengc3fc7d92007-11-29 09:49:23 +00002171 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00002172 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00002173 CanDelete = false;
2174 // Need a stack slot if there is any live range where uses cannot be
2175 // rematerialized.
2176 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00002177 }
Evan Chengf2fbca62007-11-12 06:35:08 +00002178 if (CanDelete)
2179 ReMatDelete.set(VN);
2180 } else {
2181 // Need a stack slot if there is any live range where uses cannot be
2182 // rematerialized.
2183 NeedStackSlot = true;
2184 }
2185 }
2186
2187 // One stack slot per live interval.
Owen Andersonb98bbb72009-03-26 18:53:38 +00002188 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0) {
2189 if (vrm.getStackSlot(li.reg) == VirtRegMap::NO_STACK_SLOT)
2190 Slot = vrm.assignVirt2StackSlot(li.reg);
2191
2192 // This case only occurs when the prealloc splitter has already assigned
2193 // a stack slot to this vreg.
2194 else
2195 Slot = vrm.getStackSlot(li.reg);
2196 }
Evan Chengf2fbca62007-11-12 06:35:08 +00002197
2198 // Create new intervals and rewrite defs and uses.
2199 for (LiveInterval::Ranges::const_iterator
2200 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00002201 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
2202 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
2203 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00002204 bool CanDelete = ReMatDelete[I->valno->id];
2205 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00002206 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00002207 bool isLoad = isLoadSS ||
Dan Gohman15511cf2008-12-03 18:15:48 +00002208 (DefIsReMat && ReMatDefMI->getDesc().canFoldAsLoad());
Evan Cheng81a03822007-11-17 00:40:40 +00002209 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002210 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00002211 CanDelete, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002212 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Chengc781a242009-05-03 18:32:42 +00002213 MBBVRegsMap, NewLIs);
Evan Chengf2fbca62007-11-12 06:35:08 +00002214 }
2215
Evan Cheng0cbb1162007-11-29 01:06:25 +00002216 // Insert spills / restores if we are splitting.
Evan Cheng419852c2008-04-03 16:39:43 +00002217 if (!TrySplit) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00002218 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng1953d0c2007-11-29 10:12:14 +00002219 return NewLIs;
Evan Cheng419852c2008-04-03 16:39:43 +00002220 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002221
Evan Chengb50bb8c2007-12-05 08:16:32 +00002222 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00002223 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00002224 if (NeedStackSlot) {
2225 int Id = SpillMBBs.find_first();
2226 while (Id != -1) {
2227 std::vector<SRInfo> &spills = SpillIdxes[Id];
2228 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
2229 int index = spills[i].index;
2230 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00002231 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002232 bool isReMat = vrm.isReMaterialized(VReg);
2233 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00002234 bool CanFold = false;
2235 bool FoundUse = false;
2236 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00002237 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00002238 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002239 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
2240 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00002241 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00002242 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002243
2244 Ops.push_back(j);
2245 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00002246 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002247 if (isReMat ||
2248 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
2249 RestoreMBBs, RestoreIdxes))) {
2250 // MI has two-address uses of the same register. If the use
2251 // isn't the first and only use in the BB, then we can't fold
2252 // it. FIXME: Move this to rewriteInstructionsForSpills.
2253 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00002254 break;
2255 }
Evan Chengaee4af62007-12-02 08:30:39 +00002256 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002257 }
2258 }
2259 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00002260 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00002261 if (CanFold && !Ops.empty()) {
2262 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00002263 Folded = true;
Sebastian Redl48fe6352009-03-19 23:26:52 +00002264 if (FoundUse) {
Evan Chengaee4af62007-12-02 08:30:39 +00002265 // Also folded uses, do not issue a load.
2266 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Evan Chengf38d14f2007-12-05 09:05:34 +00002267 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
2268 }
Evan Cheng597d10d2007-12-04 00:32:23 +00002269 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00002270 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002271 }
2272
Evan Cheng7e073ba2008-04-09 20:57:25 +00002273 // Otherwise tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00002274 if (!Folded) {
2275 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
2276 bool isKill = LR->end == getStoreIndex(index);
Evan Chengb0a6f622008-05-20 08:10:37 +00002277 if (!MI->registerDefIsDead(nI.reg))
2278 // No need to spill a dead def.
2279 vrm.addSpillPoint(VReg, isKill, MI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002280 if (isKill)
2281 AddedKill.insert(&nI);
2282 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002283 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002284 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002285 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002286 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002287
Evan Cheng1953d0c2007-11-29 10:12:14 +00002288 int Id = RestoreMBBs.find_first();
2289 while (Id != -1) {
2290 std::vector<SRInfo> &restores = RestoreIdxes[Id];
2291 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
2292 int index = restores[i].index;
2293 if (index == -1)
2294 continue;
2295 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00002296 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng9c3c2212008-06-06 07:54:39 +00002297 bool isReMat = vrm.isReMaterialized(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00002298 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00002299 bool CanFold = false;
2300 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00002301 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00002302 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00002303 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
2304 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00002305 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng81a03822007-11-17 00:40:40 +00002306 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002307
Evan Cheng0cbb1162007-11-29 01:06:25 +00002308 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00002309 // If this restore were to be folded, it would have been folded
2310 // already.
2311 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00002312 break;
2313 }
Evan Chengaee4af62007-12-02 08:30:39 +00002314 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00002315 }
2316 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002317
2318 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00002319 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00002320 if (CanFold && !Ops.empty()) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00002321 if (!isReMat)
Evan Chengaee4af62007-12-02 08:30:39 +00002322 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
2323 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00002324 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
2325 int LdSlot = 0;
2326 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
2327 // If the rematerializable def is a load, also try to fold it.
Dan Gohman15511cf2008-12-03 18:15:48 +00002328 if (isLoadSS || ReMatDefMI->getDesc().canFoldAsLoad())
Evan Chengaee4af62007-12-02 08:30:39 +00002329 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
2330 Ops, isLoadSS, LdSlot, VReg);
Evan Cheng650d7f32008-12-05 17:41:31 +00002331 if (!Folded) {
2332 unsigned ImpUse = getReMatImplicitUse(li, ReMatDefMI);
2333 if (ImpUse) {
2334 // Re-matting an instruction with virtual register use. Add the
2335 // register as an implicit use on the use MI and update the register
2336 // interval's spill weight to HUGE_VALF to prevent it from being
2337 // spilled.
2338 LiveInterval &ImpLi = getInterval(ImpUse);
2339 ImpLi.weight = HUGE_VALF;
2340 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
2341 }
Evan Chengd70dbb52008-02-22 09:24:50 +00002342 }
Evan Chengaee4af62007-12-02 08:30:39 +00002343 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002344 }
2345 // If folding is not possible / failed, then tell the spiller to issue a
2346 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00002347 if (Folded)
2348 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002349 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00002350 vrm.addRestorePoint(VReg, MI);
Evan Cheng81a03822007-11-17 00:40:40 +00002351 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002352 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00002353 }
2354
Evan Chengb50bb8c2007-12-05 08:16:32 +00002355 // Finalize intervals: add kills, finalize spill weights, and filter out
2356 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00002357 std::vector<LiveInterval*> RetNewLIs;
2358 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
2359 LiveInterval *LI = NewLIs[i];
2360 if (!LI->empty()) {
Owen Anderson496bac52008-07-23 19:47:27 +00002361 LI->weight /= InstrSlots::NUM * getApproximateInstructionCount(*LI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002362 if (!AddedKill.count(LI)) {
2363 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Evan Chengd120ffd2007-12-05 10:24:35 +00002364 unsigned LastUseIdx = getBaseIndex(LR->end);
2365 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Cheng6130f662008-03-05 00:59:57 +00002366 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg, false);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002367 assert(UseIdx != -1);
Evan Chenga24752f2009-03-19 20:30:06 +00002368 if (!LastUse->isRegTiedToDefOperand(UseIdx)) {
Evan Chengb50bb8c2007-12-05 08:16:32 +00002369 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00002370 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00002371 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00002372 }
Evan Cheng597d10d2007-12-04 00:32:23 +00002373 RetNewLIs.push_back(LI);
2374 }
2375 }
Evan Cheng81a03822007-11-17 00:40:40 +00002376
Evan Cheng4cce6b42008-04-11 17:53:36 +00002377 handleSpilledImpDefs(li, vrm, rc, RetNewLIs);
Evan Cheng597d10d2007-12-04 00:32:23 +00002378 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00002379}
Evan Cheng676dd7c2008-03-11 07:19:34 +00002380
2381/// hasAllocatableSuperReg - Return true if the specified physical register has
2382/// any super register that's allocatable.
2383bool LiveIntervals::hasAllocatableSuperReg(unsigned Reg) const {
2384 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS)
2385 if (allocatableRegs_[*AS] && hasInterval(*AS))
2386 return true;
2387 return false;
2388}
2389
2390/// getRepresentativeReg - Find the largest super register of the specified
2391/// physical register.
2392unsigned LiveIntervals::getRepresentativeReg(unsigned Reg) const {
2393 // Find the largest super-register that is allocatable.
2394 unsigned BestReg = Reg;
2395 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS) {
2396 unsigned SuperReg = *AS;
2397 if (!hasAllocatableSuperReg(SuperReg) && hasInterval(SuperReg)) {
2398 BestReg = SuperReg;
2399 break;
2400 }
2401 }
2402 return BestReg;
2403}
2404
2405/// getNumConflictsWithPhysReg - Return the number of uses and defs of the
2406/// specified interval that conflicts with the specified physical register.
2407unsigned LiveIntervals::getNumConflictsWithPhysReg(const LiveInterval &li,
2408 unsigned PhysReg) const {
2409 unsigned NumConflicts = 0;
2410 const LiveInterval &pli = getInterval(getRepresentativeReg(PhysReg));
2411 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2412 E = mri_->reg_end(); I != E; ++I) {
2413 MachineOperand &O = I.getOperand();
2414 MachineInstr *MI = O.getParent();
2415 unsigned Index = getInstructionIndex(MI);
2416 if (pli.liveAt(Index))
2417 ++NumConflicts;
2418 }
2419 return NumConflicts;
2420}
2421
2422/// spillPhysRegAroundRegDefsUses - Spill the specified physical register
Evan Cheng2824a652009-03-23 18:24:37 +00002423/// around all defs and uses of the specified interval. Return true if it
2424/// was able to cut its interval.
2425bool LiveIntervals::spillPhysRegAroundRegDefsUses(const LiveInterval &li,
Evan Cheng676dd7c2008-03-11 07:19:34 +00002426 unsigned PhysReg, VirtRegMap &vrm) {
2427 unsigned SpillReg = getRepresentativeReg(PhysReg);
2428
2429 for (const unsigned *AS = tri_->getAliasSet(PhysReg); *AS; ++AS)
2430 // If there are registers which alias PhysReg, but which are not a
2431 // sub-register of the chosen representative super register. Assert
2432 // since we can't handle it yet.
Dan Gohman70f2f652009-04-13 15:22:29 +00002433 assert(*AS == SpillReg || !allocatableRegs_[*AS] || !hasInterval(*AS) ||
Evan Cheng676dd7c2008-03-11 07:19:34 +00002434 tri_->isSuperRegister(*AS, SpillReg));
2435
Evan Cheng2824a652009-03-23 18:24:37 +00002436 bool Cut = false;
Evan Cheng676dd7c2008-03-11 07:19:34 +00002437 LiveInterval &pli = getInterval(SpillReg);
2438 SmallPtrSet<MachineInstr*, 8> SeenMIs;
2439 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2440 E = mri_->reg_end(); I != E; ++I) {
2441 MachineOperand &O = I.getOperand();
2442 MachineInstr *MI = O.getParent();
2443 if (SeenMIs.count(MI))
2444 continue;
2445 SeenMIs.insert(MI);
2446 unsigned Index = getInstructionIndex(MI);
2447 if (pli.liveAt(Index)) {
2448 vrm.addEmergencySpill(SpillReg, MI);
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002449 unsigned StartIdx = getLoadIndex(Index);
2450 unsigned EndIdx = getStoreIndex(Index)+1;
Evan Cheng2824a652009-03-23 18:24:37 +00002451 if (pli.isInOneLiveRange(StartIdx, EndIdx)) {
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002452 pli.removeRange(StartIdx, EndIdx);
Evan Cheng2824a652009-03-23 18:24:37 +00002453 Cut = true;
2454 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00002455 std::string msg;
2456 raw_string_ostream Msg(msg);
2457 Msg << "Ran out of registers during register allocation!";
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002458 if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {
Torok Edwin7d696d82009-07-11 13:10:19 +00002459 Msg << "\nPlease check your inline asm statement for invalid "
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002460 << "constraints:\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00002461 MI->print(Msg, tm_);
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002462 }
Torok Edwin7d696d82009-07-11 13:10:19 +00002463 llvm_report_error(Msg.str());
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002464 }
Evan Cheng676dd7c2008-03-11 07:19:34 +00002465 for (const unsigned* AS = tri_->getSubRegisters(SpillReg); *AS; ++AS) {
2466 if (!hasInterval(*AS))
2467 continue;
2468 LiveInterval &spli = getInterval(*AS);
2469 if (spli.liveAt(Index))
2470 spli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
2471 }
2472 }
2473 }
Evan Cheng2824a652009-03-23 18:24:37 +00002474 return Cut;
Evan Cheng676dd7c2008-03-11 07:19:34 +00002475}
Owen Andersonc4dc1322008-06-05 17:15:43 +00002476
2477LiveRange LiveIntervals::addLiveRangeToEndOfBlock(unsigned reg,
Lang Hamesffd13262009-07-09 03:57:02 +00002478 MachineInstr* startInst) {
Owen Andersonc4dc1322008-06-05 17:15:43 +00002479 LiveInterval& Interval = getOrCreateInterval(reg);
2480 VNInfo* VN = Interval.getNextValue(
2481 getInstructionIndex(startInst) + InstrSlots::DEF,
Lang Hames857c4e02009-06-17 21:01:20 +00002482 startInst, true, getVNInfoAllocator());
2483 VN->setHasPHIKill(true);
Lang Hamesffd13262009-07-09 03:57:02 +00002484 VN->kills.push_back(
2485 VNInfo::KillInfo(terminatorGaps[startInst->getParent()], true));
Owen Andersonc4dc1322008-06-05 17:15:43 +00002486 LiveRange LR(getInstructionIndex(startInst) + InstrSlots::DEF,
2487 getMBBEndIdx(startInst->getParent()) + 1, VN);
2488 Interval.addRange(LR);
2489
2490 return LR;
2491}