blob: 5bb3cfa4596fbaa61c280949553418f7dee8dc3e [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"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000022#include "llvm/CodeGen/LiveVariables.h"
23#include "llvm/CodeGen/MachineFrameInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000024#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000025#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000027#include "llvm/CodeGen/Passes.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000028#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000029#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/Debug.h"
33#include "llvm/ADT/Statistic.h"
34#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000035#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000036#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000037using namespace llvm;
38
Dan Gohman844731a2008-05-13 00:00:25 +000039// Hidden options for help debugging.
40static cl::opt<bool> DisableReMat("disable-rematerialization",
41 cl::init(false), cl::Hidden);
Evan Cheng81a03822007-11-17 00:40:40 +000042
Dan Gohman844731a2008-05-13 00:00:25 +000043static cl::opt<bool> SplitAtBB("split-intervals-at-bb",
44 cl::init(true), cl::Hidden);
45static cl::opt<int> SplitLimit("split-limit",
46 cl::init(-1), cl::Hidden);
Evan Chengbc165e42007-08-16 07:24:22 +000047
Chris Lattnercd3245a2006-12-19 22:41:21 +000048STATISTIC(numIntervals, "Number of original intervals");
49STATISTIC(numIntervalsAfter, "Number of intervals after coalescing");
Evan Cheng0cbb1162007-11-29 01:06:25 +000050STATISTIC(numFolds , "Number of loads/stores folded into instructions");
51STATISTIC(numSplits , "Number of intervals split");
Chris Lattnercd3245a2006-12-19 22:41:21 +000052
Devang Patel19974732007-05-03 01:11:54 +000053char LiveIntervals::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000054static RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000055
Chris Lattnerf7da2c72006-08-24 22:43:55 +000056void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
David Greene25133302007-06-08 17:18:56 +000057 AU.addPreserved<LiveVariables>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000058 AU.addRequired<LiveVariables>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000059 AU.addPreservedID(MachineLoopInfoID);
60 AU.addPreservedID(MachineDominatorsID);
Owen Andersonfcc63502008-05-29 18:35:21 +000061 AU.addPreservedID(PHIEliminationID);
62 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000063 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000064 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000065}
66
Chris Lattnerf7da2c72006-08-24 22:43:55 +000067void LiveIntervals::releaseMemory() {
Evan Cheng3f32d652008-06-04 09:18:41 +000068 MBB2IdxMap.clear();
Evan Cheng4ca980e2007-10-17 02:10:22 +000069 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000070 mi2iMap_.clear();
71 i2miMap_.clear();
72 r2iMap_.clear();
Evan Chengdd199d22007-09-06 01:07:24 +000073 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
74 VNInfoAllocator.Reset();
Evan Cheng549f27d32007-08-13 23:45:17 +000075 for (unsigned i = 0, e = ClonedMIs.size(); i != e; ++i)
76 delete ClonedMIs[i];
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000077}
78
Owen Anderson80b3ce62008-05-28 20:54:50 +000079void LiveIntervals::computeNumbering() {
80 Index2MiMap OldI2MI = i2miMap_;
81
82 Idx2MBBMap.clear();
83 MBB2IdxMap.clear();
84 mi2iMap_.clear();
85 i2miMap_.clear();
86
Chris Lattner428b92e2006-09-15 03:57:23 +000087 // Number MachineInstrs and MachineBasicBlocks.
88 // Initialize MBB indexes to a sentinal.
Evan Cheng549f27d32007-08-13 23:45:17 +000089 MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
Chris Lattner428b92e2006-09-15 03:57:23 +000090
91 unsigned MIIndex = 0;
92 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
93 MBB != E; ++MBB) {
Evan Cheng549f27d32007-08-13 23:45:17 +000094 unsigned StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +000095
Chris Lattner428b92e2006-09-15 03:57:23 +000096 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
97 I != E; ++I) {
98 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000099 assert(inserted && "multiple MachineInstr -> index mappings");
Chris Lattner428b92e2006-09-15 03:57:23 +0000100 i2miMap_.push_back(I);
101 MIIndex += InstrSlots::NUM;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000102 }
Owen Anderson1fbb4542008-06-16 16:58:24 +0000103
104 if (StartIdx == MIIndex) {
105 // Empty MBB
106 MIIndex += InstrSlots::NUM;
107 i2miMap_.push_back(0);
Owen Anderson35578012008-06-16 07:10:49 +0000108 }
Owen Anderson1fbb4542008-06-16 16:58:24 +0000109 // Set the MBB2IdxMap entry for this MBB.
110 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
111 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000112 }
Evan Cheng4ca980e2007-10-17 02:10:22 +0000113 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Owen Anderson80b3ce62008-05-28 20:54:50 +0000114
115 if (!OldI2MI.empty())
116 for (iterator I = begin(), E = end(); I != E; ++I)
117 for (LiveInterval::iterator LI = I->second.begin(), LE = I->second.end();
118 LI != LE; ++LI) {
Owen Anderson4b5b2092008-05-29 18:15:49 +0000119
Owen Anderson7eec0c22008-05-29 23:01:22 +0000120 // Remap the start index of the live range to the corresponding new
121 // number, or our best guess at what it _should_ correspond to if the
122 // original instruction has been erased. This is either the following
123 // instruction or its predecessor.
124 unsigned offset = LI->start % InstrSlots::NUM;
125 if (OldI2MI[LI->start / InstrSlots::NUM])
126 LI->start = mi2iMap_[OldI2MI[LI->start / InstrSlots::NUM]] + offset;
127 else {
128 unsigned i = 0;
129 MachineInstr* newInstr = 0;
130 do {
131 newInstr = OldI2MI[LI->start / InstrSlots::NUM + i];
132 i++;
133 } while (!newInstr);
134
Owen Andersone3abb0a2008-06-02 17:36:36 +0000135 if (mi2iMap_[newInstr] ==
136 MBB2IdxMap[newInstr->getParent()->getNumber()].first)
Owen Anderson7eec0c22008-05-29 23:01:22 +0000137 LI->start = mi2iMap_[newInstr];
Owen Andersone3abb0a2008-06-02 17:36:36 +0000138 else
139 LI->start = mi2iMap_[newInstr] - InstrSlots::NUM + offset;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000140 }
141
142 // Remap the ending index in the same way that we remapped the start,
143 // except for the final step where we always map to the immediately
144 // following instruction.
Owen Anderson4b5b2092008-05-29 18:15:49 +0000145 if (LI->end / InstrSlots::NUM < OldI2MI.size()) {
Owen Anderson4b5b2092008-05-29 18:15:49 +0000146 offset = LI->end % InstrSlots::NUM;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000147 if (OldI2MI[LI->end / InstrSlots::NUM])
148 LI->end = mi2iMap_[OldI2MI[LI->end / InstrSlots::NUM]] + offset;
149 else {
150 unsigned i = 0;
151 MachineInstr* newInstr = 0;
152 do {
153 newInstr = OldI2MI[LI->end / InstrSlots::NUM + i];
154 i++;
155 } while (!newInstr);
156
157 LI->end = mi2iMap_[newInstr];
158 }
Owen Anderson4b5b2092008-05-29 18:15:49 +0000159 } else {
160 LI->end = i2miMap_.size() * InstrSlots::NUM;
161 }
Owen Anderson745825f42008-05-28 22:40:08 +0000162
Owen Anderson7eec0c22008-05-29 23:01:22 +0000163 // Remap the VNInfo def index, which works the same as the
164 // start indices above.
Owen Anderson745825f42008-05-28 22:40:08 +0000165 VNInfo* vni = LI->valno;
Owen Anderson4b5b2092008-05-29 18:15:49 +0000166 offset = vni->def % InstrSlots::NUM;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000167 if (OldI2MI[vni->def / InstrSlots::NUM])
168 vni->def = mi2iMap_[OldI2MI[vni->def / InstrSlots::NUM]] + offset;
169 else {
170 unsigned i = 0;
171 MachineInstr* newInstr = 0;
172 do {
173 newInstr = OldI2MI[vni->def / InstrSlots::NUM + i];
174 i++;
175 } while (!newInstr);
176
Owen Andersone3abb0a2008-06-02 17:36:36 +0000177 if (mi2iMap_[newInstr] ==
178 MBB2IdxMap[newInstr->getParent()->getNumber()].first)
Owen Anderson7eec0c22008-05-29 23:01:22 +0000179 vni->def = mi2iMap_[newInstr];
Owen Andersone3abb0a2008-06-02 17:36:36 +0000180 else
181 vni->def = mi2iMap_[newInstr] - InstrSlots::NUM + offset;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000182 }
Owen Anderson745825f42008-05-28 22:40:08 +0000183
Owen Anderson7eec0c22008-05-29 23:01:22 +0000184 // Remap the VNInfo kill indices, which works the same as
185 // the end indices above.
Owen Anderson4b5b2092008-05-29 18:15:49 +0000186 for (size_t i = 0; i < vni->kills.size(); ++i) {
187 offset = vni->kills[i] % InstrSlots::NUM;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000188 if (OldI2MI[vni->kills[i] / InstrSlots::NUM])
189 vni->kills[i] = mi2iMap_[OldI2MI[vni->kills[i] / InstrSlots::NUM]] +
190 offset;
191 else {
192 unsigned e = 0;
193 MachineInstr* newInstr = 0;
194 do {
195 newInstr = OldI2MI[vni->kills[i] / InstrSlots::NUM + e];
196 e++;
197 } while (!newInstr);
198
199 vni->kills[i] = mi2iMap_[newInstr];
200 }
Owen Anderson4b5b2092008-05-29 18:15:49 +0000201 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000202 }
203}
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000204
Owen Anderson80b3ce62008-05-28 20:54:50 +0000205/// runOnMachineFunction - Register allocate the whole function
206///
207bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
208 mf_ = &fn;
209 mri_ = &mf_->getRegInfo();
210 tm_ = &fn.getTarget();
211 tri_ = tm_->getRegisterInfo();
212 tii_ = tm_->getInstrInfo();
213 lv_ = &getAnalysis<LiveVariables>();
214 allocatableRegs_ = tri_->getAllocatableSet(fn);
215
216 computeNumbering();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000217 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000218
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000219 numIntervals += getNumIntervals();
220
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000221 DOUT << "********** INTERVALS **********\n";
222 for (iterator I = begin(), E = end(); I != E; ++I) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000223 I->second.print(DOUT, tri_);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000224 DOUT << "\n";
225 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000226
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000227 numIntervalsAfter += getNumIntervals();
Chris Lattner70ca3582004-09-30 15:59:17 +0000228 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000229 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000230}
231
Chris Lattner70ca3582004-09-30 15:59:17 +0000232/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000233void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000234 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000235 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Evan Cheng3f32d652008-06-04 09:18:41 +0000236 I->second.print(O, tri_);
237 O << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000238 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000239
240 O << "********** MACHINEINSTRS **********\n";
241 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
242 mbbi != mbbe; ++mbbi) {
243 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
244 for (MachineBasicBlock::iterator mii = mbbi->begin(),
245 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000246 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000247 }
248 }
249}
250
Evan Chengc92da382007-11-03 07:20:12 +0000251/// conflictsWithPhysRegDef - Returns true if the specified register
252/// is defined during the duration of the specified interval.
253bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
254 VirtRegMap &vrm, unsigned reg) {
255 for (LiveInterval::Ranges::const_iterator
256 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
257 for (unsigned index = getBaseIndex(I->start),
258 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
259 index += InstrSlots::NUM) {
260 // skip deleted instructions
261 while (index != end && !getInstructionFromIndex(index))
262 index += InstrSlots::NUM;
263 if (index == end) break;
264
265 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng5d446262007-11-15 08:13:29 +0000266 unsigned SrcReg, DstReg;
267 if (tii_->isMoveInstr(*MI, SrcReg, DstReg))
268 if (SrcReg == li.reg || DstReg == li.reg)
269 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000270 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
271 MachineOperand& mop = MI->getOperand(i);
Evan Cheng5d446262007-11-15 08:13:29 +0000272 if (!mop.isRegister())
Evan Chengc92da382007-11-03 07:20:12 +0000273 continue;
274 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000275 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000276 continue;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000277 if (TargetRegisterInfo::isVirtualRegister(PhysReg)) {
Evan Cheng5d446262007-11-15 08:13:29 +0000278 if (!vrm.hasPhys(PhysReg))
279 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000280 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000281 }
Dan Gohman6f0d0242008-02-10 18:45:23 +0000282 if (PhysReg && tri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000283 return true;
284 }
285 }
286 }
287
288 return false;
289}
290
Evan Cheng549f27d32007-08-13 23:45:17 +0000291void LiveIntervals::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000292 if (TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000293 cerr << tri_->getName(reg);
Evan Cheng549f27d32007-08-13 23:45:17 +0000294 else
295 cerr << "%reg" << reg;
296}
297
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000298void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000299 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000300 unsigned MIIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000301 LiveInterval &interval) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000302 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000303 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000304
Evan Cheng419852c2008-04-03 16:39:43 +0000305 if (mi->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
306 DOUT << "is a implicit_def\n";
307 return;
308 }
309
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000310 // Virtual registers may be defined multiple times (due to phi
311 // elimination and 2-addr elimination). Much of what we do only has to be
312 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000313 // time we see a vreg.
314 if (interval.empty()) {
315 // Get the Idx of the defining instructions.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000316 unsigned defIndex = getDefIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000317 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000318 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000319 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000320 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000321 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000322 tii_->isMoveInstr(*mi, SrcReg, DstReg))
323 CopyMI = mi;
324 ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000325
326 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000327
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000328 // Loop over all of the blocks that the vreg is defined in. There are
329 // two cases we have to handle here. The most common case is a vreg
330 // whose lifetime is contained within a basic block. In this case there
331 // will be a single kill, in MBB, which comes after the definition.
332 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
333 // FIXME: what about dead vars?
334 unsigned killIdx;
335 if (vi.Kills[0] != mi)
336 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
337 else
338 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000339
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000340 // If the kill happens after the definition, we have an intra-block
341 // live range.
342 if (killIdx > defIndex) {
Evan Cheng61de82d2007-02-15 05:59:24 +0000343 assert(vi.AliveBlocks.none() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000344 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000345 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000346 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000347 DOUT << " +" << LR << "\n";
Evan Chengf3bb2e62007-09-05 21:46:51 +0000348 interval.addKill(ValNo, killIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000349 return;
350 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000351 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000352
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000353 // The other case we handle is when a virtual register lives to the end
354 // of the defining block, potentially live across some blocks, then is
355 // live into some number of blocks, but gets killed. Start by adding a
356 // range that goes from this definition to the end of the defining block.
Alkis Evlogimenosd19e2902004-08-31 17:39:15 +0000357 LiveRange NewLR(defIndex,
358 getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000359 ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000360 DOUT << " +" << NewLR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000361 interval.addRange(NewLR);
362
363 // Iterate over all of the blocks that the variable is completely
364 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
365 // live interval.
366 for (unsigned i = 0, e = vi.AliveBlocks.size(); i != e; ++i) {
367 if (vi.AliveBlocks[i]) {
Chris Lattner428b92e2006-09-15 03:57:23 +0000368 MachineBasicBlock *MBB = mf_->getBlockNumbered(i);
369 if (!MBB->empty()) {
370 LiveRange LR(getMBBStartIdx(i),
371 getInstructionIndex(&MBB->back()) + InstrSlots::NUM,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000372 ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000373 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000374 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000375 }
376 }
377 }
378
379 // Finally, this virtual register is live from the start of any killing
380 // block to the 'use' slot of the killing instruction.
381 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
382 MachineInstr *Kill = vi.Kills[i];
Evan Cheng8df78602007-08-08 03:00:28 +0000383 unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
Chris Lattner428b92e2006-09-15 03:57:23 +0000384 LiveRange LR(getMBBStartIdx(Kill->getParent()),
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000385 killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000386 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000387 interval.addKill(ValNo, killIdx);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000388 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000389 }
390
391 } else {
392 // If this is the second time we see a virtual register definition, it
393 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000394 // the result of two address elimination, then the vreg is one of the
395 // def-and-use register operand.
Evan Cheng32dfbea2007-10-12 08:50:34 +0000396 if (mi->isRegReDefinedByTwoAddr(interval.reg)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000397 // If this is a two-address definition, then we have already processed
398 // the live range. The only problem is that we didn't realize there
399 // are actually two values in the live interval. Because of this we
400 // need to take the LiveRegion that defines this register and split it
401 // into two values.
Evan Chenga07cec92008-01-10 08:22:10 +0000402 assert(interval.containsOneValue());
403 unsigned DefIndex = getDefIndex(interval.getValNumInfo(0)->def);
Chris Lattner6b128bd2006-09-03 08:07:11 +0000404 unsigned RedefIndex = getDefIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000405
Evan Cheng4f8ff162007-08-11 00:59:19 +0000406 const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000407 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000408
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000409 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000410 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000411 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000412
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000413 // Two-address vregs should always only be redefined once. This means
414 // that at this point, there should be exactly one value number in it.
415 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
416
Chris Lattner91725b72006-08-31 05:54:43 +0000417 // The new value number (#1) is defined by the instruction we claimed
418 // defined value #0.
Evan Chengc8d044e2008-02-15 18:24:29 +0000419 VNInfo *ValNo = interval.getNextValue(OldValNo->def, OldValNo->copy,
420 VNInfoAllocator);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000421
Chris Lattner91725b72006-08-31 05:54:43 +0000422 // Value#0 is now defined by the 2-addr instruction.
Evan Chengc8d044e2008-02-15 18:24:29 +0000423 OldValNo->def = RedefIndex;
424 OldValNo->copy = 0;
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000425
426 // Add the new live interval which replaces the range for the input copy.
427 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000428 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000429 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000430 interval.addKill(ValNo, RedefIndex);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000431
432 // If this redefinition is dead, we need to add a dummy unit live
433 // range covering the def slot.
Evan Cheng6130f662008-03-05 00:59:57 +0000434 if (mi->registerDefIsDead(interval.reg, tri_))
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000435 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000436
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000437 DOUT << " RESULT: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000438 interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000439
440 } else {
441 // Otherwise, this must be because of phi elimination. If this is the
442 // first redefinition of the vreg that we have seen, go back and change
443 // the live range in the PHI block to be a different value number.
444 if (interval.containsOneValue()) {
445 assert(vi.Kills.size() == 1 &&
446 "PHI elimination vreg should have one kill, the PHI itself!");
447
448 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000449 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000450 MachineInstr *Killer = vi.Kills[0];
Chris Lattner428b92e2006-09-15 03:57:23 +0000451 unsigned Start = getMBBStartIdx(Killer->getParent());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000452 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000453 DOUT << " Removing [" << Start << "," << End << "] from: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000454 interval.print(DOUT, tri_); DOUT << "\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000455 interval.removeRange(Start, End);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000456 VNI->hasPHIKill = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000457 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000458
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000459 // Replace the interval with one of a NEW value number. Note that this
460 // value number isn't actually defined by an instruction, weird huh? :)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000461 LiveRange LR(Start, End, interval.getNextValue(~0, 0, VNInfoAllocator));
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000462 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000463 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000464 interval.addKill(LR.valno, End);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000465 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000466 }
467
468 // In the case of PHI elimination, each variable definition is only
469 // live until the end of the block. We've already taken care of the
470 // rest of the live range.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000471 unsigned defIndex = getDefIndex(MIIdx);
Chris Lattner91725b72006-08-31 05:54:43 +0000472
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000473 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000474 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000475 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000476 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000477 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000478 tii_->isMoveInstr(*mi, SrcReg, DstReg))
479 CopyMI = mi;
480 ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000481
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000482 unsigned killIndex = getInstructionIndex(&mbb->back()) + InstrSlots::NUM;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000483 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000484 interval.addRange(LR);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000485 interval.addKill(ValNo, killIndex);
486 ValNo->hasPHIKill = true;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000487 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000488 }
489 }
490
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000491 DOUT << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000492}
493
Chris Lattnerf35fef72004-07-23 21:24:19 +0000494void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000495 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000496 unsigned MIIdx,
Chris Lattner91725b72006-08-31 05:54:43 +0000497 LiveInterval &interval,
Evan Chengc8d044e2008-02-15 18:24:29 +0000498 MachineInstr *CopyMI) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000499 // A physical register cannot be live across basic block, so its
500 // lifetime must end somewhere in its defining basic block.
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000501 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000502
Chris Lattner6b128bd2006-09-03 08:07:11 +0000503 unsigned baseIndex = MIIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000504 unsigned start = getDefIndex(baseIndex);
505 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000506
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000507 // If it is not used after definition, it is considered dead at
508 // the instruction defining it. Hence its interval is:
509 // [defSlot(def), defSlot(def)+1)
Evan Cheng6130f662008-03-05 00:59:57 +0000510 if (mi->registerDefIsDead(interval.reg, tri_)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000511 DOUT << " dead";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000512 end = getDefIndex(start) + 1;
513 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000514 }
515
516 // If it is not dead on definition, it must be killed by a
517 // subsequent instruction. Hence its interval is:
518 // [defSlot(def), useSlot(kill)+1)
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000519 while (++mi != MBB->end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000520 baseIndex += InstrSlots::NUM;
Evan Cheng6130f662008-03-05 00:59:57 +0000521 if (mi->killsRegister(interval.reg, tri_)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000522 DOUT << " killed";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000523 end = getUseIndex(baseIndex) + 1;
524 goto exit;
Evan Cheng6130f662008-03-05 00:59:57 +0000525 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Cheng9a1956a2006-11-15 20:54:11 +0000526 // Another instruction redefines the register before it is ever read.
527 // Then the register is essentially dead at the instruction that defines
528 // it. Hence its interval is:
529 // [defSlot(def), defSlot(def)+1)
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000530 DOUT << " dead";
Evan Cheng9a1956a2006-11-15 20:54:11 +0000531 end = getDefIndex(start) + 1;
532 goto exit;
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000533 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000534 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000535
536 // The only case we should have a dead physreg here without a killing or
537 // instruction where we know it's dead is if it is live-in to the function
538 // and never used.
Evan Chengc8d044e2008-02-15 18:24:29 +0000539 assert(!CopyMI && "physreg was not killed in defining block!");
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000540 end = getDefIndex(start) + 1; // It's dead.
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000541
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000542exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000543 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000544
Evan Cheng24a3cc42007-04-25 07:30:23 +0000545 // Already exists? Extend old live interval.
546 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000547 VNInfo *ValNo = (OldLR != interval.end())
Evan Chengc8d044e2008-02-15 18:24:29 +0000548 ? OldLR->valno : interval.getNextValue(start, CopyMI, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000549 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000550 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000551 interval.addKill(LR.valno, end);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000552 DOUT << " +" << LR << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000553}
554
Chris Lattnerf35fef72004-07-23 21:24:19 +0000555void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
556 MachineBasicBlock::iterator MI,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000557 unsigned MIIdx,
Chris Lattnerf35fef72004-07-23 21:24:19 +0000558 unsigned reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000559 if (TargetRegisterInfo::isVirtualRegister(reg))
Chris Lattner6b128bd2006-09-03 08:07:11 +0000560 handleVirtualRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg));
Alkis Evlogimenos53278012004-08-26 22:22:38 +0000561 else if (allocatableRegs_[reg]) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000562 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000563 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000564 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000565 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000566 tii_->isMoveInstr(*MI, SrcReg, DstReg))
567 CopyMI = MI;
568 handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg), CopyMI);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000569 // Def of a register also defines its sub-registers.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000570 for (const unsigned* AS = tri_->getSubRegisters(reg); *AS; ++AS)
Evan Cheng6130f662008-03-05 00:59:57 +0000571 // If MI also modifies the sub-register explicitly, avoid processing it
572 // more than once. Do not pass in TRI here so it checks for exact match.
573 if (!MI->modifiesRegister(*AS))
Evan Cheng24a3cc42007-04-25 07:30:23 +0000574 handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000575 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000576}
577
Evan Chengb371f452007-02-19 21:49:54 +0000578void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000579 unsigned MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +0000580 LiveInterval &interval, bool isAlias) {
Evan Chengb371f452007-02-19 21:49:54 +0000581 DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
582
583 // Look for kills, if it reaches a def before it's killed, then it shouldn't
584 // be considered a livein.
585 MachineBasicBlock::iterator mi = MBB->begin();
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000586 unsigned baseIndex = MIIdx;
587 unsigned start = baseIndex;
Evan Chengb371f452007-02-19 21:49:54 +0000588 unsigned end = start;
589 while (mi != MBB->end()) {
Evan Cheng6130f662008-03-05 00:59:57 +0000590 if (mi->killsRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000591 DOUT << " killed";
592 end = getUseIndex(baseIndex) + 1;
593 goto exit;
Evan Cheng6130f662008-03-05 00:59:57 +0000594 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000595 // Another instruction redefines the register before it is ever read.
596 // Then the register is essentially dead at the instruction that defines
597 // it. Hence its interval is:
598 // [defSlot(def), defSlot(def)+1)
599 DOUT << " dead";
600 end = getDefIndex(start) + 1;
601 goto exit;
602 }
603
604 baseIndex += InstrSlots::NUM;
605 ++mi;
606 }
607
608exit:
Evan Cheng75611fb2007-06-27 01:16:36 +0000609 // Live-in register might not be used at all.
610 if (end == MIIdx) {
Evan Cheng292da942007-06-27 18:47:28 +0000611 if (isAlias) {
612 DOUT << " dead";
Evan Cheng75611fb2007-06-27 01:16:36 +0000613 end = getDefIndex(MIIdx) + 1;
Evan Cheng292da942007-06-27 18:47:28 +0000614 } else {
615 DOUT << " live through";
616 end = baseIndex;
617 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000618 }
619
Evan Chengf3bb2e62007-09-05 21:46:51 +0000620 LiveRange LR(start, end, interval.getNextValue(start, 0, VNInfoAllocator));
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000621 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000622 interval.addKill(LR.valno, end);
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000623 DOUT << " +" << LR << '\n';
Evan Chengb371f452007-02-19 21:49:54 +0000624}
625
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000626/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000627/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000628/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000629/// which a variable is live
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000630void LiveIntervals::computeIntervals() {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000631 DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
632 << "********** Function: "
633 << ((Value*)mf_->getFunction())->getName() << '\n';
Chris Lattner6b128bd2006-09-03 08:07:11 +0000634 // Track the index of the current machine instr.
635 unsigned MIIndex = 0;
Chris Lattner428b92e2006-09-15 03:57:23 +0000636 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
637 MBBI != E; ++MBBI) {
638 MachineBasicBlock *MBB = MBBI;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000639 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000640
Chris Lattner428b92e2006-09-15 03:57:23 +0000641 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000642
Dan Gohmancb406c22007-10-03 19:26:29 +0000643 // Create intervals for live-ins to this BB first.
644 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
645 LE = MBB->livein_end(); LI != LE; ++LI) {
646 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
647 // Multiple live-ins can alias the same register.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000648 for (const unsigned* AS = tri_->getSubRegisters(*LI); *AS; ++AS)
Dan Gohmancb406c22007-10-03 19:26:29 +0000649 if (!hasInterval(*AS))
650 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
651 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +0000652 }
653
Chris Lattner428b92e2006-09-15 03:57:23 +0000654 for (; MI != miEnd; ++MI) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000655 DOUT << MIIndex << "\t" << *MI;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000656
Evan Cheng438f7bc2006-11-10 08:43:01 +0000657 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +0000658 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
659 MachineOperand &MO = MI->getOperand(i);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000660 // handle register defs - build intervals
Chris Lattner428b92e2006-09-15 03:57:23 +0000661 if (MO.isRegister() && MO.getReg() && MO.isDef())
662 handleRegisterDef(MBB, MI, MIIndex, MO.getReg());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000663 }
Chris Lattner6b128bd2006-09-03 08:07:11 +0000664
665 MIIndex += InstrSlots::NUM;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000666 }
Owen Anderson8892b6f2008-06-16 06:18:41 +0000667
Owen Anderson1fbb4542008-06-16 16:58:24 +0000668 if (MBB->begin() == miEnd) MIIndex += InstrSlots::NUM; // Empty MBB
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000669 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000670}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000671
Evan Cheng4ca980e2007-10-17 02:10:22 +0000672bool LiveIntervals::findLiveInMBBs(const LiveRange &LR,
Evan Chenga5bfc972007-10-17 06:53:44 +0000673 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +0000674 std::vector<IdxMBBPair>::const_iterator I =
675 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), LR.start);
676
677 bool ResVal = false;
678 while (I != Idx2MBBMap.end()) {
679 if (LR.end <= I->first)
680 break;
681 MBBs.push_back(I->second);
682 ResVal = true;
683 ++I;
684 }
685 return ResVal;
686}
687
688
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000689LiveInterval LiveIntervals::createInterval(unsigned reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000690 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
Jim Laskey7902c752006-11-07 12:25:45 +0000691 HUGE_VALF : 0.0F;
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000692 return LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000693}
Evan Chengf2fbca62007-11-12 06:35:08 +0000694
Evan Chengc8d044e2008-02-15 18:24:29 +0000695/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
696/// copy field and returns the source register that defines it.
697unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
698 if (!VNI->copy)
699 return 0;
700
701 if (VNI->copy->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
702 return VNI->copy->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +0000703 if (VNI->copy->getOpcode() == TargetInstrInfo::INSERT_SUBREG)
704 return VNI->copy->getOperand(2).getReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000705 unsigned SrcReg, DstReg;
706 if (tii_->isMoveInstr(*VNI->copy, SrcReg, DstReg))
707 return SrcReg;
708 assert(0 && "Unrecognized copy instruction!");
709 return 0;
710}
Evan Chengf2fbca62007-11-12 06:35:08 +0000711
712//===----------------------------------------------------------------------===//
713// Register allocator hooks.
714//
715
Evan Chengd70dbb52008-02-22 09:24:50 +0000716/// getReMatImplicitUse - If the remat definition MI has one (for now, we only
717/// allow one) virtual register operand, then its uses are implicitly using
718/// the register. Returns the virtual register.
719unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
720 MachineInstr *MI) const {
721 unsigned RegOp = 0;
722 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
723 MachineOperand &MO = MI->getOperand(i);
724 if (!MO.isRegister() || !MO.isUse())
725 continue;
726 unsigned Reg = MO.getReg();
727 if (Reg == 0 || Reg == li.reg)
728 continue;
729 // FIXME: For now, only remat MI with at most one register operand.
730 assert(!RegOp &&
731 "Can't rematerialize instruction with multiple register operand!");
732 RegOp = MO.getReg();
733 break;
734 }
735 return RegOp;
736}
737
738/// isValNoAvailableAt - Return true if the val# of the specified interval
739/// which reaches the given instruction also reaches the specified use index.
740bool LiveIntervals::isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
741 unsigned UseIdx) const {
742 unsigned Index = getInstructionIndex(MI);
743 VNInfo *ValNo = li.FindLiveRangeContaining(Index)->valno;
744 LiveInterval::const_iterator UI = li.FindLiveRangeContaining(UseIdx);
745 return UI != li.end() && UI->valno == ValNo;
746}
747
Evan Chengf2fbca62007-11-12 06:35:08 +0000748/// isReMaterializable - Returns true if the definition MI of the specified
749/// val# of the specified interval is re-materializable.
750bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000751 const VNInfo *ValNo, MachineInstr *MI,
752 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +0000753 if (DisableReMat)
754 return false;
755
Evan Cheng5ef3a042007-12-06 00:01:56 +0000756 isLoad = false;
Evan Cheng20ccded2008-03-15 00:19:36 +0000757 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
Evan Chengd70dbb52008-02-22 09:24:50 +0000758 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +0000759
760 int FrameIdx = 0;
761 if (tii_->isLoadFromStackSlot(MI, FrameIdx) &&
Evan Cheng249ded32008-02-23 03:38:34 +0000762 mf_->getFrameInfo()->isImmutableObjectIndex(FrameIdx))
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000763 // FIXME: Let target specific isReallyTriviallyReMaterializable determines
764 // this but remember this is not safe to fold into a two-address
765 // instruction.
Evan Cheng249ded32008-02-23 03:38:34 +0000766 // This is a load from fixed stack slot. It can be rematerialized.
Evan Chengdd3465e2008-02-23 01:44:27 +0000767 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +0000768
Evan Chengd70dbb52008-02-22 09:24:50 +0000769 if (tii_->isTriviallyReMaterializable(MI)) {
Evan Cheng20ccded2008-03-15 00:19:36 +0000770 const TargetInstrDesc &TID = MI->getDesc();
Chris Lattner749c6f62008-01-07 07:27:27 +0000771 isLoad = TID.isSimpleLoad();
Evan Chengd70dbb52008-02-22 09:24:50 +0000772
773 unsigned ImpUse = getReMatImplicitUse(li, MI);
774 if (ImpUse) {
775 const LiveInterval &ImpLi = getInterval(ImpUse);
776 for (MachineRegisterInfo::use_iterator ri = mri_->use_begin(li.reg),
777 re = mri_->use_end(); ri != re; ++ri) {
778 MachineInstr *UseMI = &*ri;
779 unsigned UseIdx = getInstructionIndex(UseMI);
780 if (li.FindLiveRangeContaining(UseIdx)->valno != ValNo)
781 continue;
Evan Cheng298bbe82008-02-23 02:14:42 +0000782 if (!isValNoAvailableAt(ImpLi, MI, UseIdx))
Evan Chengd70dbb52008-02-22 09:24:50 +0000783 return false;
784 }
785 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000786 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000787 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000788
Evan Chengdd3465e2008-02-23 01:44:27 +0000789 return false;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000790}
791
792/// isReMaterializable - Returns true if every definition of MI of every
793/// val# of the specified interval is re-materializable.
794bool LiveIntervals::isReMaterializable(const LiveInterval &li, bool &isLoad) {
795 isLoad = false;
796 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
797 i != e; ++i) {
798 const VNInfo *VNI = *i;
799 unsigned DefIdx = VNI->def;
800 if (DefIdx == ~1U)
801 continue; // Dead val#.
802 // Is the def for the val# rematerializable?
803 if (DefIdx == ~0u)
804 return false;
805 MachineInstr *ReMatDefMI = getInstructionFromIndex(DefIdx);
806 bool DefIsLoad = false;
Evan Chengd70dbb52008-02-22 09:24:50 +0000807 if (!ReMatDefMI ||
808 !isReMaterializable(li, VNI, ReMatDefMI, DefIsLoad))
Evan Cheng5ef3a042007-12-06 00:01:56 +0000809 return false;
810 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +0000811 }
812 return true;
813}
814
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000815/// FilterFoldedOps - Filter out two-address use operands. Return
816/// true if it finds any issue with the operands that ought to prevent
817/// folding.
818static bool FilterFoldedOps(MachineInstr *MI,
819 SmallVector<unsigned, 2> &Ops,
820 unsigned &MRInfo,
821 SmallVector<unsigned, 2> &FoldOps) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000822 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng6e141fd2007-12-12 23:12:09 +0000823
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000824 MRInfo = 0;
Evan Chengaee4af62007-12-02 08:30:39 +0000825 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
826 unsigned OpIdx = Ops[i];
Evan Chengd70dbb52008-02-22 09:24:50 +0000827 MachineOperand &MO = MI->getOperand(OpIdx);
Evan Chengaee4af62007-12-02 08:30:39 +0000828 // FIXME: fold subreg use.
Evan Chengd70dbb52008-02-22 09:24:50 +0000829 if (MO.getSubReg())
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000830 return true;
Evan Chengd70dbb52008-02-22 09:24:50 +0000831 if (MO.isDef())
Evan Chengaee4af62007-12-02 08:30:39 +0000832 MRInfo |= (unsigned)VirtRegMap::isMod;
833 else {
834 // Filter out two-address use operand(s).
Evan Chengd70dbb52008-02-22 09:24:50 +0000835 if (!MO.isImplicit() &&
836 TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) {
Evan Chengaee4af62007-12-02 08:30:39 +0000837 MRInfo = VirtRegMap::isModRef;
838 continue;
839 }
840 MRInfo |= (unsigned)VirtRegMap::isRef;
841 }
842 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +0000843 }
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000844 return false;
845}
846
847
848/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
849/// slot / to reg or any rematerialized load into ith operand of specified
850/// MI. If it is successul, MI is updated with the newly created MI and
851/// returns true.
852bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
853 VirtRegMap &vrm, MachineInstr *DefMI,
854 unsigned InstrIdx,
855 SmallVector<unsigned, 2> &Ops,
856 bool isSS, int Slot, unsigned Reg) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000857 // If it is an implicit def instruction, just delete it.
Evan Cheng20ccded2008-03-15 00:19:36 +0000858 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000859 RemoveMachineInstrFromMaps(MI);
860 vrm.RemoveMachineInstrFromMaps(MI);
861 MI->eraseFromParent();
862 ++numFolds;
863 return true;
864 }
865
866 // Filter the list of operand indexes that are to be folded. Abort if
867 // any operand will prevent folding.
868 unsigned MRInfo = 0;
869 SmallVector<unsigned, 2> FoldOps;
870 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
871 return false;
Evan Chenge62f97c2007-12-01 02:07:52 +0000872
Evan Cheng427f4c12008-03-31 23:19:51 +0000873 // The only time it's safe to fold into a two address instruction is when
874 // it's folding reload and spill from / into a spill stack slot.
875 if (DefMI && (MRInfo & VirtRegMap::isMod))
Evan Cheng249ded32008-02-23 03:38:34 +0000876 return false;
877
Evan Chengf2f8c2a2008-02-08 22:05:27 +0000878 MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(*mf_, MI, FoldOps, Slot)
879 : tii_->foldMemoryOperand(*mf_, MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +0000880 if (fmi) {
Evan Chengd3653122008-02-27 03:04:06 +0000881 // Remember this instruction uses the spill slot.
882 if (isSS) vrm.addSpillSlotUse(Slot, fmi);
883
Evan Chengf2fbca62007-11-12 06:35:08 +0000884 // Attempt to fold the memory reference into the instruction. If
885 // we can do this, we don't need to insert spill code.
886 if (lv_)
887 lv_->instructionChanged(MI, fmi);
Evan Cheng81a03822007-11-17 00:40:40 +0000888 else
Dan Gohman6f0d0242008-02-10 18:45:23 +0000889 fmi->copyKillDeadInfo(MI, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +0000890 MachineBasicBlock &MBB = *MI->getParent();
Evan Cheng84802932008-01-10 08:24:38 +0000891 if (isSS && !mf_->getFrameInfo()->isImmutableObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +0000892 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +0000893 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000894 vrm.transferRestorePts(MI, fmi);
Evan Chengc1f53c72008-03-11 21:34:46 +0000895 vrm.transferEmergencySpills(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +0000896 mi2iMap_.erase(MI);
Evan Chengcddbb832007-11-30 21:23:43 +0000897 i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
898 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +0000899 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000900 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +0000901 return true;
902 }
903 return false;
904}
905
Evan Cheng018f9b02007-12-05 03:22:34 +0000906/// canFoldMemoryOperand - Returns true if the specified load / store
907/// folding is possible.
908bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000909 SmallVector<unsigned, 2> &Ops,
Evan Cheng3c75ba82008-04-01 21:37:32 +0000910 bool ReMat) const {
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000911 // Filter the list of operand indexes that are to be folded. Abort if
912 // any operand will prevent folding.
913 unsigned MRInfo = 0;
Evan Cheng018f9b02007-12-05 03:22:34 +0000914 SmallVector<unsigned, 2> FoldOps;
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000915 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
916 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +0000917
Evan Cheng3c75ba82008-04-01 21:37:32 +0000918 // It's only legal to remat for a use, not a def.
919 if (ReMat && (MRInfo & VirtRegMap::isMod))
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000920 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +0000921
Evan Chengd70dbb52008-02-22 09:24:50 +0000922 return tii_->canFoldMemoryOperand(MI, FoldOps);
923}
924
Evan Cheng81a03822007-11-17 00:40:40 +0000925bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
926 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
927 for (LiveInterval::Ranges::const_iterator
928 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
929 std::vector<IdxMBBPair>::const_iterator II =
930 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
931 if (II == Idx2MBBMap.end())
932 continue;
933 if (I->end > II->first) // crossing a MBB.
934 return false;
935 MBBs.insert(II->second);
936 if (MBBs.size() > 1)
937 return false;
938 }
939 return true;
940}
941
Evan Chengd70dbb52008-02-22 09:24:50 +0000942/// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
943/// interval on to-be re-materialized operands of MI) with new register.
944void LiveIntervals::rewriteImplicitOps(const LiveInterval &li,
945 MachineInstr *MI, unsigned NewVReg,
946 VirtRegMap &vrm) {
947 // There is an implicit use. That means one of the other operand is
948 // being remat'ed and the remat'ed instruction has li.reg as an
949 // use operand. Make sure we rewrite that as well.
950 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
951 MachineOperand &MO = MI->getOperand(i);
952 if (!MO.isRegister())
953 continue;
954 unsigned Reg = MO.getReg();
955 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
956 continue;
957 if (!vrm.isReMaterialized(Reg))
958 continue;
959 MachineInstr *ReMatMI = vrm.getReMaterializedMI(Reg);
Evan Cheng6130f662008-03-05 00:59:57 +0000960 MachineOperand *UseMO = ReMatMI->findRegisterUseOperand(li.reg);
961 if (UseMO)
962 UseMO->setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +0000963 }
964}
965
Evan Chengf2fbca62007-11-12 06:35:08 +0000966/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
967/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +0000968bool LiveIntervals::
Evan Chengd70dbb52008-02-22 09:24:50 +0000969rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
970 bool TrySplit, unsigned index, unsigned end, MachineInstr *MI,
Evan Cheng81a03822007-11-17 00:40:40 +0000971 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +0000972 unsigned Slot, int LdSlot,
973 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +0000974 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +0000975 const TargetRegisterClass* rc,
976 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +0000977 const MachineLoopInfo *loopInfo,
Evan Cheng313d4b82008-02-23 00:33:04 +0000978 unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000979 std::map<unsigned,unsigned> &MBBVRegsMap,
Evan Cheng9c3c2212008-06-06 07:54:39 +0000980 std::vector<LiveInterval*> &NewLIs, float &SSWeight) {
981 MachineBasicBlock *MBB = MI->getParent();
982 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng018f9b02007-12-05 03:22:34 +0000983 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +0000984 RestartInstruction:
985 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
986 MachineOperand& mop = MI->getOperand(i);
987 if (!mop.isRegister())
988 continue;
989 unsigned Reg = mop.getReg();
990 unsigned RegI = Reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000991 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
Evan Chengf2fbca62007-11-12 06:35:08 +0000992 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +0000993 if (Reg != li.reg)
994 continue;
995
996 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +0000997 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +0000998 int FoldSlot = Slot;
999 if (DefIsReMat) {
1000 // If this is the rematerializable definition MI itself and
1001 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +00001002 if (MI == ReMatOrigDefMI && CanDelete) {
Evan Chengcddbb832007-11-30 21:23:43 +00001003 DOUT << "\t\t\t\tErasing re-materlizable def: ";
1004 DOUT << MI << '\n';
Evan Chengf2fbca62007-11-12 06:35:08 +00001005 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +00001006 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001007 MI->eraseFromParent();
1008 break;
1009 }
1010
1011 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001012 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +00001013 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +00001014 if (isLoad) {
1015 // Try fold loads (from stack slot, constant pool, etc.) into uses.
1016 FoldSS = isLoadSS;
1017 FoldSlot = LdSlot;
1018 }
1019 }
1020
Evan Chengf2fbca62007-11-12 06:35:08 +00001021 // Scan all of the operands of this instruction rewriting operands
1022 // to use NewVReg instead of li.reg as appropriate. We do this for
1023 // two reasons:
1024 //
1025 // 1. If the instr reads the same spilled vreg multiple times, we
1026 // want to reuse the NewVReg.
1027 // 2. If the instr is a two-addr instruction, we are required to
1028 // keep the src/dst regs pinned.
1029 //
1030 // Keep track of whether we replace a use and/or def so that we can
1031 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +00001032
Evan Cheng81a03822007-11-17 00:40:40 +00001033 HasUse = mop.isUse();
1034 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +00001035 SmallVector<unsigned, 2> Ops;
1036 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +00001037 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +00001038 const MachineOperand &MOj = MI->getOperand(j);
1039 if (!MOj.isRegister())
Evan Chengf2fbca62007-11-12 06:35:08 +00001040 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001041 unsigned RegJ = MOj.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001042 if (RegJ == 0 || TargetRegisterInfo::isPhysicalRegister(RegJ))
Evan Chengf2fbca62007-11-12 06:35:08 +00001043 continue;
1044 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +00001045 Ops.push_back(j);
1046 HasUse |= MOj.isUse();
1047 HasDef |= MOj.isDef();
Evan Chengf2fbca62007-11-12 06:35:08 +00001048 }
1049 }
1050
Evan Cheng9c3c2212008-06-06 07:54:39 +00001051 // Update stack slot spill weight if we are splitting.
1052 float Weight = getSpillWeight(HasDef, HasUse, loopDepth);
1053 if (!TrySplit)
1054 SSWeight += Weight;
1055
1056 if (!TryFold)
1057 CanFold = false;
1058 else {
Evan Cheng018f9b02007-12-05 03:22:34 +00001059 // Do not fold load / store here if we are splitting. We'll find an
1060 // optimal point to insert a load / store later.
1061 if (!TrySplit) {
1062 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
1063 Ops, FoldSS, FoldSlot, Reg)) {
1064 // Folding the load/store can completely change the instruction in
1065 // unpredictable ways, rescan it from the beginning.
1066 HasUse = false;
1067 HasDef = false;
1068 CanFold = false;
Evan Cheng9c3c2212008-06-06 07:54:39 +00001069 if (isRemoved(MI)) {
1070 SSWeight -= Weight;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001071 break;
Evan Cheng9c3c2212008-06-06 07:54:39 +00001072 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001073 goto RestartInstruction;
1074 }
1075 } else {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001076 // We'll try to fold it later if it's profitable.
Evan Cheng3c75ba82008-04-01 21:37:32 +00001077 CanFold = canFoldMemoryOperand(MI, Ops, DefIsReMat);
Evan Cheng018f9b02007-12-05 03:22:34 +00001078 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001079 }
Evan Chengcddbb832007-11-30 21:23:43 +00001080
1081 // Create a new virtual register for the spill interval.
1082 bool CreatedNewVReg = false;
1083 if (NewVReg == 0) {
Evan Chengd70dbb52008-02-22 09:24:50 +00001084 NewVReg = mri_->createVirtualRegister(rc);
Evan Chengcddbb832007-11-30 21:23:43 +00001085 vrm.grow();
1086 CreatedNewVReg = true;
1087 }
1088 mop.setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001089 if (mop.isImplicit())
1090 rewriteImplicitOps(li, MI, NewVReg, vrm);
Evan Chengcddbb832007-11-30 21:23:43 +00001091
1092 // Reuse NewVReg for other reads.
Evan Chengd70dbb52008-02-22 09:24:50 +00001093 for (unsigned j = 0, e = Ops.size(); j != e; ++j) {
1094 MachineOperand &mopj = MI->getOperand(Ops[j]);
1095 mopj.setReg(NewVReg);
1096 if (mopj.isImplicit())
1097 rewriteImplicitOps(li, MI, NewVReg, vrm);
1098 }
Evan Chengcddbb832007-11-30 21:23:43 +00001099
Evan Cheng81a03822007-11-17 00:40:40 +00001100 if (CreatedNewVReg) {
1101 if (DefIsReMat) {
1102 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
Evan Chengd70dbb52008-02-22 09:24:50 +00001103 if (ReMatIds[VNI->id] == VirtRegMap::MAX_STACK_SLOT) {
Evan Cheng81a03822007-11-17 00:40:40 +00001104 // Each valnum may have its own remat id.
Evan Chengd70dbb52008-02-22 09:24:50 +00001105 ReMatIds[VNI->id] = vrm.assignVirtReMatId(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001106 } else {
Evan Chengd70dbb52008-02-22 09:24:50 +00001107 vrm.assignVirtReMatId(NewVReg, ReMatIds[VNI->id]);
Evan Cheng81a03822007-11-17 00:40:40 +00001108 }
1109 if (!CanDelete || (HasUse && HasDef)) {
1110 // If this is a two-addr instruction then its use operands are
1111 // rematerializable but its def is not. It should be assigned a
1112 // stack slot.
1113 vrm.assignVirt2StackSlot(NewVReg, Slot);
1114 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001115 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +00001116 vrm.assignVirt2StackSlot(NewVReg, Slot);
1117 }
Evan Chengcb3c3302007-11-29 23:02:50 +00001118 } else if (HasUse && HasDef &&
1119 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
1120 // If this interval hasn't been assigned a stack slot (because earlier
1121 // def is a deleted remat def), do it now.
1122 assert(Slot != VirtRegMap::NO_STACK_SLOT);
1123 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001124 }
1125
Evan Cheng313d4b82008-02-23 00:33:04 +00001126 // Re-matting an instruction with virtual register use. Add the
1127 // register as an implicit use on the use MI.
1128 if (DefIsReMat && ImpUse)
1129 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
1130
Evan Chengf2fbca62007-11-12 06:35:08 +00001131 // create a new register interval for this spill / remat.
1132 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001133 if (CreatedNewVReg) {
1134 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001135 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +00001136 if (TrySplit)
1137 vrm.setIsSplitFromReg(NewVReg, li.reg);
1138 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001139
1140 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +00001141 if (CreatedNewVReg) {
1142 LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
1143 nI.getNextValue(~0U, 0, VNInfoAllocator));
1144 DOUT << " +" << LR;
1145 nI.addRange(LR);
1146 } else {
1147 // Extend the split live interval to this def / use.
1148 unsigned End = getUseIndex(index)+1;
1149 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
1150 nI.getValNumInfo(nI.getNumValNums()-1));
1151 DOUT << " +" << LR;
1152 nI.addRange(LR);
1153 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001154 }
1155 if (HasDef) {
1156 LiveRange LR(getDefIndex(index), getStoreIndex(index),
1157 nI.getNextValue(~0U, 0, VNInfoAllocator));
1158 DOUT << " +" << LR;
1159 nI.addRange(LR);
1160 }
Evan Cheng81a03822007-11-17 00:40:40 +00001161
Evan Chengf2fbca62007-11-12 06:35:08 +00001162 DOUT << "\t\t\t\tAdded new interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001163 nI.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001164 DOUT << '\n';
1165 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001166 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +00001167}
Evan Cheng81a03822007-11-17 00:40:40 +00001168bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001169 const VNInfo *VNI,
1170 MachineBasicBlock *MBB, unsigned Idx) const {
Evan Cheng81a03822007-11-17 00:40:40 +00001171 unsigned End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001172 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
1173 unsigned KillIdx = VNI->kills[j];
1174 if (KillIdx > Idx && KillIdx < End)
1175 return true;
Evan Cheng81a03822007-11-17 00:40:40 +00001176 }
1177 return false;
1178}
1179
Evan Cheng063284c2008-02-21 00:34:19 +00001180/// RewriteInfo - Keep track of machine instrs that will be rewritten
1181/// during spilling.
Dan Gohman844731a2008-05-13 00:00:25 +00001182namespace {
1183 struct RewriteInfo {
1184 unsigned Index;
1185 MachineInstr *MI;
1186 bool HasUse;
1187 bool HasDef;
1188 RewriteInfo(unsigned i, MachineInstr *mi, bool u, bool d)
1189 : Index(i), MI(mi), HasUse(u), HasDef(d) {}
1190 };
Evan Cheng063284c2008-02-21 00:34:19 +00001191
Dan Gohman844731a2008-05-13 00:00:25 +00001192 struct RewriteInfoCompare {
1193 bool operator()(const RewriteInfo &LHS, const RewriteInfo &RHS) const {
1194 return LHS.Index < RHS.Index;
1195 }
1196 };
1197}
Evan Cheng063284c2008-02-21 00:34:19 +00001198
Evan Chengf2fbca62007-11-12 06:35:08 +00001199void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001200rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +00001201 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +00001202 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001203 unsigned Slot, int LdSlot,
1204 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001205 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001206 const TargetRegisterClass* rc,
1207 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001208 const MachineLoopInfo *loopInfo,
Evan Cheng81a03822007-11-17 00:40:40 +00001209 BitVector &SpillMBBs,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001210 std::map<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001211 BitVector &RestoreMBBs,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001212 std::map<unsigned, std::vector<SRInfo> > &RestoreIdxes,
1213 std::map<unsigned,unsigned> &MBBVRegsMap,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001214 std::vector<LiveInterval*> &NewLIs, float &SSWeight) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001215 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001216 unsigned NewVReg = 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001217 unsigned start = getBaseIndex(I->start);
Evan Chengf2fbca62007-11-12 06:35:08 +00001218 unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
Evan Chengf2fbca62007-11-12 06:35:08 +00001219
Evan Cheng063284c2008-02-21 00:34:19 +00001220 // First collect all the def / use in this live range that will be rewritten.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001221 // Make sure they are sorted according to instruction index.
Evan Cheng063284c2008-02-21 00:34:19 +00001222 std::vector<RewriteInfo> RewriteMIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001223 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1224 re = mri_->reg_end(); ri != re; ) {
Evan Cheng419852c2008-04-03 16:39:43 +00001225 MachineInstr *MI = &*ri;
Evan Cheng063284c2008-02-21 00:34:19 +00001226 MachineOperand &O = ri.getOperand();
1227 ++ri;
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001228 assert(!O.isImplicit() && "Spilling register that's used as implicit use?");
Evan Cheng063284c2008-02-21 00:34:19 +00001229 unsigned index = getInstructionIndex(MI);
1230 if (index < start || index >= end)
1231 continue;
1232 RewriteMIs.push_back(RewriteInfo(index, MI, O.isUse(), O.isDef()));
1233 }
1234 std::sort(RewriteMIs.begin(), RewriteMIs.end(), RewriteInfoCompare());
1235
Evan Cheng313d4b82008-02-23 00:33:04 +00001236 unsigned ImpUse = DefIsReMat ? getReMatImplicitUse(li, ReMatDefMI) : 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001237 // Now rewrite the defs and uses.
1238 for (unsigned i = 0, e = RewriteMIs.size(); i != e; ) {
1239 RewriteInfo &rwi = RewriteMIs[i];
1240 ++i;
1241 unsigned index = rwi.Index;
1242 bool MIHasUse = rwi.HasUse;
1243 bool MIHasDef = rwi.HasDef;
1244 MachineInstr *MI = rwi.MI;
1245 // If MI def and/or use the same register multiple times, then there
1246 // are multiple entries.
Evan Cheng313d4b82008-02-23 00:33:04 +00001247 unsigned NumUses = MIHasUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001248 while (i != e && RewriteMIs[i].MI == MI) {
1249 assert(RewriteMIs[i].Index == index);
Evan Cheng313d4b82008-02-23 00:33:04 +00001250 bool isUse = RewriteMIs[i].HasUse;
1251 if (isUse) ++NumUses;
1252 MIHasUse |= isUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001253 MIHasDef |= RewriteMIs[i].HasDef;
1254 ++i;
1255 }
Evan Cheng81a03822007-11-17 00:40:40 +00001256 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng313d4b82008-02-23 00:33:04 +00001257
Evan Cheng0a891ed2008-05-23 23:00:04 +00001258 if (ImpUse && MI != ReMatDefMI) {
Evan Cheng313d4b82008-02-23 00:33:04 +00001259 // Re-matting an instruction with virtual register use. Update the
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001260 // register interval's spill weight to HUGE_VALF to prevent it from
1261 // being spilled.
Evan Cheng313d4b82008-02-23 00:33:04 +00001262 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001263 ImpLi.weight = HUGE_VALF;
Evan Cheng313d4b82008-02-23 00:33:04 +00001264 }
1265
Evan Cheng063284c2008-02-21 00:34:19 +00001266 unsigned MBBId = MBB->getNumber();
Evan Cheng018f9b02007-12-05 03:22:34 +00001267 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +00001268 if (TrySplit) {
Evan Cheng063284c2008-02-21 00:34:19 +00001269 std::map<unsigned,unsigned>::const_iterator NVI = MBBVRegsMap.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001270 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001271 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001272 // One common case:
1273 // x = use
1274 // ...
1275 // ...
1276 // def = ...
1277 // = use
1278 // It's better to start a new interval to avoid artifically
1279 // extend the new interval.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001280 if (MIHasDef && !MIHasUse) {
1281 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00001282 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001283 }
1284 }
Evan Chengcada2452007-11-28 01:28:46 +00001285 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001286
1287 bool IsNew = ThisVReg == 0;
1288 if (IsNew) {
1289 // This ends the previous live interval. If all of its def / use
1290 // can be folded, give it a low spill weight.
1291 if (NewVReg && TrySplit && AllCanFold) {
1292 LiveInterval &nI = getOrCreateInterval(NewVReg);
1293 nI.weight /= 10.0F;
1294 }
1295 AllCanFold = true;
1296 }
1297 NewVReg = ThisVReg;
1298
Evan Cheng81a03822007-11-17 00:40:40 +00001299 bool HasDef = false;
1300 bool HasUse = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001301 bool CanFold = rewriteInstructionForSpills(li, I->valno, TrySplit,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001302 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
1303 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
1304 CanDelete, vrm, rc, ReMatIds, loopInfo, NewVReg,
1305 ImpUse, HasDef, HasUse, MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001306 if (!HasDef && !HasUse)
1307 continue;
1308
Evan Cheng018f9b02007-12-05 03:22:34 +00001309 AllCanFold &= CanFold;
1310
Evan Cheng81a03822007-11-17 00:40:40 +00001311 // Update weight of spill interval.
1312 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00001313 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00001314 // The spill weight is now infinity as it cannot be spilled again.
1315 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001316 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00001317 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001318
1319 // Keep track of the last def and first use in each MBB.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001320 if (HasDef) {
1321 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001322 bool HasKill = false;
1323 if (!HasUse)
1324 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
1325 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001326 // If this is a two-address code, then this index starts a new VNInfo.
Evan Cheng3f32d652008-06-04 09:18:41 +00001327 const VNInfo *VNI = li.findDefinedVNInfo(getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00001328 if (VNI)
1329 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
1330 }
Evan Chenge3110d02007-12-01 04:42:39 +00001331 std::map<unsigned, std::vector<SRInfo> >::iterator SII =
1332 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001333 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001334 if (SII == SpillIdxes.end()) {
1335 std::vector<SRInfo> S;
1336 S.push_back(SRInfo(index, NewVReg, true));
1337 SpillIdxes.insert(std::make_pair(MBBId, S));
1338 } else if (SII->second.back().vreg != NewVReg) {
1339 SII->second.push_back(SRInfo(index, NewVReg, true));
1340 } else if ((int)index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001341 // If there is an earlier def and this is a two-address
1342 // instruction, then it's not possible to fold the store (which
1343 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00001344 SRInfo &Info = SII->second.back();
1345 Info.index = index;
1346 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001347 }
1348 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00001349 } else if (SII != SpillIdxes.end() &&
1350 SII->second.back().vreg == NewVReg &&
1351 (int)index > SII->second.back().index) {
1352 // There is an earlier def that's not killed (must be two-address).
1353 // The spill is no longer needed.
1354 SII->second.pop_back();
1355 if (SII->second.empty()) {
1356 SpillIdxes.erase(MBBId);
1357 SpillMBBs.reset(MBBId);
1358 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001359 }
1360 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001361 }
1362
1363 if (HasUse) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001364 std::map<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001365 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001366 if (SII != SpillIdxes.end() &&
1367 SII->second.back().vreg == NewVReg &&
1368 (int)index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001369 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001370 SII->second.back().canFold = false;
1371 std::map<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001372 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001373 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001374 // If we are splitting live intervals, only fold if it's the first
1375 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001376 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001377 else if (IsNew) {
1378 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001379 if (RII == RestoreIdxes.end()) {
1380 std::vector<SRInfo> Infos;
1381 Infos.push_back(SRInfo(index, NewVReg, true));
1382 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
1383 } else {
1384 RII->second.push_back(SRInfo(index, NewVReg, true));
1385 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001386 RestoreMBBs.set(MBBId);
1387 }
1388 }
1389
1390 // Update spill weight.
Evan Cheng22f07ff2007-12-11 02:09:15 +00001391 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001392 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00001393 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001394
1395 if (NewVReg && TrySplit && AllCanFold) {
1396 // If all of its def / use can be folded, give it a low spill weight.
1397 LiveInterval &nI = getOrCreateInterval(NewVReg);
1398 nI.weight /= 10.0F;
1399 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001400}
1401
Evan Cheng1953d0c2007-11-29 10:12:14 +00001402bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
1403 BitVector &RestoreMBBs,
1404 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
1405 if (!RestoreMBBs[Id])
1406 return false;
1407 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1408 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1409 if (Restores[i].index == index &&
1410 Restores[i].vreg == vr &&
1411 Restores[i].canFold)
1412 return true;
1413 return false;
1414}
1415
1416void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
1417 BitVector &RestoreMBBs,
1418 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
1419 if (!RestoreMBBs[Id])
1420 return;
1421 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1422 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1423 if (Restores[i].index == index && Restores[i].vreg)
1424 Restores[i].index = -1;
1425}
Evan Cheng81a03822007-11-17 00:40:40 +00001426
Evan Cheng4cce6b42008-04-11 17:53:36 +00001427/// handleSpilledImpDefs - Remove IMPLICIT_DEF instructions which are being
1428/// spilled and create empty intervals for their uses.
1429void
1430LiveIntervals::handleSpilledImpDefs(const LiveInterval &li, VirtRegMap &vrm,
1431 const TargetRegisterClass* rc,
1432 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng419852c2008-04-03 16:39:43 +00001433 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1434 re = mri_->reg_end(); ri != re; ) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001435 MachineOperand &O = ri.getOperand();
Evan Cheng419852c2008-04-03 16:39:43 +00001436 MachineInstr *MI = &*ri;
1437 ++ri;
Evan Cheng4cce6b42008-04-11 17:53:36 +00001438 if (O.isDef()) {
1439 assert(MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF &&
1440 "Register def was not rewritten?");
1441 RemoveMachineInstrFromMaps(MI);
1442 vrm.RemoveMachineInstrFromMaps(MI);
1443 MI->eraseFromParent();
1444 } else {
1445 // This must be an use of an implicit_def so it's not part of the live
1446 // interval. Create a new empty live interval for it.
1447 // FIXME: Can we simply erase some of the instructions? e.g. Stores?
1448 unsigned NewVReg = mri_->createVirtualRegister(rc);
1449 vrm.grow();
1450 vrm.setIsImplicitlyDefined(NewVReg);
1451 NewLIs.push_back(&getOrCreateInterval(NewVReg));
1452 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1453 MachineOperand &MO = MI->getOperand(i);
1454 if (MO.isReg() && MO.getReg() == li.reg)
1455 MO.setReg(NewVReg);
1456 }
1457 }
Evan Cheng419852c2008-04-03 16:39:43 +00001458 }
1459}
1460
Evan Cheng81a03822007-11-17 00:40:40 +00001461
Evan Chengf2fbca62007-11-12 06:35:08 +00001462std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001463addIntervalsForSpills(const LiveInterval &li,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001464 const MachineLoopInfo *loopInfo, VirtRegMap &vrm,
1465 float &SSWeight) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001466 // Since this is called after the analysis is done we don't know if
1467 // LiveVariables is available
1468 lv_ = getAnalysisToUpdate<LiveVariables>();
1469
1470 assert(li.weight != HUGE_VALF &&
1471 "attempt to spill already spilled interval!");
1472
1473 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001474 li.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001475 DOUT << '\n';
1476
Evan Cheng9c3c2212008-06-06 07:54:39 +00001477 // Spill slot weight.
1478 SSWeight = 0.0f;
1479
Evan Cheng81a03822007-11-17 00:40:40 +00001480 // Each bit specify whether it a spill is required in the MBB.
1481 BitVector SpillMBBs(mf_->getNumBlockIDs());
Evan Cheng1953d0c2007-11-29 10:12:14 +00001482 std::map<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001483 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Evan Cheng1953d0c2007-11-29 10:12:14 +00001484 std::map<unsigned, std::vector<SRInfo> > RestoreIdxes;
1485 std::map<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00001486 std::vector<LiveInterval*> NewLIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001487 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
Evan Chengf2fbca62007-11-12 06:35:08 +00001488
1489 unsigned NumValNums = li.getNumValNums();
1490 SmallVector<MachineInstr*, 4> ReMatDefs;
1491 ReMatDefs.resize(NumValNums, NULL);
1492 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
1493 ReMatOrigDefs.resize(NumValNums, NULL);
1494 SmallVector<int, 4> ReMatIds;
1495 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
1496 BitVector ReMatDelete(NumValNums);
1497 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
1498
Evan Cheng81a03822007-11-17 00:40:40 +00001499 // Spilling a split live interval. It cannot be split any further. Also,
1500 // it's also guaranteed to be a single val# / range interval.
1501 if (vrm.getPreSplitReg(li.reg)) {
1502 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00001503 // Unset the split kill marker on the last use.
1504 unsigned KillIdx = vrm.getKillPoint(li.reg);
1505 if (KillIdx) {
1506 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
1507 assert(KillMI && "Last use disappeared?");
1508 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
1509 assert(KillOp != -1 && "Last use disappeared?");
Chris Lattnerf7382302007-12-30 21:56:09 +00001510 KillMI->getOperand(KillOp).setIsKill(false);
Evan Chengd120ffd2007-12-05 10:24:35 +00001511 }
Evan Chengadf85902007-12-05 09:51:10 +00001512 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00001513 bool DefIsReMat = vrm.isReMaterialized(li.reg);
1514 Slot = vrm.getStackSlot(li.reg);
1515 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
1516 MachineInstr *ReMatDefMI = DefIsReMat ?
1517 vrm.getReMaterializedMI(li.reg) : NULL;
1518 int LdSlot = 0;
1519 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1520 bool isLoad = isLoadSS ||
Chris Lattner749c6f62008-01-07 07:27:27 +00001521 (DefIsReMat && (ReMatDefMI->getDesc().isSimpleLoad()));
Evan Cheng81a03822007-11-17 00:40:40 +00001522 bool IsFirstRange = true;
1523 for (LiveInterval::Ranges::const_iterator
1524 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1525 // If this is a split live interval with multiple ranges, it means there
1526 // are two-address instructions that re-defined the value. Only the
1527 // first def can be rematerialized!
1528 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00001529 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00001530 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
1531 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00001532 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001533 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001534 MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001535 } else {
1536 rewriteInstructionsForSpills(li, false, I, NULL, 0,
1537 Slot, 0, false, false, false,
Evan Chengd70dbb52008-02-22 09:24:50 +00001538 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001539 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001540 MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001541 }
1542 IsFirstRange = false;
1543 }
Evan Cheng419852c2008-04-03 16:39:43 +00001544
Evan Cheng9c3c2212008-06-06 07:54:39 +00001545 SSWeight = 0.0f; // Already accounted for when split.
Evan Cheng4cce6b42008-04-11 17:53:36 +00001546 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001547 return NewLIs;
1548 }
1549
1550 bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001551 if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
1552 TrySplit = false;
1553 if (TrySplit)
1554 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00001555 bool NeedStackSlot = false;
1556 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1557 i != e; ++i) {
1558 const VNInfo *VNI = *i;
1559 unsigned VN = VNI->id;
1560 unsigned DefIdx = VNI->def;
1561 if (DefIdx == ~1U)
1562 continue; // Dead val#.
1563 // Is the def for the val# rematerializable?
Evan Cheng81a03822007-11-17 00:40:40 +00001564 MachineInstr *ReMatDefMI = (DefIdx == ~0u)
1565 ? 0 : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001566 bool dummy;
1567 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001568 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00001569 ReMatOrigDefs[VN] = ReMatDefMI;
Evan Chengf2fbca62007-11-12 06:35:08 +00001570 // Original def may be modified so we have to make a copy here. vrm must
1571 // delete these!
Evan Cheng81a03822007-11-17 00:40:40 +00001572 ReMatDefs[VN] = ReMatDefMI = ReMatDefMI->clone();
Evan Chengf2fbca62007-11-12 06:35:08 +00001573
1574 bool CanDelete = true;
Evan Chengc3fc7d92007-11-29 09:49:23 +00001575 if (VNI->hasPHIKill) {
1576 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00001577 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001578 CanDelete = false;
1579 // Need a stack slot if there is any live range where uses cannot be
1580 // rematerialized.
1581 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00001582 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001583 if (CanDelete)
1584 ReMatDelete.set(VN);
1585 } else {
1586 // Need a stack slot if there is any live range where uses cannot be
1587 // rematerialized.
1588 NeedStackSlot = true;
1589 }
1590 }
1591
1592 // One stack slot per live interval.
Evan Cheng81a03822007-11-17 00:40:40 +00001593 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0)
Evan Chengf2fbca62007-11-12 06:35:08 +00001594 Slot = vrm.assignVirt2StackSlot(li.reg);
1595
1596 // Create new intervals and rewrite defs and uses.
1597 for (LiveInterval::Ranges::const_iterator
1598 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00001599 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
1600 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
1601 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00001602 bool CanDelete = ReMatDelete[I->valno->id];
1603 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00001604 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001605 bool isLoad = isLoadSS ||
Chris Lattner749c6f62008-01-07 07:27:27 +00001606 (DefIsReMat && ReMatDefMI->getDesc().isSimpleLoad());
Evan Cheng81a03822007-11-17 00:40:40 +00001607 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001608 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00001609 CanDelete, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001610 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001611 MBBVRegsMap, NewLIs, SSWeight);
Evan Chengf2fbca62007-11-12 06:35:08 +00001612 }
1613
Evan Cheng0cbb1162007-11-29 01:06:25 +00001614 // Insert spills / restores if we are splitting.
Evan Cheng419852c2008-04-03 16:39:43 +00001615 if (!TrySplit) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001616 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001617 return NewLIs;
Evan Cheng419852c2008-04-03 16:39:43 +00001618 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001619
Evan Chengb50bb8c2007-12-05 08:16:32 +00001620 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00001621 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001622 if (NeedStackSlot) {
1623 int Id = SpillMBBs.find_first();
1624 while (Id != -1) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001625 MachineBasicBlock *MBB = mf_->getBlockNumbered(Id);
1626 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001627 std::vector<SRInfo> &spills = SpillIdxes[Id];
1628 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
1629 int index = spills[i].index;
1630 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001631 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001632 bool isReMat = vrm.isReMaterialized(VReg);
1633 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001634 bool CanFold = false;
1635 bool FoundUse = false;
1636 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001637 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001638 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001639 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1640 MachineOperand &MO = MI->getOperand(j);
1641 if (!MO.isRegister() || MO.getReg() != VReg)
1642 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001643
1644 Ops.push_back(j);
1645 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00001646 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001647 if (isReMat ||
1648 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
1649 RestoreMBBs, RestoreIdxes))) {
1650 // MI has two-address uses of the same register. If the use
1651 // isn't the first and only use in the BB, then we can't fold
1652 // it. FIXME: Move this to rewriteInstructionsForSpills.
1653 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00001654 break;
1655 }
Evan Chengaee4af62007-12-02 08:30:39 +00001656 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001657 }
1658 }
1659 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001660 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001661 if (CanFold && !Ops.empty()) {
1662 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00001663 Folded = true;
Evan Chengf38d14f2007-12-05 09:05:34 +00001664 if (FoundUse > 0) {
Evan Chengaee4af62007-12-02 08:30:39 +00001665 // Also folded uses, do not issue a load.
1666 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Evan Chengf38d14f2007-12-05 09:05:34 +00001667 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
1668 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001669 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00001670 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001671 }
1672
Evan Cheng7e073ba2008-04-09 20:57:25 +00001673 // Otherwise tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00001674 if (!Folded) {
1675 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
1676 bool isKill = LR->end == getStoreIndex(index);
Evan Chengb0a6f622008-05-20 08:10:37 +00001677 if (!MI->registerDefIsDead(nI.reg))
1678 // No need to spill a dead def.
1679 vrm.addSpillPoint(VReg, isKill, MI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001680 if (isKill)
1681 AddedKill.insert(&nI);
1682 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001683
1684 // Update spill slot weight.
1685 if (!isReMat)
1686 SSWeight += getSpillWeight(true, false, loopDepth);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001687 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001688 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001689 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001690 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001691
Evan Cheng1953d0c2007-11-29 10:12:14 +00001692 int Id = RestoreMBBs.find_first();
1693 while (Id != -1) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001694 MachineBasicBlock *MBB = mf_->getBlockNumbered(Id);
1695 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
1696
Evan Cheng1953d0c2007-11-29 10:12:14 +00001697 std::vector<SRInfo> &restores = RestoreIdxes[Id];
1698 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
1699 int index = restores[i].index;
1700 if (index == -1)
1701 continue;
1702 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001703 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng9c3c2212008-06-06 07:54:39 +00001704 bool isReMat = vrm.isReMaterialized(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001705 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001706 bool CanFold = false;
1707 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001708 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001709 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001710 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1711 MachineOperand &MO = MI->getOperand(j);
1712 if (!MO.isRegister() || MO.getReg() != VReg)
1713 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001714
Evan Cheng0cbb1162007-11-29 01:06:25 +00001715 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00001716 // If this restore were to be folded, it would have been folded
1717 // already.
1718 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00001719 break;
1720 }
Evan Chengaee4af62007-12-02 08:30:39 +00001721 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00001722 }
1723 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001724
1725 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001726 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001727 if (CanFold && !Ops.empty()) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001728 if (!isReMat)
Evan Chengaee4af62007-12-02 08:30:39 +00001729 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
1730 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001731 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
1732 int LdSlot = 0;
1733 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1734 // If the rematerializable def is a load, also try to fold it.
Chris Lattner749c6f62008-01-07 07:27:27 +00001735 if (isLoadSS || ReMatDefMI->getDesc().isSimpleLoad())
Evan Chengaee4af62007-12-02 08:30:39 +00001736 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
1737 Ops, isLoadSS, LdSlot, VReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001738 unsigned ImpUse = getReMatImplicitUse(li, ReMatDefMI);
1739 if (ImpUse) {
1740 // Re-matting an instruction with virtual register use. Add the
1741 // register as an implicit use on the use MI and update the register
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001742 // interval's spill weight to HUGE_VALF to prevent it from being
1743 // spilled.
Evan Chengd70dbb52008-02-22 09:24:50 +00001744 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001745 ImpLi.weight = HUGE_VALF;
Evan Chengd70dbb52008-02-22 09:24:50 +00001746 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
1747 }
Evan Chengaee4af62007-12-02 08:30:39 +00001748 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001749 }
1750 // If folding is not possible / failed, then tell the spiller to issue a
1751 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00001752 if (Folded)
1753 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001754 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00001755 vrm.addRestorePoint(VReg, MI);
Evan Cheng9c3c2212008-06-06 07:54:39 +00001756
1757 // Update spill slot weight.
1758 if (!isReMat)
1759 SSWeight += getSpillWeight(false, true, loopDepth);
Evan Cheng81a03822007-11-17 00:40:40 +00001760 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001761 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00001762 }
1763
Evan Chengb50bb8c2007-12-05 08:16:32 +00001764 // Finalize intervals: add kills, finalize spill weights, and filter out
1765 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00001766 std::vector<LiveInterval*> RetNewLIs;
1767 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
1768 LiveInterval *LI = NewLIs[i];
1769 if (!LI->empty()) {
1770 LI->weight /= LI->getSize();
Evan Chengb50bb8c2007-12-05 08:16:32 +00001771 if (!AddedKill.count(LI)) {
1772 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Evan Chengd120ffd2007-12-05 10:24:35 +00001773 unsigned LastUseIdx = getBaseIndex(LR->end);
1774 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Cheng6130f662008-03-05 00:59:57 +00001775 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg, false);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001776 assert(UseIdx != -1);
Evan Chengd70dbb52008-02-22 09:24:50 +00001777 if (LastUse->getOperand(UseIdx).isImplicit() ||
1778 LastUse->getDesc().getOperandConstraint(UseIdx,TOI::TIED_TO) == -1){
Evan Chengb50bb8c2007-12-05 08:16:32 +00001779 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00001780 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00001781 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00001782 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001783 RetNewLIs.push_back(LI);
1784 }
1785 }
Evan Cheng81a03822007-11-17 00:40:40 +00001786
Evan Cheng4cce6b42008-04-11 17:53:36 +00001787 handleSpilledImpDefs(li, vrm, rc, RetNewLIs);
Evan Cheng597d10d2007-12-04 00:32:23 +00001788 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00001789}
Evan Cheng676dd7c2008-03-11 07:19:34 +00001790
1791/// hasAllocatableSuperReg - Return true if the specified physical register has
1792/// any super register that's allocatable.
1793bool LiveIntervals::hasAllocatableSuperReg(unsigned Reg) const {
1794 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS)
1795 if (allocatableRegs_[*AS] && hasInterval(*AS))
1796 return true;
1797 return false;
1798}
1799
1800/// getRepresentativeReg - Find the largest super register of the specified
1801/// physical register.
1802unsigned LiveIntervals::getRepresentativeReg(unsigned Reg) const {
1803 // Find the largest super-register that is allocatable.
1804 unsigned BestReg = Reg;
1805 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS) {
1806 unsigned SuperReg = *AS;
1807 if (!hasAllocatableSuperReg(SuperReg) && hasInterval(SuperReg)) {
1808 BestReg = SuperReg;
1809 break;
1810 }
1811 }
1812 return BestReg;
1813}
1814
1815/// getNumConflictsWithPhysReg - Return the number of uses and defs of the
1816/// specified interval that conflicts with the specified physical register.
1817unsigned LiveIntervals::getNumConflictsWithPhysReg(const LiveInterval &li,
1818 unsigned PhysReg) const {
1819 unsigned NumConflicts = 0;
1820 const LiveInterval &pli = getInterval(getRepresentativeReg(PhysReg));
1821 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
1822 E = mri_->reg_end(); I != E; ++I) {
1823 MachineOperand &O = I.getOperand();
1824 MachineInstr *MI = O.getParent();
1825 unsigned Index = getInstructionIndex(MI);
1826 if (pli.liveAt(Index))
1827 ++NumConflicts;
1828 }
1829 return NumConflicts;
1830}
1831
1832/// spillPhysRegAroundRegDefsUses - Spill the specified physical register
1833/// around all defs and uses of the specified interval.
1834void LiveIntervals::spillPhysRegAroundRegDefsUses(const LiveInterval &li,
1835 unsigned PhysReg, VirtRegMap &vrm) {
1836 unsigned SpillReg = getRepresentativeReg(PhysReg);
1837
1838 for (const unsigned *AS = tri_->getAliasSet(PhysReg); *AS; ++AS)
1839 // If there are registers which alias PhysReg, but which are not a
1840 // sub-register of the chosen representative super register. Assert
1841 // since we can't handle it yet.
1842 assert(*AS == SpillReg || !allocatableRegs_[*AS] ||
1843 tri_->isSuperRegister(*AS, SpillReg));
1844
1845 LiveInterval &pli = getInterval(SpillReg);
1846 SmallPtrSet<MachineInstr*, 8> SeenMIs;
1847 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
1848 E = mri_->reg_end(); I != E; ++I) {
1849 MachineOperand &O = I.getOperand();
1850 MachineInstr *MI = O.getParent();
1851 if (SeenMIs.count(MI))
1852 continue;
1853 SeenMIs.insert(MI);
1854 unsigned Index = getInstructionIndex(MI);
1855 if (pli.liveAt(Index)) {
1856 vrm.addEmergencySpill(SpillReg, MI);
1857 pli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
1858 for (const unsigned* AS = tri_->getSubRegisters(SpillReg); *AS; ++AS) {
1859 if (!hasInterval(*AS))
1860 continue;
1861 LiveInterval &spli = getInterval(*AS);
1862 if (spli.liveAt(Index))
1863 spli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
1864 }
1865 }
1866 }
1867}
Owen Andersonc4dc1322008-06-05 17:15:43 +00001868
1869LiveRange LiveIntervals::addLiveRangeToEndOfBlock(unsigned reg,
1870 MachineInstr* startInst) {
1871 LiveInterval& Interval = getOrCreateInterval(reg);
1872 VNInfo* VN = Interval.getNextValue(
1873 getInstructionIndex(startInst) + InstrSlots::DEF,
1874 startInst, getVNInfoAllocator());
1875 VN->hasPHIKill = true;
1876 VN->kills.push_back(getMBBEndIdx(startInst->getParent()));
1877 LiveRange LR(getInstructionIndex(startInst) + InstrSlots::DEF,
1878 getMBBEndIdx(startInst->getParent()) + 1, VN);
1879 Interval.addRange(LR);
1880
1881 return LR;
1882}