blob: e1b23fd77f652d9dea52192b934600c43a194e20 [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"
Dan Gohmanc76909a2009-09-25 20:36:54 +000028#include "llvm/CodeGen/MachineMemOperand.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000030#include "llvm/CodeGen/Passes.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000031#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000032#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000033#include "llvm/Target/TargetInstrInfo.h"
34#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000035#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000036#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000038#include "llvm/Support/ErrorHandling.h"
39#include "llvm/Support/raw_ostream.h"
Evan Cheng2578ba22009-07-01 01:59:31 +000040#include "llvm/ADT/DepthFirstIterator.h"
41#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000042#include "llvm/ADT/Statistic.h"
43#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000044#include <algorithm>
Lang Hamesf41538d2009-06-02 16:53:25 +000045#include <limits>
Jeff Cohen97af7512006-12-02 02:22:01 +000046#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000047using namespace llvm;
48
Dan Gohman844731a2008-05-13 00:00:25 +000049// Hidden options for help debugging.
50static cl::opt<bool> DisableReMat("disable-rematerialization",
51 cl::init(false), cl::Hidden);
Evan Cheng81a03822007-11-17 00:40:40 +000052
Dan Gohman4c8f8702008-07-25 15:08:37 +000053static cl::opt<bool> EnableAggressiveRemat("aggressive-remat", cl::Hidden);
54
Owen Andersonae339ba2008-08-19 00:17:30 +000055static cl::opt<bool> EnableFastSpilling("fast-spill",
56 cl::init(false), cl::Hidden);
57
Evan Cheng752195e2009-09-14 21:33:42 +000058static cl::opt<bool> EarlyCoalescing("early-coalescing", cl::init(false));
59
60static cl::opt<int> CoalescingLimit("early-coalescing-limit",
61 cl::init(-1), cl::Hidden);
62
63STATISTIC(numIntervals , "Number of original intervals");
64STATISTIC(numFolds , "Number of loads/stores folded into instructions");
65STATISTIC(numSplits , "Number of intervals split");
66STATISTIC(numCoalescing, "Number of early coalescing performed");
Chris Lattnercd3245a2006-12-19 22:41:21 +000067
Devang Patel19974732007-05-03 01:11:54 +000068char LiveIntervals::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000069static RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000070
Chris Lattnerf7da2c72006-08-24 22:43:55 +000071void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000072 AU.setPreservesCFG();
Dan Gohman6d69ba82008-07-25 00:02:30 +000073 AU.addRequired<AliasAnalysis>();
74 AU.addPreserved<AliasAnalysis>();
David Greene25133302007-06-08 17:18:56 +000075 AU.addPreserved<LiveVariables>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000076 AU.addRequired<LiveVariables>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000077 AU.addPreservedID(MachineLoopInfoID);
78 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +000079
80 if (!StrongPHIElim) {
81 AU.addPreservedID(PHIEliminationID);
82 AU.addRequiredID(PHIEliminationID);
83 }
84
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000085 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000086 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000087}
88
Chris Lattnerf7da2c72006-08-24 22:43:55 +000089void LiveIntervals::releaseMemory() {
Owen Anderson03857b22008-08-13 21:49:13 +000090 // Free the live intervals themselves.
Owen Anderson20e28392008-08-13 22:08:30 +000091 for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
Owen Anderson03857b22008-08-13 21:49:13 +000092 E = r2iMap_.end(); I != E; ++I)
93 delete I->second;
94
Evan Cheng3f32d652008-06-04 09:18:41 +000095 MBB2IdxMap.clear();
Evan Cheng4ca980e2007-10-17 02:10:22 +000096 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000097 mi2iMap_.clear();
98 i2miMap_.clear();
99 r2iMap_.clear();
Lang Hamesffd13262009-07-09 03:57:02 +0000100 terminatorGaps.clear();
Evan Cheng752195e2009-09-14 21:33:42 +0000101 phiJoinCopies.clear();
Lang Hamesffd13262009-07-09 03:57:02 +0000102
Evan Chengdd199d22007-09-06 01:07:24 +0000103 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
104 VNInfoAllocator.Reset();
Evan Cheng752195e2009-09-14 21:33:42 +0000105 while (!CloneMIs.empty()) {
106 MachineInstr *MI = CloneMIs.back();
107 CloneMIs.pop_back();
Evan Cheng1ed99222008-07-19 00:37:25 +0000108 mf_->DeleteMachineInstr(MI);
109 }
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000110}
111
Evan Cheng6ade93b2009-08-05 03:53:14 +0000112static bool CanTurnIntoImplicitDef(MachineInstr *MI, unsigned Reg,
Evan Chengb0f59732009-09-21 04:32:32 +0000113 unsigned OpIdx, const TargetInstrInfo *tii_){
Evan Cheng6ade93b2009-08-05 03:53:14 +0000114 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
115 if (tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
116 Reg == SrcReg)
117 return true;
118
Evan Chengb0f59732009-09-21 04:32:32 +0000119 if (OpIdx == 2 && MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG)
Evan Cheng6ade93b2009-08-05 03:53:14 +0000120 return true;
Evan Chengb0f59732009-09-21 04:32:32 +0000121 if (OpIdx == 1 && MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
Evan Cheng6ade93b2009-08-05 03:53:14 +0000122 return true;
123 return false;
124}
125
Evan Cheng2578ba22009-07-01 01:59:31 +0000126/// processImplicitDefs - Process IMPLICIT_DEF instructions and make sure
127/// there is one implicit_def for each use. Add isUndef marker to
128/// implicit_def defs and their uses.
129void LiveIntervals::processImplicitDefs() {
130 SmallSet<unsigned, 8> ImpDefRegs;
131 SmallVector<MachineInstr*, 8> ImpDefMIs;
132 MachineBasicBlock *Entry = mf_->begin();
133 SmallPtrSet<MachineBasicBlock*,16> Visited;
134 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
135 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
136 DFI != E; ++DFI) {
137 MachineBasicBlock *MBB = *DFI;
138 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
139 I != E; ) {
140 MachineInstr *MI = &*I;
141 ++I;
142 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
143 unsigned Reg = MI->getOperand(0).getReg();
Evan Cheng2578ba22009-07-01 01:59:31 +0000144 ImpDefRegs.insert(Reg);
Evan Cheng296925d2009-09-23 06:28:31 +0000145 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
146 for (const unsigned *SS = tri_->getSubRegisters(Reg); *SS; ++SS)
147 ImpDefRegs.insert(*SS);
148 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000149 ImpDefMIs.push_back(MI);
150 continue;
151 }
Evan Cheng459a7c62009-07-01 08:19:36 +0000152
Evan Chengb0f59732009-09-21 04:32:32 +0000153 if (MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
154 MachineOperand &MO = MI->getOperand(2);
155 if (ImpDefRegs.count(MO.getReg())) {
156 // %reg1032<def> = INSERT_SUBREG %reg1032, undef, 2
157 // This is an identity copy, eliminate it now.
158 if (MO.isKill()) {
159 LiveVariables::VarInfo& vi = lv_->getVarInfo(MO.getReg());
160 vi.removeKill(MI);
161 }
162 MI->eraseFromParent();
163 continue;
164 }
165 }
166
Evan Cheng459a7c62009-07-01 08:19:36 +0000167 bool ChangedToImpDef = false;
168 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
Evan Cheng2578ba22009-07-01 01:59:31 +0000169 MachineOperand& MO = MI->getOperand(i);
Evan Cheng6ade93b2009-08-05 03:53:14 +0000170 if (!MO.isReg() || !MO.isUse() || MO.isUndef())
Evan Cheng2578ba22009-07-01 01:59:31 +0000171 continue;
172 unsigned Reg = MO.getReg();
173 if (!Reg)
174 continue;
175 if (!ImpDefRegs.count(Reg))
176 continue;
Evan Cheng459a7c62009-07-01 08:19:36 +0000177 // Use is a copy, just turn it into an implicit_def.
Evan Chengb0f59732009-09-21 04:32:32 +0000178 if (CanTurnIntoImplicitDef(MI, Reg, i, tii_)) {
Evan Cheng459a7c62009-07-01 08:19:36 +0000179 bool isKill = MO.isKill();
180 MI->setDesc(tii_->get(TargetInstrInfo::IMPLICIT_DEF));
181 for (int j = MI->getNumOperands() - 1, ee = 0; j > ee; --j)
182 MI->RemoveOperand(j);
Evan Chengb0f59732009-09-21 04:32:32 +0000183 if (isKill) {
Evan Cheng459a7c62009-07-01 08:19:36 +0000184 ImpDefRegs.erase(Reg);
Evan Chengb0f59732009-09-21 04:32:32 +0000185 LiveVariables::VarInfo& vi = lv_->getVarInfo(Reg);
186 vi.removeKill(MI);
187 }
Evan Cheng459a7c62009-07-01 08:19:36 +0000188 ChangedToImpDef = true;
189 break;
190 }
191
Evan Cheng2578ba22009-07-01 01:59:31 +0000192 MO.setIsUndef();
Evan Cheng6ade93b2009-08-05 03:53:14 +0000193 if (MO.isKill() || MI->isRegTiedToDefOperand(i)) {
194 // Make sure other uses of
195 for (unsigned j = i+1; j != e; ++j) {
196 MachineOperand &MOJ = MI->getOperand(j);
197 if (MOJ.isReg() && MOJ.isUse() && MOJ.getReg() == Reg)
198 MOJ.setIsUndef();
199 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000200 ImpDefRegs.erase(Reg);
Evan Cheng6ade93b2009-08-05 03:53:14 +0000201 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000202 }
203
Evan Cheng459a7c62009-07-01 08:19:36 +0000204 if (ChangedToImpDef) {
205 // Backtrack to process this new implicit_def.
206 --I;
207 } else {
208 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
209 MachineOperand& MO = MI->getOperand(i);
210 if (!MO.isReg() || !MO.isDef())
211 continue;
212 ImpDefRegs.erase(MO.getReg());
213 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000214 }
215 }
216
217 // Any outstanding liveout implicit_def's?
218 for (unsigned i = 0, e = ImpDefMIs.size(); i != e; ++i) {
219 MachineInstr *MI = ImpDefMIs[i];
220 unsigned Reg = MI->getOperand(0).getReg();
Evan Chengd129d732009-07-17 19:43:40 +0000221 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
222 !ImpDefRegs.count(Reg)) {
223 // Delete all "local" implicit_def's. That include those which define
224 // physical registers since they cannot be liveout.
225 MI->eraseFromParent();
Evan Cheng2578ba22009-07-01 01:59:31 +0000226 continue;
Evan Chengd129d732009-07-17 19:43:40 +0000227 }
Evan Cheng459a7c62009-07-01 08:19:36 +0000228
229 // If there are multiple defs of the same register and at least one
230 // is not an implicit_def, do not insert implicit_def's before the
231 // uses.
232 bool Skip = false;
233 for (MachineRegisterInfo::def_iterator DI = mri_->def_begin(Reg),
234 DE = mri_->def_end(); DI != DE; ++DI) {
235 if (DI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF) {
236 Skip = true;
237 break;
Evan Cheng2578ba22009-07-01 01:59:31 +0000238 }
Evan Cheng459a7c62009-07-01 08:19:36 +0000239 }
240 if (Skip)
241 continue;
242
Evan Chengd129d732009-07-17 19:43:40 +0000243 // The only implicit_def which we want to keep are those that are live
244 // out of its block.
245 MI->eraseFromParent();
246
Evan Cheng459a7c62009-07-01 08:19:36 +0000247 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(Reg),
248 UE = mri_->use_end(); UI != UE; ) {
249 MachineOperand &RMO = UI.getOperand();
250 MachineInstr *RMI = &*UI;
251 ++UI;
Evan Cheng2578ba22009-07-01 01:59:31 +0000252 MachineBasicBlock *RMBB = RMI->getParent();
Evan Cheng459a7c62009-07-01 08:19:36 +0000253 if (RMBB == MBB)
Evan Cheng2578ba22009-07-01 01:59:31 +0000254 continue;
Evan Chengd129d732009-07-17 19:43:40 +0000255
256 // Turn a copy use into an implicit_def.
257 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
258 if (tii_->isMoveInstr(*RMI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
259 Reg == SrcReg) {
260 RMI->setDesc(tii_->get(TargetInstrInfo::IMPLICIT_DEF));
261 for (int j = RMI->getNumOperands() - 1, ee = 0; j > ee; --j)
262 RMI->RemoveOperand(j);
263 continue;
264 }
265
Evan Cheng2578ba22009-07-01 01:59:31 +0000266 const TargetRegisterClass* RC = mri_->getRegClass(Reg);
267 unsigned NewVReg = mri_->createVirtualRegister(RC);
Evan Cheng2578ba22009-07-01 01:59:31 +0000268 RMO.setReg(NewVReg);
269 RMO.setIsUndef();
270 RMO.setIsKill();
271 }
Evan Cheng2578ba22009-07-01 01:59:31 +0000272 }
273 ImpDefRegs.clear();
274 ImpDefMIs.clear();
275 }
276}
277
Lang Hames86511252009-09-04 20:41:11 +0000278
Owen Anderson80b3ce62008-05-28 20:54:50 +0000279void LiveIntervals::computeNumbering() {
280 Index2MiMap OldI2MI = i2miMap_;
Owen Anderson7fbad272008-07-23 21:37:49 +0000281 std::vector<IdxMBBPair> OldI2MBB = Idx2MBBMap;
Owen Anderson80b3ce62008-05-28 20:54:50 +0000282
283 Idx2MBBMap.clear();
284 MBB2IdxMap.clear();
285 mi2iMap_.clear();
286 i2miMap_.clear();
Lang Hamesffd13262009-07-09 03:57:02 +0000287 terminatorGaps.clear();
Evan Cheng752195e2009-09-14 21:33:42 +0000288 phiJoinCopies.clear();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000289
Owen Andersona1566f22008-07-22 22:46:49 +0000290 FunctionSize = 0;
291
Chris Lattner428b92e2006-09-15 03:57:23 +0000292 // Number MachineInstrs and MachineBasicBlocks.
293 // Initialize MBB indexes to a sentinal.
Lang Hames86511252009-09-04 20:41:11 +0000294 MBB2IdxMap.resize(mf_->getNumBlockIDs(),
295 std::make_pair(MachineInstrIndex(),MachineInstrIndex()));
Chris Lattner428b92e2006-09-15 03:57:23 +0000296
Lang Hames86511252009-09-04 20:41:11 +0000297 MachineInstrIndex MIIndex;
Chris Lattner428b92e2006-09-15 03:57:23 +0000298 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
299 MBB != E; ++MBB) {
Lang Hames86511252009-09-04 20:41:11 +0000300 MachineInstrIndex StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000301
Owen Anderson7fbad272008-07-23 21:37:49 +0000302 // Insert an empty slot at the beginning of each block.
Lang Hames35f291d2009-09-12 03:34:03 +0000303 MIIndex = getNextIndex(MIIndex);
Owen Anderson7fbad272008-07-23 21:37:49 +0000304 i2miMap_.push_back(0);
305
Chris Lattner428b92e2006-09-15 03:57:23 +0000306 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
307 I != E; ++I) {
Lang Hamesffd13262009-07-09 03:57:02 +0000308
309 if (I == MBB->getFirstTerminator()) {
310 // Leave a gap for before terminators, this is where we will point
311 // PHI kills.
Lang Hames86511252009-09-04 20:41:11 +0000312 MachineInstrIndex tGap(true, MIIndex);
Lang Hamesffd13262009-07-09 03:57:02 +0000313 bool inserted =
Lang Hames86511252009-09-04 20:41:11 +0000314 terminatorGaps.insert(std::make_pair(&*MBB, tGap)).second;
Lang Hamesffd13262009-07-09 03:57:02 +0000315 assert(inserted &&
316 "Multiple 'first' terminators encountered during numbering.");
Duncan Sands413a15e2009-07-10 20:07:07 +0000317 inserted = inserted; // Avoid compiler warning if assertions turned off.
Lang Hamesffd13262009-07-09 03:57:02 +0000318 i2miMap_.push_back(0);
319
Lang Hames35f291d2009-09-12 03:34:03 +0000320 MIIndex = getNextIndex(MIIndex);
Lang Hamesffd13262009-07-09 03:57:02 +0000321 }
322
Chris Lattner428b92e2006-09-15 03:57:23 +0000323 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000324 assert(inserted && "multiple MachineInstr -> index mappings");
Devang Patel59500c82008-11-21 20:00:59 +0000325 inserted = true;
Chris Lattner428b92e2006-09-15 03:57:23 +0000326 i2miMap_.push_back(I);
Lang Hames35f291d2009-09-12 03:34:03 +0000327 MIIndex = getNextIndex(MIIndex);
Owen Andersona1566f22008-07-22 22:46:49 +0000328 FunctionSize++;
Owen Anderson7fbad272008-07-23 21:37:49 +0000329
Evan Cheng4ed43292008-10-18 05:21:37 +0000330 // Insert max(1, numdefs) empty slots after every instruction.
Evan Cheng99fe34b2008-10-18 05:18:55 +0000331 unsigned Slots = I->getDesc().getNumDefs();
332 if (Slots == 0)
333 Slots = 1;
Lang Hames86511252009-09-04 20:41:11 +0000334 while (Slots--) {
Lang Hames35f291d2009-09-12 03:34:03 +0000335 MIIndex = getNextIndex(MIIndex);
Evan Cheng99fe34b2008-10-18 05:18:55 +0000336 i2miMap_.push_back(0);
Lang Hames86511252009-09-04 20:41:11 +0000337 }
338
Owen Anderson35578012008-06-16 07:10:49 +0000339 }
Lang Hamesffd13262009-07-09 03:57:02 +0000340
341 if (MBB->getFirstTerminator() == MBB->end()) {
342 // Leave a gap for before terminators, this is where we will point
343 // PHI kills.
Lang Hames86511252009-09-04 20:41:11 +0000344 MachineInstrIndex tGap(true, MIIndex);
Lang Hamesffd13262009-07-09 03:57:02 +0000345 bool inserted =
Lang Hames86511252009-09-04 20:41:11 +0000346 terminatorGaps.insert(std::make_pair(&*MBB, tGap)).second;
Lang Hamesffd13262009-07-09 03:57:02 +0000347 assert(inserted &&
348 "Multiple 'first' terminators encountered during numbering.");
Duncan Sands413a15e2009-07-10 20:07:07 +0000349 inserted = inserted; // Avoid compiler warning if assertions turned off.
Lang Hamesffd13262009-07-09 03:57:02 +0000350 i2miMap_.push_back(0);
351
Lang Hames35f291d2009-09-12 03:34:03 +0000352 MIIndex = getNextIndex(MIIndex);
Lang Hamesffd13262009-07-09 03:57:02 +0000353 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000354
Owen Anderson1fbb4542008-06-16 16:58:24 +0000355 // Set the MBB2IdxMap entry for this MBB.
Lang Hames35f291d2009-09-12 03:34:03 +0000356 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, getPrevSlot(MIIndex));
Owen Anderson1fbb4542008-06-16 16:58:24 +0000357 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000358 }
Lang Hamesffd13262009-07-09 03:57:02 +0000359
Evan Cheng4ca980e2007-10-17 02:10:22 +0000360 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Owen Anderson80b3ce62008-05-28 20:54:50 +0000361
362 if (!OldI2MI.empty())
Owen Anderson788d0412008-08-06 18:35:45 +0000363 for (iterator OI = begin(), OE = end(); OI != OE; ++OI) {
Owen Anderson03857b22008-08-13 21:49:13 +0000364 for (LiveInterval::iterator LI = OI->second->begin(),
365 LE = OI->second->end(); LI != LE; ++LI) {
Owen Anderson4b5b2092008-05-29 18:15:49 +0000366
Owen Anderson7eec0c22008-05-29 23:01:22 +0000367 // Remap the start index of the live range to the corresponding new
368 // number, or our best guess at what it _should_ correspond to if the
369 // original instruction has been erased. This is either the following
370 // instruction or its predecessor.
Lang Hames86511252009-09-04 20:41:11 +0000371 unsigned index = LI->start.getVecIndex();
372 MachineInstrIndex::Slot offset = LI->start.getSlot();
373 if (LI->start.isLoad()) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000374 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000375 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->start);
Owen Anderson7fbad272008-07-23 21:37:49 +0000376 // Take the pair containing the index
377 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000378 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000379
Owen Anderson7fbad272008-07-23 21:37:49 +0000380 LI->start = getMBBStartIdx(J->second);
381 } else {
Lang Hames86511252009-09-04 20:41:11 +0000382 LI->start = MachineInstrIndex(
383 MachineInstrIndex(mi2iMap_[OldI2MI[index]]),
384 (MachineInstrIndex::Slot)offset);
Owen Anderson7eec0c22008-05-29 23:01:22 +0000385 }
386
387 // Remap the ending index in the same way that we remapped the start,
388 // except for the final step where we always map to the immediately
389 // following instruction.
Lang Hames35f291d2009-09-12 03:34:03 +0000390 index = (getPrevSlot(LI->end)).getVecIndex();
Lang Hames86511252009-09-04 20:41:11 +0000391 offset = LI->end.getSlot();
392 if (LI->end.isLoad()) {
Owen Anderson9382b932008-07-30 00:22:56 +0000393 // VReg dies at end of block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000394 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000395 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->end);
Owen Anderson9382b932008-07-30 00:22:56 +0000396 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000397
Lang Hames35f291d2009-09-12 03:34:03 +0000398 LI->end = getNextSlot(getMBBEndIdx(I->second));
Owen Anderson4b5b2092008-05-29 18:15:49 +0000399 } else {
Owen Andersond7dcbec2008-07-25 19:50:48 +0000400 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000401 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
402
403 if (index != OldI2MI.size())
Lang Hames86511252009-09-04 20:41:11 +0000404 LI->end =
405 MachineInstrIndex(mi2iMap_[OldI2MI[index]],
406 (idx == index ? offset : MachineInstrIndex::LOAD));
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000407 else
Lang Hames86511252009-09-04 20:41:11 +0000408 LI->end =
409 MachineInstrIndex(MachineInstrIndex::NUM * i2miMap_.size());
Owen Anderson4b5b2092008-05-29 18:15:49 +0000410 }
Owen Anderson788d0412008-08-06 18:35:45 +0000411 }
412
Owen Anderson03857b22008-08-13 21:49:13 +0000413 for (LiveInterval::vni_iterator VNI = OI->second->vni_begin(),
414 VNE = OI->second->vni_end(); VNI != VNE; ++VNI) {
Owen Anderson788d0412008-08-06 18:35:45 +0000415 VNInfo* vni = *VNI;
Owen Anderson745825f42008-05-28 22:40:08 +0000416
Owen Anderson7eec0c22008-05-29 23:01:22 +0000417 // Remap the VNInfo def index, which works the same as the
Owen Anderson788d0412008-08-06 18:35:45 +0000418 // start indices above. VN's with special sentinel defs
419 // don't need to be remapped.
Lang Hames857c4e02009-06-17 21:01:20 +0000420 if (vni->isDefAccurate() && !vni->isUnused()) {
Lang Hames86511252009-09-04 20:41:11 +0000421 unsigned index = vni->def.getVecIndex();
422 MachineInstrIndex::Slot offset = vni->def.getSlot();
423 if (vni->def.isLoad()) {
Owen Anderson91292392008-07-30 17:42:47 +0000424 std::vector<IdxMBBPair>::const_iterator I =
Owen Anderson0a7615a2008-07-25 23:06:59 +0000425 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->def);
Owen Anderson91292392008-07-30 17:42:47 +0000426 // Take the pair containing the index
427 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000428 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000429
Owen Anderson91292392008-07-30 17:42:47 +0000430 vni->def = getMBBStartIdx(J->second);
431 } else {
Lang Hames86511252009-09-04 20:41:11 +0000432 vni->def = MachineInstrIndex(mi2iMap_[OldI2MI[index]], offset);
Owen Anderson91292392008-07-30 17:42:47 +0000433 }
Owen Anderson7eec0c22008-05-29 23:01:22 +0000434 }
Owen Anderson745825f42008-05-28 22:40:08 +0000435
Owen Anderson7eec0c22008-05-29 23:01:22 +0000436 // Remap the VNInfo kill indices, which works the same as
437 // the end indices above.
Owen Anderson4b5b2092008-05-29 18:15:49 +0000438 for (size_t i = 0; i < vni->kills.size(); ++i) {
Lang Hames35f291d2009-09-12 03:34:03 +0000439 unsigned index = getPrevSlot(vni->kills[i]).getVecIndex();
Lang Hames86511252009-09-04 20:41:11 +0000440 MachineInstrIndex::Slot offset = vni->kills[i].getSlot();
Lang Hamesffd13262009-07-09 03:57:02 +0000441
Lang Hames86511252009-09-04 20:41:11 +0000442 if (vni->kills[i].isLoad()) {
Lang Hamesffd13262009-07-09 03:57:02 +0000443 assert("Value killed at a load slot.");
444 /*std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000445 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->kills[i]);
Owen Anderson9382b932008-07-30 00:22:56 +0000446 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000447
Lang Hamesffd13262009-07-09 03:57:02 +0000448 vni->kills[i] = getMBBEndIdx(I->second);*/
Owen Anderson7fbad272008-07-23 21:37:49 +0000449 } else {
Lang Hames86511252009-09-04 20:41:11 +0000450 if (vni->kills[i].isPHIIndex()) {
Lang Hamesffd13262009-07-09 03:57:02 +0000451 std::vector<IdxMBBPair>::const_iterator I =
Lang Hames86511252009-09-04 20:41:11 +0000452 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->kills[i]);
Lang Hamesffd13262009-07-09 03:57:02 +0000453 --I;
Lang Hames86511252009-09-04 20:41:11 +0000454 vni->kills[i] = terminatorGaps[I->second];
Lang Hamesffd13262009-07-09 03:57:02 +0000455 } else {
456 assert(OldI2MI[index] != 0 &&
457 "Kill refers to instruction not present in index maps.");
Lang Hames86511252009-09-04 20:41:11 +0000458 vni->kills[i] = MachineInstrIndex(mi2iMap_[OldI2MI[index]], offset);
Lang Hamesffd13262009-07-09 03:57:02 +0000459 }
460
461 /*
Owen Andersond7dcbec2008-07-25 19:50:48 +0000462 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000463 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
464
465 if (index != OldI2MI.size())
466 vni->kills[i] = mi2iMap_[OldI2MI[index]] +
467 (idx == index ? offset : 0);
468 else
469 vni->kills[i] = InstrSlots::NUM * i2miMap_.size();
Lang Hamesffd13262009-07-09 03:57:02 +0000470 */
Owen Anderson7eec0c22008-05-29 23:01:22 +0000471 }
Owen Anderson4b5b2092008-05-29 18:15:49 +0000472 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000473 }
Owen Anderson788d0412008-08-06 18:35:45 +0000474 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000475}
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000476
Lang Hamesf41538d2009-06-02 16:53:25 +0000477void LiveIntervals::scaleNumbering(int factor) {
478 // Need to
479 // * scale MBB begin and end points
480 // * scale all ranges.
481 // * Update VNI structures.
482 // * Scale instruction numberings
483
484 // Scale the MBB indices.
485 Idx2MBBMap.clear();
486 for (MachineFunction::iterator MBB = mf_->begin(), MBBE = mf_->end();
487 MBB != MBBE; ++MBB) {
Lang Hames86511252009-09-04 20:41:11 +0000488 std::pair<MachineInstrIndex, MachineInstrIndex> &mbbIndices = MBB2IdxMap[MBB->getNumber()];
489 mbbIndices.first = mbbIndices.first.scale(factor);
490 mbbIndices.second = mbbIndices.second.scale(factor);
Lang Hamesf41538d2009-06-02 16:53:25 +0000491 Idx2MBBMap.push_back(std::make_pair(mbbIndices.first, MBB));
492 }
493 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
494
Lang Hamesffd13262009-07-09 03:57:02 +0000495 // Scale terminator gaps.
Lang Hames86511252009-09-04 20:41:11 +0000496 for (DenseMap<MachineBasicBlock*, MachineInstrIndex>::iterator
Lang Hamesffd13262009-07-09 03:57:02 +0000497 TGI = terminatorGaps.begin(), TGE = terminatorGaps.end();
498 TGI != TGE; ++TGI) {
Lang Hames86511252009-09-04 20:41:11 +0000499 terminatorGaps[TGI->first] = TGI->second.scale(factor);
Lang Hamesffd13262009-07-09 03:57:02 +0000500 }
501
Lang Hamesf41538d2009-06-02 16:53:25 +0000502 // Scale the intervals.
503 for (iterator LI = begin(), LE = end(); LI != LE; ++LI) {
504 LI->second->scaleNumbering(factor);
505 }
506
507 // Scale MachineInstrs.
508 Mi2IndexMap oldmi2iMap = mi2iMap_;
Lang Hames86511252009-09-04 20:41:11 +0000509 MachineInstrIndex highestSlot;
Lang Hamesf41538d2009-06-02 16:53:25 +0000510 for (Mi2IndexMap::iterator MI = oldmi2iMap.begin(), ME = oldmi2iMap.end();
511 MI != ME; ++MI) {
Lang Hames86511252009-09-04 20:41:11 +0000512 MachineInstrIndex newSlot = MI->second.scale(factor);
Lang Hamesf41538d2009-06-02 16:53:25 +0000513 mi2iMap_[MI->first] = newSlot;
514 highestSlot = std::max(highestSlot, newSlot);
515 }
516
Lang Hames86511252009-09-04 20:41:11 +0000517 unsigned highestVIndex = highestSlot.getVecIndex();
Lang Hamesf41538d2009-06-02 16:53:25 +0000518 i2miMap_.clear();
Lang Hames86511252009-09-04 20:41:11 +0000519 i2miMap_.resize(highestVIndex + 1);
Lang Hamesf41538d2009-06-02 16:53:25 +0000520 for (Mi2IndexMap::iterator MI = mi2iMap_.begin(), ME = mi2iMap_.end();
521 MI != ME; ++MI) {
Lang Hames86511252009-09-04 20:41:11 +0000522 i2miMap_[MI->second.getVecIndex()] = const_cast<MachineInstr *>(MI->first);
Lang Hamesf41538d2009-06-02 16:53:25 +0000523 }
524
525}
526
527
Owen Anderson80b3ce62008-05-28 20:54:50 +0000528/// runOnMachineFunction - Register allocate the whole function
529///
530bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
531 mf_ = &fn;
532 mri_ = &mf_->getRegInfo();
533 tm_ = &fn.getTarget();
534 tri_ = tm_->getRegisterInfo();
535 tii_ = tm_->getInstrInfo();
Dan Gohman6d69ba82008-07-25 00:02:30 +0000536 aa_ = &getAnalysis<AliasAnalysis>();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000537 lv_ = &getAnalysis<LiveVariables>();
538 allocatableRegs_ = tri_->getAllocatableSet(fn);
539
Evan Cheng2578ba22009-07-01 01:59:31 +0000540 processImplicitDefs();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000541 computeNumbering();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000542 computeIntervals();
Evan Cheng752195e2009-09-14 21:33:42 +0000543 performEarlyCoalescing();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000544
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000545 numIntervals += getNumIntervals();
546
Chris Lattner70ca3582004-09-30 15:59:17 +0000547 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000548 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000549}
550
Chris Lattner70ca3582004-09-30 15:59:17 +0000551/// print - Implement the dump method.
Chris Lattner45cfe542009-08-23 06:03:38 +0000552void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattner705e07f2009-08-23 03:41:05 +0000553 OS << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000554 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000555 I->second->print(OS, tri_);
556 OS << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000557 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000558
Evan Cheng752195e2009-09-14 21:33:42 +0000559 printInstrs(OS);
560}
561
562void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattner705e07f2009-08-23 03:41:05 +0000563 OS << "********** MACHINEINSTRS **********\n";
564
Chris Lattner3380d5c2009-07-21 21:12:58 +0000565 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
566 mbbi != mbbe; ++mbbi) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000567 OS << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
Chris Lattner3380d5c2009-07-21 21:12:58 +0000568 for (MachineBasicBlock::iterator mii = mbbi->begin(),
569 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000570 OS << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner3380d5c2009-07-21 21:12:58 +0000571 }
572 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000573}
574
Evan Cheng752195e2009-09-14 21:33:42 +0000575void LiveIntervals::dumpInstrs() const {
576 printInstrs(errs());
577}
578
Evan Chengc92da382007-11-03 07:20:12 +0000579/// conflictsWithPhysRegDef - Returns true if the specified register
580/// is defined during the duration of the specified interval.
581bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
582 VirtRegMap &vrm, unsigned reg) {
583 for (LiveInterval::Ranges::const_iterator
584 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Lang Hames86511252009-09-04 20:41:11 +0000585 for (MachineInstrIndex index = getBaseIndex(I->start),
Lang Hames35f291d2009-09-12 03:34:03 +0000586 end = getNextIndex(getBaseIndex(getPrevSlot(I->end))); index != end;
587 index = getNextIndex(index)) {
Evan Chengc92da382007-11-03 07:20:12 +0000588 // skip deleted instructions
589 while (index != end && !getInstructionFromIndex(index))
Lang Hames35f291d2009-09-12 03:34:03 +0000590 index = getNextIndex(index);
Evan Chengc92da382007-11-03 07:20:12 +0000591 if (index == end) break;
592
593 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng04ee5a12009-01-20 19:12:24 +0000594 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
595 if (tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Cheng5d446262007-11-15 08:13:29 +0000596 if (SrcReg == li.reg || DstReg == li.reg)
597 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000598 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
599 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000600 if (!mop.isReg())
Evan Chengc92da382007-11-03 07:20:12 +0000601 continue;
602 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000603 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000604 continue;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000605 if (TargetRegisterInfo::isVirtualRegister(PhysReg)) {
Evan Cheng5d446262007-11-15 08:13:29 +0000606 if (!vrm.hasPhys(PhysReg))
607 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000608 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000609 }
Dan Gohman6f0d0242008-02-10 18:45:23 +0000610 if (PhysReg && tri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000611 return true;
612 }
613 }
614 }
615
616 return false;
617}
618
Evan Cheng8f90b6e2009-01-07 02:08:57 +0000619/// conflictsWithPhysRegRef - Similar to conflictsWithPhysRegRef except
620/// it can check use as well.
621bool LiveIntervals::conflictsWithPhysRegRef(LiveInterval &li,
622 unsigned Reg, bool CheckUse,
623 SmallPtrSet<MachineInstr*,32> &JoinedCopies) {
624 for (LiveInterval::Ranges::const_iterator
625 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Lang Hames86511252009-09-04 20:41:11 +0000626 for (MachineInstrIndex index = getBaseIndex(I->start),
Lang Hames35f291d2009-09-12 03:34:03 +0000627 end = getNextIndex(getBaseIndex(getPrevSlot(I->end))); index != end;
628 index = getNextIndex(index)) {
Evan Cheng8f90b6e2009-01-07 02:08:57 +0000629 // Skip deleted instructions.
630 MachineInstr *MI = 0;
631 while (index != end) {
632 MI = getInstructionFromIndex(index);
633 if (MI)
634 break;
Lang Hames35f291d2009-09-12 03:34:03 +0000635 index = getNextIndex(index);
Evan Cheng8f90b6e2009-01-07 02:08:57 +0000636 }
637 if (index == end) break;
638
639 if (JoinedCopies.count(MI))
640 continue;
641 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
642 MachineOperand& MO = MI->getOperand(i);
643 if (!MO.isReg())
644 continue;
645 if (MO.isUse() && !CheckUse)
646 continue;
647 unsigned PhysReg = MO.getReg();
648 if (PhysReg == 0 || TargetRegisterInfo::isVirtualRegister(PhysReg))
649 continue;
650 if (tri_->isSubRegister(Reg, PhysReg))
651 return true;
652 }
653 }
654 }
655
656 return false;
657}
658
Daniel Dunbar504f9a62009-09-15 20:31:12 +0000659#ifndef NDEBUG
Evan Cheng752195e2009-09-14 21:33:42 +0000660static void printRegName(unsigned reg, const TargetRegisterInfo* tri_) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000661 if (TargetRegisterInfo::isPhysicalRegister(reg))
Daniel Dunbar3f0e8302009-07-24 09:53:24 +0000662 errs() << tri_->getName(reg);
Evan Cheng549f27d32007-08-13 23:45:17 +0000663 else
Daniel Dunbar3f0e8302009-07-24 09:53:24 +0000664 errs() << "%reg" << reg;
Evan Cheng549f27d32007-08-13 23:45:17 +0000665}
Daniel Dunbar504f9a62009-09-15 20:31:12 +0000666#endif
Evan Cheng549f27d32007-08-13 23:45:17 +0000667
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000668void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000669 MachineBasicBlock::iterator mi,
Lang Hames86511252009-09-04 20:41:11 +0000670 MachineInstrIndex MIIdx,
671 MachineOperand& MO,
Evan Chengef0732d2008-07-10 07:35:43 +0000672 unsigned MOIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000673 LiveInterval &interval) {
Bill Wendling8e6179f2009-08-22 20:18:03 +0000674 DEBUG({
675 errs() << "\t\tregister: ";
Evan Cheng752195e2009-09-14 21:33:42 +0000676 printRegName(interval.reg, tri_);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000677 });
Evan Cheng419852c2008-04-03 16:39:43 +0000678
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000679 // Virtual registers may be defined multiple times (due to phi
680 // elimination and 2-addr elimination). Much of what we do only has to be
681 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000682 // time we see a vreg.
Evan Chengd129d732009-07-17 19:43:40 +0000683 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000684 if (interval.empty()) {
685 // Get the Idx of the defining instructions.
Lang Hames86511252009-09-04 20:41:11 +0000686 MachineInstrIndex defIndex = getDefIndex(MIIdx);
Dale Johannesen39faac22009-09-20 00:36:41 +0000687 // Earlyclobbers move back one, so that they overlap the live range
688 // of inputs.
Dale Johannesen86b49f82008-09-24 01:07:17 +0000689 if (MO.isEarlyClobber())
690 defIndex = getUseIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000691 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000692 MachineInstr *CopyMI = NULL;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000693 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000694 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000695 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +0000696 mi->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
Evan Cheng04ee5a12009-01-20 19:12:24 +0000697 tii_->isMoveInstr(*mi, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +0000698 CopyMI = mi;
Evan Cheng5379f412008-12-19 20:58:01 +0000699 // Earlyclobbers move back one.
Lang Hames857c4e02009-06-17 21:01:20 +0000700 ValNo = interval.getNextValue(defIndex, CopyMI, true, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000701
702 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000703
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000704 // Loop over all of the blocks that the vreg is defined in. There are
705 // two cases we have to handle here. The most common case is a vreg
706 // whose lifetime is contained within a basic block. In this case there
707 // will be a single kill, in MBB, which comes after the definition.
708 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
709 // FIXME: what about dead vars?
Lang Hames86511252009-09-04 20:41:11 +0000710 MachineInstrIndex killIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000711 if (vi.Kills[0] != mi)
Lang Hames35f291d2009-09-12 03:34:03 +0000712 killIdx = getNextSlot(getUseIndex(getInstructionIndex(vi.Kills[0])));
Dale Johannesen39faac22009-09-20 00:36:41 +0000713 else if (MO.isEarlyClobber())
714 // Earlyclobbers that die in this instruction move up one extra, to
715 // compensate for having the starting point moved back one. This
716 // gets them to overlap the live range of other outputs.
717 killIdx = getNextSlot(getNextSlot(defIndex));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000718 else
Lang Hames35f291d2009-09-12 03:34:03 +0000719 killIdx = getNextSlot(defIndex);
Chris Lattner6097d132004-07-19 02:15:56 +0000720
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000721 // If the kill happens after the definition, we have an intra-block
722 // live range.
723 if (killIdx > defIndex) {
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000724 assert(vi.AliveBlocks.empty() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000725 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000726 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000727 interval.addRange(LR);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000728 DEBUG(errs() << " +" << LR << "\n");
Lang Hames86511252009-09-04 20:41:11 +0000729 ValNo->addKill(killIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000730 return;
731 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000732 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000733
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000734 // The other case we handle is when a virtual register lives to the end
735 // of the defining block, potentially live across some blocks, then is
736 // live into some number of blocks, but gets killed. Start by adding a
737 // range that goes from this definition to the end of the defining block.
Lang Hames35f291d2009-09-12 03:34:03 +0000738 LiveRange NewLR(defIndex, getNextSlot(getMBBEndIdx(mbb)), ValNo);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000739 DEBUG(errs() << " +" << NewLR);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000740 interval.addRange(NewLR);
741
742 // Iterate over all of the blocks that the variable is completely
743 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
744 // live interval.
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000745 for (SparseBitVector<>::iterator I = vi.AliveBlocks.begin(),
746 E = vi.AliveBlocks.end(); I != E; ++I) {
747 LiveRange LR(getMBBStartIdx(*I),
Lang Hames35f291d2009-09-12 03:34:03 +0000748 getNextSlot(getMBBEndIdx(*I)), // MBB ends at -1.
Dan Gohman4a829ec2008-11-13 16:31:27 +0000749 ValNo);
750 interval.addRange(LR);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000751 DEBUG(errs() << " +" << LR);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000752 }
753
754 // Finally, this virtual register is live from the start of any killing
755 // block to the 'use' slot of the killing instruction.
756 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
757 MachineInstr *Kill = vi.Kills[i];
Evan Cheng21731112009-09-12 02:01:07 +0000758 MachineInstrIndex killIdx =
Lang Hames35f291d2009-09-12 03:34:03 +0000759 getNextSlot(getUseIndex(getInstructionIndex(Kill)));
Evan Chengb0f59732009-09-21 04:32:32 +0000760 LiveRange LR(getMBBStartIdx(Kill->getParent()), killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000761 interval.addRange(LR);
Lang Hames86511252009-09-04 20:41:11 +0000762 ValNo->addKill(killIdx);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000763 DEBUG(errs() << " +" << LR);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000764 }
765
766 } else {
767 // If this is the second time we see a virtual register definition, it
768 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000769 // the result of two address elimination, then the vreg is one of the
770 // def-and-use register operand.
Bob Wilsond9df5012009-04-09 17:16:43 +0000771 if (mi->isRegTiedToUseOperand(MOIdx)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000772 // If this is a two-address definition, then we have already processed
773 // the live range. The only problem is that we didn't realize there
774 // are actually two values in the live interval. Because of this we
775 // need to take the LiveRegion that defines this register and split it
776 // into two values.
Evan Chenga07cec92008-01-10 08:22:10 +0000777 assert(interval.containsOneValue());
Lang Hames86511252009-09-04 20:41:11 +0000778 MachineInstrIndex DefIndex = getDefIndex(interval.getValNumInfo(0)->def);
779 MachineInstrIndex RedefIndex = getDefIndex(MIIdx);
Evan Chengfb112882009-03-23 08:01:15 +0000780 if (MO.isEarlyClobber())
781 RedefIndex = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000782
Lang Hames35f291d2009-09-12 03:34:03 +0000783 const LiveRange *OldLR =
784 interval.getLiveRangeContaining(getPrevSlot(RedefIndex));
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000785 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000786
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000787 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000788 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000789 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000790
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000791 // Two-address vregs should always only be redefined once. This means
792 // that at this point, there should be exactly one value number in it.
793 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
794
Chris Lattner91725b72006-08-31 05:54:43 +0000795 // The new value number (#1) is defined by the instruction we claimed
796 // defined value #0.
Lang Hames52c1afc2009-08-10 23:43:28 +0000797 VNInfo *ValNo = interval.getNextValue(OldValNo->def, OldValNo->getCopy(),
Lang Hames857c4e02009-06-17 21:01:20 +0000798 false, // update at *
Evan Chengc8d044e2008-02-15 18:24:29 +0000799 VNInfoAllocator);
Lang Hames857c4e02009-06-17 21:01:20 +0000800 ValNo->setFlags(OldValNo->getFlags()); // * <- updating here
801
Chris Lattner91725b72006-08-31 05:54:43 +0000802 // Value#0 is now defined by the 2-addr instruction.
Evan Chengc8d044e2008-02-15 18:24:29 +0000803 OldValNo->def = RedefIndex;
Lang Hames52c1afc2009-08-10 23:43:28 +0000804 OldValNo->setCopy(0);
Evan Chengfb112882009-03-23 08:01:15 +0000805 if (MO.isEarlyClobber())
Lang Hames857c4e02009-06-17 21:01:20 +0000806 OldValNo->setHasRedefByEC(true);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000807
808 // Add the new live interval which replaces the range for the input copy.
809 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000810 DEBUG(errs() << " replace range with " << LR);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000811 interval.addRange(LR);
Lang Hames86511252009-09-04 20:41:11 +0000812 ValNo->addKill(RedefIndex);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000813
814 // If this redefinition is dead, we need to add a dummy unit live
815 // range covering the def slot.
Owen Anderson6b098de2008-06-25 23:39:39 +0000816 if (MO.isDead())
Lang Hames35f291d2009-09-12 03:34:03 +0000817 interval.addRange(
Dale Johannesen39faac22009-09-20 00:36:41 +0000818 LiveRange(RedefIndex, MO.isEarlyClobber() ?
819 getNextSlot(getNextSlot(RedefIndex)) :
820 getNextSlot(RedefIndex), OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000821
Bill Wendling8e6179f2009-08-22 20:18:03 +0000822 DEBUG({
823 errs() << " RESULT: ";
824 interval.print(errs(), tri_);
825 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000826 } else {
827 // Otherwise, this must be because of phi elimination. If this is the
828 // first redefinition of the vreg that we have seen, go back and change
829 // the live range in the PHI block to be a different value number.
830 if (interval.containsOneValue()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000831 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000832 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000833 MachineInstr *Killer = vi.Kills[0];
Evan Cheng752195e2009-09-14 21:33:42 +0000834 phiJoinCopies.push_back(Killer);
Lang Hames86511252009-09-04 20:41:11 +0000835 MachineInstrIndex Start = getMBBStartIdx(Killer->getParent());
Evan Cheng21731112009-09-12 02:01:07 +0000836 MachineInstrIndex End =
Lang Hames35f291d2009-09-12 03:34:03 +0000837 getNextSlot(getUseIndex(getInstructionIndex(Killer)));
Bill Wendling8e6179f2009-08-22 20:18:03 +0000838 DEBUG({
839 errs() << " Removing [" << Start << "," << End << "] from: ";
840 interval.print(errs(), tri_);
841 errs() << "\n";
842 });
Lang Hamesffd13262009-07-09 03:57:02 +0000843 interval.removeRange(Start, End);
844 assert(interval.ranges.size() == 1 &&
Evan Cheng752195e2009-09-14 21:33:42 +0000845 "Newly discovered PHI interval has >1 ranges.");
Lang Hames86511252009-09-04 20:41:11 +0000846 MachineBasicBlock *killMBB = getMBBFromIndex(interval.endIndex());
847 VNI->addKill(terminatorGaps[killMBB]);
Lang Hames857c4e02009-06-17 21:01:20 +0000848 VNI->setHasPHIKill(true);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000849 DEBUG({
850 errs() << " RESULT: ";
851 interval.print(errs(), tri_);
852 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000853
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000854 // Replace the interval with one of a NEW value number. Note that this
855 // value number isn't actually defined by an instruction, weird huh? :)
Lang Hames10382fb2009-06-19 02:17:53 +0000856 LiveRange LR(Start, End,
Lang Hames86511252009-09-04 20:41:11 +0000857 interval.getNextValue(MachineInstrIndex(mbb->getNumber()),
858 0, false, VNInfoAllocator));
Lang Hames857c4e02009-06-17 21:01:20 +0000859 LR.valno->setIsPHIDef(true);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000860 DEBUG(errs() << " replace range with " << LR);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000861 interval.addRange(LR);
Lang Hames86511252009-09-04 20:41:11 +0000862 LR.valno->addKill(End);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000863 DEBUG({
864 errs() << " RESULT: ";
865 interval.print(errs(), tri_);
866 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000867 }
868
869 // In the case of PHI elimination, each variable definition is only
870 // live until the end of the block. We've already taken care of the
871 // rest of the live range.
Lang Hames86511252009-09-04 20:41:11 +0000872 MachineInstrIndex defIndex = getDefIndex(MIIdx);
Evan Chengfb112882009-03-23 08:01:15 +0000873 if (MO.isEarlyClobber())
874 defIndex = getUseIndex(MIIdx);
Evan Cheng752195e2009-09-14 21:33:42 +0000875
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000876 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000877 MachineInstr *CopyMI = NULL;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000878 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000879 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000880 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +0000881 mi->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
Evan Cheng04ee5a12009-01-20 19:12:24 +0000882 tii_->isMoveInstr(*mi, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +0000883 CopyMI = mi;
Lang Hames857c4e02009-06-17 21:01:20 +0000884 ValNo = interval.getNextValue(defIndex, CopyMI, true, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000885
Lang Hames35f291d2009-09-12 03:34:03 +0000886 MachineInstrIndex killIndex = getNextSlot(getMBBEndIdx(mbb));
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000887 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000888 interval.addRange(LR);
Lang Hames86511252009-09-04 20:41:11 +0000889 ValNo->addKill(terminatorGaps[mbb]);
Lang Hames857c4e02009-06-17 21:01:20 +0000890 ValNo->setHasPHIKill(true);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000891 DEBUG(errs() << " +" << LR);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000892 }
893 }
894
Bill Wendling8e6179f2009-08-22 20:18:03 +0000895 DEBUG(errs() << '\n');
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000896}
897
Chris Lattnerf35fef72004-07-23 21:24:19 +0000898void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000899 MachineBasicBlock::iterator mi,
Lang Hames86511252009-09-04 20:41:11 +0000900 MachineInstrIndex MIIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000901 MachineOperand& MO,
Chris Lattner91725b72006-08-31 05:54:43 +0000902 LiveInterval &interval,
Evan Chengc8d044e2008-02-15 18:24:29 +0000903 MachineInstr *CopyMI) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000904 // A physical register cannot be live across basic block, so its
905 // lifetime must end somewhere in its defining basic block.
Bill Wendling8e6179f2009-08-22 20:18:03 +0000906 DEBUG({
907 errs() << "\t\tregister: ";
Evan Cheng752195e2009-09-14 21:33:42 +0000908 printRegName(interval.reg, tri_);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000909 });
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000910
Lang Hames86511252009-09-04 20:41:11 +0000911 MachineInstrIndex baseIndex = MIIdx;
912 MachineInstrIndex start = getDefIndex(baseIndex);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000913 // Earlyclobbers move back one.
914 if (MO.isEarlyClobber())
915 start = getUseIndex(MIIdx);
Lang Hames86511252009-09-04 20:41:11 +0000916 MachineInstrIndex end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000917
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000918 // If it is not used after definition, it is considered dead at
919 // the instruction defining it. Hence its interval is:
920 // [defSlot(def), defSlot(def)+1)
Dale Johannesen39faac22009-09-20 00:36:41 +0000921 // For earlyclobbers, the defSlot was pushed back one; the extra
922 // advance below compensates.
Owen Anderson6b098de2008-06-25 23:39:39 +0000923 if (MO.isDead()) {
Bill Wendling8e6179f2009-08-22 20:18:03 +0000924 DEBUG(errs() << " dead");
Dale Johannesen39faac22009-09-20 00:36:41 +0000925 if (MO.isEarlyClobber())
926 end = getNextSlot(getNextSlot(start));
927 else
928 end = getNextSlot(start);
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000929 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000930 }
931
932 // If it is not dead on definition, it must be killed by a
933 // subsequent instruction. Hence its interval is:
934 // [defSlot(def), useSlot(kill)+1)
Lang Hames35f291d2009-09-12 03:34:03 +0000935 baseIndex = getNextIndex(baseIndex);
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000936 while (++mi != MBB->end()) {
Lang Hames86511252009-09-04 20:41:11 +0000937 while (baseIndex.getVecIndex() < i2miMap_.size() &&
Owen Anderson7fbad272008-07-23 21:37:49 +0000938 getInstructionFromIndex(baseIndex) == 0)
Lang Hames35f291d2009-09-12 03:34:03 +0000939 baseIndex = getNextIndex(baseIndex);
Evan Cheng6130f662008-03-05 00:59:57 +0000940 if (mi->killsRegister(interval.reg, tri_)) {
Bill Wendling8e6179f2009-08-22 20:18:03 +0000941 DEBUG(errs() << " killed");
Lang Hames35f291d2009-09-12 03:34:03 +0000942 end = getNextSlot(getUseIndex(baseIndex));
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000943 goto exit;
Evan Chengc45288e2009-04-27 20:42:46 +0000944 } else {
945 int DefIdx = mi->findRegisterDefOperandIdx(interval.reg, false, tri_);
946 if (DefIdx != -1) {
947 if (mi->isRegTiedToUseOperand(DefIdx)) {
948 // Two-address instruction.
949 end = getDefIndex(baseIndex);
950 if (mi->getOperand(DefIdx).isEarlyClobber())
951 end = getUseIndex(baseIndex);
952 } else {
953 // Another instruction redefines the register before it is ever read.
954 // Then the register is essentially dead at the instruction that defines
955 // it. Hence its interval is:
956 // [defSlot(def), defSlot(def)+1)
Bill Wendling8e6179f2009-08-22 20:18:03 +0000957 DEBUG(errs() << " dead");
Lang Hames35f291d2009-09-12 03:34:03 +0000958 end = getNextSlot(start);
Evan Chengc45288e2009-04-27 20:42:46 +0000959 }
960 goto exit;
961 }
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000962 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000963
Lang Hames35f291d2009-09-12 03:34:03 +0000964 baseIndex = getNextIndex(baseIndex);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000965 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000966
967 // The only case we should have a dead physreg here without a killing or
968 // instruction where we know it's dead is if it is live-in to the function
Evan Chengd521bc92009-04-27 17:36:47 +0000969 // and never used. Another possible case is the implicit use of the
970 // physical register has been deleted by two-address pass.
Lang Hames35f291d2009-09-12 03:34:03 +0000971 end = getNextSlot(start);
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000972
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000973exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000974 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000975
Evan Cheng24a3cc42007-04-25 07:30:23 +0000976 // Already exists? Extend old live interval.
977 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng5379f412008-12-19 20:58:01 +0000978 bool Extend = OldLR != interval.end();
979 VNInfo *ValNo = Extend
Lang Hames857c4e02009-06-17 21:01:20 +0000980 ? OldLR->valno : interval.getNextValue(start, CopyMI, true, VNInfoAllocator);
Evan Cheng5379f412008-12-19 20:58:01 +0000981 if (MO.isEarlyClobber() && Extend)
Lang Hames857c4e02009-06-17 21:01:20 +0000982 ValNo->setHasRedefByEC(true);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000983 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000984 interval.addRange(LR);
Lang Hames86511252009-09-04 20:41:11 +0000985 LR.valno->addKill(end);
Bill Wendling8e6179f2009-08-22 20:18:03 +0000986 DEBUG(errs() << " +" << LR << '\n');
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000987}
988
Chris Lattnerf35fef72004-07-23 21:24:19 +0000989void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
990 MachineBasicBlock::iterator MI,
Lang Hames86511252009-09-04 20:41:11 +0000991 MachineInstrIndex MIIdx,
Evan Chengef0732d2008-07-10 07:35:43 +0000992 MachineOperand& MO,
993 unsigned MOIdx) {
Owen Anderson6b098de2008-06-25 23:39:39 +0000994 if (TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Evan Chengef0732d2008-07-10 07:35:43 +0000995 handleVirtualRegisterDef(MBB, MI, MIIdx, MO, MOIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000996 getOrCreateInterval(MO.getReg()));
997 else if (allocatableRegs_[MO.getReg()]) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000998 MachineInstr *CopyMI = NULL;
Evan Cheng04ee5a12009-01-20 19:12:24 +0000999 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Evan Chengc8d044e2008-02-15 18:24:29 +00001000 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +00001001 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +00001002 MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG ||
Evan Cheng04ee5a12009-01-20 19:12:24 +00001003 tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +00001004 CopyMI = MI;
Evan Chengc45288e2009-04-27 20:42:46 +00001005 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
Owen Anderson6b098de2008-06-25 23:39:39 +00001006 getOrCreateInterval(MO.getReg()), CopyMI);
Evan Cheng24a3cc42007-04-25 07:30:23 +00001007 // Def of a register also defines its sub-registers.
Owen Anderson6b098de2008-06-25 23:39:39 +00001008 for (const unsigned* AS = tri_->getSubRegisters(MO.getReg()); *AS; ++AS)
Evan Cheng6130f662008-03-05 00:59:57 +00001009 // If MI also modifies the sub-register explicitly, avoid processing it
1010 // more than once. Do not pass in TRI here so it checks for exact match.
1011 if (!MI->modifiesRegister(*AS))
Evan Chengc45288e2009-04-27 20:42:46 +00001012 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
Owen Anderson6b098de2008-06-25 23:39:39 +00001013 getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +00001014 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +00001015}
1016
Evan Chengb371f452007-02-19 21:49:54 +00001017void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Lang Hames86511252009-09-04 20:41:11 +00001018 MachineInstrIndex MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +00001019 LiveInterval &interval, bool isAlias) {
Bill Wendling8e6179f2009-08-22 20:18:03 +00001020 DEBUG({
1021 errs() << "\t\tlivein register: ";
Evan Cheng752195e2009-09-14 21:33:42 +00001022 printRegName(interval.reg, tri_);
Bill Wendling8e6179f2009-08-22 20:18:03 +00001023 });
Evan Chengb371f452007-02-19 21:49:54 +00001024
1025 // Look for kills, if it reaches a def before it's killed, then it shouldn't
1026 // be considered a livein.
1027 MachineBasicBlock::iterator mi = MBB->begin();
Lang Hames86511252009-09-04 20:41:11 +00001028 MachineInstrIndex baseIndex = MIIdx;
1029 MachineInstrIndex start = baseIndex;
1030 while (baseIndex.getVecIndex() < i2miMap_.size() &&
Owen Anderson99500ae2008-09-15 22:00:38 +00001031 getInstructionFromIndex(baseIndex) == 0)
Lang Hames35f291d2009-09-12 03:34:03 +00001032 baseIndex = getNextIndex(baseIndex);
Lang Hames86511252009-09-04 20:41:11 +00001033 MachineInstrIndex end = baseIndex;
Evan Cheng0076c612009-03-05 03:34:26 +00001034 bool SeenDefUse = false;
Owen Anderson99500ae2008-09-15 22:00:38 +00001035
Evan Chengb371f452007-02-19 21:49:54 +00001036 while (mi != MBB->end()) {
Evan Cheng6130f662008-03-05 00:59:57 +00001037 if (mi->killsRegister(interval.reg, tri_)) {
Bill Wendling8e6179f2009-08-22 20:18:03 +00001038 DEBUG(errs() << " killed");
Lang Hames35f291d2009-09-12 03:34:03 +00001039 end = getNextSlot(getUseIndex(baseIndex));
Evan Cheng0076c612009-03-05 03:34:26 +00001040 SeenDefUse = true;
Lang Hamesd21c3162009-06-18 22:01:47 +00001041 break;
Evan Cheng6130f662008-03-05 00:59:57 +00001042 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +00001043 // Another instruction redefines the register before it is ever read.
1044 // Then the register is essentially dead at the instruction that defines
1045 // it. Hence its interval is:
1046 // [defSlot(def), defSlot(def)+1)
Bill Wendling8e6179f2009-08-22 20:18:03 +00001047 DEBUG(errs() << " dead");
Lang Hames35f291d2009-09-12 03:34:03 +00001048 end = getNextSlot(getDefIndex(start));
Evan Cheng0076c612009-03-05 03:34:26 +00001049 SeenDefUse = true;
Lang Hamesd21c3162009-06-18 22:01:47 +00001050 break;
Evan Chengb371f452007-02-19 21:49:54 +00001051 }
1052
Lang Hames35f291d2009-09-12 03:34:03 +00001053 baseIndex = getNextIndex(baseIndex);
Evan Chengb371f452007-02-19 21:49:54 +00001054 ++mi;
Evan Cheng0076c612009-03-05 03:34:26 +00001055 if (mi != MBB->end()) {
Lang Hames86511252009-09-04 20:41:11 +00001056 while (baseIndex.getVecIndex() < i2miMap_.size() &&
Evan Cheng0076c612009-03-05 03:34:26 +00001057 getInstructionFromIndex(baseIndex) == 0)
Lang Hames35f291d2009-09-12 03:34:03 +00001058 baseIndex = getNextIndex(baseIndex);
Evan Cheng0076c612009-03-05 03:34:26 +00001059 }
Evan Chengb371f452007-02-19 21:49:54 +00001060 }
1061
Evan Cheng75611fb2007-06-27 01:16:36 +00001062 // Live-in register might not be used at all.
Evan Cheng0076c612009-03-05 03:34:26 +00001063 if (!SeenDefUse) {
Evan Cheng292da942007-06-27 18:47:28 +00001064 if (isAlias) {
Bill Wendling8e6179f2009-08-22 20:18:03 +00001065 DEBUG(errs() << " dead");
Lang Hames35f291d2009-09-12 03:34:03 +00001066 end = getNextSlot(getDefIndex(MIIdx));
Evan Cheng292da942007-06-27 18:47:28 +00001067 } else {
Bill Wendling8e6179f2009-08-22 20:18:03 +00001068 DEBUG(errs() << " live through");
Evan Cheng292da942007-06-27 18:47:28 +00001069 end = baseIndex;
1070 }
Evan Cheng24a3cc42007-04-25 07:30:23 +00001071 }
1072
Lang Hames10382fb2009-06-19 02:17:53 +00001073 VNInfo *vni =
Lang Hames86511252009-09-04 20:41:11 +00001074 interval.getNextValue(MachineInstrIndex(MBB->getNumber()),
1075 0, false, VNInfoAllocator);
Lang Hamesd21c3162009-06-18 22:01:47 +00001076 vni->setIsPHIDef(true);
1077 LiveRange LR(start, end, vni);
1078
Jim Laskey9b25b8c2007-02-21 22:41:17 +00001079 interval.addRange(LR);
Lang Hames86511252009-09-04 20:41:11 +00001080 LR.valno->addKill(end);
Bill Wendling8e6179f2009-08-22 20:18:03 +00001081 DEBUG(errs() << " +" << LR << '\n');
Evan Chengb371f452007-02-19 21:49:54 +00001082}
1083
Evan Cheng752195e2009-09-14 21:33:42 +00001084bool
1085LiveIntervals::isProfitableToCoalesce(LiveInterval &DstInt, LiveInterval &SrcInt,
1086 SmallVector<MachineInstr*,16> &IdentCopies,
Evan Cheng3f855492009-09-15 06:45:16 +00001087 SmallVector<MachineInstr*,16> &OtherCopies) {
1088 bool HaveConflict = false;
Evan Cheng752195e2009-09-14 21:33:42 +00001089 unsigned NumIdent = 0;
Evan Cheng752195e2009-09-14 21:33:42 +00001090 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(SrcInt.reg),
1091 re = mri_->reg_end(); ri != re; ++ri) {
1092 MachineOperand &O = ri.getOperand();
1093 if (!O.isDef())
1094 continue;
1095
Evan Cheng752195e2009-09-14 21:33:42 +00001096 MachineInstr *MI = &*ri;
1097 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
1098 if (!tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Cheng3f855492009-09-15 06:45:16 +00001099 return false;
Evan Cheng752195e2009-09-14 21:33:42 +00001100 if (SrcReg != DstInt.reg) {
1101 OtherCopies.push_back(MI);
1102 HaveConflict |= DstInt.liveAt(getInstructionIndex(MI));
1103 } else {
1104 IdentCopies.push_back(MI);
1105 ++NumIdent;
1106 }
1107 }
1108
Evan Cheng3f855492009-09-15 06:45:16 +00001109 if (!HaveConflict)
1110 return false; // Let coalescer handle it
1111 return IdentCopies.size() > OtherCopies.size();
Evan Cheng752195e2009-09-14 21:33:42 +00001112}
1113
1114void LiveIntervals::performEarlyCoalescing() {
1115 if (!EarlyCoalescing)
1116 return;
1117
1118 /// Perform early coalescing: eliminate copies which feed into phi joins
1119 /// and whose sources are defined by the phi joins.
1120 for (unsigned i = 0, e = phiJoinCopies.size(); i != e; ++i) {
1121 MachineInstr *Join = phiJoinCopies[i];
1122 if (CoalescingLimit != -1 && (int)numCoalescing == CoalescingLimit)
1123 break;
1124
1125 unsigned PHISrc, PHIDst, SrcSubReg, DstSubReg;
1126 bool isMove= tii_->isMoveInstr(*Join, PHISrc, PHIDst, SrcSubReg, DstSubReg);
1127#ifndef NDEBUG
1128 assert(isMove && "PHI join instruction must be a move!");
1129#else
1130 isMove = isMove;
1131#endif
1132
1133 LiveInterval &DstInt = getInterval(PHIDst);
1134 LiveInterval &SrcInt = getInterval(PHISrc);
1135 SmallVector<MachineInstr*, 16> IdentCopies;
1136 SmallVector<MachineInstr*, 16> OtherCopies;
Evan Cheng3f855492009-09-15 06:45:16 +00001137 if (!isProfitableToCoalesce(DstInt, SrcInt, IdentCopies, OtherCopies))
Evan Cheng752195e2009-09-14 21:33:42 +00001138 continue;
1139
1140 DEBUG(errs() << "PHI Join: " << *Join);
1141 assert(DstInt.containsOneValue() && "PHI join should have just one val#!");
1142 VNInfo *VNI = DstInt.getValNumInfo(0);
Evan Cheng752195e2009-09-14 21:33:42 +00001143
Evan Cheng3f855492009-09-15 06:45:16 +00001144 // Change the non-identity copies to directly target the phi destination.
1145 for (unsigned i = 0, e = OtherCopies.size(); i != e; ++i) {
1146 MachineInstr *PHICopy = OtherCopies[i];
1147 DEBUG(errs() << "Moving: " << *PHICopy);
1148
Evan Cheng752195e2009-09-14 21:33:42 +00001149 MachineInstrIndex MIIndex = getInstructionIndex(PHICopy);
1150 MachineInstrIndex DefIndex = getDefIndex(MIIndex);
1151 LiveRange *SLR = SrcInt.getLiveRangeContaining(DefIndex);
Evan Cheng3f855492009-09-15 06:45:16 +00001152 MachineInstrIndex StartIndex = SLR->start;
Evan Cheng752195e2009-09-14 21:33:42 +00001153 MachineInstrIndex EndIndex = SLR->end;
1154
1155 // Delete val# defined by the now identity copy and add the range from
1156 // beginning of the mbb to the end of the range.
1157 SrcInt.removeValNo(SLR->valno);
Evan Cheng3f855492009-09-15 06:45:16 +00001158 DEBUG(errs() << " added range [" << StartIndex << ','
1159 << EndIndex << "] to reg" << DstInt.reg << '\n');
1160 if (DstInt.liveAt(StartIndex))
Evan Cheng752195e2009-09-14 21:33:42 +00001161 DstInt.removeRange(StartIndex, EndIndex);
Evan Cheng3f855492009-09-15 06:45:16 +00001162 VNInfo *NewVNI = DstInt.getNextValue(DefIndex, PHICopy, true,
1163 VNInfoAllocator);
1164 NewVNI->setHasPHIKill(true);
1165 DstInt.addRange(LiveRange(StartIndex, EndIndex, NewVNI));
1166 for (unsigned j = 0, ee = PHICopy->getNumOperands(); j != ee; ++j) {
1167 MachineOperand &MO = PHICopy->getOperand(j);
1168 if (!MO.isReg() || MO.getReg() != PHISrc)
1169 continue;
1170 MO.setReg(PHIDst);
Evan Cheng752195e2009-09-14 21:33:42 +00001171 }
Evan Cheng3f855492009-09-15 06:45:16 +00001172 }
1173
1174 // Now let's eliminate all the would-be identity copies.
1175 for (unsigned i = 0, e = IdentCopies.size(); i != e; ++i) {
1176 MachineInstr *PHICopy = IdentCopies[i];
1177 DEBUG(errs() << "Coalescing: " << *PHICopy);
1178
1179 MachineInstrIndex MIIndex = getInstructionIndex(PHICopy);
1180 MachineInstrIndex DefIndex = getDefIndex(MIIndex);
1181 LiveRange *SLR = SrcInt.getLiveRangeContaining(DefIndex);
1182 MachineInstrIndex StartIndex = SLR->start;
1183 MachineInstrIndex EndIndex = SLR->end;
1184
1185 // Delete val# defined by the now identity copy and add the range from
1186 // beginning of the mbb to the end of the range.
1187 SrcInt.removeValNo(SLR->valno);
Evan Cheng752195e2009-09-14 21:33:42 +00001188 RemoveMachineInstrFromMaps(PHICopy);
1189 PHICopy->eraseFromParent();
Evan Cheng3f855492009-09-15 06:45:16 +00001190 DEBUG(errs() << " added range [" << StartIndex << ','
1191 << EndIndex << "] to reg" << DstInt.reg << '\n');
1192 DstInt.addRange(LiveRange(StartIndex, EndIndex, VNI));
Evan Cheng752195e2009-09-14 21:33:42 +00001193 }
Evan Cheng752195e2009-09-14 21:33:42 +00001194
Evan Cheng3f855492009-09-15 06:45:16 +00001195 // Remove the phi join and update the phi block liveness.
1196 MachineInstrIndex MIIndex = getInstructionIndex(Join);
1197 MachineInstrIndex UseIndex = getUseIndex(MIIndex);
1198 MachineInstrIndex DefIndex = getDefIndex(MIIndex);
1199 LiveRange *SLR = SrcInt.getLiveRangeContaining(UseIndex);
1200 LiveRange *DLR = DstInt.getLiveRangeContaining(DefIndex);
1201 DLR->valno->setCopy(0);
1202 DLR->valno->setIsDefAccurate(false);
1203 DstInt.addRange(LiveRange(SLR->start, SLR->end, DLR->valno));
1204 SrcInt.removeRange(SLR->start, SLR->end);
1205 assert(SrcInt.empty());
1206 removeInterval(PHISrc);
1207 RemoveMachineInstrFromMaps(Join);
1208 Join->eraseFromParent();
Evan Cheng752195e2009-09-14 21:33:42 +00001209
1210 ++numCoalescing;
1211 }
1212}
1213
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001214/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +00001215/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +00001216/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001217/// which a variable is live
Dale Johannesen91aac102008-09-17 21:13:11 +00001218void LiveIntervals::computeIntervals() {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001219 DEBUG(errs() << "********** COMPUTING LIVE INTERVALS **********\n"
Bill Wendling8e6179f2009-08-22 20:18:03 +00001220 << "********** Function: "
1221 << ((Value*)mf_->getFunction())->getName() << '\n');
Evan Chengd129d732009-07-17 19:43:40 +00001222
1223 SmallVector<unsigned, 8> UndefUses;
Chris Lattner428b92e2006-09-15 03:57:23 +00001224 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
1225 MBBI != E; ++MBBI) {
1226 MachineBasicBlock *MBB = MBBI;
Owen Anderson134eb732008-09-21 20:43:24 +00001227 // Track the index of the current machine instr.
Lang Hames86511252009-09-04 20:41:11 +00001228 MachineInstrIndex MIIndex = getMBBStartIdx(MBB);
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001229 DEBUG(errs() << ((Value*)MBB->getBasicBlock())->getName() << ":\n");
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +00001230
Chris Lattner428b92e2006-09-15 03:57:23 +00001231 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +00001232
Dan Gohmancb406c22007-10-03 19:26:29 +00001233 // Create intervals for live-ins to this BB first.
1234 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
1235 LE = MBB->livein_end(); LI != LE; ++LI) {
1236 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
1237 // Multiple live-ins can alias the same register.
Dan Gohman6f0d0242008-02-10 18:45:23 +00001238 for (const unsigned* AS = tri_->getSubRegisters(*LI); *AS; ++AS)
Dan Gohmancb406c22007-10-03 19:26:29 +00001239 if (!hasInterval(*AS))
1240 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
1241 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +00001242 }
1243
Owen Anderson99500ae2008-09-15 22:00:38 +00001244 // Skip over empty initial indices.
Lang Hames86511252009-09-04 20:41:11 +00001245 while (MIIndex.getVecIndex() < i2miMap_.size() &&
Owen Anderson99500ae2008-09-15 22:00:38 +00001246 getInstructionFromIndex(MIIndex) == 0)
Lang Hames35f291d2009-09-12 03:34:03 +00001247 MIIndex = getNextIndex(MIIndex);
Owen Anderson99500ae2008-09-15 22:00:38 +00001248
Chris Lattner428b92e2006-09-15 03:57:23 +00001249 for (; MI != miEnd; ++MI) {
Bill Wendling8e6179f2009-08-22 20:18:03 +00001250 DEBUG(errs() << MIIndex << "\t" << *MI);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001251
Evan Cheng438f7bc2006-11-10 08:43:01 +00001252 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +00001253 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
1254 MachineOperand &MO = MI->getOperand(i);
Evan Chengd129d732009-07-17 19:43:40 +00001255 if (!MO.isReg() || !MO.getReg())
1256 continue;
1257
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001258 // handle register defs - build intervals
Evan Chengd129d732009-07-17 19:43:40 +00001259 if (MO.isDef())
Evan Chengef0732d2008-07-10 07:35:43 +00001260 handleRegisterDef(MBB, MI, MIIndex, MO, i);
Evan Chengd129d732009-07-17 19:43:40 +00001261 else if (MO.isUndef())
1262 UndefUses.push_back(MO.getReg());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001263 }
Evan Cheng99fe34b2008-10-18 05:18:55 +00001264
1265 // Skip over the empty slots after each instruction.
1266 unsigned Slots = MI->getDesc().getNumDefs();
1267 if (Slots == 0)
1268 Slots = 1;
Lang Hames86511252009-09-04 20:41:11 +00001269
1270 while (Slots--)
Lang Hames35f291d2009-09-12 03:34:03 +00001271 MIIndex = getNextIndex(MIIndex);
Owen Anderson7fbad272008-07-23 21:37:49 +00001272
1273 // Skip over empty indices.
Lang Hames86511252009-09-04 20:41:11 +00001274 while (MIIndex.getVecIndex() < i2miMap_.size() &&
Owen Anderson7fbad272008-07-23 21:37:49 +00001275 getInstructionFromIndex(MIIndex) == 0)
Lang Hames35f291d2009-09-12 03:34:03 +00001276 MIIndex = getNextIndex(MIIndex);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001277 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +00001278 }
Evan Chengd129d732009-07-17 19:43:40 +00001279
1280 // Create empty intervals for registers defined by implicit_def's (except
1281 // for those implicit_def that define values which are liveout of their
1282 // blocks.
1283 for (unsigned i = 0, e = UndefUses.size(); i != e; ++i) {
1284 unsigned UndefReg = UndefUses[i];
1285 (void)getOrCreateInterval(UndefReg);
1286 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001287}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +00001288
Lang Hames86511252009-09-04 20:41:11 +00001289bool LiveIntervals::findLiveInMBBs(
1290 MachineInstrIndex Start, MachineInstrIndex End,
Evan Chenga5bfc972007-10-17 06:53:44 +00001291 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +00001292 std::vector<IdxMBBPair>::const_iterator I =
Evan Chengd0e32c52008-10-29 05:06:14 +00001293 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), Start);
Evan Cheng4ca980e2007-10-17 02:10:22 +00001294
1295 bool ResVal = false;
1296 while (I != Idx2MBBMap.end()) {
Dan Gohman2ad82452008-11-26 05:50:31 +00001297 if (I->first >= End)
Evan Cheng4ca980e2007-10-17 02:10:22 +00001298 break;
1299 MBBs.push_back(I->second);
1300 ResVal = true;
1301 ++I;
1302 }
1303 return ResVal;
1304}
1305
Lang Hames86511252009-09-04 20:41:11 +00001306bool LiveIntervals::findReachableMBBs(
1307 MachineInstrIndex Start, MachineInstrIndex End,
Evan Chengd0e32c52008-10-29 05:06:14 +00001308 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
1309 std::vector<IdxMBBPair>::const_iterator I =
1310 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), Start);
1311
1312 bool ResVal = false;
1313 while (I != Idx2MBBMap.end()) {
1314 if (I->first > End)
1315 break;
1316 MachineBasicBlock *MBB = I->second;
1317 if (getMBBEndIdx(MBB) > End)
1318 break;
1319 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
1320 SE = MBB->succ_end(); SI != SE; ++SI)
1321 MBBs.push_back(*SI);
1322 ResVal = true;
1323 ++I;
1324 }
1325 return ResVal;
1326}
1327
Owen Anderson03857b22008-08-13 21:49:13 +00001328LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001329 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ? HUGE_VALF : 0.0F;
Owen Anderson03857b22008-08-13 21:49:13 +00001330 return new LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +00001331}
Evan Chengf2fbca62007-11-12 06:35:08 +00001332
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001333/// dupInterval - Duplicate a live interval. The caller is responsible for
1334/// managing the allocated memory.
1335LiveInterval* LiveIntervals::dupInterval(LiveInterval *li) {
1336 LiveInterval *NewLI = createInterval(li->reg);
Evan Cheng90f95f82009-06-14 20:22:55 +00001337 NewLI->Copy(*li, mri_, getVNInfoAllocator());
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001338 return NewLI;
1339}
1340
Evan Chengc8d044e2008-02-15 18:24:29 +00001341/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
1342/// copy field and returns the source register that defines it.
1343unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
Lang Hames52c1afc2009-08-10 23:43:28 +00001344 if (!VNI->getCopy())
Evan Chengc8d044e2008-02-15 18:24:29 +00001345 return 0;
1346
Lang Hames52c1afc2009-08-10 23:43:28 +00001347 if (VNI->getCopy()->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001348 // If it's extracting out of a physical register, return the sub-register.
Lang Hames52c1afc2009-08-10 23:43:28 +00001349 unsigned Reg = VNI->getCopy()->getOperand(1).getReg();
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001350 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Lang Hames52c1afc2009-08-10 23:43:28 +00001351 Reg = tri_->getSubReg(Reg, VNI->getCopy()->getOperand(2).getImm());
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001352 return Reg;
Lang Hames52c1afc2009-08-10 23:43:28 +00001353 } else if (VNI->getCopy()->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
1354 VNI->getCopy()->getOpcode() == TargetInstrInfo::SUBREG_TO_REG)
1355 return VNI->getCopy()->getOperand(2).getReg();
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001356
Evan Cheng04ee5a12009-01-20 19:12:24 +00001357 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
Lang Hames52c1afc2009-08-10 23:43:28 +00001358 if (tii_->isMoveInstr(*VNI->getCopy(), SrcReg, DstReg, SrcSubReg, DstSubReg))
Evan Chengc8d044e2008-02-15 18:24:29 +00001359 return SrcReg;
Torok Edwinc23197a2009-07-14 16:55:14 +00001360 llvm_unreachable("Unrecognized copy instruction!");
Evan Chengc8d044e2008-02-15 18:24:29 +00001361 return 0;
1362}
Evan Chengf2fbca62007-11-12 06:35:08 +00001363
1364//===----------------------------------------------------------------------===//
1365// Register allocator hooks.
1366//
1367
Evan Chengd70dbb52008-02-22 09:24:50 +00001368/// getReMatImplicitUse - If the remat definition MI has one (for now, we only
1369/// allow one) virtual register operand, then its uses are implicitly using
1370/// the register. Returns the virtual register.
1371unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
1372 MachineInstr *MI) const {
1373 unsigned RegOp = 0;
1374 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1375 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001376 if (!MO.isReg() || !MO.isUse())
Evan Chengd70dbb52008-02-22 09:24:50 +00001377 continue;
1378 unsigned Reg = MO.getReg();
1379 if (Reg == 0 || Reg == li.reg)
1380 continue;
Chris Lattner1873d0c2009-06-27 04:06:41 +00001381
1382 if (TargetRegisterInfo::isPhysicalRegister(Reg) &&
1383 !allocatableRegs_[Reg])
1384 continue;
Evan Chengd70dbb52008-02-22 09:24:50 +00001385 // FIXME: For now, only remat MI with at most one register operand.
1386 assert(!RegOp &&
1387 "Can't rematerialize instruction with multiple register operand!");
1388 RegOp = MO.getReg();
Dan Gohman6d69ba82008-07-25 00:02:30 +00001389#ifndef NDEBUG
Evan Chengd70dbb52008-02-22 09:24:50 +00001390 break;
Dan Gohman6d69ba82008-07-25 00:02:30 +00001391#endif
Evan Chengd70dbb52008-02-22 09:24:50 +00001392 }
1393 return RegOp;
1394}
1395
1396/// isValNoAvailableAt - Return true if the val# of the specified interval
1397/// which reaches the given instruction also reaches the specified use index.
1398bool LiveIntervals::isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
Lang Hames86511252009-09-04 20:41:11 +00001399 MachineInstrIndex UseIdx) const {
1400 MachineInstrIndex Index = getInstructionIndex(MI);
Evan Chengd70dbb52008-02-22 09:24:50 +00001401 VNInfo *ValNo = li.FindLiveRangeContaining(Index)->valno;
1402 LiveInterval::const_iterator UI = li.FindLiveRangeContaining(UseIdx);
1403 return UI != li.end() && UI->valno == ValNo;
1404}
1405
Evan Chengf2fbca62007-11-12 06:35:08 +00001406/// isReMaterializable - Returns true if the definition MI of the specified
1407/// val# of the specified interval is re-materializable.
1408bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +00001409 const VNInfo *ValNo, MachineInstr *MI,
Evan Chengdc377862008-09-30 15:44:16 +00001410 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Cheng5ef3a042007-12-06 00:01:56 +00001411 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001412 if (DisableReMat)
1413 return false;
1414
Evan Cheng20ccded2008-03-15 00:19:36 +00001415 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
Evan Chengd70dbb52008-02-22 09:24:50 +00001416 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +00001417
1418 int FrameIdx = 0;
1419 if (tii_->isLoadFromStackSlot(MI, FrameIdx) &&
Evan Cheng249ded32008-02-23 03:38:34 +00001420 mf_->getFrameInfo()->isImmutableObjectIndex(FrameIdx))
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001421 // FIXME: Let target specific isReallyTriviallyReMaterializable determines
1422 // this but remember this is not safe to fold into a two-address
1423 // instruction.
Evan Cheng249ded32008-02-23 03:38:34 +00001424 // This is a load from fixed stack slot. It can be rematerialized.
Evan Chengdd3465e2008-02-23 01:44:27 +00001425 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +00001426
Dan Gohman6d69ba82008-07-25 00:02:30 +00001427 // If the target-specific rules don't identify an instruction as
1428 // being trivially rematerializable, use some target-independent
1429 // rules.
1430 if (!MI->getDesc().isRematerializable() ||
1431 !tii_->isTriviallyReMaterializable(MI)) {
Dan Gohman4c8f8702008-07-25 15:08:37 +00001432 if (!EnableAggressiveRemat)
1433 return false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001434
Dan Gohman0471a792008-07-28 18:43:51 +00001435 // If the instruction accesses memory but the memoperands have been lost,
Dan Gohman6d69ba82008-07-25 00:02:30 +00001436 // we can't analyze it.
1437 const TargetInstrDesc &TID = MI->getDesc();
1438 if ((TID.mayLoad() || TID.mayStore()) && MI->memoperands_empty())
1439 return false;
1440
1441 // Avoid instructions obviously unsafe for remat.
1442 if (TID.hasUnmodeledSideEffects() || TID.isNotDuplicable())
1443 return false;
1444
1445 // If the instruction accesses memory and the memory could be non-constant,
1446 // assume the instruction is not rematerializable.
Dan Gohmanc76909a2009-09-25 20:36:54 +00001447 for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
1448 E = MI->memoperands_end(); I != E; ++I){
1449 const MachineMemOperand *MMO = *I;
1450 if (MMO->isVolatile() || MMO->isStore())
Dan Gohman6d69ba82008-07-25 00:02:30 +00001451 return false;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001452 const Value *V = MMO->getValue();
Dan Gohman6d69ba82008-07-25 00:02:30 +00001453 if (!V)
1454 return false;
1455 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
1456 if (!PSV->isConstant(mf_->getFrameInfo()))
Evan Chengd70dbb52008-02-22 09:24:50 +00001457 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +00001458 } else if (!aa_->pointsToConstantMemory(V))
1459 return false;
1460 }
1461
1462 // If any of the registers accessed are non-constant, conservatively assume
1463 // the instruction is not rematerializable.
1464 unsigned ImpUse = 0;
1465 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1466 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001467 if (MO.isReg()) {
Dan Gohman6d69ba82008-07-25 00:02:30 +00001468 unsigned Reg = MO.getReg();
1469 if (Reg == 0)
1470 continue;
1471 if (TargetRegisterInfo::isPhysicalRegister(Reg))
1472 return false;
1473
1474 // Only allow one def, and that in the first operand.
1475 if (MO.isDef() != (i == 0))
1476 return false;
1477
1478 // Only allow constant-valued registers.
1479 bool IsLiveIn = mri_->isLiveIn(Reg);
1480 MachineRegisterInfo::def_iterator I = mri_->def_begin(Reg),
1481 E = mri_->def_end();
1482
Dan Gohmanc93ced5b2008-12-08 04:53:23 +00001483 // For the def, it should be the only def of that register.
Dan Gohman6d69ba82008-07-25 00:02:30 +00001484 if (MO.isDef() && (next(I) != E || IsLiveIn))
1485 return false;
1486
1487 if (MO.isUse()) {
1488 // Only allow one use other register use, as that's all the
1489 // remat mechanisms support currently.
1490 if (Reg != li.reg) {
1491 if (ImpUse == 0)
1492 ImpUse = Reg;
1493 else if (Reg != ImpUse)
1494 return false;
1495 }
Dan Gohmanc93ced5b2008-12-08 04:53:23 +00001496 // For the use, there should be only one associated def.
Dan Gohman6d69ba82008-07-25 00:02:30 +00001497 if (I != E && (next(I) != E || IsLiveIn))
1498 return false;
1499 }
Evan Chengd70dbb52008-02-22 09:24:50 +00001500 }
1501 }
Evan Cheng5ef3a042007-12-06 00:01:56 +00001502 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001503
Dan Gohman6d69ba82008-07-25 00:02:30 +00001504 unsigned ImpUse = getReMatImplicitUse(li, MI);
1505 if (ImpUse) {
1506 const LiveInterval &ImpLi = getInterval(ImpUse);
1507 for (MachineRegisterInfo::use_iterator ri = mri_->use_begin(li.reg),
1508 re = mri_->use_end(); ri != re; ++ri) {
1509 MachineInstr *UseMI = &*ri;
Lang Hames86511252009-09-04 20:41:11 +00001510 MachineInstrIndex UseIdx = getInstructionIndex(UseMI);
Dan Gohman6d69ba82008-07-25 00:02:30 +00001511 if (li.FindLiveRangeContaining(UseIdx)->valno != ValNo)
1512 continue;
1513 if (!isValNoAvailableAt(ImpLi, MI, UseIdx))
1514 return false;
1515 }
Evan Chengdc377862008-09-30 15:44:16 +00001516
1517 // If a register operand of the re-materialized instruction is going to
1518 // be spilled next, then it's not legal to re-materialize this instruction.
1519 for (unsigned i = 0, e = SpillIs.size(); i != e; ++i)
1520 if (ImpUse == SpillIs[i]->reg)
1521 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +00001522 }
1523 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +00001524}
1525
Evan Cheng06587492008-10-24 02:05:00 +00001526/// isReMaterializable - Returns true if the definition MI of the specified
1527/// val# of the specified interval is re-materializable.
1528bool LiveIntervals::isReMaterializable(const LiveInterval &li,
1529 const VNInfo *ValNo, MachineInstr *MI) {
1530 SmallVector<LiveInterval*, 4> Dummy1;
1531 bool Dummy2;
1532 return isReMaterializable(li, ValNo, MI, Dummy1, Dummy2);
1533}
1534
Evan Cheng5ef3a042007-12-06 00:01:56 +00001535/// isReMaterializable - Returns true if every definition of MI of every
1536/// val# of the specified interval is re-materializable.
Evan Chengdc377862008-09-30 15:44:16 +00001537bool LiveIntervals::isReMaterializable(const LiveInterval &li,
1538 SmallVectorImpl<LiveInterval*> &SpillIs,
1539 bool &isLoad) {
Evan Cheng5ef3a042007-12-06 00:01:56 +00001540 isLoad = false;
1541 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1542 i != e; ++i) {
1543 const VNInfo *VNI = *i;
Lang Hames857c4e02009-06-17 21:01:20 +00001544 if (VNI->isUnused())
Evan Cheng5ef3a042007-12-06 00:01:56 +00001545 continue; // Dead val#.
1546 // Is the def for the val# rematerializable?
Lang Hames857c4e02009-06-17 21:01:20 +00001547 if (!VNI->isDefAccurate())
Evan Cheng5ef3a042007-12-06 00:01:56 +00001548 return false;
Lang Hames857c4e02009-06-17 21:01:20 +00001549 MachineInstr *ReMatDefMI = getInstructionFromIndex(VNI->def);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001550 bool DefIsLoad = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001551 if (!ReMatDefMI ||
Evan Chengdc377862008-09-30 15:44:16 +00001552 !isReMaterializable(li, VNI, ReMatDefMI, SpillIs, DefIsLoad))
Evan Cheng5ef3a042007-12-06 00:01:56 +00001553 return false;
1554 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +00001555 }
1556 return true;
1557}
1558
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001559/// FilterFoldedOps - Filter out two-address use operands. Return
1560/// true if it finds any issue with the operands that ought to prevent
1561/// folding.
1562static bool FilterFoldedOps(MachineInstr *MI,
1563 SmallVector<unsigned, 2> &Ops,
1564 unsigned &MRInfo,
1565 SmallVector<unsigned, 2> &FoldOps) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001566 MRInfo = 0;
Evan Chengaee4af62007-12-02 08:30:39 +00001567 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
1568 unsigned OpIdx = Ops[i];
Evan Chengd70dbb52008-02-22 09:24:50 +00001569 MachineOperand &MO = MI->getOperand(OpIdx);
Evan Chengaee4af62007-12-02 08:30:39 +00001570 // FIXME: fold subreg use.
Evan Chengd70dbb52008-02-22 09:24:50 +00001571 if (MO.getSubReg())
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001572 return true;
Evan Chengd70dbb52008-02-22 09:24:50 +00001573 if (MO.isDef())
Evan Chengaee4af62007-12-02 08:30:39 +00001574 MRInfo |= (unsigned)VirtRegMap::isMod;
1575 else {
1576 // Filter out two-address use operand(s).
Evan Chenga24752f2009-03-19 20:30:06 +00001577 if (MI->isRegTiedToDefOperand(OpIdx)) {
Evan Chengaee4af62007-12-02 08:30:39 +00001578 MRInfo = VirtRegMap::isModRef;
1579 continue;
1580 }
1581 MRInfo |= (unsigned)VirtRegMap::isRef;
1582 }
1583 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +00001584 }
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001585 return false;
1586}
1587
1588
1589/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
1590/// slot / to reg or any rematerialized load into ith operand of specified
1591/// MI. If it is successul, MI is updated with the newly created MI and
1592/// returns true.
1593bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
1594 VirtRegMap &vrm, MachineInstr *DefMI,
Lang Hames86511252009-09-04 20:41:11 +00001595 MachineInstrIndex InstrIdx,
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001596 SmallVector<unsigned, 2> &Ops,
1597 bool isSS, int Slot, unsigned Reg) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001598 // If it is an implicit def instruction, just delete it.
Evan Cheng20ccded2008-03-15 00:19:36 +00001599 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001600 RemoveMachineInstrFromMaps(MI);
1601 vrm.RemoveMachineInstrFromMaps(MI);
1602 MI->eraseFromParent();
1603 ++numFolds;
1604 return true;
1605 }
1606
1607 // Filter the list of operand indexes that are to be folded. Abort if
1608 // any operand will prevent folding.
1609 unsigned MRInfo = 0;
1610 SmallVector<unsigned, 2> FoldOps;
1611 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1612 return false;
Evan Chenge62f97c2007-12-01 02:07:52 +00001613
Evan Cheng427f4c12008-03-31 23:19:51 +00001614 // The only time it's safe to fold into a two address instruction is when
1615 // it's folding reload and spill from / into a spill stack slot.
1616 if (DefMI && (MRInfo & VirtRegMap::isMod))
Evan Cheng249ded32008-02-23 03:38:34 +00001617 return false;
1618
Evan Chengf2f8c2a2008-02-08 22:05:27 +00001619 MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(*mf_, MI, FoldOps, Slot)
1620 : tii_->foldMemoryOperand(*mf_, MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001621 if (fmi) {
Evan Chengd3653122008-02-27 03:04:06 +00001622 // Remember this instruction uses the spill slot.
1623 if (isSS) vrm.addSpillSlotUse(Slot, fmi);
1624
Evan Chengf2fbca62007-11-12 06:35:08 +00001625 // Attempt to fold the memory reference into the instruction. If
1626 // we can do this, we don't need to insert spill code.
Evan Chengf2fbca62007-11-12 06:35:08 +00001627 MachineBasicBlock &MBB = *MI->getParent();
Evan Cheng84802932008-01-10 08:24:38 +00001628 if (isSS && !mf_->getFrameInfo()->isImmutableObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +00001629 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +00001630 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001631 vrm.transferRestorePts(MI, fmi);
Evan Chengc1f53c72008-03-11 21:34:46 +00001632 vrm.transferEmergencySpills(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +00001633 mi2iMap_.erase(MI);
Lang Hames86511252009-09-04 20:41:11 +00001634 i2miMap_[InstrIdx.getVecIndex()] = fmi;
Evan Chengcddbb832007-11-30 21:23:43 +00001635 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +00001636 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001637 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +00001638 return true;
1639 }
1640 return false;
1641}
1642
Evan Cheng018f9b02007-12-05 03:22:34 +00001643/// canFoldMemoryOperand - Returns true if the specified load / store
1644/// folding is possible.
1645bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001646 SmallVector<unsigned, 2> &Ops,
Evan Cheng3c75ba82008-04-01 21:37:32 +00001647 bool ReMat) const {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001648 // Filter the list of operand indexes that are to be folded. Abort if
1649 // any operand will prevent folding.
1650 unsigned MRInfo = 0;
Evan Cheng018f9b02007-12-05 03:22:34 +00001651 SmallVector<unsigned, 2> FoldOps;
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001652 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1653 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001654
Evan Cheng3c75ba82008-04-01 21:37:32 +00001655 // It's only legal to remat for a use, not a def.
1656 if (ReMat && (MRInfo & VirtRegMap::isMod))
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001657 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001658
Evan Chengd70dbb52008-02-22 09:24:50 +00001659 return tii_->canFoldMemoryOperand(MI, FoldOps);
1660}
1661
Evan Cheng81a03822007-11-17 00:40:40 +00001662bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
1663 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
1664 for (LiveInterval::Ranges::const_iterator
1665 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1666 std::vector<IdxMBBPair>::const_iterator II =
1667 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
1668 if (II == Idx2MBBMap.end())
1669 continue;
1670 if (I->end > II->first) // crossing a MBB.
1671 return false;
1672 MBBs.insert(II->second);
1673 if (MBBs.size() > 1)
1674 return false;
1675 }
1676 return true;
1677}
1678
Evan Chengd70dbb52008-02-22 09:24:50 +00001679/// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
1680/// interval on to-be re-materialized operands of MI) with new register.
1681void LiveIntervals::rewriteImplicitOps(const LiveInterval &li,
1682 MachineInstr *MI, unsigned NewVReg,
1683 VirtRegMap &vrm) {
1684 // There is an implicit use. That means one of the other operand is
1685 // being remat'ed and the remat'ed instruction has li.reg as an
1686 // use operand. Make sure we rewrite that as well.
1687 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1688 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001689 if (!MO.isReg())
Evan Chengd70dbb52008-02-22 09:24:50 +00001690 continue;
1691 unsigned Reg = MO.getReg();
1692 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
1693 continue;
1694 if (!vrm.isReMaterialized(Reg))
1695 continue;
1696 MachineInstr *ReMatMI = vrm.getReMaterializedMI(Reg);
Evan Cheng6130f662008-03-05 00:59:57 +00001697 MachineOperand *UseMO = ReMatMI->findRegisterUseOperand(li.reg);
1698 if (UseMO)
1699 UseMO->setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001700 }
1701}
1702
Evan Chengf2fbca62007-11-12 06:35:08 +00001703/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
1704/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +00001705bool LiveIntervals::
Evan Chengd70dbb52008-02-22 09:24:50 +00001706rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
Lang Hames86511252009-09-04 20:41:11 +00001707 bool TrySplit, MachineInstrIndex index, MachineInstrIndex end,
1708 MachineInstr *MI,
Evan Cheng81a03822007-11-17 00:40:40 +00001709 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001710 unsigned Slot, int LdSlot,
1711 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001712 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001713 const TargetRegisterClass* rc,
1714 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001715 const MachineLoopInfo *loopInfo,
Evan Cheng313d4b82008-02-23 00:33:04 +00001716 unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
Owen Anderson28998312008-08-13 22:28:50 +00001717 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Chengc781a242009-05-03 18:32:42 +00001718 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001719 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +00001720 RestartInstruction:
1721 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1722 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001723 if (!mop.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001724 continue;
1725 unsigned Reg = mop.getReg();
1726 unsigned RegI = Reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001727 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
Evan Chengf2fbca62007-11-12 06:35:08 +00001728 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +00001729 if (Reg != li.reg)
1730 continue;
1731
1732 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +00001733 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +00001734 int FoldSlot = Slot;
1735 if (DefIsReMat) {
1736 // If this is the rematerializable definition MI itself and
1737 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +00001738 if (MI == ReMatOrigDefMI && CanDelete) {
Bill Wendling8e6179f2009-08-22 20:18:03 +00001739 DEBUG(errs() << "\t\t\t\tErasing re-materlizable def: "
1740 << MI << '\n');
Evan Chengf2fbca62007-11-12 06:35:08 +00001741 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +00001742 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001743 MI->eraseFromParent();
1744 break;
1745 }
1746
1747 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001748 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +00001749 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +00001750 if (isLoad) {
1751 // Try fold loads (from stack slot, constant pool, etc.) into uses.
1752 FoldSS = isLoadSS;
1753 FoldSlot = LdSlot;
1754 }
1755 }
1756
Evan Chengf2fbca62007-11-12 06:35:08 +00001757 // Scan all of the operands of this instruction rewriting operands
1758 // to use NewVReg instead of li.reg as appropriate. We do this for
1759 // two reasons:
1760 //
1761 // 1. If the instr reads the same spilled vreg multiple times, we
1762 // want to reuse the NewVReg.
1763 // 2. If the instr is a two-addr instruction, we are required to
1764 // keep the src/dst regs pinned.
1765 //
1766 // Keep track of whether we replace a use and/or def so that we can
1767 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +00001768
Evan Cheng81a03822007-11-17 00:40:40 +00001769 HasUse = mop.isUse();
1770 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +00001771 SmallVector<unsigned, 2> Ops;
1772 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +00001773 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +00001774 const MachineOperand &MOj = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001775 if (!MOj.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001776 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001777 unsigned RegJ = MOj.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001778 if (RegJ == 0 || TargetRegisterInfo::isPhysicalRegister(RegJ))
Evan Chengf2fbca62007-11-12 06:35:08 +00001779 continue;
1780 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +00001781 Ops.push_back(j);
Evan Chengd129d732009-07-17 19:43:40 +00001782 if (!MOj.isUndef()) {
1783 HasUse |= MOj.isUse();
1784 HasDef |= MOj.isDef();
1785 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001786 }
1787 }
1788
David Greene26b86a02008-10-27 17:38:59 +00001789 // Create a new virtual register for the spill interval.
1790 // Create the new register now so we can map the fold instruction
1791 // to the new register so when it is unfolded we get the correct
1792 // answer.
1793 bool CreatedNewVReg = false;
1794 if (NewVReg == 0) {
1795 NewVReg = mri_->createVirtualRegister(rc);
1796 vrm.grow();
1797 CreatedNewVReg = true;
1798 }
1799
Evan Cheng9c3c2212008-06-06 07:54:39 +00001800 if (!TryFold)
1801 CanFold = false;
1802 else {
Evan Cheng018f9b02007-12-05 03:22:34 +00001803 // Do not fold load / store here if we are splitting. We'll find an
1804 // optimal point to insert a load / store later.
1805 if (!TrySplit) {
1806 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
David Greene26b86a02008-10-27 17:38:59 +00001807 Ops, FoldSS, FoldSlot, NewVReg)) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001808 // Folding the load/store can completely change the instruction in
1809 // unpredictable ways, rescan it from the beginning.
David Greene26b86a02008-10-27 17:38:59 +00001810
1811 if (FoldSS) {
1812 // We need to give the new vreg the same stack slot as the
1813 // spilled interval.
1814 vrm.assignVirt2StackSlot(NewVReg, FoldSlot);
1815 }
1816
Evan Cheng018f9b02007-12-05 03:22:34 +00001817 HasUse = false;
1818 HasDef = false;
1819 CanFold = false;
Evan Chengc781a242009-05-03 18:32:42 +00001820 if (isNotInMIMap(MI))
Evan Cheng7e073ba2008-04-09 20:57:25 +00001821 break;
Evan Cheng018f9b02007-12-05 03:22:34 +00001822 goto RestartInstruction;
1823 }
1824 } else {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001825 // We'll try to fold it later if it's profitable.
Evan Cheng3c75ba82008-04-01 21:37:32 +00001826 CanFold = canFoldMemoryOperand(MI, Ops, DefIsReMat);
Evan Cheng018f9b02007-12-05 03:22:34 +00001827 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001828 }
Evan Chengcddbb832007-11-30 21:23:43 +00001829
Evan Chengcddbb832007-11-30 21:23:43 +00001830 mop.setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001831 if (mop.isImplicit())
1832 rewriteImplicitOps(li, MI, NewVReg, vrm);
Evan Chengcddbb832007-11-30 21:23:43 +00001833
1834 // Reuse NewVReg for other reads.
Evan Chengd70dbb52008-02-22 09:24:50 +00001835 for (unsigned j = 0, e = Ops.size(); j != e; ++j) {
1836 MachineOperand &mopj = MI->getOperand(Ops[j]);
1837 mopj.setReg(NewVReg);
1838 if (mopj.isImplicit())
1839 rewriteImplicitOps(li, MI, NewVReg, vrm);
1840 }
Evan Chengcddbb832007-11-30 21:23:43 +00001841
Evan Cheng81a03822007-11-17 00:40:40 +00001842 if (CreatedNewVReg) {
1843 if (DefIsReMat) {
Evan Cheng37844532009-07-16 09:20:10 +00001844 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI);
Evan Chengd70dbb52008-02-22 09:24:50 +00001845 if (ReMatIds[VNI->id] == VirtRegMap::MAX_STACK_SLOT) {
Evan Cheng81a03822007-11-17 00:40:40 +00001846 // Each valnum may have its own remat id.
Evan Chengd70dbb52008-02-22 09:24:50 +00001847 ReMatIds[VNI->id] = vrm.assignVirtReMatId(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001848 } else {
Evan Chengd70dbb52008-02-22 09:24:50 +00001849 vrm.assignVirtReMatId(NewVReg, ReMatIds[VNI->id]);
Evan Cheng81a03822007-11-17 00:40:40 +00001850 }
1851 if (!CanDelete || (HasUse && HasDef)) {
1852 // If this is a two-addr instruction then its use operands are
1853 // rematerializable but its def is not. It should be assigned a
1854 // stack slot.
1855 vrm.assignVirt2StackSlot(NewVReg, Slot);
1856 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001857 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +00001858 vrm.assignVirt2StackSlot(NewVReg, Slot);
1859 }
Evan Chengcb3c3302007-11-29 23:02:50 +00001860 } else if (HasUse && HasDef &&
1861 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
1862 // If this interval hasn't been assigned a stack slot (because earlier
1863 // def is a deleted remat def), do it now.
1864 assert(Slot != VirtRegMap::NO_STACK_SLOT);
1865 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001866 }
1867
Evan Cheng313d4b82008-02-23 00:33:04 +00001868 // Re-matting an instruction with virtual register use. Add the
1869 // register as an implicit use on the use MI.
1870 if (DefIsReMat && ImpUse)
1871 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
1872
Evan Cheng5b69eba2009-04-21 22:46:52 +00001873 // Create a new register interval for this spill / remat.
Evan Chengf2fbca62007-11-12 06:35:08 +00001874 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001875 if (CreatedNewVReg) {
1876 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001877 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +00001878 if (TrySplit)
1879 vrm.setIsSplitFromReg(NewVReg, li.reg);
1880 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001881
1882 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +00001883 if (CreatedNewVReg) {
Lang Hames35f291d2009-09-12 03:34:03 +00001884 LiveRange LR(getLoadIndex(index), getNextSlot(getUseIndex(index)),
Lang Hames86511252009-09-04 20:41:11 +00001885 nI.getNextValue(MachineInstrIndex(), 0, false,
1886 VNInfoAllocator));
Bill Wendling8e6179f2009-08-22 20:18:03 +00001887 DEBUG(errs() << " +" << LR);
Evan Cheng81a03822007-11-17 00:40:40 +00001888 nI.addRange(LR);
1889 } else {
1890 // Extend the split live interval to this def / use.
Lang Hames35f291d2009-09-12 03:34:03 +00001891 MachineInstrIndex End = getNextSlot(getUseIndex(index));
Evan Cheng81a03822007-11-17 00:40:40 +00001892 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
1893 nI.getValNumInfo(nI.getNumValNums()-1));
Bill Wendling8e6179f2009-08-22 20:18:03 +00001894 DEBUG(errs() << " +" << LR);
Evan Cheng81a03822007-11-17 00:40:40 +00001895 nI.addRange(LR);
1896 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001897 }
1898 if (HasDef) {
1899 LiveRange LR(getDefIndex(index), getStoreIndex(index),
Lang Hames86511252009-09-04 20:41:11 +00001900 nI.getNextValue(MachineInstrIndex(), 0, false,
1901 VNInfoAllocator));
Bill Wendling8e6179f2009-08-22 20:18:03 +00001902 DEBUG(errs() << " +" << LR);
Evan Chengf2fbca62007-11-12 06:35:08 +00001903 nI.addRange(LR);
1904 }
Evan Cheng81a03822007-11-17 00:40:40 +00001905
Bill Wendling8e6179f2009-08-22 20:18:03 +00001906 DEBUG({
1907 errs() << "\t\t\t\tAdded new interval: ";
1908 nI.print(errs(), tri_);
1909 errs() << '\n';
1910 });
Evan Chengf2fbca62007-11-12 06:35:08 +00001911 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001912 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +00001913}
Evan Cheng81a03822007-11-17 00:40:40 +00001914bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001915 const VNInfo *VNI,
Lang Hames86511252009-09-04 20:41:11 +00001916 MachineBasicBlock *MBB,
1917 MachineInstrIndex Idx) const {
1918 MachineInstrIndex End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001919 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
Lang Hames86511252009-09-04 20:41:11 +00001920 if (VNI->kills[j].isPHIIndex())
Lang Hamesffd13262009-07-09 03:57:02 +00001921 continue;
1922
Lang Hames86511252009-09-04 20:41:11 +00001923 MachineInstrIndex KillIdx = VNI->kills[j];
Evan Cheng0cbb1162007-11-29 01:06:25 +00001924 if (KillIdx > Idx && KillIdx < End)
1925 return true;
Evan Cheng81a03822007-11-17 00:40:40 +00001926 }
1927 return false;
1928}
1929
Evan Cheng063284c2008-02-21 00:34:19 +00001930/// RewriteInfo - Keep track of machine instrs that will be rewritten
1931/// during spilling.
Dan Gohman844731a2008-05-13 00:00:25 +00001932namespace {
1933 struct RewriteInfo {
Lang Hames86511252009-09-04 20:41:11 +00001934 MachineInstrIndex Index;
Dan Gohman844731a2008-05-13 00:00:25 +00001935 MachineInstr *MI;
1936 bool HasUse;
1937 bool HasDef;
Lang Hames86511252009-09-04 20:41:11 +00001938 RewriteInfo(MachineInstrIndex i, MachineInstr *mi, bool u, bool d)
Dan Gohman844731a2008-05-13 00:00:25 +00001939 : Index(i), MI(mi), HasUse(u), HasDef(d) {}
1940 };
Evan Cheng063284c2008-02-21 00:34:19 +00001941
Dan Gohman844731a2008-05-13 00:00:25 +00001942 struct RewriteInfoCompare {
1943 bool operator()(const RewriteInfo &LHS, const RewriteInfo &RHS) const {
1944 return LHS.Index < RHS.Index;
1945 }
1946 };
1947}
Evan Cheng063284c2008-02-21 00:34:19 +00001948
Evan Chengf2fbca62007-11-12 06:35:08 +00001949void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001950rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +00001951 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +00001952 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001953 unsigned Slot, int LdSlot,
1954 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001955 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001956 const TargetRegisterClass* rc,
1957 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001958 const MachineLoopInfo *loopInfo,
Evan Cheng81a03822007-11-17 00:40:40 +00001959 BitVector &SpillMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001960 DenseMap<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001961 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001962 DenseMap<unsigned, std::vector<SRInfo> > &RestoreIdxes,
1963 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Chengc781a242009-05-03 18:32:42 +00001964 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001965 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001966 unsigned NewVReg = 0;
Lang Hames86511252009-09-04 20:41:11 +00001967 MachineInstrIndex start = getBaseIndex(I->start);
Lang Hames35f291d2009-09-12 03:34:03 +00001968 MachineInstrIndex end = getNextIndex(getBaseIndex(getPrevSlot(I->end)));
Evan Chengf2fbca62007-11-12 06:35:08 +00001969
Evan Cheng063284c2008-02-21 00:34:19 +00001970 // First collect all the def / use in this live range that will be rewritten.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001971 // Make sure they are sorted according to instruction index.
Evan Cheng063284c2008-02-21 00:34:19 +00001972 std::vector<RewriteInfo> RewriteMIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001973 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1974 re = mri_->reg_end(); ri != re; ) {
Evan Cheng419852c2008-04-03 16:39:43 +00001975 MachineInstr *MI = &*ri;
Evan Cheng063284c2008-02-21 00:34:19 +00001976 MachineOperand &O = ri.getOperand();
1977 ++ri;
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001978 assert(!O.isImplicit() && "Spilling register that's used as implicit use?");
Lang Hames86511252009-09-04 20:41:11 +00001979 MachineInstrIndex index = getInstructionIndex(MI);
Evan Cheng063284c2008-02-21 00:34:19 +00001980 if (index < start || index >= end)
1981 continue;
Evan Chengd129d732009-07-17 19:43:40 +00001982
1983 if (O.isUndef())
Evan Cheng79a796c2008-07-12 01:56:02 +00001984 // Must be defined by an implicit def. It should not be spilled. Note,
1985 // this is for correctness reason. e.g.
1986 // 8 %reg1024<def> = IMPLICIT_DEF
1987 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1988 // The live range [12, 14) are not part of the r1024 live interval since
1989 // it's defined by an implicit def. It will not conflicts with live
1990 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001991 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001992 // the INSERT_SUBREG and both target registers that would overlap.
1993 continue;
Evan Cheng063284c2008-02-21 00:34:19 +00001994 RewriteMIs.push_back(RewriteInfo(index, MI, O.isUse(), O.isDef()));
1995 }
1996 std::sort(RewriteMIs.begin(), RewriteMIs.end(), RewriteInfoCompare());
1997
Evan Cheng313d4b82008-02-23 00:33:04 +00001998 unsigned ImpUse = DefIsReMat ? getReMatImplicitUse(li, ReMatDefMI) : 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001999 // Now rewrite the defs and uses.
2000 for (unsigned i = 0, e = RewriteMIs.size(); i != e; ) {
2001 RewriteInfo &rwi = RewriteMIs[i];
2002 ++i;
Lang Hames86511252009-09-04 20:41:11 +00002003 MachineInstrIndex index = rwi.Index;
Evan Cheng063284c2008-02-21 00:34:19 +00002004 bool MIHasUse = rwi.HasUse;
2005 bool MIHasDef = rwi.HasDef;
2006 MachineInstr *MI = rwi.MI;
2007 // If MI def and/or use the same register multiple times, then there
2008 // are multiple entries.
Evan Cheng313d4b82008-02-23 00:33:04 +00002009 unsigned NumUses = MIHasUse;
Evan Cheng063284c2008-02-21 00:34:19 +00002010 while (i != e && RewriteMIs[i].MI == MI) {
2011 assert(RewriteMIs[i].Index == index);
Evan Cheng313d4b82008-02-23 00:33:04 +00002012 bool isUse = RewriteMIs[i].HasUse;
2013 if (isUse) ++NumUses;
2014 MIHasUse |= isUse;
Evan Cheng063284c2008-02-21 00:34:19 +00002015 MIHasDef |= RewriteMIs[i].HasDef;
2016 ++i;
2017 }
Evan Cheng81a03822007-11-17 00:40:40 +00002018 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng313d4b82008-02-23 00:33:04 +00002019
Evan Cheng0a891ed2008-05-23 23:00:04 +00002020 if (ImpUse && MI != ReMatDefMI) {
Evan Cheng313d4b82008-02-23 00:33:04 +00002021 // Re-matting an instruction with virtual register use. Update the
Evan Cheng24d2f8a2008-03-31 07:53:30 +00002022 // register interval's spill weight to HUGE_VALF to prevent it from
2023 // being spilled.
Evan Cheng313d4b82008-02-23 00:33:04 +00002024 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00002025 ImpLi.weight = HUGE_VALF;
Evan Cheng313d4b82008-02-23 00:33:04 +00002026 }
2027
Evan Cheng063284c2008-02-21 00:34:19 +00002028 unsigned MBBId = MBB->getNumber();
Evan Cheng018f9b02007-12-05 03:22:34 +00002029 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +00002030 if (TrySplit) {
Owen Anderson28998312008-08-13 22:28:50 +00002031 DenseMap<unsigned,unsigned>::iterator NVI = MBBVRegsMap.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00002032 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +00002033 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +00002034 // One common case:
2035 // x = use
2036 // ...
2037 // ...
2038 // def = ...
2039 // = use
2040 // It's better to start a new interval to avoid artifically
2041 // extend the new interval.
Evan Cheng1953d0c2007-11-29 10:12:14 +00002042 if (MIHasDef && !MIHasUse) {
2043 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00002044 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00002045 }
2046 }
Evan Chengcada2452007-11-28 01:28:46 +00002047 }
Evan Cheng018f9b02007-12-05 03:22:34 +00002048
2049 bool IsNew = ThisVReg == 0;
2050 if (IsNew) {
2051 // This ends the previous live interval. If all of its def / use
2052 // can be folded, give it a low spill weight.
2053 if (NewVReg && TrySplit && AllCanFold) {
2054 LiveInterval &nI = getOrCreateInterval(NewVReg);
2055 nI.weight /= 10.0F;
2056 }
2057 AllCanFold = true;
2058 }
2059 NewVReg = ThisVReg;
2060
Evan Cheng81a03822007-11-17 00:40:40 +00002061 bool HasDef = false;
2062 bool HasUse = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00002063 bool CanFold = rewriteInstructionForSpills(li, I->valno, TrySplit,
Evan Cheng9c3c2212008-06-06 07:54:39 +00002064 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
2065 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
2066 CanDelete, vrm, rc, ReMatIds, loopInfo, NewVReg,
Evan Chengc781a242009-05-03 18:32:42 +00002067 ImpUse, HasDef, HasUse, MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002068 if (!HasDef && !HasUse)
2069 continue;
2070
Evan Cheng018f9b02007-12-05 03:22:34 +00002071 AllCanFold &= CanFold;
2072
Evan Cheng81a03822007-11-17 00:40:40 +00002073 // Update weight of spill interval.
2074 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00002075 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00002076 // The spill weight is now infinity as it cannot be spilled again.
2077 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002078 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00002079 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002080
2081 // Keep track of the last def and first use in each MBB.
Evan Cheng0cbb1162007-11-29 01:06:25 +00002082 if (HasDef) {
2083 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00002084 bool HasKill = false;
2085 if (!HasUse)
2086 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
2087 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00002088 // If this is a two-address code, then this index starts a new VNInfo.
Lang Hames86511252009-09-04 20:41:11 +00002089 const VNInfo *VNI = li.findDefinedVNInfoForRegInt(getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00002090 if (VNI)
2091 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
2092 }
Owen Anderson28998312008-08-13 22:28:50 +00002093 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Chenge3110d02007-12-01 04:42:39 +00002094 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002095 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00002096 if (SII == SpillIdxes.end()) {
2097 std::vector<SRInfo> S;
2098 S.push_back(SRInfo(index, NewVReg, true));
2099 SpillIdxes.insert(std::make_pair(MBBId, S));
2100 } else if (SII->second.back().vreg != NewVReg) {
2101 SII->second.push_back(SRInfo(index, NewVReg, true));
Lang Hames86511252009-09-04 20:41:11 +00002102 } else if (index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00002103 // If there is an earlier def and this is a two-address
2104 // instruction, then it's not possible to fold the store (which
2105 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00002106 SRInfo &Info = SII->second.back();
2107 Info.index = index;
2108 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002109 }
2110 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00002111 } else if (SII != SpillIdxes.end() &&
2112 SII->second.back().vreg == NewVReg &&
Lang Hames86511252009-09-04 20:41:11 +00002113 index > SII->second.back().index) {
Evan Chenge3110d02007-12-01 04:42:39 +00002114 // There is an earlier def that's not killed (must be two-address).
2115 // The spill is no longer needed.
2116 SII->second.pop_back();
2117 if (SII->second.empty()) {
2118 SpillIdxes.erase(MBBId);
2119 SpillMBBs.reset(MBBId);
2120 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002121 }
2122 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002123 }
2124
2125 if (HasUse) {
Owen Anderson28998312008-08-13 22:28:50 +00002126 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00002127 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00002128 if (SII != SpillIdxes.end() &&
2129 SII->second.back().vreg == NewVReg &&
Lang Hames86511252009-09-04 20:41:11 +00002130 index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00002131 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00002132 SII->second.back().canFold = false;
Owen Anderson28998312008-08-13 22:28:50 +00002133 DenseMap<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00002134 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00002135 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00002136 // If we are splitting live intervals, only fold if it's the first
2137 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00002138 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002139 else if (IsNew) {
2140 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00002141 if (RII == RestoreIdxes.end()) {
2142 std::vector<SRInfo> Infos;
2143 Infos.push_back(SRInfo(index, NewVReg, true));
2144 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
2145 } else {
2146 RII->second.push_back(SRInfo(index, NewVReg, true));
2147 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002148 RestoreMBBs.set(MBBId);
2149 }
2150 }
2151
2152 // Update spill weight.
Evan Cheng22f07ff2007-12-11 02:09:15 +00002153 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Chengc3417602008-06-21 06:45:54 +00002154 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00002155 }
Evan Cheng018f9b02007-12-05 03:22:34 +00002156
2157 if (NewVReg && TrySplit && AllCanFold) {
2158 // If all of its def / use can be folded, give it a low spill weight.
2159 LiveInterval &nI = getOrCreateInterval(NewVReg);
2160 nI.weight /= 10.0F;
2161 }
Evan Chengf2fbca62007-11-12 06:35:08 +00002162}
2163
Lang Hames86511252009-09-04 20:41:11 +00002164bool LiveIntervals::alsoFoldARestore(int Id, MachineInstrIndex index,
2165 unsigned vr, BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00002166 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00002167 if (!RestoreMBBs[Id])
2168 return false;
2169 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
2170 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
2171 if (Restores[i].index == index &&
2172 Restores[i].vreg == vr &&
2173 Restores[i].canFold)
2174 return true;
2175 return false;
2176}
2177
Lang Hames86511252009-09-04 20:41:11 +00002178void LiveIntervals::eraseRestoreInfo(int Id, MachineInstrIndex index,
2179 unsigned vr, BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00002180 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00002181 if (!RestoreMBBs[Id])
2182 return;
2183 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
2184 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
2185 if (Restores[i].index == index && Restores[i].vreg)
Lang Hames86511252009-09-04 20:41:11 +00002186 Restores[i].index = MachineInstrIndex();
Evan Cheng1953d0c2007-11-29 10:12:14 +00002187}
Evan Cheng81a03822007-11-17 00:40:40 +00002188
Evan Cheng4cce6b42008-04-11 17:53:36 +00002189/// handleSpilledImpDefs - Remove IMPLICIT_DEF instructions which are being
2190/// spilled and create empty intervals for their uses.
2191void
2192LiveIntervals::handleSpilledImpDefs(const LiveInterval &li, VirtRegMap &vrm,
2193 const TargetRegisterClass* rc,
2194 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng419852c2008-04-03 16:39:43 +00002195 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
2196 re = mri_->reg_end(); ri != re; ) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00002197 MachineOperand &O = ri.getOperand();
Evan Cheng419852c2008-04-03 16:39:43 +00002198 MachineInstr *MI = &*ri;
2199 ++ri;
Evan Cheng4cce6b42008-04-11 17:53:36 +00002200 if (O.isDef()) {
2201 assert(MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF &&
2202 "Register def was not rewritten?");
2203 RemoveMachineInstrFromMaps(MI);
2204 vrm.RemoveMachineInstrFromMaps(MI);
2205 MI->eraseFromParent();
2206 } else {
2207 // This must be an use of an implicit_def so it's not part of the live
2208 // interval. Create a new empty live interval for it.
2209 // FIXME: Can we simply erase some of the instructions? e.g. Stores?
2210 unsigned NewVReg = mri_->createVirtualRegister(rc);
2211 vrm.grow();
2212 vrm.setIsImplicitlyDefined(NewVReg);
2213 NewLIs.push_back(&getOrCreateInterval(NewVReg));
2214 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
2215 MachineOperand &MO = MI->getOperand(i);
Evan Cheng4784f1f2009-06-30 08:49:04 +00002216 if (MO.isReg() && MO.getReg() == li.reg) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00002217 MO.setReg(NewVReg);
Evan Cheng4784f1f2009-06-30 08:49:04 +00002218 MO.setIsUndef();
Evan Cheng4784f1f2009-06-30 08:49:04 +00002219 }
Evan Cheng4cce6b42008-04-11 17:53:36 +00002220 }
2221 }
Evan Cheng419852c2008-04-03 16:39:43 +00002222 }
2223}
2224
Evan Chengf2fbca62007-11-12 06:35:08 +00002225std::vector<LiveInterval*> LiveIntervals::
Owen Andersond6664312008-08-18 18:05:32 +00002226addIntervalsForSpillsFast(const LiveInterval &li,
2227 const MachineLoopInfo *loopInfo,
Evan Chengc781a242009-05-03 18:32:42 +00002228 VirtRegMap &vrm) {
Owen Anderson17197312008-08-18 23:41:04 +00002229 unsigned slot = vrm.assignVirt2StackSlot(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00002230
2231 std::vector<LiveInterval*> added;
2232
2233 assert(li.weight != HUGE_VALF &&
2234 "attempt to spill already spilled interval!");
2235
Bill Wendling8e6179f2009-08-22 20:18:03 +00002236 DEBUG({
2237 errs() << "\t\t\t\tadding intervals for spills for interval: ";
2238 li.dump();
2239 errs() << '\n';
2240 });
Owen Andersond6664312008-08-18 18:05:32 +00002241
2242 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
2243
Owen Andersona41e47a2008-08-19 22:12:11 +00002244 MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg);
2245 while (RI != mri_->reg_end()) {
2246 MachineInstr* MI = &*RI;
2247
2248 SmallVector<unsigned, 2> Indices;
2249 bool HasUse = false;
2250 bool HasDef = false;
2251
2252 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
2253 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00002254 if (!mop.isReg() || mop.getReg() != li.reg) continue;
Owen Andersona41e47a2008-08-19 22:12:11 +00002255
2256 HasUse |= MI->getOperand(i).isUse();
2257 HasDef |= MI->getOperand(i).isDef();
2258
2259 Indices.push_back(i);
2260 }
2261
2262 if (!tryFoldMemoryOperand(MI, vrm, NULL, getInstructionIndex(MI),
2263 Indices, true, slot, li.reg)) {
2264 unsigned NewVReg = mri_->createVirtualRegister(rc);
Owen Anderson9a032932008-08-18 21:20:32 +00002265 vrm.grow();
Owen Anderson17197312008-08-18 23:41:04 +00002266 vrm.assignVirt2StackSlot(NewVReg, slot);
2267
Owen Andersona41e47a2008-08-19 22:12:11 +00002268 // create a new register for this spill
2269 LiveInterval &nI = getOrCreateInterval(NewVReg);
Owen Andersond6664312008-08-18 18:05:32 +00002270
Owen Andersona41e47a2008-08-19 22:12:11 +00002271 // the spill weight is now infinity as it
2272 // cannot be spilled again
2273 nI.weight = HUGE_VALF;
2274
2275 // Rewrite register operands to use the new vreg.
2276 for (SmallVectorImpl<unsigned>::iterator I = Indices.begin(),
2277 E = Indices.end(); I != E; ++I) {
2278 MI->getOperand(*I).setReg(NewVReg);
2279
2280 if (MI->getOperand(*I).isUse())
2281 MI->getOperand(*I).setIsKill(true);
2282 }
2283
2284 // Fill in the new live interval.
Lang Hames86511252009-09-04 20:41:11 +00002285 MachineInstrIndex index = getInstructionIndex(MI);
Owen Andersona41e47a2008-08-19 22:12:11 +00002286 if (HasUse) {
2287 LiveRange LR(getLoadIndex(index), getUseIndex(index),
Lang Hames86511252009-09-04 20:41:11 +00002288 nI.getNextValue(MachineInstrIndex(), 0, false,
2289 getVNInfoAllocator()));
Bill Wendling8e6179f2009-08-22 20:18:03 +00002290 DEBUG(errs() << " +" << LR);
Owen Andersona41e47a2008-08-19 22:12:11 +00002291 nI.addRange(LR);
2292 vrm.addRestorePoint(NewVReg, MI);
2293 }
2294 if (HasDef) {
2295 LiveRange LR(getDefIndex(index), getStoreIndex(index),
Lang Hames86511252009-09-04 20:41:11 +00002296 nI.getNextValue(MachineInstrIndex(), 0, false,
2297 getVNInfoAllocator()));
Bill Wendling8e6179f2009-08-22 20:18:03 +00002298 DEBUG(errs() << " +" << LR);
Owen Andersona41e47a2008-08-19 22:12:11 +00002299 nI.addRange(LR);
2300 vrm.addSpillPoint(NewVReg, true, MI);
2301 }
2302
Owen Anderson17197312008-08-18 23:41:04 +00002303 added.push_back(&nI);
Owen Anderson8dc2cbe2008-08-18 18:38:12 +00002304
Bill Wendling8e6179f2009-08-22 20:18:03 +00002305 DEBUG({
2306 errs() << "\t\t\t\tadded new interval: ";
2307 nI.dump();
2308 errs() << '\n';
2309 });
Owen Andersona41e47a2008-08-19 22:12:11 +00002310 }
Owen Anderson9a032932008-08-18 21:20:32 +00002311
Owen Anderson9a032932008-08-18 21:20:32 +00002312
Owen Andersona41e47a2008-08-19 22:12:11 +00002313 RI = mri_->reg_begin(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00002314 }
Owen Andersond6664312008-08-18 18:05:32 +00002315
2316 return added;
2317}
2318
2319std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00002320addIntervalsForSpills(const LiveInterval &li,
Evan Chengdc377862008-09-30 15:44:16 +00002321 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Chengc781a242009-05-03 18:32:42 +00002322 const MachineLoopInfo *loopInfo, VirtRegMap &vrm) {
Owen Andersonae339ba2008-08-19 00:17:30 +00002323
2324 if (EnableFastSpilling)
Evan Chengc781a242009-05-03 18:32:42 +00002325 return addIntervalsForSpillsFast(li, loopInfo, vrm);
Owen Andersonae339ba2008-08-19 00:17:30 +00002326
Evan Chengf2fbca62007-11-12 06:35:08 +00002327 assert(li.weight != HUGE_VALF &&
2328 "attempt to spill already spilled interval!");
2329
Bill Wendling8e6179f2009-08-22 20:18:03 +00002330 DEBUG({
2331 errs() << "\t\t\t\tadding intervals for spills for interval: ";
2332 li.print(errs(), tri_);
2333 errs() << '\n';
2334 });
Evan Chengf2fbca62007-11-12 06:35:08 +00002335
Evan Cheng72eeb942008-12-05 17:00:16 +00002336 // Each bit specify whether a spill is required in the MBB.
Evan Cheng81a03822007-11-17 00:40:40 +00002337 BitVector SpillMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00002338 DenseMap<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002339 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00002340 DenseMap<unsigned, std::vector<SRInfo> > RestoreIdxes;
2341 DenseMap<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00002342 std::vector<LiveInterval*> NewLIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00002343 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
Evan Chengf2fbca62007-11-12 06:35:08 +00002344
2345 unsigned NumValNums = li.getNumValNums();
2346 SmallVector<MachineInstr*, 4> ReMatDefs;
2347 ReMatDefs.resize(NumValNums, NULL);
2348 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
2349 ReMatOrigDefs.resize(NumValNums, NULL);
2350 SmallVector<int, 4> ReMatIds;
2351 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
2352 BitVector ReMatDelete(NumValNums);
2353 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
2354
Evan Cheng81a03822007-11-17 00:40:40 +00002355 // Spilling a split live interval. It cannot be split any further. Also,
2356 // it's also guaranteed to be a single val# / range interval.
2357 if (vrm.getPreSplitReg(li.reg)) {
2358 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00002359 // Unset the split kill marker on the last use.
Lang Hames86511252009-09-04 20:41:11 +00002360 MachineInstrIndex KillIdx = vrm.getKillPoint(li.reg);
2361 if (KillIdx != MachineInstrIndex()) {
Evan Chengd120ffd2007-12-05 10:24:35 +00002362 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
2363 assert(KillMI && "Last use disappeared?");
2364 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
2365 assert(KillOp != -1 && "Last use disappeared?");
Chris Lattnerf7382302007-12-30 21:56:09 +00002366 KillMI->getOperand(KillOp).setIsKill(false);
Evan Chengd120ffd2007-12-05 10:24:35 +00002367 }
Evan Chengadf85902007-12-05 09:51:10 +00002368 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00002369 bool DefIsReMat = vrm.isReMaterialized(li.reg);
2370 Slot = vrm.getStackSlot(li.reg);
2371 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
2372 MachineInstr *ReMatDefMI = DefIsReMat ?
2373 vrm.getReMaterializedMI(li.reg) : NULL;
2374 int LdSlot = 0;
2375 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
2376 bool isLoad = isLoadSS ||
Dan Gohman15511cf2008-12-03 18:15:48 +00002377 (DefIsReMat && (ReMatDefMI->getDesc().canFoldAsLoad()));
Evan Cheng81a03822007-11-17 00:40:40 +00002378 bool IsFirstRange = true;
2379 for (LiveInterval::Ranges::const_iterator
2380 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
2381 // If this is a split live interval with multiple ranges, it means there
2382 // are two-address instructions that re-defined the value. Only the
2383 // first def can be rematerialized!
2384 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00002385 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00002386 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
2387 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00002388 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002389 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Chengc781a242009-05-03 18:32:42 +00002390 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002391 } else {
2392 rewriteInstructionsForSpills(li, false, I, NULL, 0,
2393 Slot, 0, false, false, false,
Evan Chengd70dbb52008-02-22 09:24:50 +00002394 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002395 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Chengc781a242009-05-03 18:32:42 +00002396 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002397 }
2398 IsFirstRange = false;
2399 }
Evan Cheng419852c2008-04-03 16:39:43 +00002400
Evan Cheng4cce6b42008-04-11 17:53:36 +00002401 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00002402 return NewLIs;
2403 }
2404
Evan Cheng752195e2009-09-14 21:33:42 +00002405 bool TrySplit = !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002406 if (TrySplit)
2407 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00002408 bool NeedStackSlot = false;
2409 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
2410 i != e; ++i) {
2411 const VNInfo *VNI = *i;
2412 unsigned VN = VNI->id;
Lang Hames857c4e02009-06-17 21:01:20 +00002413 if (VNI->isUnused())
Evan Chengf2fbca62007-11-12 06:35:08 +00002414 continue; // Dead val#.
2415 // Is the def for the val# rematerializable?
Lang Hames857c4e02009-06-17 21:01:20 +00002416 MachineInstr *ReMatDefMI = VNI->isDefAccurate()
2417 ? getInstructionFromIndex(VNI->def) : 0;
Evan Cheng5ef3a042007-12-06 00:01:56 +00002418 bool dummy;
Evan Chengdc377862008-09-30 15:44:16 +00002419 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, SpillIs, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00002420 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00002421 ReMatOrigDefs[VN] = ReMatDefMI;
Dan Gohman2c3f7ae2008-07-17 23:49:46 +00002422 // Original def may be modified so we have to make a copy here.
Evan Cheng1ed99222008-07-19 00:37:25 +00002423 MachineInstr *Clone = mf_->CloneMachineInstr(ReMatDefMI);
Evan Cheng752195e2009-09-14 21:33:42 +00002424 CloneMIs.push_back(Clone);
Evan Cheng1ed99222008-07-19 00:37:25 +00002425 ReMatDefs[VN] = Clone;
Evan Chengf2fbca62007-11-12 06:35:08 +00002426
2427 bool CanDelete = true;
Lang Hames857c4e02009-06-17 21:01:20 +00002428 if (VNI->hasPHIKill()) {
Evan Chengc3fc7d92007-11-29 09:49:23 +00002429 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00002430 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00002431 CanDelete = false;
2432 // Need a stack slot if there is any live range where uses cannot be
2433 // rematerialized.
2434 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00002435 }
Evan Chengf2fbca62007-11-12 06:35:08 +00002436 if (CanDelete)
2437 ReMatDelete.set(VN);
2438 } else {
2439 // Need a stack slot if there is any live range where uses cannot be
2440 // rematerialized.
2441 NeedStackSlot = true;
2442 }
2443 }
2444
2445 // One stack slot per live interval.
Owen Andersonb98bbb72009-03-26 18:53:38 +00002446 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0) {
2447 if (vrm.getStackSlot(li.reg) == VirtRegMap::NO_STACK_SLOT)
2448 Slot = vrm.assignVirt2StackSlot(li.reg);
2449
2450 // This case only occurs when the prealloc splitter has already assigned
2451 // a stack slot to this vreg.
2452 else
2453 Slot = vrm.getStackSlot(li.reg);
2454 }
Evan Chengf2fbca62007-11-12 06:35:08 +00002455
2456 // Create new intervals and rewrite defs and uses.
2457 for (LiveInterval::Ranges::const_iterator
2458 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00002459 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
2460 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
2461 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00002462 bool CanDelete = ReMatDelete[I->valno->id];
2463 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00002464 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00002465 bool isLoad = isLoadSS ||
Dan Gohman15511cf2008-12-03 18:15:48 +00002466 (DefIsReMat && ReMatDefMI->getDesc().canFoldAsLoad());
Evan Cheng81a03822007-11-17 00:40:40 +00002467 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002468 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00002469 CanDelete, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00002470 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Chengc781a242009-05-03 18:32:42 +00002471 MBBVRegsMap, NewLIs);
Evan Chengf2fbca62007-11-12 06:35:08 +00002472 }
2473
Evan Cheng0cbb1162007-11-29 01:06:25 +00002474 // Insert spills / restores if we are splitting.
Evan Cheng419852c2008-04-03 16:39:43 +00002475 if (!TrySplit) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00002476 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng1953d0c2007-11-29 10:12:14 +00002477 return NewLIs;
Evan Cheng419852c2008-04-03 16:39:43 +00002478 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002479
Evan Chengb50bb8c2007-12-05 08:16:32 +00002480 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00002481 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00002482 if (NeedStackSlot) {
2483 int Id = SpillMBBs.find_first();
2484 while (Id != -1) {
2485 std::vector<SRInfo> &spills = SpillIdxes[Id];
2486 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
Lang Hames86511252009-09-04 20:41:11 +00002487 MachineInstrIndex index = spills[i].index;
Evan Cheng1953d0c2007-11-29 10:12:14 +00002488 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00002489 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002490 bool isReMat = vrm.isReMaterialized(VReg);
2491 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00002492 bool CanFold = false;
2493 bool FoundUse = false;
2494 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00002495 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00002496 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002497 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
2498 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00002499 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00002500 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002501
2502 Ops.push_back(j);
2503 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00002504 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002505 if (isReMat ||
2506 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
2507 RestoreMBBs, RestoreIdxes))) {
2508 // MI has two-address uses of the same register. If the use
2509 // isn't the first and only use in the BB, then we can't fold
2510 // it. FIXME: Move this to rewriteInstructionsForSpills.
2511 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00002512 break;
2513 }
Evan Chengaee4af62007-12-02 08:30:39 +00002514 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00002515 }
2516 }
2517 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00002518 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00002519 if (CanFold && !Ops.empty()) {
2520 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00002521 Folded = true;
Sebastian Redl48fe6352009-03-19 23:26:52 +00002522 if (FoundUse) {
Evan Chengaee4af62007-12-02 08:30:39 +00002523 // Also folded uses, do not issue a load.
2524 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Lang Hames35f291d2009-09-12 03:34:03 +00002525 nI.removeRange(getLoadIndex(index), getNextSlot(getUseIndex(index)));
Evan Chengf38d14f2007-12-05 09:05:34 +00002526 }
Evan Cheng597d10d2007-12-04 00:32:23 +00002527 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00002528 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002529 }
2530
Evan Cheng7e073ba2008-04-09 20:57:25 +00002531 // Otherwise tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00002532 if (!Folded) {
2533 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
2534 bool isKill = LR->end == getStoreIndex(index);
Evan Chengb0a6f622008-05-20 08:10:37 +00002535 if (!MI->registerDefIsDead(nI.reg))
2536 // No need to spill a dead def.
2537 vrm.addSpillPoint(VReg, isKill, MI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002538 if (isKill)
2539 AddedKill.insert(&nI);
2540 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002541 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002542 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002543 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002544 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002545
Evan Cheng1953d0c2007-11-29 10:12:14 +00002546 int Id = RestoreMBBs.find_first();
2547 while (Id != -1) {
2548 std::vector<SRInfo> &restores = RestoreIdxes[Id];
2549 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
Lang Hames86511252009-09-04 20:41:11 +00002550 MachineInstrIndex index = restores[i].index;
2551 if (index == MachineInstrIndex())
Evan Cheng1953d0c2007-11-29 10:12:14 +00002552 continue;
2553 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00002554 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng9c3c2212008-06-06 07:54:39 +00002555 bool isReMat = vrm.isReMaterialized(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00002556 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00002557 bool CanFold = false;
2558 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00002559 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00002560 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00002561 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
2562 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00002563 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng81a03822007-11-17 00:40:40 +00002564 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002565
Evan Cheng0cbb1162007-11-29 01:06:25 +00002566 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00002567 // If this restore were to be folded, it would have been folded
2568 // already.
2569 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00002570 break;
2571 }
Evan Chengaee4af62007-12-02 08:30:39 +00002572 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00002573 }
2574 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002575
2576 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00002577 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00002578 if (CanFold && !Ops.empty()) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00002579 if (!isReMat)
Evan Chengaee4af62007-12-02 08:30:39 +00002580 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
2581 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00002582 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
2583 int LdSlot = 0;
2584 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
2585 // If the rematerializable def is a load, also try to fold it.
Dan Gohman15511cf2008-12-03 18:15:48 +00002586 if (isLoadSS || ReMatDefMI->getDesc().canFoldAsLoad())
Evan Chengaee4af62007-12-02 08:30:39 +00002587 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
2588 Ops, isLoadSS, LdSlot, VReg);
Evan Cheng650d7f32008-12-05 17:41:31 +00002589 if (!Folded) {
2590 unsigned ImpUse = getReMatImplicitUse(li, ReMatDefMI);
2591 if (ImpUse) {
2592 // Re-matting an instruction with virtual register use. Add the
2593 // register as an implicit use on the use MI and update the register
2594 // interval's spill weight to HUGE_VALF to prevent it from being
2595 // spilled.
2596 LiveInterval &ImpLi = getInterval(ImpUse);
2597 ImpLi.weight = HUGE_VALF;
2598 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
2599 }
Evan Chengd70dbb52008-02-22 09:24:50 +00002600 }
Evan Chengaee4af62007-12-02 08:30:39 +00002601 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002602 }
2603 // If folding is not possible / failed, then tell the spiller to issue a
2604 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00002605 if (Folded)
Lang Hames35f291d2009-09-12 03:34:03 +00002606 nI.removeRange(getLoadIndex(index), getNextSlot(getUseIndex(index)));
Evan Chengb50bb8c2007-12-05 08:16:32 +00002607 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00002608 vrm.addRestorePoint(VReg, MI);
Evan Cheng81a03822007-11-17 00:40:40 +00002609 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002610 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00002611 }
2612
Evan Chengb50bb8c2007-12-05 08:16:32 +00002613 // Finalize intervals: add kills, finalize spill weights, and filter out
2614 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00002615 std::vector<LiveInterval*> RetNewLIs;
2616 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
2617 LiveInterval *LI = NewLIs[i];
2618 if (!LI->empty()) {
Owen Anderson496bac52008-07-23 19:47:27 +00002619 LI->weight /= InstrSlots::NUM * getApproximateInstructionCount(*LI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002620 if (!AddedKill.count(LI)) {
2621 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Lang Hames86511252009-09-04 20:41:11 +00002622 MachineInstrIndex LastUseIdx = getBaseIndex(LR->end);
Evan Chengd120ffd2007-12-05 10:24:35 +00002623 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Cheng6130f662008-03-05 00:59:57 +00002624 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg, false);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002625 assert(UseIdx != -1);
Evan Chenga24752f2009-03-19 20:30:06 +00002626 if (!LastUse->isRegTiedToDefOperand(UseIdx)) {
Evan Chengb50bb8c2007-12-05 08:16:32 +00002627 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00002628 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00002629 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00002630 }
Evan Cheng597d10d2007-12-04 00:32:23 +00002631 RetNewLIs.push_back(LI);
2632 }
2633 }
Evan Cheng81a03822007-11-17 00:40:40 +00002634
Evan Cheng4cce6b42008-04-11 17:53:36 +00002635 handleSpilledImpDefs(li, vrm, rc, RetNewLIs);
Evan Cheng597d10d2007-12-04 00:32:23 +00002636 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00002637}
Evan Cheng676dd7c2008-03-11 07:19:34 +00002638
2639/// hasAllocatableSuperReg - Return true if the specified physical register has
2640/// any super register that's allocatable.
2641bool LiveIntervals::hasAllocatableSuperReg(unsigned Reg) const {
2642 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS)
2643 if (allocatableRegs_[*AS] && hasInterval(*AS))
2644 return true;
2645 return false;
2646}
2647
2648/// getRepresentativeReg - Find the largest super register of the specified
2649/// physical register.
2650unsigned LiveIntervals::getRepresentativeReg(unsigned Reg) const {
2651 // Find the largest super-register that is allocatable.
2652 unsigned BestReg = Reg;
2653 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS) {
2654 unsigned SuperReg = *AS;
2655 if (!hasAllocatableSuperReg(SuperReg) && hasInterval(SuperReg)) {
2656 BestReg = SuperReg;
2657 break;
2658 }
2659 }
2660 return BestReg;
2661}
2662
2663/// getNumConflictsWithPhysReg - Return the number of uses and defs of the
2664/// specified interval that conflicts with the specified physical register.
2665unsigned LiveIntervals::getNumConflictsWithPhysReg(const LiveInterval &li,
2666 unsigned PhysReg) const {
2667 unsigned NumConflicts = 0;
2668 const LiveInterval &pli = getInterval(getRepresentativeReg(PhysReg));
2669 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2670 E = mri_->reg_end(); I != E; ++I) {
2671 MachineOperand &O = I.getOperand();
2672 MachineInstr *MI = O.getParent();
Lang Hames86511252009-09-04 20:41:11 +00002673 MachineInstrIndex Index = getInstructionIndex(MI);
Evan Cheng676dd7c2008-03-11 07:19:34 +00002674 if (pli.liveAt(Index))
2675 ++NumConflicts;
2676 }
2677 return NumConflicts;
2678}
2679
2680/// spillPhysRegAroundRegDefsUses - Spill the specified physical register
Evan Cheng2824a652009-03-23 18:24:37 +00002681/// around all defs and uses of the specified interval. Return true if it
2682/// was able to cut its interval.
2683bool LiveIntervals::spillPhysRegAroundRegDefsUses(const LiveInterval &li,
Evan Cheng676dd7c2008-03-11 07:19:34 +00002684 unsigned PhysReg, VirtRegMap &vrm) {
2685 unsigned SpillReg = getRepresentativeReg(PhysReg);
2686
2687 for (const unsigned *AS = tri_->getAliasSet(PhysReg); *AS; ++AS)
2688 // If there are registers which alias PhysReg, but which are not a
2689 // sub-register of the chosen representative super register. Assert
2690 // since we can't handle it yet.
Dan Gohman70f2f652009-04-13 15:22:29 +00002691 assert(*AS == SpillReg || !allocatableRegs_[*AS] || !hasInterval(*AS) ||
Evan Cheng676dd7c2008-03-11 07:19:34 +00002692 tri_->isSuperRegister(*AS, SpillReg));
2693
Evan Cheng2824a652009-03-23 18:24:37 +00002694 bool Cut = false;
Evan Cheng676dd7c2008-03-11 07:19:34 +00002695 LiveInterval &pli = getInterval(SpillReg);
2696 SmallPtrSet<MachineInstr*, 8> SeenMIs;
2697 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2698 E = mri_->reg_end(); I != E; ++I) {
2699 MachineOperand &O = I.getOperand();
2700 MachineInstr *MI = O.getParent();
2701 if (SeenMIs.count(MI))
2702 continue;
2703 SeenMIs.insert(MI);
Lang Hames86511252009-09-04 20:41:11 +00002704 MachineInstrIndex Index = getInstructionIndex(MI);
Evan Cheng676dd7c2008-03-11 07:19:34 +00002705 if (pli.liveAt(Index)) {
2706 vrm.addEmergencySpill(SpillReg, MI);
Lang Hames86511252009-09-04 20:41:11 +00002707 MachineInstrIndex StartIdx = getLoadIndex(Index);
Lang Hames35f291d2009-09-12 03:34:03 +00002708 MachineInstrIndex EndIdx = getNextSlot(getStoreIndex(Index));
Evan Cheng2824a652009-03-23 18:24:37 +00002709 if (pli.isInOneLiveRange(StartIdx, EndIdx)) {
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002710 pli.removeRange(StartIdx, EndIdx);
Evan Cheng2824a652009-03-23 18:24:37 +00002711 Cut = true;
2712 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00002713 std::string msg;
2714 raw_string_ostream Msg(msg);
2715 Msg << "Ran out of registers during register allocation!";
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002716 if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {
Torok Edwin7d696d82009-07-11 13:10:19 +00002717 Msg << "\nPlease check your inline asm statement for invalid "
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002718 << "constraints:\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00002719 MI->print(Msg, tm_);
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002720 }
Torok Edwin7d696d82009-07-11 13:10:19 +00002721 llvm_report_error(Msg.str());
Evan Cheng5a3c6a82009-01-29 02:20:59 +00002722 }
Evan Cheng676dd7c2008-03-11 07:19:34 +00002723 for (const unsigned* AS = tri_->getSubRegisters(SpillReg); *AS; ++AS) {
2724 if (!hasInterval(*AS))
2725 continue;
2726 LiveInterval &spli = getInterval(*AS);
2727 if (spli.liveAt(Index))
Lang Hames35f291d2009-09-12 03:34:03 +00002728 spli.removeRange(getLoadIndex(Index), getNextSlot(getStoreIndex(Index)));
Evan Cheng676dd7c2008-03-11 07:19:34 +00002729 }
2730 }
2731 }
Evan Cheng2824a652009-03-23 18:24:37 +00002732 return Cut;
Evan Cheng676dd7c2008-03-11 07:19:34 +00002733}
Owen Andersonc4dc1322008-06-05 17:15:43 +00002734
2735LiveRange LiveIntervals::addLiveRangeToEndOfBlock(unsigned reg,
Lang Hamesffd13262009-07-09 03:57:02 +00002736 MachineInstr* startInst) {
Owen Andersonc4dc1322008-06-05 17:15:43 +00002737 LiveInterval& Interval = getOrCreateInterval(reg);
2738 VNInfo* VN = Interval.getNextValue(
Lang Hames86511252009-09-04 20:41:11 +00002739 MachineInstrIndex(getInstructionIndex(startInst), MachineInstrIndex::DEF),
2740 startInst, true, getVNInfoAllocator());
Lang Hames857c4e02009-06-17 21:01:20 +00002741 VN->setHasPHIKill(true);
Lang Hames86511252009-09-04 20:41:11 +00002742 VN->kills.push_back(terminatorGaps[startInst->getParent()]);
2743 LiveRange LR(
2744 MachineInstrIndex(getInstructionIndex(startInst), MachineInstrIndex::DEF),
Lang Hames35f291d2009-09-12 03:34:03 +00002745 getNextSlot(getMBBEndIdx(startInst->getParent())), VN);
Owen Andersonc4dc1322008-06-05 17:15:43 +00002746 Interval.addRange(LR);
2747
2748 return LR;
2749}
David Greeneb5257662009-08-03 21:55:09 +00002750