blob: 1de31b9da2cf1601b9b15a8f60551b6626c64859 [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 Cheng22f07ff2007-12-11 02:09:15 +000026#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000028#include "llvm/CodeGen/Passes.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000029#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000030#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000031#include "llvm/Target/TargetInstrInfo.h"
32#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000033#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000034#include "llvm/Support/CommandLine.h"
35#include "llvm/Support/Debug.h"
36#include "llvm/ADT/Statistic.h"
37#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000038#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000039#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000040using namespace llvm;
41
Dan Gohman844731a2008-05-13 00:00:25 +000042// Hidden options for help debugging.
43static cl::opt<bool> DisableReMat("disable-rematerialization",
44 cl::init(false), cl::Hidden);
Evan Cheng81a03822007-11-17 00:40:40 +000045
Dan Gohman844731a2008-05-13 00:00:25 +000046static cl::opt<bool> SplitAtBB("split-intervals-at-bb",
47 cl::init(true), cl::Hidden);
48static cl::opt<int> SplitLimit("split-limit",
49 cl::init(-1), cl::Hidden);
Evan Chengbc165e42007-08-16 07:24:22 +000050
Dan Gohman4c8f8702008-07-25 15:08:37 +000051static cl::opt<bool> EnableAggressiveRemat("aggressive-remat", cl::Hidden);
52
Owen Andersonae339ba2008-08-19 00:17:30 +000053static cl::opt<bool> EnableFastSpilling("fast-spill",
54 cl::init(false), cl::Hidden);
55
Chris Lattnercd3245a2006-12-19 22:41:21 +000056STATISTIC(numIntervals, "Number of original intervals");
Evan Cheng0cbb1162007-11-29 01:06:25 +000057STATISTIC(numFolds , "Number of loads/stores folded into instructions");
58STATISTIC(numSplits , "Number of intervals split");
Chris Lattnercd3245a2006-12-19 22:41:21 +000059
Devang Patel19974732007-05-03 01:11:54 +000060char LiveIntervals::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000061static RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000062
Chris Lattnerf7da2c72006-08-24 22:43:55 +000063void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman6d69ba82008-07-25 00:02:30 +000064 AU.addRequired<AliasAnalysis>();
65 AU.addPreserved<AliasAnalysis>();
David Greene25133302007-06-08 17:18:56 +000066 AU.addPreserved<LiveVariables>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000067 AU.addRequired<LiveVariables>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000068 AU.addPreservedID(MachineLoopInfoID);
69 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +000070
71 if (!StrongPHIElim) {
72 AU.addPreservedID(PHIEliminationID);
73 AU.addRequiredID(PHIEliminationID);
74 }
75
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000076 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000077 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000078}
79
Chris Lattnerf7da2c72006-08-24 22:43:55 +000080void LiveIntervals::releaseMemory() {
Owen Anderson03857b22008-08-13 21:49:13 +000081 // Free the live intervals themselves.
Owen Anderson20e28392008-08-13 22:08:30 +000082 for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
Owen Anderson03857b22008-08-13 21:49:13 +000083 E = r2iMap_.end(); I != E; ++I)
84 delete I->second;
85
Evan Cheng3f32d652008-06-04 09:18:41 +000086 MBB2IdxMap.clear();
Evan Cheng4ca980e2007-10-17 02:10:22 +000087 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000088 mi2iMap_.clear();
89 i2miMap_.clear();
90 r2iMap_.clear();
Evan Chengdd199d22007-09-06 01:07:24 +000091 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
92 VNInfoAllocator.Reset();
Evan Cheng1ed99222008-07-19 00:37:25 +000093 while (!ClonedMIs.empty()) {
94 MachineInstr *MI = ClonedMIs.back();
95 ClonedMIs.pop_back();
96 mf_->DeleteMachineInstr(MI);
97 }
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000098}
99
Owen Anderson80b3ce62008-05-28 20:54:50 +0000100void LiveIntervals::computeNumbering() {
101 Index2MiMap OldI2MI = i2miMap_;
Owen Anderson7fbad272008-07-23 21:37:49 +0000102 std::vector<IdxMBBPair> OldI2MBB = Idx2MBBMap;
Owen Anderson80b3ce62008-05-28 20:54:50 +0000103
104 Idx2MBBMap.clear();
105 MBB2IdxMap.clear();
106 mi2iMap_.clear();
107 i2miMap_.clear();
108
Owen Andersona1566f22008-07-22 22:46:49 +0000109 FunctionSize = 0;
110
Chris Lattner428b92e2006-09-15 03:57:23 +0000111 // Number MachineInstrs and MachineBasicBlocks.
112 // Initialize MBB indexes to a sentinal.
Evan Cheng549f27d32007-08-13 23:45:17 +0000113 MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
Chris Lattner428b92e2006-09-15 03:57:23 +0000114
115 unsigned MIIndex = 0;
116 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
117 MBB != E; ++MBB) {
Evan Cheng549f27d32007-08-13 23:45:17 +0000118 unsigned StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000119
Owen Anderson7fbad272008-07-23 21:37:49 +0000120 // Insert an empty slot at the beginning of each block.
121 MIIndex += InstrSlots::NUM;
122 i2miMap_.push_back(0);
123
Chris Lattner428b92e2006-09-15 03:57:23 +0000124 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
125 I != E; ++I) {
126 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000127 assert(inserted && "multiple MachineInstr -> index mappings");
Devang Patel59500c82008-11-21 20:00:59 +0000128 inserted = true;
Chris Lattner428b92e2006-09-15 03:57:23 +0000129 i2miMap_.push_back(I);
130 MIIndex += InstrSlots::NUM;
Owen Andersona1566f22008-07-22 22:46:49 +0000131 FunctionSize++;
Owen Anderson7fbad272008-07-23 21:37:49 +0000132
Evan Cheng4ed43292008-10-18 05:21:37 +0000133 // Insert max(1, numdefs) empty slots after every instruction.
Evan Cheng99fe34b2008-10-18 05:18:55 +0000134 unsigned Slots = I->getDesc().getNumDefs();
135 if (Slots == 0)
136 Slots = 1;
137 MIIndex += InstrSlots::NUM * Slots;
138 while (Slots--)
139 i2miMap_.push_back(0);
Owen Anderson35578012008-06-16 07:10:49 +0000140 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000141
Owen Anderson1fbb4542008-06-16 16:58:24 +0000142 // Set the MBB2IdxMap entry for this MBB.
143 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
144 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000145 }
Evan Cheng4ca980e2007-10-17 02:10:22 +0000146 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Owen Anderson80b3ce62008-05-28 20:54:50 +0000147
148 if (!OldI2MI.empty())
Owen Anderson788d0412008-08-06 18:35:45 +0000149 for (iterator OI = begin(), OE = end(); OI != OE; ++OI) {
Owen Anderson03857b22008-08-13 21:49:13 +0000150 for (LiveInterval::iterator LI = OI->second->begin(),
151 LE = OI->second->end(); LI != LE; ++LI) {
Owen Anderson4b5b2092008-05-29 18:15:49 +0000152
Owen Anderson7eec0c22008-05-29 23:01:22 +0000153 // Remap the start index of the live range to the corresponding new
154 // number, or our best guess at what it _should_ correspond to if the
155 // original instruction has been erased. This is either the following
156 // instruction or its predecessor.
Owen Anderson7fbad272008-07-23 21:37:49 +0000157 unsigned index = LI->start / InstrSlots::NUM;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000158 unsigned offset = LI->start % InstrSlots::NUM;
Owen Anderson0a7615a2008-07-25 23:06:59 +0000159 if (offset == InstrSlots::LOAD) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000160 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000161 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->start);
Owen Anderson7fbad272008-07-23 21:37:49 +0000162 // Take the pair containing the index
163 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000164 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000165
Owen Anderson7fbad272008-07-23 21:37:49 +0000166 LI->start = getMBBStartIdx(J->second);
167 } else {
168 LI->start = mi2iMap_[OldI2MI[index]] + offset;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000169 }
170
171 // Remap the ending index in the same way that we remapped the start,
172 // except for the final step where we always map to the immediately
173 // following instruction.
Owen Andersond7dcbec2008-07-25 19:50:48 +0000174 index = (LI->end - 1) / InstrSlots::NUM;
Owen Anderson7fbad272008-07-23 21:37:49 +0000175 offset = LI->end % InstrSlots::NUM;
Owen Anderson9382b932008-07-30 00:22:56 +0000176 if (offset == InstrSlots::LOAD) {
177 // VReg dies at end of block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000178 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000179 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->end);
Owen Anderson9382b932008-07-30 00:22:56 +0000180 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000181
Owen Anderson9382b932008-07-30 00:22:56 +0000182 LI->end = getMBBEndIdx(I->second) + 1;
Owen Anderson4b5b2092008-05-29 18:15:49 +0000183 } else {
Owen Andersond7dcbec2008-07-25 19:50:48 +0000184 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000185 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
186
187 if (index != OldI2MI.size())
188 LI->end = mi2iMap_[OldI2MI[index]] + (idx == index ? offset : 0);
189 else
190 LI->end = InstrSlots::NUM * i2miMap_.size();
Owen Anderson4b5b2092008-05-29 18:15:49 +0000191 }
Owen Anderson788d0412008-08-06 18:35:45 +0000192 }
193
Owen Anderson03857b22008-08-13 21:49:13 +0000194 for (LiveInterval::vni_iterator VNI = OI->second->vni_begin(),
195 VNE = OI->second->vni_end(); VNI != VNE; ++VNI) {
Owen Anderson788d0412008-08-06 18:35:45 +0000196 VNInfo* vni = *VNI;
Owen Anderson745825f42008-05-28 22:40:08 +0000197
Owen Anderson7eec0c22008-05-29 23:01:22 +0000198 // Remap the VNInfo def index, which works the same as the
Owen Anderson788d0412008-08-06 18:35:45 +0000199 // start indices above. VN's with special sentinel defs
200 // don't need to be remapped.
Owen Anderson91292392008-07-30 17:42:47 +0000201 if (vni->def != ~0U && vni->def != ~1U) {
Owen Anderson788d0412008-08-06 18:35:45 +0000202 unsigned index = vni->def / InstrSlots::NUM;
203 unsigned offset = vni->def % InstrSlots::NUM;
Owen Anderson91292392008-07-30 17:42:47 +0000204 if (offset == InstrSlots::LOAD) {
205 std::vector<IdxMBBPair>::const_iterator I =
Owen Anderson0a7615a2008-07-25 23:06:59 +0000206 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->def);
Owen Anderson91292392008-07-30 17:42:47 +0000207 // Take the pair containing the index
208 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000209 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000210
Owen Anderson91292392008-07-30 17:42:47 +0000211 vni->def = getMBBStartIdx(J->second);
212 } else {
213 vni->def = mi2iMap_[OldI2MI[index]] + offset;
214 }
Owen Anderson7eec0c22008-05-29 23:01:22 +0000215 }
Owen Anderson745825f42008-05-28 22:40:08 +0000216
Owen Anderson7eec0c22008-05-29 23:01:22 +0000217 // Remap the VNInfo kill indices, which works the same as
218 // the end indices above.
Owen Anderson4b5b2092008-05-29 18:15:49 +0000219 for (size_t i = 0; i < vni->kills.size(); ++i) {
Owen Anderson9382b932008-07-30 00:22:56 +0000220 // PHI kills don't need to be remapped.
221 if (!vni->kills[i]) continue;
222
Owen Anderson788d0412008-08-06 18:35:45 +0000223 unsigned index = (vni->kills[i]-1) / InstrSlots::NUM;
224 unsigned offset = vni->kills[i] % InstrSlots::NUM;
Owen Anderson309c6162008-09-30 22:51:54 +0000225 if (offset == InstrSlots::LOAD) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000226 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000227 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->kills[i]);
Owen Anderson9382b932008-07-30 00:22:56 +0000228 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000229
Owen Anderson788d0412008-08-06 18:35:45 +0000230 vni->kills[i] = getMBBEndIdx(I->second);
Owen Anderson7fbad272008-07-23 21:37:49 +0000231 } else {
Owen Andersond7dcbec2008-07-25 19:50:48 +0000232 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000233 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
234
235 if (index != OldI2MI.size())
236 vni->kills[i] = mi2iMap_[OldI2MI[index]] +
237 (idx == index ? offset : 0);
238 else
239 vni->kills[i] = InstrSlots::NUM * i2miMap_.size();
Owen Anderson7eec0c22008-05-29 23:01:22 +0000240 }
Owen Anderson4b5b2092008-05-29 18:15:49 +0000241 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000242 }
Owen Anderson788d0412008-08-06 18:35:45 +0000243 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000244}
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000245
Owen Anderson80b3ce62008-05-28 20:54:50 +0000246/// runOnMachineFunction - Register allocate the whole function
247///
248bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
249 mf_ = &fn;
250 mri_ = &mf_->getRegInfo();
251 tm_ = &fn.getTarget();
252 tri_ = tm_->getRegisterInfo();
253 tii_ = tm_->getInstrInfo();
Dan Gohman6d69ba82008-07-25 00:02:30 +0000254 aa_ = &getAnalysis<AliasAnalysis>();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000255 lv_ = &getAnalysis<LiveVariables>();
256 allocatableRegs_ = tri_->getAllocatableSet(fn);
257
258 computeNumbering();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000259 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000260
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000261 numIntervals += getNumIntervals();
262
Chris Lattner70ca3582004-09-30 15:59:17 +0000263 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000264 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000265}
266
Chris Lattner70ca3582004-09-30 15:59:17 +0000267/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000268void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000269 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000270 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +0000271 I->second->print(O, tri_);
Evan Cheng3f32d652008-06-04 09:18:41 +0000272 O << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000273 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000274
275 O << "********** MACHINEINSTRS **********\n";
276 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
277 mbbi != mbbe; ++mbbi) {
278 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
279 for (MachineBasicBlock::iterator mii = mbbi->begin(),
280 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000281 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000282 }
283 }
284}
285
Evan Chengc92da382007-11-03 07:20:12 +0000286/// conflictsWithPhysRegDef - Returns true if the specified register
287/// is defined during the duration of the specified interval.
288bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
289 VirtRegMap &vrm, unsigned reg) {
290 for (LiveInterval::Ranges::const_iterator
291 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
292 for (unsigned index = getBaseIndex(I->start),
293 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
294 index += InstrSlots::NUM) {
295 // skip deleted instructions
296 while (index != end && !getInstructionFromIndex(index))
297 index += InstrSlots::NUM;
298 if (index == end) break;
299
300 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng5d446262007-11-15 08:13:29 +0000301 unsigned SrcReg, DstReg;
302 if (tii_->isMoveInstr(*MI, SrcReg, DstReg))
303 if (SrcReg == li.reg || DstReg == li.reg)
304 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000305 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
306 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000307 if (!mop.isReg())
Evan Chengc92da382007-11-03 07:20:12 +0000308 continue;
309 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000310 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000311 continue;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000312 if (TargetRegisterInfo::isVirtualRegister(PhysReg)) {
Evan Cheng5d446262007-11-15 08:13:29 +0000313 if (!vrm.hasPhys(PhysReg))
314 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000315 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000316 }
Dan Gohman6f0d0242008-02-10 18:45:23 +0000317 if (PhysReg && tri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000318 return true;
319 }
320 }
321 }
322
323 return false;
324}
325
Evan Cheng549f27d32007-08-13 23:45:17 +0000326void LiveIntervals::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000327 if (TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000328 cerr << tri_->getName(reg);
Evan Cheng549f27d32007-08-13 23:45:17 +0000329 else
330 cerr << "%reg" << reg;
331}
332
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000333void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000334 MachineBasicBlock::iterator mi,
Owen Anderson6b098de2008-06-25 23:39:39 +0000335 unsigned MIIdx, MachineOperand& MO,
Evan Chengef0732d2008-07-10 07:35:43 +0000336 unsigned MOIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000337 LiveInterval &interval) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000338 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000339 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000340
Evan Cheng419852c2008-04-03 16:39:43 +0000341 if (mi->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
342 DOUT << "is a implicit_def\n";
343 return;
344 }
345
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000346 // Virtual registers may be defined multiple times (due to phi
347 // elimination and 2-addr elimination). Much of what we do only has to be
348 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000349 // time we see a vreg.
350 if (interval.empty()) {
351 // Get the Idx of the defining instructions.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000352 unsigned defIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000353 // Earlyclobbers move back one.
354 if (MO.isEarlyClobber())
355 defIndex = getUseIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000356 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000357 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000358 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000359 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000360 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000361 tii_->isMoveInstr(*mi, SrcReg, DstReg))
362 CopyMI = mi;
363 ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000364
365 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000366
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000367 // Loop over all of the blocks that the vreg is defined in. There are
368 // two cases we have to handle here. The most common case is a vreg
369 // whose lifetime is contained within a basic block. In this case there
370 // will be a single kill, in MBB, which comes after the definition.
371 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
372 // FIXME: what about dead vars?
373 unsigned killIdx;
374 if (vi.Kills[0] != mi)
375 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
376 else
377 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000378
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000379 // If the kill happens after the definition, we have an intra-block
380 // live range.
381 if (killIdx > defIndex) {
Evan Cheng61de82d2007-02-15 05:59:24 +0000382 assert(vi.AliveBlocks.none() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000383 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000384 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000385 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000386 DOUT << " +" << LR << "\n";
Evan Chengf3bb2e62007-09-05 21:46:51 +0000387 interval.addKill(ValNo, killIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000388 return;
389 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000390 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000391
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000392 // The other case we handle is when a virtual register lives to the end
393 // of the defining block, potentially live across some blocks, then is
394 // live into some number of blocks, but gets killed. Start by adding a
395 // range that goes from this definition to the end of the defining block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000396 LiveRange NewLR(defIndex, getMBBEndIdx(mbb)+1, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000397 DOUT << " +" << NewLR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000398 interval.addRange(NewLR);
399
400 // Iterate over all of the blocks that the variable is completely
401 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
402 // live interval.
Dan Gohman4a829ec2008-11-13 16:31:27 +0000403 for (int i = vi.AliveBlocks.find_first(); i != -1;
404 i = vi.AliveBlocks.find_next(i)) {
405 LiveRange LR(getMBBStartIdx(i),
406 getMBBEndIdx(i)+1, // MBB ends at -1.
407 ValNo);
408 interval.addRange(LR);
409 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000410 }
411
412 // Finally, this virtual register is live from the start of any killing
413 // block to the 'use' slot of the killing instruction.
414 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
415 MachineInstr *Kill = vi.Kills[i];
Evan Cheng8df78602007-08-08 03:00:28 +0000416 unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
Chris Lattner428b92e2006-09-15 03:57:23 +0000417 LiveRange LR(getMBBStartIdx(Kill->getParent()),
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000418 killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000419 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000420 interval.addKill(ValNo, killIdx);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000421 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000422 }
423
424 } else {
425 // If this is the second time we see a virtual register definition, it
426 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000427 // the result of two address elimination, then the vreg is one of the
428 // def-and-use register operand.
Evan Chengef0732d2008-07-10 07:35:43 +0000429 if (mi->isRegReDefinedByTwoAddr(interval.reg, MOIdx)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000430 // If this is a two-address definition, then we have already processed
431 // the live range. The only problem is that we didn't realize there
432 // are actually two values in the live interval. Because of this we
433 // need to take the LiveRegion that defines this register and split it
434 // into two values.
Evan Chenga07cec92008-01-10 08:22:10 +0000435 assert(interval.containsOneValue());
436 unsigned DefIndex = getDefIndex(interval.getValNumInfo(0)->def);
Chris Lattner6b128bd2006-09-03 08:07:11 +0000437 unsigned RedefIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000438 // Earlyclobbers move back one.
439 if (MO.isEarlyClobber())
440 RedefIndex = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000441
Evan Cheng4f8ff162007-08-11 00:59:19 +0000442 const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000443 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000444
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000445 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000446 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000447 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000448
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000449 // Two-address vregs should always only be redefined once. This means
450 // that at this point, there should be exactly one value number in it.
451 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
452
Chris Lattner91725b72006-08-31 05:54:43 +0000453 // The new value number (#1) is defined by the instruction we claimed
454 // defined value #0.
Evan Chengc8d044e2008-02-15 18:24:29 +0000455 VNInfo *ValNo = interval.getNextValue(OldValNo->def, OldValNo->copy,
456 VNInfoAllocator);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000457
Chris Lattner91725b72006-08-31 05:54:43 +0000458 // Value#0 is now defined by the 2-addr instruction.
Evan Chengc8d044e2008-02-15 18:24:29 +0000459 OldValNo->def = RedefIndex;
460 OldValNo->copy = 0;
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000461
462 // Add the new live interval which replaces the range for the input copy.
463 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000464 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000465 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000466 interval.addKill(ValNo, RedefIndex);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000467
468 // If this redefinition is dead, we need to add a dummy unit live
469 // range covering the def slot.
Owen Anderson6b098de2008-06-25 23:39:39 +0000470 if (MO.isDead())
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000471 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000472
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000473 DOUT << " RESULT: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000474 interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000475
476 } else {
477 // Otherwise, this must be because of phi elimination. If this is the
478 // first redefinition of the vreg that we have seen, go back and change
479 // the live range in the PHI block to be a different value number.
480 if (interval.containsOneValue()) {
481 assert(vi.Kills.size() == 1 &&
482 "PHI elimination vreg should have one kill, the PHI itself!");
483
484 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000485 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000486 MachineInstr *Killer = vi.Kills[0];
Chris Lattner428b92e2006-09-15 03:57:23 +0000487 unsigned Start = getMBBStartIdx(Killer->getParent());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000488 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000489 DOUT << " Removing [" << Start << "," << End << "] from: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000490 interval.print(DOUT, tri_); DOUT << "\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000491 interval.removeRange(Start, End);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000492 VNI->hasPHIKill = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000493 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000494
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000495 // Replace the interval with one of a NEW value number. Note that this
496 // value number isn't actually defined by an instruction, weird huh? :)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000497 LiveRange LR(Start, End, interval.getNextValue(~0, 0, VNInfoAllocator));
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000498 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000499 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000500 interval.addKill(LR.valno, End);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000501 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000502 }
503
504 // In the case of PHI elimination, each variable definition is only
505 // live until the end of the block. We've already taken care of the
506 // rest of the live range.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000507 unsigned defIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000508 // Earlyclobbers move back one.
509 if (MO.isEarlyClobber())
510 defIndex = getUseIndex(MIIdx);
Chris Lattner91725b72006-08-31 05:54:43 +0000511
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000512 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000513 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000514 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000515 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000516 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000517 tii_->isMoveInstr(*mi, SrcReg, DstReg))
518 CopyMI = mi;
519 ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000520
Owen Anderson7fbad272008-07-23 21:37:49 +0000521 unsigned killIndex = getMBBEndIdx(mbb) + 1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000522 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000523 interval.addRange(LR);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000524 interval.addKill(ValNo, killIndex);
525 ValNo->hasPHIKill = true;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000526 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000527 }
528 }
529
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000530 DOUT << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000531}
532
Chris Lattnerf35fef72004-07-23 21:24:19 +0000533void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000534 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000535 unsigned MIIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000536 MachineOperand& MO,
Chris Lattner91725b72006-08-31 05:54:43 +0000537 LiveInterval &interval,
Evan Chengc8d044e2008-02-15 18:24:29 +0000538 MachineInstr *CopyMI) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000539 // A physical register cannot be live across basic block, so its
540 // lifetime must end somewhere in its defining basic block.
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000541 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000542
Chris Lattner6b128bd2006-09-03 08:07:11 +0000543 unsigned baseIndex = MIIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000544 unsigned start = getDefIndex(baseIndex);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000545 // Earlyclobbers move back one.
546 if (MO.isEarlyClobber())
547 start = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000548 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000549
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000550 // If it is not used after definition, it is considered dead at
551 // the instruction defining it. Hence its interval is:
552 // [defSlot(def), defSlot(def)+1)
Owen Anderson6b098de2008-06-25 23:39:39 +0000553 if (MO.isDead()) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000554 DOUT << " dead";
Dale Johannesen86b49f82008-09-24 01:07:17 +0000555 end = start + 1;
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000556 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000557 }
558
559 // If it is not dead on definition, it must be killed by a
560 // subsequent instruction. Hence its interval is:
561 // [defSlot(def), useSlot(kill)+1)
Owen Anderson7fbad272008-07-23 21:37:49 +0000562 baseIndex += InstrSlots::NUM;
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000563 while (++mi != MBB->end()) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000564 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
565 getInstructionFromIndex(baseIndex) == 0)
566 baseIndex += InstrSlots::NUM;
Evan Cheng6130f662008-03-05 00:59:57 +0000567 if (mi->killsRegister(interval.reg, tri_)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000568 DOUT << " killed";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000569 end = getUseIndex(baseIndex) + 1;
570 goto exit;
Evan Cheng6130f662008-03-05 00:59:57 +0000571 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Cheng9a1956a2006-11-15 20:54:11 +0000572 // Another instruction redefines the register before it is ever read.
573 // Then the register is essentially dead at the instruction that defines
574 // it. Hence its interval is:
575 // [defSlot(def), defSlot(def)+1)
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000576 DOUT << " dead";
Dale Johannesen86b49f82008-09-24 01:07:17 +0000577 end = start + 1;
Evan Cheng9a1956a2006-11-15 20:54:11 +0000578 goto exit;
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000579 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000580
581 baseIndex += InstrSlots::NUM;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000582 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000583
584 // The only case we should have a dead physreg here without a killing or
585 // instruction where we know it's dead is if it is live-in to the function
586 // and never used.
Evan Chengc8d044e2008-02-15 18:24:29 +0000587 assert(!CopyMI && "physreg was not killed in defining block!");
Dale Johannesen86b49f82008-09-24 01:07:17 +0000588 end = start + 1;
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000589
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000590exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000591 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000592
Evan Cheng24a3cc42007-04-25 07:30:23 +0000593 // Already exists? Extend old live interval.
594 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000595 VNInfo *ValNo = (OldLR != interval.end())
Evan Chengc8d044e2008-02-15 18:24:29 +0000596 ? OldLR->valno : interval.getNextValue(start, CopyMI, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000597 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000598 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000599 interval.addKill(LR.valno, end);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000600 DOUT << " +" << LR << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000601}
602
Chris Lattnerf35fef72004-07-23 21:24:19 +0000603void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
604 MachineBasicBlock::iterator MI,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000605 unsigned MIIdx,
Evan Chengef0732d2008-07-10 07:35:43 +0000606 MachineOperand& MO,
607 unsigned MOIdx) {
Owen Anderson6b098de2008-06-25 23:39:39 +0000608 if (TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Evan Chengef0732d2008-07-10 07:35:43 +0000609 handleVirtualRegisterDef(MBB, MI, MIIdx, MO, MOIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000610 getOrCreateInterval(MO.getReg()));
611 else if (allocatableRegs_[MO.getReg()]) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000612 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000613 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000614 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000615 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000616 tii_->isMoveInstr(*MI, SrcReg, DstReg))
617 CopyMI = MI;
Owen Anderson6b098de2008-06-25 23:39:39 +0000618 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
619 getOrCreateInterval(MO.getReg()), CopyMI);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000620 // Def of a register also defines its sub-registers.
Owen Anderson6b098de2008-06-25 23:39:39 +0000621 for (const unsigned* AS = tri_->getSubRegisters(MO.getReg()); *AS; ++AS)
Evan Cheng6130f662008-03-05 00:59:57 +0000622 // If MI also modifies the sub-register explicitly, avoid processing it
623 // more than once. Do not pass in TRI here so it checks for exact match.
624 if (!MI->modifiesRegister(*AS))
Owen Anderson6b098de2008-06-25 23:39:39 +0000625 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
626 getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000627 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000628}
629
Evan Chengb371f452007-02-19 21:49:54 +0000630void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000631 unsigned MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +0000632 LiveInterval &interval, bool isAlias) {
Evan Chengb371f452007-02-19 21:49:54 +0000633 DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
634
635 // Look for kills, if it reaches a def before it's killed, then it shouldn't
636 // be considered a livein.
637 MachineBasicBlock::iterator mi = MBB->begin();
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000638 unsigned baseIndex = MIIdx;
639 unsigned start = baseIndex;
Owen Anderson99500ae2008-09-15 22:00:38 +0000640 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
641 getInstructionFromIndex(baseIndex) == 0)
642 baseIndex += InstrSlots::NUM;
643 unsigned end = baseIndex;
644
Evan Chengb371f452007-02-19 21:49:54 +0000645 while (mi != MBB->end()) {
Evan Cheng6130f662008-03-05 00:59:57 +0000646 if (mi->killsRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000647 DOUT << " killed";
648 end = getUseIndex(baseIndex) + 1;
649 goto exit;
Evan Cheng6130f662008-03-05 00:59:57 +0000650 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000651 // Another instruction redefines the register before it is ever read.
652 // Then the register is essentially dead at the instruction that defines
653 // it. Hence its interval is:
654 // [defSlot(def), defSlot(def)+1)
655 DOUT << " dead";
656 end = getDefIndex(start) + 1;
657 goto exit;
658 }
659
660 baseIndex += InstrSlots::NUM;
Owen Anderson7fbad272008-07-23 21:37:49 +0000661 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
662 getInstructionFromIndex(baseIndex) == 0)
663 baseIndex += InstrSlots::NUM;
Evan Chengb371f452007-02-19 21:49:54 +0000664 ++mi;
665 }
666
667exit:
Evan Cheng75611fb2007-06-27 01:16:36 +0000668 // Live-in register might not be used at all.
669 if (end == MIIdx) {
Evan Cheng292da942007-06-27 18:47:28 +0000670 if (isAlias) {
671 DOUT << " dead";
Evan Cheng75611fb2007-06-27 01:16:36 +0000672 end = getDefIndex(MIIdx) + 1;
Evan Cheng292da942007-06-27 18:47:28 +0000673 } else {
674 DOUT << " live through";
675 end = baseIndex;
676 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000677 }
678
Owen Anderson99500ae2008-09-15 22:00:38 +0000679 LiveRange LR(start, end, interval.getNextValue(~0U, 0, VNInfoAllocator));
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000680 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000681 interval.addKill(LR.valno, end);
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000682 DOUT << " +" << LR << '\n';
Evan Chengb371f452007-02-19 21:49:54 +0000683}
684
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000685/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000686/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000687/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000688/// which a variable is live
Dale Johannesen91aac102008-09-17 21:13:11 +0000689void LiveIntervals::computeIntervals() {
Dale Johannesen91aac102008-09-17 21:13:11 +0000690
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000691 DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
692 << "********** Function: "
693 << ((Value*)mf_->getFunction())->getName() << '\n';
Owen Anderson7fbad272008-07-23 21:37:49 +0000694
Chris Lattner428b92e2006-09-15 03:57:23 +0000695 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
696 MBBI != E; ++MBBI) {
697 MachineBasicBlock *MBB = MBBI;
Owen Anderson134eb732008-09-21 20:43:24 +0000698 // Track the index of the current machine instr.
699 unsigned MIIndex = getMBBStartIdx(MBB);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000700 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000701
Chris Lattner428b92e2006-09-15 03:57:23 +0000702 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000703
Dan Gohmancb406c22007-10-03 19:26:29 +0000704 // Create intervals for live-ins to this BB first.
705 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
706 LE = MBB->livein_end(); LI != LE; ++LI) {
707 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
708 // Multiple live-ins can alias the same register.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000709 for (const unsigned* AS = tri_->getSubRegisters(*LI); *AS; ++AS)
Dan Gohmancb406c22007-10-03 19:26:29 +0000710 if (!hasInterval(*AS))
711 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
712 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +0000713 }
714
Owen Anderson99500ae2008-09-15 22:00:38 +0000715 // Skip over empty initial indices.
716 while (MIIndex / InstrSlots::NUM < i2miMap_.size() &&
717 getInstructionFromIndex(MIIndex) == 0)
718 MIIndex += InstrSlots::NUM;
719
Chris Lattner428b92e2006-09-15 03:57:23 +0000720 for (; MI != miEnd; ++MI) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000721 DOUT << MIIndex << "\t" << *MI;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000722
Evan Cheng438f7bc2006-11-10 08:43:01 +0000723 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +0000724 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
725 MachineOperand &MO = MI->getOperand(i);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000726 // handle register defs - build intervals
Dan Gohmand735b802008-10-03 15:45:36 +0000727 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Evan Chengef0732d2008-07-10 07:35:43 +0000728 handleRegisterDef(MBB, MI, MIIndex, MO, i);
Dale Johannesen91aac102008-09-17 21:13:11 +0000729 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000730 }
Evan Cheng99fe34b2008-10-18 05:18:55 +0000731
732 // Skip over the empty slots after each instruction.
733 unsigned Slots = MI->getDesc().getNumDefs();
734 if (Slots == 0)
735 Slots = 1;
736 MIIndex += InstrSlots::NUM * Slots;
Owen Anderson7fbad272008-07-23 21:37:49 +0000737
738 // Skip over empty indices.
739 while (MIIndex / InstrSlots::NUM < i2miMap_.size() &&
740 getInstructionFromIndex(MIIndex) == 0)
741 MIIndex += InstrSlots::NUM;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000742 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000743 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000744}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000745
Evan Chengd0e32c52008-10-29 05:06:14 +0000746bool LiveIntervals::findLiveInMBBs(unsigned Start, unsigned End,
Evan Chenga5bfc972007-10-17 06:53:44 +0000747 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +0000748 std::vector<IdxMBBPair>::const_iterator I =
Evan Chengd0e32c52008-10-29 05:06:14 +0000749 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), Start);
Evan Cheng4ca980e2007-10-17 02:10:22 +0000750
751 bool ResVal = false;
752 while (I != Idx2MBBMap.end()) {
Dan Gohman2ad82452008-11-26 05:50:31 +0000753 if (I->first >= End)
Evan Cheng4ca980e2007-10-17 02:10:22 +0000754 break;
755 MBBs.push_back(I->second);
756 ResVal = true;
757 ++I;
758 }
759 return ResVal;
760}
761
Evan Chengd0e32c52008-10-29 05:06:14 +0000762bool LiveIntervals::findReachableMBBs(unsigned Start, unsigned End,
763 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
764 std::vector<IdxMBBPair>::const_iterator I =
765 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), Start);
766
767 bool ResVal = false;
768 while (I != Idx2MBBMap.end()) {
769 if (I->first > End)
770 break;
771 MachineBasicBlock *MBB = I->second;
772 if (getMBBEndIdx(MBB) > End)
773 break;
774 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
775 SE = MBB->succ_end(); SI != SE; ++SI)
776 MBBs.push_back(*SI);
777 ResVal = true;
778 ++I;
779 }
780 return ResVal;
781}
782
Owen Anderson03857b22008-08-13 21:49:13 +0000783LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000784 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
Jim Laskey7902c752006-11-07 12:25:45 +0000785 HUGE_VALF : 0.0F;
Owen Anderson03857b22008-08-13 21:49:13 +0000786 return new LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000787}
Evan Chengf2fbca62007-11-12 06:35:08 +0000788
Evan Chengc8d044e2008-02-15 18:24:29 +0000789/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
790/// copy field and returns the source register that defines it.
791unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
792 if (!VNI->copy)
793 return 0;
794
795 if (VNI->copy->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
796 return VNI->copy->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +0000797 if (VNI->copy->getOpcode() == TargetInstrInfo::INSERT_SUBREG)
798 return VNI->copy->getOperand(2).getReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000799 unsigned SrcReg, DstReg;
800 if (tii_->isMoveInstr(*VNI->copy, SrcReg, DstReg))
801 return SrcReg;
802 assert(0 && "Unrecognized copy instruction!");
803 return 0;
804}
Evan Chengf2fbca62007-11-12 06:35:08 +0000805
806//===----------------------------------------------------------------------===//
807// Register allocator hooks.
808//
809
Evan Chengd70dbb52008-02-22 09:24:50 +0000810/// getReMatImplicitUse - If the remat definition MI has one (for now, we only
811/// allow one) virtual register operand, then its uses are implicitly using
812/// the register. Returns the virtual register.
813unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
814 MachineInstr *MI) const {
815 unsigned RegOp = 0;
816 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
817 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000818 if (!MO.isReg() || !MO.isUse())
Evan Chengd70dbb52008-02-22 09:24:50 +0000819 continue;
820 unsigned Reg = MO.getReg();
821 if (Reg == 0 || Reg == li.reg)
822 continue;
823 // FIXME: For now, only remat MI with at most one register operand.
824 assert(!RegOp &&
825 "Can't rematerialize instruction with multiple register operand!");
826 RegOp = MO.getReg();
Dan Gohman6d69ba82008-07-25 00:02:30 +0000827#ifndef NDEBUG
Evan Chengd70dbb52008-02-22 09:24:50 +0000828 break;
Dan Gohman6d69ba82008-07-25 00:02:30 +0000829#endif
Evan Chengd70dbb52008-02-22 09:24:50 +0000830 }
831 return RegOp;
832}
833
834/// isValNoAvailableAt - Return true if the val# of the specified interval
835/// which reaches the given instruction also reaches the specified use index.
836bool LiveIntervals::isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
837 unsigned UseIdx) const {
838 unsigned Index = getInstructionIndex(MI);
839 VNInfo *ValNo = li.FindLiveRangeContaining(Index)->valno;
840 LiveInterval::const_iterator UI = li.FindLiveRangeContaining(UseIdx);
841 return UI != li.end() && UI->valno == ValNo;
842}
843
Evan Chengf2fbca62007-11-12 06:35:08 +0000844/// isReMaterializable - Returns true if the definition MI of the specified
845/// val# of the specified interval is re-materializable.
846bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000847 const VNInfo *ValNo, MachineInstr *MI,
Evan Chengdc377862008-09-30 15:44:16 +0000848 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000849 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +0000850 if (DisableReMat)
851 return false;
852
Evan Cheng20ccded2008-03-15 00:19:36 +0000853 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
Evan Chengd70dbb52008-02-22 09:24:50 +0000854 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +0000855
856 int FrameIdx = 0;
857 if (tii_->isLoadFromStackSlot(MI, FrameIdx) &&
Evan Cheng249ded32008-02-23 03:38:34 +0000858 mf_->getFrameInfo()->isImmutableObjectIndex(FrameIdx))
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000859 // FIXME: Let target specific isReallyTriviallyReMaterializable determines
860 // this but remember this is not safe to fold into a two-address
861 // instruction.
Evan Cheng249ded32008-02-23 03:38:34 +0000862 // This is a load from fixed stack slot. It can be rematerialized.
Evan Chengdd3465e2008-02-23 01:44:27 +0000863 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +0000864
Dan Gohman6d69ba82008-07-25 00:02:30 +0000865 // If the target-specific rules don't identify an instruction as
866 // being trivially rematerializable, use some target-independent
867 // rules.
868 if (!MI->getDesc().isRematerializable() ||
869 !tii_->isTriviallyReMaterializable(MI)) {
Dan Gohman4c8f8702008-07-25 15:08:37 +0000870 if (!EnableAggressiveRemat)
871 return false;
Evan Chengd70dbb52008-02-22 09:24:50 +0000872
Dan Gohman0471a792008-07-28 18:43:51 +0000873 // If the instruction accesses memory but the memoperands have been lost,
Dan Gohman6d69ba82008-07-25 00:02:30 +0000874 // we can't analyze it.
875 const TargetInstrDesc &TID = MI->getDesc();
876 if ((TID.mayLoad() || TID.mayStore()) && MI->memoperands_empty())
877 return false;
878
879 // Avoid instructions obviously unsafe for remat.
880 if (TID.hasUnmodeledSideEffects() || TID.isNotDuplicable())
881 return false;
882
883 // If the instruction accesses memory and the memory could be non-constant,
884 // assume the instruction is not rematerializable.
Evan Chengdc377862008-09-30 15:44:16 +0000885 for (std::list<MachineMemOperand>::const_iterator
886 I = MI->memoperands_begin(), E = MI->memoperands_end(); I != E; ++I){
Dan Gohman6d69ba82008-07-25 00:02:30 +0000887 const MachineMemOperand &MMO = *I;
888 if (MMO.isVolatile() || MMO.isStore())
889 return false;
890 const Value *V = MMO.getValue();
891 if (!V)
892 return false;
893 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
894 if (!PSV->isConstant(mf_->getFrameInfo()))
Evan Chengd70dbb52008-02-22 09:24:50 +0000895 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +0000896 } else if (!aa_->pointsToConstantMemory(V))
897 return false;
898 }
899
900 // If any of the registers accessed are non-constant, conservatively assume
901 // the instruction is not rematerializable.
902 unsigned ImpUse = 0;
903 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
904 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000905 if (MO.isReg()) {
Dan Gohman6d69ba82008-07-25 00:02:30 +0000906 unsigned Reg = MO.getReg();
907 if (Reg == 0)
908 continue;
909 if (TargetRegisterInfo::isPhysicalRegister(Reg))
910 return false;
911
912 // Only allow one def, and that in the first operand.
913 if (MO.isDef() != (i == 0))
914 return false;
915
916 // Only allow constant-valued registers.
917 bool IsLiveIn = mri_->isLiveIn(Reg);
918 MachineRegisterInfo::def_iterator I = mri_->def_begin(Reg),
919 E = mri_->def_end();
920
921 // For the def, it should be the only def.
922 if (MO.isDef() && (next(I) != E || IsLiveIn))
923 return false;
924
925 if (MO.isUse()) {
926 // Only allow one use other register use, as that's all the
927 // remat mechanisms support currently.
928 if (Reg != li.reg) {
929 if (ImpUse == 0)
930 ImpUse = Reg;
931 else if (Reg != ImpUse)
932 return false;
933 }
934 // For uses, there should be only one associate def.
935 if (I != E && (next(I) != E || IsLiveIn))
936 return false;
937 }
Evan Chengd70dbb52008-02-22 09:24:50 +0000938 }
939 }
Evan Cheng5ef3a042007-12-06 00:01:56 +0000940 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000941
Dan Gohman6d69ba82008-07-25 00:02:30 +0000942 unsigned ImpUse = getReMatImplicitUse(li, MI);
943 if (ImpUse) {
944 const LiveInterval &ImpLi = getInterval(ImpUse);
945 for (MachineRegisterInfo::use_iterator ri = mri_->use_begin(li.reg),
946 re = mri_->use_end(); ri != re; ++ri) {
947 MachineInstr *UseMI = &*ri;
948 unsigned UseIdx = getInstructionIndex(UseMI);
949 if (li.FindLiveRangeContaining(UseIdx)->valno != ValNo)
950 continue;
951 if (!isValNoAvailableAt(ImpLi, MI, UseIdx))
952 return false;
953 }
Evan Chengdc377862008-09-30 15:44:16 +0000954
955 // If a register operand of the re-materialized instruction is going to
956 // be spilled next, then it's not legal to re-materialize this instruction.
957 for (unsigned i = 0, e = SpillIs.size(); i != e; ++i)
958 if (ImpUse == SpillIs[i]->reg)
959 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +0000960 }
961 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000962}
963
Evan Cheng06587492008-10-24 02:05:00 +0000964/// isReMaterializable - Returns true if the definition MI of the specified
965/// val# of the specified interval is re-materializable.
966bool LiveIntervals::isReMaterializable(const LiveInterval &li,
967 const VNInfo *ValNo, MachineInstr *MI) {
968 SmallVector<LiveInterval*, 4> Dummy1;
969 bool Dummy2;
970 return isReMaterializable(li, ValNo, MI, Dummy1, Dummy2);
971}
972
Evan Cheng5ef3a042007-12-06 00:01:56 +0000973/// isReMaterializable - Returns true if every definition of MI of every
974/// val# of the specified interval is re-materializable.
Evan Chengdc377862008-09-30 15:44:16 +0000975bool LiveIntervals::isReMaterializable(const LiveInterval &li,
976 SmallVectorImpl<LiveInterval*> &SpillIs,
977 bool &isLoad) {
Evan Cheng5ef3a042007-12-06 00:01:56 +0000978 isLoad = false;
979 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
980 i != e; ++i) {
981 const VNInfo *VNI = *i;
982 unsigned DefIdx = VNI->def;
983 if (DefIdx == ~1U)
984 continue; // Dead val#.
985 // Is the def for the val# rematerializable?
986 if (DefIdx == ~0u)
987 return false;
988 MachineInstr *ReMatDefMI = getInstructionFromIndex(DefIdx);
989 bool DefIsLoad = false;
Evan Chengd70dbb52008-02-22 09:24:50 +0000990 if (!ReMatDefMI ||
Evan Chengdc377862008-09-30 15:44:16 +0000991 !isReMaterializable(li, VNI, ReMatDefMI, SpillIs, DefIsLoad))
Evan Cheng5ef3a042007-12-06 00:01:56 +0000992 return false;
993 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +0000994 }
995 return true;
996}
997
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000998/// FilterFoldedOps - Filter out two-address use operands. Return
999/// true if it finds any issue with the operands that ought to prevent
1000/// folding.
1001static bool FilterFoldedOps(MachineInstr *MI,
1002 SmallVector<unsigned, 2> &Ops,
1003 unsigned &MRInfo,
1004 SmallVector<unsigned, 2> &FoldOps) {
Chris Lattner749c6f62008-01-07 07:27:27 +00001005 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng6e141fd2007-12-12 23:12:09 +00001006
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001007 MRInfo = 0;
Evan Chengaee4af62007-12-02 08:30:39 +00001008 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
1009 unsigned OpIdx = Ops[i];
Evan Chengd70dbb52008-02-22 09:24:50 +00001010 MachineOperand &MO = MI->getOperand(OpIdx);
Evan Chengaee4af62007-12-02 08:30:39 +00001011 // FIXME: fold subreg use.
Evan Chengd70dbb52008-02-22 09:24:50 +00001012 if (MO.getSubReg())
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001013 return true;
Evan Chengd70dbb52008-02-22 09:24:50 +00001014 if (MO.isDef())
Evan Chengaee4af62007-12-02 08:30:39 +00001015 MRInfo |= (unsigned)VirtRegMap::isMod;
1016 else {
1017 // Filter out two-address use operand(s).
Evan Chengd70dbb52008-02-22 09:24:50 +00001018 if (!MO.isImplicit() &&
1019 TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) {
Evan Chengaee4af62007-12-02 08:30:39 +00001020 MRInfo = VirtRegMap::isModRef;
1021 continue;
1022 }
1023 MRInfo |= (unsigned)VirtRegMap::isRef;
1024 }
1025 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +00001026 }
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001027 return false;
1028}
1029
1030
1031/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
1032/// slot / to reg or any rematerialized load into ith operand of specified
1033/// MI. If it is successul, MI is updated with the newly created MI and
1034/// returns true.
1035bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
1036 VirtRegMap &vrm, MachineInstr *DefMI,
1037 unsigned InstrIdx,
1038 SmallVector<unsigned, 2> &Ops,
1039 bool isSS, int Slot, unsigned Reg) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001040 // If it is an implicit def instruction, just delete it.
Evan Cheng20ccded2008-03-15 00:19:36 +00001041 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001042 RemoveMachineInstrFromMaps(MI);
1043 vrm.RemoveMachineInstrFromMaps(MI);
1044 MI->eraseFromParent();
1045 ++numFolds;
1046 return true;
1047 }
1048
1049 // Filter the list of operand indexes that are to be folded. Abort if
1050 // any operand will prevent folding.
1051 unsigned MRInfo = 0;
1052 SmallVector<unsigned, 2> FoldOps;
1053 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1054 return false;
Evan Chenge62f97c2007-12-01 02:07:52 +00001055
Evan Cheng427f4c12008-03-31 23:19:51 +00001056 // The only time it's safe to fold into a two address instruction is when
1057 // it's folding reload and spill from / into a spill stack slot.
1058 if (DefMI && (MRInfo & VirtRegMap::isMod))
Evan Cheng249ded32008-02-23 03:38:34 +00001059 return false;
1060
Evan Chengf2f8c2a2008-02-08 22:05:27 +00001061 MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(*mf_, MI, FoldOps, Slot)
1062 : tii_->foldMemoryOperand(*mf_, MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001063 if (fmi) {
Evan Chengd3653122008-02-27 03:04:06 +00001064 // Remember this instruction uses the spill slot.
1065 if (isSS) vrm.addSpillSlotUse(Slot, fmi);
1066
Evan Chengf2fbca62007-11-12 06:35:08 +00001067 // Attempt to fold the memory reference into the instruction. If
1068 // we can do this, we don't need to insert spill code.
Evan Chengf2fbca62007-11-12 06:35:08 +00001069 MachineBasicBlock &MBB = *MI->getParent();
Evan Cheng84802932008-01-10 08:24:38 +00001070 if (isSS && !mf_->getFrameInfo()->isImmutableObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +00001071 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +00001072 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001073 vrm.transferRestorePts(MI, fmi);
Evan Chengc1f53c72008-03-11 21:34:46 +00001074 vrm.transferEmergencySpills(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +00001075 mi2iMap_.erase(MI);
Evan Chengcddbb832007-11-30 21:23:43 +00001076 i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
1077 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +00001078 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001079 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +00001080 return true;
1081 }
1082 return false;
1083}
1084
Evan Cheng018f9b02007-12-05 03:22:34 +00001085/// canFoldMemoryOperand - Returns true if the specified load / store
1086/// folding is possible.
1087bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001088 SmallVector<unsigned, 2> &Ops,
Evan Cheng3c75ba82008-04-01 21:37:32 +00001089 bool ReMat) const {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001090 // Filter the list of operand indexes that are to be folded. Abort if
1091 // any operand will prevent folding.
1092 unsigned MRInfo = 0;
Evan Cheng018f9b02007-12-05 03:22:34 +00001093 SmallVector<unsigned, 2> FoldOps;
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001094 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1095 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001096
Evan Cheng3c75ba82008-04-01 21:37:32 +00001097 // It's only legal to remat for a use, not a def.
1098 if (ReMat && (MRInfo & VirtRegMap::isMod))
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001099 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001100
Evan Chengd70dbb52008-02-22 09:24:50 +00001101 return tii_->canFoldMemoryOperand(MI, FoldOps);
1102}
1103
Evan Cheng81a03822007-11-17 00:40:40 +00001104bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
1105 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
1106 for (LiveInterval::Ranges::const_iterator
1107 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1108 std::vector<IdxMBBPair>::const_iterator II =
1109 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
1110 if (II == Idx2MBBMap.end())
1111 continue;
1112 if (I->end > II->first) // crossing a MBB.
1113 return false;
1114 MBBs.insert(II->second);
1115 if (MBBs.size() > 1)
1116 return false;
1117 }
1118 return true;
1119}
1120
Evan Chengd70dbb52008-02-22 09:24:50 +00001121/// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
1122/// interval on to-be re-materialized operands of MI) with new register.
1123void LiveIntervals::rewriteImplicitOps(const LiveInterval &li,
1124 MachineInstr *MI, unsigned NewVReg,
1125 VirtRegMap &vrm) {
1126 // There is an implicit use. That means one of the other operand is
1127 // being remat'ed and the remat'ed instruction has li.reg as an
1128 // use operand. Make sure we rewrite that as well.
1129 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1130 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001131 if (!MO.isReg())
Evan Chengd70dbb52008-02-22 09:24:50 +00001132 continue;
1133 unsigned Reg = MO.getReg();
1134 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
1135 continue;
1136 if (!vrm.isReMaterialized(Reg))
1137 continue;
1138 MachineInstr *ReMatMI = vrm.getReMaterializedMI(Reg);
Evan Cheng6130f662008-03-05 00:59:57 +00001139 MachineOperand *UseMO = ReMatMI->findRegisterUseOperand(li.reg);
1140 if (UseMO)
1141 UseMO->setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001142 }
1143}
1144
Evan Chengf2fbca62007-11-12 06:35:08 +00001145/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
1146/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +00001147bool LiveIntervals::
Evan Chengd70dbb52008-02-22 09:24:50 +00001148rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
1149 bool TrySplit, unsigned index, unsigned end, MachineInstr *MI,
Evan Cheng81a03822007-11-17 00:40:40 +00001150 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001151 unsigned Slot, int LdSlot,
1152 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001153 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001154 const TargetRegisterClass* rc,
1155 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001156 const MachineLoopInfo *loopInfo,
Evan Cheng313d4b82008-02-23 00:33:04 +00001157 unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
Owen Anderson28998312008-08-13 22:28:50 +00001158 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001159 std::vector<LiveInterval*> &NewLIs, float &SSWeight) {
1160 MachineBasicBlock *MBB = MI->getParent();
1161 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng018f9b02007-12-05 03:22:34 +00001162 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +00001163 RestartInstruction:
1164 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1165 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001166 if (!mop.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001167 continue;
1168 unsigned Reg = mop.getReg();
1169 unsigned RegI = Reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001170 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
Evan Chengf2fbca62007-11-12 06:35:08 +00001171 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +00001172 if (Reg != li.reg)
1173 continue;
1174
1175 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +00001176 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +00001177 int FoldSlot = Slot;
1178 if (DefIsReMat) {
1179 // If this is the rematerializable definition MI itself and
1180 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +00001181 if (MI == ReMatOrigDefMI && CanDelete) {
Evan Chengcddbb832007-11-30 21:23:43 +00001182 DOUT << "\t\t\t\tErasing re-materlizable def: ";
1183 DOUT << MI << '\n';
Evan Chengf2fbca62007-11-12 06:35:08 +00001184 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +00001185 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001186 MI->eraseFromParent();
1187 break;
1188 }
1189
1190 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001191 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +00001192 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +00001193 if (isLoad) {
1194 // Try fold loads (from stack slot, constant pool, etc.) into uses.
1195 FoldSS = isLoadSS;
1196 FoldSlot = LdSlot;
1197 }
1198 }
1199
Evan Chengf2fbca62007-11-12 06:35:08 +00001200 // Scan all of the operands of this instruction rewriting operands
1201 // to use NewVReg instead of li.reg as appropriate. We do this for
1202 // two reasons:
1203 //
1204 // 1. If the instr reads the same spilled vreg multiple times, we
1205 // want to reuse the NewVReg.
1206 // 2. If the instr is a two-addr instruction, we are required to
1207 // keep the src/dst regs pinned.
1208 //
1209 // Keep track of whether we replace a use and/or def so that we can
1210 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +00001211
Evan Cheng81a03822007-11-17 00:40:40 +00001212 HasUse = mop.isUse();
1213 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +00001214 SmallVector<unsigned, 2> Ops;
1215 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +00001216 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +00001217 const MachineOperand &MOj = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001218 if (!MOj.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001219 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001220 unsigned RegJ = MOj.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001221 if (RegJ == 0 || TargetRegisterInfo::isPhysicalRegister(RegJ))
Evan Chengf2fbca62007-11-12 06:35:08 +00001222 continue;
1223 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +00001224 Ops.push_back(j);
1225 HasUse |= MOj.isUse();
1226 HasDef |= MOj.isDef();
Evan Chengf2fbca62007-11-12 06:35:08 +00001227 }
1228 }
1229
Evan Cheng79a796c2008-07-12 01:56:02 +00001230 if (HasUse && !li.liveAt(getUseIndex(index)))
1231 // Must be defined by an implicit def. It should not be spilled. Note,
1232 // this is for correctness reason. e.g.
1233 // 8 %reg1024<def> = IMPLICIT_DEF
1234 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1235 // The live range [12, 14) are not part of the r1024 live interval since
1236 // it's defined by an implicit def. It will not conflicts with live
1237 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001238 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001239 // the INSERT_SUBREG and both target registers that would overlap.
1240 HasUse = false;
1241
Evan Cheng9c3c2212008-06-06 07:54:39 +00001242 // Update stack slot spill weight if we are splitting.
Evan Chengc3417602008-06-21 06:45:54 +00001243 float Weight = getSpillWeight(HasDef, HasUse, loopDepth);
Evan Cheng9c3c2212008-06-06 07:54:39 +00001244 if (!TrySplit)
1245 SSWeight += Weight;
1246
David Greene26b86a02008-10-27 17:38:59 +00001247 // Create a new virtual register for the spill interval.
1248 // Create the new register now so we can map the fold instruction
1249 // to the new register so when it is unfolded we get the correct
1250 // answer.
1251 bool CreatedNewVReg = false;
1252 if (NewVReg == 0) {
1253 NewVReg = mri_->createVirtualRegister(rc);
1254 vrm.grow();
1255 CreatedNewVReg = true;
1256 }
1257
Evan Cheng9c3c2212008-06-06 07:54:39 +00001258 if (!TryFold)
1259 CanFold = false;
1260 else {
Evan Cheng018f9b02007-12-05 03:22:34 +00001261 // Do not fold load / store here if we are splitting. We'll find an
1262 // optimal point to insert a load / store later.
1263 if (!TrySplit) {
1264 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
David Greene26b86a02008-10-27 17:38:59 +00001265 Ops, FoldSS, FoldSlot, NewVReg)) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001266 // Folding the load/store can completely change the instruction in
1267 // unpredictable ways, rescan it from the beginning.
David Greene26b86a02008-10-27 17:38:59 +00001268
1269 if (FoldSS) {
1270 // We need to give the new vreg the same stack slot as the
1271 // spilled interval.
1272 vrm.assignVirt2StackSlot(NewVReg, FoldSlot);
1273 }
1274
Evan Cheng018f9b02007-12-05 03:22:34 +00001275 HasUse = false;
1276 HasDef = false;
1277 CanFold = false;
Evan Cheng9c3c2212008-06-06 07:54:39 +00001278 if (isRemoved(MI)) {
1279 SSWeight -= Weight;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001280 break;
Evan Cheng9c3c2212008-06-06 07:54:39 +00001281 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001282 goto RestartInstruction;
1283 }
1284 } else {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001285 // We'll try to fold it later if it's profitable.
Evan Cheng3c75ba82008-04-01 21:37:32 +00001286 CanFold = canFoldMemoryOperand(MI, Ops, DefIsReMat);
Evan Cheng018f9b02007-12-05 03:22:34 +00001287 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001288 }
Evan Chengcddbb832007-11-30 21:23:43 +00001289
Evan Chengcddbb832007-11-30 21:23:43 +00001290 mop.setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001291 if (mop.isImplicit())
1292 rewriteImplicitOps(li, MI, NewVReg, vrm);
Evan Chengcddbb832007-11-30 21:23:43 +00001293
1294 // Reuse NewVReg for other reads.
Evan Chengd70dbb52008-02-22 09:24:50 +00001295 for (unsigned j = 0, e = Ops.size(); j != e; ++j) {
1296 MachineOperand &mopj = MI->getOperand(Ops[j]);
1297 mopj.setReg(NewVReg);
1298 if (mopj.isImplicit())
1299 rewriteImplicitOps(li, MI, NewVReg, vrm);
1300 }
Evan Chengcddbb832007-11-30 21:23:43 +00001301
Evan Cheng81a03822007-11-17 00:40:40 +00001302 if (CreatedNewVReg) {
1303 if (DefIsReMat) {
1304 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
Evan Chengd70dbb52008-02-22 09:24:50 +00001305 if (ReMatIds[VNI->id] == VirtRegMap::MAX_STACK_SLOT) {
Evan Cheng81a03822007-11-17 00:40:40 +00001306 // Each valnum may have its own remat id.
Evan Chengd70dbb52008-02-22 09:24:50 +00001307 ReMatIds[VNI->id] = vrm.assignVirtReMatId(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001308 } else {
Evan Chengd70dbb52008-02-22 09:24:50 +00001309 vrm.assignVirtReMatId(NewVReg, ReMatIds[VNI->id]);
Evan Cheng81a03822007-11-17 00:40:40 +00001310 }
1311 if (!CanDelete || (HasUse && HasDef)) {
1312 // If this is a two-addr instruction then its use operands are
1313 // rematerializable but its def is not. It should be assigned a
1314 // stack slot.
1315 vrm.assignVirt2StackSlot(NewVReg, Slot);
1316 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001317 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +00001318 vrm.assignVirt2StackSlot(NewVReg, Slot);
1319 }
Evan Chengcb3c3302007-11-29 23:02:50 +00001320 } else if (HasUse && HasDef &&
1321 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
1322 // If this interval hasn't been assigned a stack slot (because earlier
1323 // def is a deleted remat def), do it now.
1324 assert(Slot != VirtRegMap::NO_STACK_SLOT);
1325 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001326 }
1327
Evan Cheng313d4b82008-02-23 00:33:04 +00001328 // Re-matting an instruction with virtual register use. Add the
1329 // register as an implicit use on the use MI.
1330 if (DefIsReMat && ImpUse)
1331 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
1332
Evan Chengf2fbca62007-11-12 06:35:08 +00001333 // create a new register interval for this spill / remat.
1334 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001335 if (CreatedNewVReg) {
1336 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001337 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +00001338 if (TrySplit)
1339 vrm.setIsSplitFromReg(NewVReg, li.reg);
1340 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001341
1342 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +00001343 if (CreatedNewVReg) {
1344 LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
1345 nI.getNextValue(~0U, 0, VNInfoAllocator));
1346 DOUT << " +" << LR;
1347 nI.addRange(LR);
1348 } else {
1349 // Extend the split live interval to this def / use.
1350 unsigned End = getUseIndex(index)+1;
1351 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
1352 nI.getValNumInfo(nI.getNumValNums()-1));
1353 DOUT << " +" << LR;
1354 nI.addRange(LR);
1355 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001356 }
1357 if (HasDef) {
1358 LiveRange LR(getDefIndex(index), getStoreIndex(index),
1359 nI.getNextValue(~0U, 0, VNInfoAllocator));
1360 DOUT << " +" << LR;
1361 nI.addRange(LR);
1362 }
Evan Cheng81a03822007-11-17 00:40:40 +00001363
Evan Chengf2fbca62007-11-12 06:35:08 +00001364 DOUT << "\t\t\t\tAdded new interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001365 nI.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001366 DOUT << '\n';
1367 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001368 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +00001369}
Evan Cheng81a03822007-11-17 00:40:40 +00001370bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001371 const VNInfo *VNI,
1372 MachineBasicBlock *MBB, unsigned Idx) const {
Evan Cheng81a03822007-11-17 00:40:40 +00001373 unsigned End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001374 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
1375 unsigned KillIdx = VNI->kills[j];
1376 if (KillIdx > Idx && KillIdx < End)
1377 return true;
Evan Cheng81a03822007-11-17 00:40:40 +00001378 }
1379 return false;
1380}
1381
Evan Cheng063284c2008-02-21 00:34:19 +00001382/// RewriteInfo - Keep track of machine instrs that will be rewritten
1383/// during spilling.
Dan Gohman844731a2008-05-13 00:00:25 +00001384namespace {
1385 struct RewriteInfo {
1386 unsigned Index;
1387 MachineInstr *MI;
1388 bool HasUse;
1389 bool HasDef;
1390 RewriteInfo(unsigned i, MachineInstr *mi, bool u, bool d)
1391 : Index(i), MI(mi), HasUse(u), HasDef(d) {}
1392 };
Evan Cheng063284c2008-02-21 00:34:19 +00001393
Dan Gohman844731a2008-05-13 00:00:25 +00001394 struct RewriteInfoCompare {
1395 bool operator()(const RewriteInfo &LHS, const RewriteInfo &RHS) const {
1396 return LHS.Index < RHS.Index;
1397 }
1398 };
1399}
Evan Cheng063284c2008-02-21 00:34:19 +00001400
Evan Chengf2fbca62007-11-12 06:35:08 +00001401void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001402rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +00001403 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +00001404 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001405 unsigned Slot, int LdSlot,
1406 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001407 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001408 const TargetRegisterClass* rc,
1409 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001410 const MachineLoopInfo *loopInfo,
Evan Cheng81a03822007-11-17 00:40:40 +00001411 BitVector &SpillMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001412 DenseMap<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001413 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001414 DenseMap<unsigned, std::vector<SRInfo> > &RestoreIdxes,
1415 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001416 std::vector<LiveInterval*> &NewLIs, float &SSWeight) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001417 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001418 unsigned NewVReg = 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001419 unsigned start = getBaseIndex(I->start);
Evan Chengf2fbca62007-11-12 06:35:08 +00001420 unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
Evan Chengf2fbca62007-11-12 06:35:08 +00001421
Evan Cheng063284c2008-02-21 00:34:19 +00001422 // First collect all the def / use in this live range that will be rewritten.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001423 // Make sure they are sorted according to instruction index.
Evan Cheng063284c2008-02-21 00:34:19 +00001424 std::vector<RewriteInfo> RewriteMIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001425 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1426 re = mri_->reg_end(); ri != re; ) {
Evan Cheng419852c2008-04-03 16:39:43 +00001427 MachineInstr *MI = &*ri;
Evan Cheng063284c2008-02-21 00:34:19 +00001428 MachineOperand &O = ri.getOperand();
1429 ++ri;
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001430 assert(!O.isImplicit() && "Spilling register that's used as implicit use?");
Evan Cheng063284c2008-02-21 00:34:19 +00001431 unsigned index = getInstructionIndex(MI);
1432 if (index < start || index >= end)
1433 continue;
Evan Cheng79a796c2008-07-12 01:56:02 +00001434 if (O.isUse() && !li.liveAt(getUseIndex(index)))
1435 // Must be defined by an implicit def. It should not be spilled. Note,
1436 // this is for correctness reason. e.g.
1437 // 8 %reg1024<def> = IMPLICIT_DEF
1438 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1439 // The live range [12, 14) are not part of the r1024 live interval since
1440 // it's defined by an implicit def. It will not conflicts with live
1441 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001442 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001443 // the INSERT_SUBREG and both target registers that would overlap.
1444 continue;
Evan Cheng063284c2008-02-21 00:34:19 +00001445 RewriteMIs.push_back(RewriteInfo(index, MI, O.isUse(), O.isDef()));
1446 }
1447 std::sort(RewriteMIs.begin(), RewriteMIs.end(), RewriteInfoCompare());
1448
Evan Cheng313d4b82008-02-23 00:33:04 +00001449 unsigned ImpUse = DefIsReMat ? getReMatImplicitUse(li, ReMatDefMI) : 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001450 // Now rewrite the defs and uses.
1451 for (unsigned i = 0, e = RewriteMIs.size(); i != e; ) {
1452 RewriteInfo &rwi = RewriteMIs[i];
1453 ++i;
1454 unsigned index = rwi.Index;
1455 bool MIHasUse = rwi.HasUse;
1456 bool MIHasDef = rwi.HasDef;
1457 MachineInstr *MI = rwi.MI;
1458 // If MI def and/or use the same register multiple times, then there
1459 // are multiple entries.
Evan Cheng313d4b82008-02-23 00:33:04 +00001460 unsigned NumUses = MIHasUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001461 while (i != e && RewriteMIs[i].MI == MI) {
1462 assert(RewriteMIs[i].Index == index);
Evan Cheng313d4b82008-02-23 00:33:04 +00001463 bool isUse = RewriteMIs[i].HasUse;
1464 if (isUse) ++NumUses;
1465 MIHasUse |= isUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001466 MIHasDef |= RewriteMIs[i].HasDef;
1467 ++i;
1468 }
Evan Cheng81a03822007-11-17 00:40:40 +00001469 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng313d4b82008-02-23 00:33:04 +00001470
Evan Cheng0a891ed2008-05-23 23:00:04 +00001471 if (ImpUse && MI != ReMatDefMI) {
Evan Cheng313d4b82008-02-23 00:33:04 +00001472 // Re-matting an instruction with virtual register use. Update the
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001473 // register interval's spill weight to HUGE_VALF to prevent it from
1474 // being spilled.
Evan Cheng313d4b82008-02-23 00:33:04 +00001475 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001476 ImpLi.weight = HUGE_VALF;
Evan Cheng313d4b82008-02-23 00:33:04 +00001477 }
1478
Evan Cheng063284c2008-02-21 00:34:19 +00001479 unsigned MBBId = MBB->getNumber();
Evan Cheng018f9b02007-12-05 03:22:34 +00001480 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +00001481 if (TrySplit) {
Owen Anderson28998312008-08-13 22:28:50 +00001482 DenseMap<unsigned,unsigned>::iterator NVI = MBBVRegsMap.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001483 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001484 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001485 // One common case:
1486 // x = use
1487 // ...
1488 // ...
1489 // def = ...
1490 // = use
1491 // It's better to start a new interval to avoid artifically
1492 // extend the new interval.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001493 if (MIHasDef && !MIHasUse) {
1494 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00001495 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001496 }
1497 }
Evan Chengcada2452007-11-28 01:28:46 +00001498 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001499
1500 bool IsNew = ThisVReg == 0;
1501 if (IsNew) {
1502 // This ends the previous live interval. If all of its def / use
1503 // can be folded, give it a low spill weight.
1504 if (NewVReg && TrySplit && AllCanFold) {
1505 LiveInterval &nI = getOrCreateInterval(NewVReg);
1506 nI.weight /= 10.0F;
1507 }
1508 AllCanFold = true;
1509 }
1510 NewVReg = ThisVReg;
1511
Evan Cheng81a03822007-11-17 00:40:40 +00001512 bool HasDef = false;
1513 bool HasUse = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001514 bool CanFold = rewriteInstructionForSpills(li, I->valno, TrySplit,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001515 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
1516 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
1517 CanDelete, vrm, rc, ReMatIds, loopInfo, NewVReg,
1518 ImpUse, HasDef, HasUse, MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001519 if (!HasDef && !HasUse)
1520 continue;
1521
Evan Cheng018f9b02007-12-05 03:22:34 +00001522 AllCanFold &= CanFold;
1523
Evan Cheng81a03822007-11-17 00:40:40 +00001524 // Update weight of spill interval.
1525 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00001526 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00001527 // The spill weight is now infinity as it cannot be spilled again.
1528 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001529 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00001530 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001531
1532 // Keep track of the last def and first use in each MBB.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001533 if (HasDef) {
1534 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001535 bool HasKill = false;
1536 if (!HasUse)
1537 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
1538 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001539 // If this is a two-address code, then this index starts a new VNInfo.
Evan Cheng3f32d652008-06-04 09:18:41 +00001540 const VNInfo *VNI = li.findDefinedVNInfo(getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00001541 if (VNI)
1542 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
1543 }
Owen Anderson28998312008-08-13 22:28:50 +00001544 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Chenge3110d02007-12-01 04:42:39 +00001545 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001546 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001547 if (SII == SpillIdxes.end()) {
1548 std::vector<SRInfo> S;
1549 S.push_back(SRInfo(index, NewVReg, true));
1550 SpillIdxes.insert(std::make_pair(MBBId, S));
1551 } else if (SII->second.back().vreg != NewVReg) {
1552 SII->second.push_back(SRInfo(index, NewVReg, true));
1553 } else if ((int)index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001554 // If there is an earlier def and this is a two-address
1555 // instruction, then it's not possible to fold the store (which
1556 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00001557 SRInfo &Info = SII->second.back();
1558 Info.index = index;
1559 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001560 }
1561 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00001562 } else if (SII != SpillIdxes.end() &&
1563 SII->second.back().vreg == NewVReg &&
1564 (int)index > SII->second.back().index) {
1565 // There is an earlier def that's not killed (must be two-address).
1566 // The spill is no longer needed.
1567 SII->second.pop_back();
1568 if (SII->second.empty()) {
1569 SpillIdxes.erase(MBBId);
1570 SpillMBBs.reset(MBBId);
1571 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001572 }
1573 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001574 }
1575
1576 if (HasUse) {
Owen Anderson28998312008-08-13 22:28:50 +00001577 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001578 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001579 if (SII != SpillIdxes.end() &&
1580 SII->second.back().vreg == NewVReg &&
1581 (int)index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001582 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001583 SII->second.back().canFold = false;
Owen Anderson28998312008-08-13 22:28:50 +00001584 DenseMap<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001585 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001586 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001587 // If we are splitting live intervals, only fold if it's the first
1588 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001589 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001590 else if (IsNew) {
1591 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001592 if (RII == RestoreIdxes.end()) {
1593 std::vector<SRInfo> Infos;
1594 Infos.push_back(SRInfo(index, NewVReg, true));
1595 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
1596 } else {
1597 RII->second.push_back(SRInfo(index, NewVReg, true));
1598 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001599 RestoreMBBs.set(MBBId);
1600 }
1601 }
1602
1603 // Update spill weight.
Evan Cheng22f07ff2007-12-11 02:09:15 +00001604 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Chengc3417602008-06-21 06:45:54 +00001605 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00001606 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001607
1608 if (NewVReg && TrySplit && AllCanFold) {
1609 // If all of its def / use can be folded, give it a low spill weight.
1610 LiveInterval &nI = getOrCreateInterval(NewVReg);
1611 nI.weight /= 10.0F;
1612 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001613}
1614
Evan Cheng1953d0c2007-11-29 10:12:14 +00001615bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
1616 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001617 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001618 if (!RestoreMBBs[Id])
1619 return false;
1620 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1621 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1622 if (Restores[i].index == index &&
1623 Restores[i].vreg == vr &&
1624 Restores[i].canFold)
1625 return true;
1626 return false;
1627}
1628
1629void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
1630 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001631 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001632 if (!RestoreMBBs[Id])
1633 return;
1634 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1635 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1636 if (Restores[i].index == index && Restores[i].vreg)
1637 Restores[i].index = -1;
1638}
Evan Cheng81a03822007-11-17 00:40:40 +00001639
Evan Cheng4cce6b42008-04-11 17:53:36 +00001640/// handleSpilledImpDefs - Remove IMPLICIT_DEF instructions which are being
1641/// spilled and create empty intervals for their uses.
1642void
1643LiveIntervals::handleSpilledImpDefs(const LiveInterval &li, VirtRegMap &vrm,
1644 const TargetRegisterClass* rc,
1645 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng419852c2008-04-03 16:39:43 +00001646 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1647 re = mri_->reg_end(); ri != re; ) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001648 MachineOperand &O = ri.getOperand();
Evan Cheng419852c2008-04-03 16:39:43 +00001649 MachineInstr *MI = &*ri;
1650 ++ri;
Evan Cheng4cce6b42008-04-11 17:53:36 +00001651 if (O.isDef()) {
1652 assert(MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF &&
1653 "Register def was not rewritten?");
1654 RemoveMachineInstrFromMaps(MI);
1655 vrm.RemoveMachineInstrFromMaps(MI);
1656 MI->eraseFromParent();
1657 } else {
1658 // This must be an use of an implicit_def so it's not part of the live
1659 // interval. Create a new empty live interval for it.
1660 // FIXME: Can we simply erase some of the instructions? e.g. Stores?
1661 unsigned NewVReg = mri_->createVirtualRegister(rc);
1662 vrm.grow();
1663 vrm.setIsImplicitlyDefined(NewVReg);
1664 NewLIs.push_back(&getOrCreateInterval(NewVReg));
1665 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1666 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001667 if (MO.isReg() && MO.getReg() == li.reg)
Evan Cheng4cce6b42008-04-11 17:53:36 +00001668 MO.setReg(NewVReg);
1669 }
1670 }
Evan Cheng419852c2008-04-03 16:39:43 +00001671 }
1672}
1673
Owen Anderson133f10f2008-08-18 19:52:22 +00001674namespace {
1675 struct LISorter {
1676 bool operator()(LiveInterval* A, LiveInterval* B) {
1677 return A->beginNumber() < B->beginNumber();
1678 }
1679 };
1680}
Evan Cheng81a03822007-11-17 00:40:40 +00001681
Evan Chengf2fbca62007-11-12 06:35:08 +00001682std::vector<LiveInterval*> LiveIntervals::
Owen Andersond6664312008-08-18 18:05:32 +00001683addIntervalsForSpillsFast(const LiveInterval &li,
1684 const MachineLoopInfo *loopInfo,
1685 VirtRegMap &vrm, float& SSWeight) {
Owen Anderson17197312008-08-18 23:41:04 +00001686 unsigned slot = vrm.assignVirt2StackSlot(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00001687
1688 std::vector<LiveInterval*> added;
1689
1690 assert(li.weight != HUGE_VALF &&
1691 "attempt to spill already spilled interval!");
1692
1693 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
1694 DEBUG(li.dump());
1695 DOUT << '\n';
1696
1697 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
1698
Owen Anderson9a032932008-08-18 21:20:32 +00001699 SSWeight = 0.0f;
1700
Owen Andersona41e47a2008-08-19 22:12:11 +00001701 MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg);
1702 while (RI != mri_->reg_end()) {
1703 MachineInstr* MI = &*RI;
1704
1705 SmallVector<unsigned, 2> Indices;
1706 bool HasUse = false;
1707 bool HasDef = false;
1708
1709 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1710 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001711 if (!mop.isReg() || mop.getReg() != li.reg) continue;
Owen Andersona41e47a2008-08-19 22:12:11 +00001712
1713 HasUse |= MI->getOperand(i).isUse();
1714 HasDef |= MI->getOperand(i).isDef();
1715
1716 Indices.push_back(i);
1717 }
1718
1719 if (!tryFoldMemoryOperand(MI, vrm, NULL, getInstructionIndex(MI),
1720 Indices, true, slot, li.reg)) {
1721 unsigned NewVReg = mri_->createVirtualRegister(rc);
Owen Anderson9a032932008-08-18 21:20:32 +00001722 vrm.grow();
Owen Anderson17197312008-08-18 23:41:04 +00001723 vrm.assignVirt2StackSlot(NewVReg, slot);
1724
Owen Andersona41e47a2008-08-19 22:12:11 +00001725 // create a new register for this spill
1726 LiveInterval &nI = getOrCreateInterval(NewVReg);
Owen Andersond6664312008-08-18 18:05:32 +00001727
Owen Andersona41e47a2008-08-19 22:12:11 +00001728 // the spill weight is now infinity as it
1729 // cannot be spilled again
1730 nI.weight = HUGE_VALF;
1731
1732 // Rewrite register operands to use the new vreg.
1733 for (SmallVectorImpl<unsigned>::iterator I = Indices.begin(),
1734 E = Indices.end(); I != E; ++I) {
1735 MI->getOperand(*I).setReg(NewVReg);
1736
1737 if (MI->getOperand(*I).isUse())
1738 MI->getOperand(*I).setIsKill(true);
1739 }
1740
1741 // Fill in the new live interval.
1742 unsigned index = getInstructionIndex(MI);
1743 if (HasUse) {
1744 LiveRange LR(getLoadIndex(index), getUseIndex(index),
1745 nI.getNextValue(~0U, 0, getVNInfoAllocator()));
1746 DOUT << " +" << LR;
1747 nI.addRange(LR);
1748 vrm.addRestorePoint(NewVReg, MI);
1749 }
1750 if (HasDef) {
1751 LiveRange LR(getDefIndex(index), getStoreIndex(index),
1752 nI.getNextValue(~0U, 0, getVNInfoAllocator()));
1753 DOUT << " +" << LR;
1754 nI.addRange(LR);
1755 vrm.addSpillPoint(NewVReg, true, MI);
1756 }
1757
Owen Anderson17197312008-08-18 23:41:04 +00001758 added.push_back(&nI);
Owen Anderson8dc2cbe2008-08-18 18:38:12 +00001759
Owen Andersona41e47a2008-08-19 22:12:11 +00001760 DOUT << "\t\t\t\tadded new interval: ";
1761 DEBUG(nI.dump());
1762 DOUT << '\n';
1763
1764 unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
1765 if (HasUse) {
1766 if (HasDef)
1767 SSWeight += getSpillWeight(true, true, loopDepth);
1768 else
1769 SSWeight += getSpillWeight(false, true, loopDepth);
1770 } else
1771 SSWeight += getSpillWeight(true, false, loopDepth);
1772 }
Owen Anderson9a032932008-08-18 21:20:32 +00001773
Owen Anderson9a032932008-08-18 21:20:32 +00001774
Owen Andersona41e47a2008-08-19 22:12:11 +00001775 RI = mri_->reg_begin(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00001776 }
Owen Andersond6664312008-08-18 18:05:32 +00001777
Owen Andersona41e47a2008-08-19 22:12:11 +00001778 // Clients expect the new intervals to be returned in sorted order.
Owen Anderson133f10f2008-08-18 19:52:22 +00001779 std::sort(added.begin(), added.end(), LISorter());
1780
Owen Andersond6664312008-08-18 18:05:32 +00001781 return added;
1782}
1783
1784std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001785addIntervalsForSpills(const LiveInterval &li,
Evan Chengdc377862008-09-30 15:44:16 +00001786 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001787 const MachineLoopInfo *loopInfo, VirtRegMap &vrm,
1788 float &SSWeight) {
Owen Andersonae339ba2008-08-19 00:17:30 +00001789
1790 if (EnableFastSpilling)
1791 return addIntervalsForSpillsFast(li, loopInfo, vrm, SSWeight);
1792
Evan Chengf2fbca62007-11-12 06:35:08 +00001793 assert(li.weight != HUGE_VALF &&
1794 "attempt to spill already spilled interval!");
1795
1796 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001797 li.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001798 DOUT << '\n';
1799
Evan Cheng9c3c2212008-06-06 07:54:39 +00001800 // Spill slot weight.
1801 SSWeight = 0.0f;
1802
Evan Cheng81a03822007-11-17 00:40:40 +00001803 // Each bit specify whether it a spill is required in the MBB.
1804 BitVector SpillMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00001805 DenseMap<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001806 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00001807 DenseMap<unsigned, std::vector<SRInfo> > RestoreIdxes;
1808 DenseMap<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00001809 std::vector<LiveInterval*> NewLIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001810 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
Evan Chengf2fbca62007-11-12 06:35:08 +00001811
1812 unsigned NumValNums = li.getNumValNums();
1813 SmallVector<MachineInstr*, 4> ReMatDefs;
1814 ReMatDefs.resize(NumValNums, NULL);
1815 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
1816 ReMatOrigDefs.resize(NumValNums, NULL);
1817 SmallVector<int, 4> ReMatIds;
1818 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
1819 BitVector ReMatDelete(NumValNums);
1820 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
1821
Evan Cheng81a03822007-11-17 00:40:40 +00001822 // Spilling a split live interval. It cannot be split any further. Also,
1823 // it's also guaranteed to be a single val# / range interval.
1824 if (vrm.getPreSplitReg(li.reg)) {
1825 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00001826 // Unset the split kill marker on the last use.
1827 unsigned KillIdx = vrm.getKillPoint(li.reg);
1828 if (KillIdx) {
1829 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
1830 assert(KillMI && "Last use disappeared?");
1831 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
1832 assert(KillOp != -1 && "Last use disappeared?");
Chris Lattnerf7382302007-12-30 21:56:09 +00001833 KillMI->getOperand(KillOp).setIsKill(false);
Evan Chengd120ffd2007-12-05 10:24:35 +00001834 }
Evan Chengadf85902007-12-05 09:51:10 +00001835 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00001836 bool DefIsReMat = vrm.isReMaterialized(li.reg);
1837 Slot = vrm.getStackSlot(li.reg);
1838 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
1839 MachineInstr *ReMatDefMI = DefIsReMat ?
1840 vrm.getReMaterializedMI(li.reg) : NULL;
1841 int LdSlot = 0;
1842 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1843 bool isLoad = isLoadSS ||
Chris Lattner749c6f62008-01-07 07:27:27 +00001844 (DefIsReMat && (ReMatDefMI->getDesc().isSimpleLoad()));
Evan Cheng81a03822007-11-17 00:40:40 +00001845 bool IsFirstRange = true;
1846 for (LiveInterval::Ranges::const_iterator
1847 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1848 // If this is a split live interval with multiple ranges, it means there
1849 // are two-address instructions that re-defined the value. Only the
1850 // first def can be rematerialized!
1851 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00001852 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00001853 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
1854 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00001855 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001856 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001857 MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001858 } else {
1859 rewriteInstructionsForSpills(li, false, I, NULL, 0,
1860 Slot, 0, false, false, false,
Evan Chengd70dbb52008-02-22 09:24:50 +00001861 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001862 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001863 MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001864 }
1865 IsFirstRange = false;
1866 }
Evan Cheng419852c2008-04-03 16:39:43 +00001867
Evan Cheng9c3c2212008-06-06 07:54:39 +00001868 SSWeight = 0.0f; // Already accounted for when split.
Evan Cheng4cce6b42008-04-11 17:53:36 +00001869 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001870 return NewLIs;
1871 }
1872
1873 bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001874 if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
1875 TrySplit = false;
1876 if (TrySplit)
1877 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00001878 bool NeedStackSlot = false;
1879 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1880 i != e; ++i) {
1881 const VNInfo *VNI = *i;
1882 unsigned VN = VNI->id;
1883 unsigned DefIdx = VNI->def;
1884 if (DefIdx == ~1U)
1885 continue; // Dead val#.
1886 // Is the def for the val# rematerializable?
Evan Cheng81a03822007-11-17 00:40:40 +00001887 MachineInstr *ReMatDefMI = (DefIdx == ~0u)
1888 ? 0 : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001889 bool dummy;
Evan Chengdc377862008-09-30 15:44:16 +00001890 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, SpillIs, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001891 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00001892 ReMatOrigDefs[VN] = ReMatDefMI;
Dan Gohman2c3f7ae2008-07-17 23:49:46 +00001893 // Original def may be modified so we have to make a copy here.
Evan Cheng1ed99222008-07-19 00:37:25 +00001894 MachineInstr *Clone = mf_->CloneMachineInstr(ReMatDefMI);
1895 ClonedMIs.push_back(Clone);
1896 ReMatDefs[VN] = Clone;
Evan Chengf2fbca62007-11-12 06:35:08 +00001897
1898 bool CanDelete = true;
Evan Chengc3fc7d92007-11-29 09:49:23 +00001899 if (VNI->hasPHIKill) {
1900 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00001901 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001902 CanDelete = false;
1903 // Need a stack slot if there is any live range where uses cannot be
1904 // rematerialized.
1905 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00001906 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001907 if (CanDelete)
1908 ReMatDelete.set(VN);
1909 } else {
1910 // Need a stack slot if there is any live range where uses cannot be
1911 // rematerialized.
1912 NeedStackSlot = true;
1913 }
1914 }
1915
1916 // One stack slot per live interval.
Evan Cheng81a03822007-11-17 00:40:40 +00001917 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0)
Evan Chengf2fbca62007-11-12 06:35:08 +00001918 Slot = vrm.assignVirt2StackSlot(li.reg);
1919
1920 // Create new intervals and rewrite defs and uses.
1921 for (LiveInterval::Ranges::const_iterator
1922 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00001923 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
1924 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
1925 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00001926 bool CanDelete = ReMatDelete[I->valno->id];
1927 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00001928 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001929 bool isLoad = isLoadSS ||
Chris Lattner749c6f62008-01-07 07:27:27 +00001930 (DefIsReMat && ReMatDefMI->getDesc().isSimpleLoad());
Evan Cheng81a03822007-11-17 00:40:40 +00001931 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001932 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00001933 CanDelete, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001934 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001935 MBBVRegsMap, NewLIs, SSWeight);
Evan Chengf2fbca62007-11-12 06:35:08 +00001936 }
1937
Evan Cheng0cbb1162007-11-29 01:06:25 +00001938 // Insert spills / restores if we are splitting.
Evan Cheng419852c2008-04-03 16:39:43 +00001939 if (!TrySplit) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001940 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001941 return NewLIs;
Evan Cheng419852c2008-04-03 16:39:43 +00001942 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001943
Evan Chengb50bb8c2007-12-05 08:16:32 +00001944 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00001945 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001946 if (NeedStackSlot) {
1947 int Id = SpillMBBs.find_first();
1948 while (Id != -1) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001949 MachineBasicBlock *MBB = mf_->getBlockNumbered(Id);
1950 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001951 std::vector<SRInfo> &spills = SpillIdxes[Id];
1952 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
1953 int index = spills[i].index;
1954 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001955 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001956 bool isReMat = vrm.isReMaterialized(VReg);
1957 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001958 bool CanFold = false;
1959 bool FoundUse = false;
1960 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001961 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001962 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001963 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1964 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001965 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001966 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001967
1968 Ops.push_back(j);
1969 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00001970 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001971 if (isReMat ||
1972 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
1973 RestoreMBBs, RestoreIdxes))) {
1974 // MI has two-address uses of the same register. If the use
1975 // isn't the first and only use in the BB, then we can't fold
1976 // it. FIXME: Move this to rewriteInstructionsForSpills.
1977 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00001978 break;
1979 }
Evan Chengaee4af62007-12-02 08:30:39 +00001980 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001981 }
1982 }
1983 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001984 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001985 if (CanFold && !Ops.empty()) {
1986 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00001987 Folded = true;
Evan Chengf38d14f2007-12-05 09:05:34 +00001988 if (FoundUse > 0) {
Evan Chengaee4af62007-12-02 08:30:39 +00001989 // Also folded uses, do not issue a load.
1990 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Evan Chengf38d14f2007-12-05 09:05:34 +00001991 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
1992 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001993 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00001994 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001995 }
1996
Evan Cheng7e073ba2008-04-09 20:57:25 +00001997 // Otherwise tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00001998 if (!Folded) {
1999 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
2000 bool isKill = LR->end == getStoreIndex(index);
Evan Chengb0a6f622008-05-20 08:10:37 +00002001 if (!MI->registerDefIsDead(nI.reg))
2002 // No need to spill a dead def.
2003 vrm.addSpillPoint(VReg, isKill, MI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002004 if (isKill)
2005 AddedKill.insert(&nI);
2006 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00002007
2008 // Update spill slot weight.
2009 if (!isReMat)
Evan Chengc3417602008-06-21 06:45:54 +00002010 SSWeight += getSpillWeight(true, false, loopDepth);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002011 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002012 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00002013 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002014 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002015
Evan Cheng1953d0c2007-11-29 10:12:14 +00002016 int Id = RestoreMBBs.find_first();
2017 while (Id != -1) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00002018 MachineBasicBlock *MBB = mf_->getBlockNumbered(Id);
2019 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
2020
Evan Cheng1953d0c2007-11-29 10:12:14 +00002021 std::vector<SRInfo> &restores = RestoreIdxes[Id];
2022 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
2023 int index = restores[i].index;
2024 if (index == -1)
2025 continue;
2026 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00002027 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng9c3c2212008-06-06 07:54:39 +00002028 bool isReMat = vrm.isReMaterialized(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00002029 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00002030 bool CanFold = false;
2031 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00002032 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00002033 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00002034 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
2035 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00002036 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng81a03822007-11-17 00:40:40 +00002037 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00002038
Evan Cheng0cbb1162007-11-29 01:06:25 +00002039 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00002040 // If this restore were to be folded, it would have been folded
2041 // already.
2042 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00002043 break;
2044 }
Evan Chengaee4af62007-12-02 08:30:39 +00002045 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00002046 }
2047 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002048
2049 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00002050 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00002051 if (CanFold && !Ops.empty()) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00002052 if (!isReMat)
Evan Chengaee4af62007-12-02 08:30:39 +00002053 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
2054 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00002055 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
2056 int LdSlot = 0;
2057 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
2058 // If the rematerializable def is a load, also try to fold it.
Chris Lattner749c6f62008-01-07 07:27:27 +00002059 if (isLoadSS || ReMatDefMI->getDesc().isSimpleLoad())
Evan Chengaee4af62007-12-02 08:30:39 +00002060 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
2061 Ops, isLoadSS, LdSlot, VReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00002062 unsigned ImpUse = getReMatImplicitUse(li, ReMatDefMI);
2063 if (ImpUse) {
2064 // Re-matting an instruction with virtual register use. Add the
2065 // register as an implicit use on the use MI and update the register
Evan Cheng24d2f8a2008-03-31 07:53:30 +00002066 // interval's spill weight to HUGE_VALF to prevent it from being
2067 // spilled.
Evan Chengd70dbb52008-02-22 09:24:50 +00002068 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00002069 ImpLi.weight = HUGE_VALF;
Evan Chengd70dbb52008-02-22 09:24:50 +00002070 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
2071 }
Evan Chengaee4af62007-12-02 08:30:39 +00002072 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002073 }
2074 // If folding is not possible / failed, then tell the spiller to issue a
2075 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00002076 if (Folded)
2077 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002078 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00002079 vrm.addRestorePoint(VReg, MI);
Evan Cheng9c3c2212008-06-06 07:54:39 +00002080
2081 // Update spill slot weight.
2082 if (!isReMat)
Evan Chengc3417602008-06-21 06:45:54 +00002083 SSWeight += getSpillWeight(false, true, loopDepth);
Evan Cheng81a03822007-11-17 00:40:40 +00002084 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002085 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00002086 }
2087
Evan Chengb50bb8c2007-12-05 08:16:32 +00002088 // Finalize intervals: add kills, finalize spill weights, and filter out
2089 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00002090 std::vector<LiveInterval*> RetNewLIs;
2091 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
2092 LiveInterval *LI = NewLIs[i];
2093 if (!LI->empty()) {
Owen Anderson496bac52008-07-23 19:47:27 +00002094 LI->weight /= InstrSlots::NUM * getApproximateInstructionCount(*LI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002095 if (!AddedKill.count(LI)) {
2096 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Evan Chengd120ffd2007-12-05 10:24:35 +00002097 unsigned LastUseIdx = getBaseIndex(LR->end);
2098 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Cheng6130f662008-03-05 00:59:57 +00002099 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg, false);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002100 assert(UseIdx != -1);
Evan Chengd70dbb52008-02-22 09:24:50 +00002101 if (LastUse->getOperand(UseIdx).isImplicit() ||
2102 LastUse->getDesc().getOperandConstraint(UseIdx,TOI::TIED_TO) == -1){
Evan Chengb50bb8c2007-12-05 08:16:32 +00002103 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00002104 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00002105 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00002106 }
Evan Cheng597d10d2007-12-04 00:32:23 +00002107 RetNewLIs.push_back(LI);
2108 }
2109 }
Evan Cheng81a03822007-11-17 00:40:40 +00002110
Evan Cheng4cce6b42008-04-11 17:53:36 +00002111 handleSpilledImpDefs(li, vrm, rc, RetNewLIs);
Evan Cheng597d10d2007-12-04 00:32:23 +00002112 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00002113}
Evan Cheng676dd7c2008-03-11 07:19:34 +00002114
2115/// hasAllocatableSuperReg - Return true if the specified physical register has
2116/// any super register that's allocatable.
2117bool LiveIntervals::hasAllocatableSuperReg(unsigned Reg) const {
2118 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS)
2119 if (allocatableRegs_[*AS] && hasInterval(*AS))
2120 return true;
2121 return false;
2122}
2123
2124/// getRepresentativeReg - Find the largest super register of the specified
2125/// physical register.
2126unsigned LiveIntervals::getRepresentativeReg(unsigned Reg) const {
2127 // Find the largest super-register that is allocatable.
2128 unsigned BestReg = Reg;
2129 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS) {
2130 unsigned SuperReg = *AS;
2131 if (!hasAllocatableSuperReg(SuperReg) && hasInterval(SuperReg)) {
2132 BestReg = SuperReg;
2133 break;
2134 }
2135 }
2136 return BestReg;
2137}
2138
2139/// getNumConflictsWithPhysReg - Return the number of uses and defs of the
2140/// specified interval that conflicts with the specified physical register.
2141unsigned LiveIntervals::getNumConflictsWithPhysReg(const LiveInterval &li,
2142 unsigned PhysReg) const {
2143 unsigned NumConflicts = 0;
2144 const LiveInterval &pli = getInterval(getRepresentativeReg(PhysReg));
2145 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2146 E = mri_->reg_end(); I != E; ++I) {
2147 MachineOperand &O = I.getOperand();
2148 MachineInstr *MI = O.getParent();
2149 unsigned Index = getInstructionIndex(MI);
2150 if (pli.liveAt(Index))
2151 ++NumConflicts;
2152 }
2153 return NumConflicts;
2154}
2155
2156/// spillPhysRegAroundRegDefsUses - Spill the specified physical register
2157/// around all defs and uses of the specified interval.
2158void LiveIntervals::spillPhysRegAroundRegDefsUses(const LiveInterval &li,
2159 unsigned PhysReg, VirtRegMap &vrm) {
2160 unsigned SpillReg = getRepresentativeReg(PhysReg);
2161
2162 for (const unsigned *AS = tri_->getAliasSet(PhysReg); *AS; ++AS)
2163 // If there are registers which alias PhysReg, but which are not a
2164 // sub-register of the chosen representative super register. Assert
2165 // since we can't handle it yet.
2166 assert(*AS == SpillReg || !allocatableRegs_[*AS] ||
2167 tri_->isSuperRegister(*AS, SpillReg));
2168
2169 LiveInterval &pli = getInterval(SpillReg);
2170 SmallPtrSet<MachineInstr*, 8> SeenMIs;
2171 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2172 E = mri_->reg_end(); I != E; ++I) {
2173 MachineOperand &O = I.getOperand();
2174 MachineInstr *MI = O.getParent();
2175 if (SeenMIs.count(MI))
2176 continue;
2177 SeenMIs.insert(MI);
2178 unsigned Index = getInstructionIndex(MI);
2179 if (pli.liveAt(Index)) {
2180 vrm.addEmergencySpill(SpillReg, MI);
2181 pli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
2182 for (const unsigned* AS = tri_->getSubRegisters(SpillReg); *AS; ++AS) {
2183 if (!hasInterval(*AS))
2184 continue;
2185 LiveInterval &spli = getInterval(*AS);
2186 if (spli.liveAt(Index))
2187 spli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
2188 }
2189 }
2190 }
2191}
Owen Andersonc4dc1322008-06-05 17:15:43 +00002192
2193LiveRange LiveIntervals::addLiveRangeToEndOfBlock(unsigned reg,
2194 MachineInstr* startInst) {
2195 LiveInterval& Interval = getOrCreateInterval(reg);
2196 VNInfo* VN = Interval.getNextValue(
2197 getInstructionIndex(startInst) + InstrSlots::DEF,
2198 startInst, getVNInfoAllocator());
2199 VN->hasPHIKill = true;
2200 VN->kills.push_back(getMBBEndIdx(startInst->getParent()));
2201 LiveRange LR(getInstructionIndex(startInst) + InstrSlots::DEF,
2202 getMBBEndIdx(startInst->getParent()) + 1, VN);
2203 Interval.addRange(LR);
2204
2205 return LR;
2206}