blob: d151da3a946585d4e4072fbe93672f0fbc74b908 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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"
Evan Cheng81a03822007-11-17 00:40:40 +000022#include "llvm/Analysis/LoopInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000023#include "llvm/CodeGen/LiveVariables.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000025#include "llvm/CodeGen/MachineInstr.h"
26#include "llvm/CodeGen/Passes.h"
27#include "llvm/CodeGen/SSARegMap.h"
28#include "llvm/Target/MRegisterInfo.h"
29#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
Evan Chengbc165e42007-08-16 07:24:22 +000039namespace {
40 // Hidden options for help debugging.
41 cl::opt<bool> DisableReMat("disable-rematerialization",
42 cl::init(false), cl::Hidden);
Evan Cheng81a03822007-11-17 00:40:40 +000043
44 cl::opt<bool> SplitAtBB("split-intervals-at-bb",
Evan Cheng33faddc2007-12-06 08:54:31 +000045 cl::init(true), cl::Hidden);
Evan Cheng0cbb1162007-11-29 01:06:25 +000046 cl::opt<int> SplitLimit("split-limit",
47 cl::init(-1), cl::Hidden);
Evan Chengbc165e42007-08-16 07:24:22 +000048}
49
Chris Lattnercd3245a2006-12-19 22:41:21 +000050STATISTIC(numIntervals, "Number of original intervals");
51STATISTIC(numIntervalsAfter, "Number of intervals after coalescing");
Evan Cheng0cbb1162007-11-29 01:06:25 +000052STATISTIC(numFolds , "Number of loads/stores folded into instructions");
53STATISTIC(numSplits , "Number of intervals split");
Chris Lattnercd3245a2006-12-19 22:41:21 +000054
Devang Patel19974732007-05-03 01:11:54 +000055char LiveIntervals::ID = 0;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000056namespace {
Chris Lattner5d8925c2006-08-27 22:30:17 +000057 RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000058}
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000059
Chris Lattnerf7da2c72006-08-24 22:43:55 +000060void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
David Greene25133302007-06-08 17:18:56 +000061 AU.addPreserved<LiveVariables>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000062 AU.addRequired<LiveVariables>();
63 AU.addPreservedID(PHIEliminationID);
64 AU.addRequiredID(PHIEliminationID);
65 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000066 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000067}
68
Chris Lattnerf7da2c72006-08-24 22:43:55 +000069void LiveIntervals::releaseMemory() {
Evan Cheng4ca980e2007-10-17 02:10:22 +000070 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000071 mi2iMap_.clear();
72 i2miMap_.clear();
73 r2iMap_.clear();
Evan Chengdd199d22007-09-06 01:07:24 +000074 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
75 VNInfoAllocator.Reset();
Evan Cheng549f27d32007-08-13 23:45:17 +000076 for (unsigned i = 0, e = ClonedMIs.size(); i != e; ++i)
77 delete ClonedMIs[i];
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000078}
79
Evan Cheng4ca980e2007-10-17 02:10:22 +000080namespace llvm {
81 inline bool operator<(unsigned V, const IdxMBBPair &IM) {
82 return V < IM.first;
83 }
84
85 inline bool operator<(const IdxMBBPair &IM, unsigned V) {
86 return IM.first < V;
87 }
88
89 struct Idx2MBBCompare {
90 bool operator()(const IdxMBBPair &LHS, const IdxMBBPair &RHS) const {
91 return LHS.first < RHS.first;
92 }
93 };
94}
95
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000096/// runOnMachineFunction - Register allocate the whole function
97///
98bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000099 mf_ = &fn;
100 tm_ = &fn.getTarget();
101 mri_ = tm_->getRegisterInfo();
Chris Lattnerf768bba2005-03-09 23:05:19 +0000102 tii_ = tm_->getInstrInfo();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000103 lv_ = &getAnalysis<LiveVariables>();
Evan Cheng20b0abc2007-04-17 20:32:26 +0000104 allocatableRegs_ = mri_->getAllocatableSet(fn);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000105
Chris Lattner428b92e2006-09-15 03:57:23 +0000106 // Number MachineInstrs and MachineBasicBlocks.
107 // Initialize MBB indexes to a sentinal.
Evan Cheng549f27d32007-08-13 23:45:17 +0000108 MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
Chris Lattner428b92e2006-09-15 03:57:23 +0000109
110 unsigned MIIndex = 0;
111 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
112 MBB != E; ++MBB) {
Evan Cheng549f27d32007-08-13 23:45:17 +0000113 unsigned StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000114
Chris Lattner428b92e2006-09-15 03:57:23 +0000115 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
116 I != E; ++I) {
117 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000118 assert(inserted && "multiple MachineInstr -> index mappings");
Chris Lattner428b92e2006-09-15 03:57:23 +0000119 i2miMap_.push_back(I);
120 MIIndex += InstrSlots::NUM;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000121 }
Evan Cheng549f27d32007-08-13 23:45:17 +0000122
123 // Set the MBB2IdxMap entry for this MBB.
124 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
Evan Cheng4ca980e2007-10-17 02:10:22 +0000125 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000126 }
Evan Cheng4ca980e2007-10-17 02:10:22 +0000127 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000128
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000129 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000130
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000131 numIntervals += getNumIntervals();
132
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000133 DOUT << "********** INTERVALS **********\n";
134 for (iterator I = begin(), E = end(); I != E; ++I) {
135 I->second.print(DOUT, mri_);
136 DOUT << "\n";
137 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000138
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000139 numIntervalsAfter += getNumIntervals();
Chris Lattner70ca3582004-09-30 15:59:17 +0000140 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000141 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000142}
143
Chris Lattner70ca3582004-09-30 15:59:17 +0000144/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000145void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000146 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000147 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000148 I->second.print(DOUT, mri_);
149 DOUT << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000150 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000151
152 O << "********** MACHINEINSTRS **********\n";
153 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
154 mbbi != mbbe; ++mbbi) {
155 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
156 for (MachineBasicBlock::iterator mii = mbbi->begin(),
157 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000158 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000159 }
160 }
161}
162
Evan Chengc92da382007-11-03 07:20:12 +0000163/// conflictsWithPhysRegDef - Returns true if the specified register
164/// is defined during the duration of the specified interval.
165bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
166 VirtRegMap &vrm, unsigned reg) {
167 for (LiveInterval::Ranges::const_iterator
168 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
169 for (unsigned index = getBaseIndex(I->start),
170 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
171 index += InstrSlots::NUM) {
172 // skip deleted instructions
173 while (index != end && !getInstructionFromIndex(index))
174 index += InstrSlots::NUM;
175 if (index == end) break;
176
177 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng5d446262007-11-15 08:13:29 +0000178 unsigned SrcReg, DstReg;
179 if (tii_->isMoveInstr(*MI, SrcReg, DstReg))
180 if (SrcReg == li.reg || DstReg == li.reg)
181 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000182 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
183 MachineOperand& mop = MI->getOperand(i);
Evan Cheng5d446262007-11-15 08:13:29 +0000184 if (!mop.isRegister())
Evan Chengc92da382007-11-03 07:20:12 +0000185 continue;
186 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000187 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000188 continue;
Evan Cheng5d446262007-11-15 08:13:29 +0000189 if (MRegisterInfo::isVirtualRegister(PhysReg)) {
190 if (!vrm.hasPhys(PhysReg))
191 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000192 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000193 }
Evan Cheng5f5f3b62007-11-05 00:59:10 +0000194 if (PhysReg && mri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000195 return true;
196 }
197 }
198 }
199
200 return false;
201}
202
Evan Cheng549f27d32007-08-13 23:45:17 +0000203void LiveIntervals::printRegName(unsigned reg) const {
204 if (MRegisterInfo::isPhysicalRegister(reg))
205 cerr << mri_->getName(reg);
206 else
207 cerr << "%reg" << reg;
208}
209
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000210void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000211 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000212 unsigned MIIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000213 LiveInterval &interval) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000214 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000215 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000216
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000217 // Virtual registers may be defined multiple times (due to phi
218 // elimination and 2-addr elimination). Much of what we do only has to be
219 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000220 // time we see a vreg.
221 if (interval.empty()) {
222 // Get the Idx of the defining instructions.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000223 unsigned defIndex = getDefIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000224 VNInfo *ValNo;
Chris Lattner91725b72006-08-31 05:54:43 +0000225 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000226 if (tii_->isMoveInstr(*mi, SrcReg, DstReg))
Evan Chengf3bb2e62007-09-05 21:46:51 +0000227 ValNo = interval.getNextValue(defIndex, SrcReg, VNInfoAllocator);
Evan Cheng48ff2822007-10-12 17:16:50 +0000228 else if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
Evan Cheng32dfbea2007-10-12 08:50:34 +0000229 ValNo = interval.getNextValue(defIndex, mi->getOperand(1).getReg(),
230 VNInfoAllocator);
231 else
232 ValNo = interval.getNextValue(defIndex, 0, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000233
234 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000235
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000236 // Loop over all of the blocks that the vreg is defined in. There are
237 // two cases we have to handle here. The most common case is a vreg
238 // whose lifetime is contained within a basic block. In this case there
239 // will be a single kill, in MBB, which comes after the definition.
240 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
241 // FIXME: what about dead vars?
242 unsigned killIdx;
243 if (vi.Kills[0] != mi)
244 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
245 else
246 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000247
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000248 // If the kill happens after the definition, we have an intra-block
249 // live range.
250 if (killIdx > defIndex) {
Evan Cheng61de82d2007-02-15 05:59:24 +0000251 assert(vi.AliveBlocks.none() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000252 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000253 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000254 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000255 DOUT << " +" << LR << "\n";
Evan Chengf3bb2e62007-09-05 21:46:51 +0000256 interval.addKill(ValNo, killIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000257 return;
258 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000259 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000260
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000261 // The other case we handle is when a virtual register lives to the end
262 // of the defining block, potentially live across some blocks, then is
263 // live into some number of blocks, but gets killed. Start by adding a
264 // range that goes from this definition to the end of the defining block.
Alkis Evlogimenosd19e2902004-08-31 17:39:15 +0000265 LiveRange NewLR(defIndex,
266 getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000267 ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000268 DOUT << " +" << NewLR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000269 interval.addRange(NewLR);
270
271 // Iterate over all of the blocks that the variable is completely
272 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
273 // live interval.
274 for (unsigned i = 0, e = vi.AliveBlocks.size(); i != e; ++i) {
275 if (vi.AliveBlocks[i]) {
Chris Lattner428b92e2006-09-15 03:57:23 +0000276 MachineBasicBlock *MBB = mf_->getBlockNumbered(i);
277 if (!MBB->empty()) {
278 LiveRange LR(getMBBStartIdx(i),
279 getInstructionIndex(&MBB->back()) + InstrSlots::NUM,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000280 ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000281 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000282 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000283 }
284 }
285 }
286
287 // Finally, this virtual register is live from the start of any killing
288 // block to the 'use' slot of the killing instruction.
289 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
290 MachineInstr *Kill = vi.Kills[i];
Evan Cheng8df78602007-08-08 03:00:28 +0000291 unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
Chris Lattner428b92e2006-09-15 03:57:23 +0000292 LiveRange LR(getMBBStartIdx(Kill->getParent()),
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000293 killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000294 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000295 interval.addKill(ValNo, killIdx);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000296 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000297 }
298
299 } else {
300 // If this is the second time we see a virtual register definition, it
301 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000302 // the result of two address elimination, then the vreg is one of the
303 // def-and-use register operand.
Evan Cheng32dfbea2007-10-12 08:50:34 +0000304 if (mi->isRegReDefinedByTwoAddr(interval.reg)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000305 // If this is a two-address definition, then we have already processed
306 // the live range. The only problem is that we didn't realize there
307 // are actually two values in the live interval. Because of this we
308 // need to take the LiveRegion that defines this register and split it
309 // into two values.
310 unsigned DefIndex = getDefIndex(getInstructionIndex(vi.DefInst));
Chris Lattner6b128bd2006-09-03 08:07:11 +0000311 unsigned RedefIndex = getDefIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000312
Evan Cheng4f8ff162007-08-11 00:59:19 +0000313 const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000314 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000315 unsigned OldEnd = OldLR->end;
316
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000317 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000318 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000319 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000320
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000321 // Two-address vregs should always only be redefined once. This means
322 // that at this point, there should be exactly one value number in it.
323 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
324
Chris Lattner91725b72006-08-31 05:54:43 +0000325 // The new value number (#1) is defined by the instruction we claimed
326 // defined value #0.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000327 VNInfo *ValNo = interval.getNextValue(0, 0, VNInfoAllocator);
328 interval.copyValNumInfo(ValNo, OldValNo);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000329
Chris Lattner91725b72006-08-31 05:54:43 +0000330 // Value#0 is now defined by the 2-addr instruction.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000331 OldValNo->def = RedefIndex;
332 OldValNo->reg = 0;
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000333
334 // Add the new live interval which replaces the range for the input copy.
335 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000336 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000337 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000338 interval.addKill(ValNo, RedefIndex);
339 interval.removeKills(ValNo, RedefIndex, OldEnd);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000340
341 // If this redefinition is dead, we need to add a dummy unit live
342 // range covering the def slot.
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000343 if (lv_->RegisterDefIsDead(mi, interval.reg))
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000344 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000345
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000346 DOUT << " RESULT: ";
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000347 interval.print(DOUT, mri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000348
349 } else {
350 // Otherwise, this must be because of phi elimination. If this is the
351 // first redefinition of the vreg that we have seen, go back and change
352 // the live range in the PHI block to be a different value number.
353 if (interval.containsOneValue()) {
354 assert(vi.Kills.size() == 1 &&
355 "PHI elimination vreg should have one kill, the PHI itself!");
356
357 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000358 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000359 MachineInstr *Killer = vi.Kills[0];
Chris Lattner428b92e2006-09-15 03:57:23 +0000360 unsigned Start = getMBBStartIdx(Killer->getParent());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000361 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000362 DOUT << " Removing [" << Start << "," << End << "] from: ";
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000363 interval.print(DOUT, mri_); DOUT << "\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000364 interval.removeRange(Start, End);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000365 interval.addKill(VNI, Start);
366 VNI->hasPHIKill = true;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000367 DOUT << " RESULT: "; interval.print(DOUT, mri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000368
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000369 // Replace the interval with one of a NEW value number. Note that this
370 // value number isn't actually defined by an instruction, weird huh? :)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000371 LiveRange LR(Start, End, interval.getNextValue(~0, 0, VNInfoAllocator));
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000372 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000373 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000374 interval.addKill(LR.valno, End);
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000375 DOUT << " RESULT: "; interval.print(DOUT, mri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000376 }
377
378 // In the case of PHI elimination, each variable definition is only
379 // live until the end of the block. We've already taken care of the
380 // rest of the live range.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000381 unsigned defIndex = getDefIndex(MIIdx);
Chris Lattner91725b72006-08-31 05:54:43 +0000382
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000383 VNInfo *ValNo;
Chris Lattner91725b72006-08-31 05:54:43 +0000384 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000385 if (tii_->isMoveInstr(*mi, SrcReg, DstReg))
Evan Chengf3bb2e62007-09-05 21:46:51 +0000386 ValNo = interval.getNextValue(defIndex, SrcReg, VNInfoAllocator);
Evan Cheng32dfbea2007-10-12 08:50:34 +0000387 else if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
388 ValNo = interval.getNextValue(defIndex, mi->getOperand(1).getReg(),
389 VNInfoAllocator);
390 else
391 ValNo = interval.getNextValue(defIndex, 0, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000392
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000393 unsigned killIndex = getInstructionIndex(&mbb->back()) + InstrSlots::NUM;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000394 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000395 interval.addRange(LR);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000396 interval.addKill(ValNo, killIndex);
397 ValNo->hasPHIKill = true;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000398 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000399 }
400 }
401
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000402 DOUT << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000403}
404
Chris Lattnerf35fef72004-07-23 21:24:19 +0000405void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000406 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000407 unsigned MIIdx,
Chris Lattner91725b72006-08-31 05:54:43 +0000408 LiveInterval &interval,
409 unsigned SrcReg) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000410 // A physical register cannot be live across basic block, so its
411 // lifetime must end somewhere in its defining basic block.
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000412 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000413
Chris Lattner6b128bd2006-09-03 08:07:11 +0000414 unsigned baseIndex = MIIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000415 unsigned start = getDefIndex(baseIndex);
416 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000417
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000418 // If it is not used after definition, it is considered dead at
419 // the instruction defining it. Hence its interval is:
420 // [defSlot(def), defSlot(def)+1)
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000421 if (lv_->RegisterDefIsDead(mi, interval.reg)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000422 DOUT << " dead";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000423 end = getDefIndex(start) + 1;
424 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000425 }
426
427 // If it is not dead on definition, it must be killed by a
428 // subsequent instruction. Hence its interval is:
429 // [defSlot(def), useSlot(kill)+1)
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000430 while (++mi != MBB->end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000431 baseIndex += InstrSlots::NUM;
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000432 if (lv_->KillsRegister(mi, interval.reg)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000433 DOUT << " killed";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000434 end = getUseIndex(baseIndex) + 1;
435 goto exit;
Evan Cheng9a1956a2006-11-15 20:54:11 +0000436 } else if (lv_->ModifiesRegister(mi, interval.reg)) {
437 // Another instruction redefines the register before it is ever read.
438 // Then the register is essentially dead at the instruction that defines
439 // it. Hence its interval is:
440 // [defSlot(def), defSlot(def)+1)
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000441 DOUT << " dead";
Evan Cheng9a1956a2006-11-15 20:54:11 +0000442 end = getDefIndex(start) + 1;
443 goto exit;
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000444 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000445 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000446
447 // The only case we should have a dead physreg here without a killing or
448 // instruction where we know it's dead is if it is live-in to the function
449 // and never used.
Chris Lattner91725b72006-08-31 05:54:43 +0000450 assert(!SrcReg && "physreg was not killed in defining block!");
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000451 end = getDefIndex(start) + 1; // It's dead.
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000452
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000453exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000454 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000455
Evan Cheng24a3cc42007-04-25 07:30:23 +0000456 // Already exists? Extend old live interval.
457 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000458 VNInfo *ValNo = (OldLR != interval.end())
Evan Chengf3bb2e62007-09-05 21:46:51 +0000459 ? OldLR->valno : interval.getNextValue(start, SrcReg, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000460 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000461 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000462 interval.addKill(LR.valno, end);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000463 DOUT << " +" << LR << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000464}
465
Chris Lattnerf35fef72004-07-23 21:24:19 +0000466void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
467 MachineBasicBlock::iterator MI,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000468 unsigned MIIdx,
Chris Lattnerf35fef72004-07-23 21:24:19 +0000469 unsigned reg) {
470 if (MRegisterInfo::isVirtualRegister(reg))
Chris Lattner6b128bd2006-09-03 08:07:11 +0000471 handleVirtualRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg));
Alkis Evlogimenos53278012004-08-26 22:22:38 +0000472 else if (allocatableRegs_[reg]) {
Chris Lattner91725b72006-08-31 05:54:43 +0000473 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000474 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
475 SrcReg = MI->getOperand(1).getReg();
476 else if (!tii_->isMoveInstr(*MI, SrcReg, DstReg))
Chris Lattner91725b72006-08-31 05:54:43 +0000477 SrcReg = 0;
Chris Lattner6b128bd2006-09-03 08:07:11 +0000478 handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg), SrcReg);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000479 // Def of a register also defines its sub-registers.
480 for (const unsigned* AS = mri_->getSubRegisters(reg); *AS; ++AS)
481 // Avoid processing some defs more than once.
482 if (!MI->findRegisterDefOperand(*AS))
483 handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000484 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000485}
486
Evan Chengb371f452007-02-19 21:49:54 +0000487void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000488 unsigned MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +0000489 LiveInterval &interval, bool isAlias) {
Evan Chengb371f452007-02-19 21:49:54 +0000490 DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
491
492 // Look for kills, if it reaches a def before it's killed, then it shouldn't
493 // be considered a livein.
494 MachineBasicBlock::iterator mi = MBB->begin();
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000495 unsigned baseIndex = MIIdx;
496 unsigned start = baseIndex;
Evan Chengb371f452007-02-19 21:49:54 +0000497 unsigned end = start;
498 while (mi != MBB->end()) {
499 if (lv_->KillsRegister(mi, interval.reg)) {
500 DOUT << " killed";
501 end = getUseIndex(baseIndex) + 1;
502 goto exit;
503 } else if (lv_->ModifiesRegister(mi, interval.reg)) {
504 // Another instruction redefines the register before it is ever read.
505 // Then the register is essentially dead at the instruction that defines
506 // it. Hence its interval is:
507 // [defSlot(def), defSlot(def)+1)
508 DOUT << " dead";
509 end = getDefIndex(start) + 1;
510 goto exit;
511 }
512
513 baseIndex += InstrSlots::NUM;
514 ++mi;
515 }
516
517exit:
Evan Cheng75611fb2007-06-27 01:16:36 +0000518 // Live-in register might not be used at all.
519 if (end == MIIdx) {
Evan Cheng292da942007-06-27 18:47:28 +0000520 if (isAlias) {
521 DOUT << " dead";
Evan Cheng75611fb2007-06-27 01:16:36 +0000522 end = getDefIndex(MIIdx) + 1;
Evan Cheng292da942007-06-27 18:47:28 +0000523 } else {
524 DOUT << " live through";
525 end = baseIndex;
526 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000527 }
528
Evan Chengf3bb2e62007-09-05 21:46:51 +0000529 LiveRange LR(start, end, interval.getNextValue(start, 0, VNInfoAllocator));
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000530 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000531 interval.addKill(LR.valno, end);
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000532 DOUT << " +" << LR << '\n';
Evan Chengb371f452007-02-19 21:49:54 +0000533}
534
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000535/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000536/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000537/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000538/// which a variable is live
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000539void LiveIntervals::computeIntervals() {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000540 DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
541 << "********** Function: "
542 << ((Value*)mf_->getFunction())->getName() << '\n';
Chris Lattner6b128bd2006-09-03 08:07:11 +0000543 // Track the index of the current machine instr.
544 unsigned MIIndex = 0;
Chris Lattner428b92e2006-09-15 03:57:23 +0000545 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
546 MBBI != E; ++MBBI) {
547 MachineBasicBlock *MBB = MBBI;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000548 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000549
Chris Lattner428b92e2006-09-15 03:57:23 +0000550 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000551
Dan Gohmancb406c22007-10-03 19:26:29 +0000552 // Create intervals for live-ins to this BB first.
553 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
554 LE = MBB->livein_end(); LI != LE; ++LI) {
555 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
556 // Multiple live-ins can alias the same register.
557 for (const unsigned* AS = mri_->getSubRegisters(*LI); *AS; ++AS)
558 if (!hasInterval(*AS))
559 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
560 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +0000561 }
562
Chris Lattner428b92e2006-09-15 03:57:23 +0000563 for (; MI != miEnd; ++MI) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000564 DOUT << MIIndex << "\t" << *MI;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000565
Evan Cheng438f7bc2006-11-10 08:43:01 +0000566 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +0000567 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
568 MachineOperand &MO = MI->getOperand(i);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000569 // handle register defs - build intervals
Chris Lattner428b92e2006-09-15 03:57:23 +0000570 if (MO.isRegister() && MO.getReg() && MO.isDef())
571 handleRegisterDef(MBB, MI, MIIndex, MO.getReg());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000572 }
Chris Lattner6b128bd2006-09-03 08:07:11 +0000573
574 MIIndex += InstrSlots::NUM;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000575 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000576 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000577}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000578
Evan Cheng4ca980e2007-10-17 02:10:22 +0000579bool LiveIntervals::findLiveInMBBs(const LiveRange &LR,
Evan Chenga5bfc972007-10-17 06:53:44 +0000580 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +0000581 std::vector<IdxMBBPair>::const_iterator I =
582 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), LR.start);
583
584 bool ResVal = false;
585 while (I != Idx2MBBMap.end()) {
586 if (LR.end <= I->first)
587 break;
588 MBBs.push_back(I->second);
589 ResVal = true;
590 ++I;
591 }
592 return ResVal;
593}
594
595
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000596LiveInterval LiveIntervals::createInterval(unsigned reg) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000597 float Weight = MRegisterInfo::isPhysicalRegister(reg) ?
Jim Laskey7902c752006-11-07 12:25:45 +0000598 HUGE_VALF : 0.0F;
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000599 return LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000600}
Evan Chengf2fbca62007-11-12 06:35:08 +0000601
602
603//===----------------------------------------------------------------------===//
604// Register allocator hooks.
605//
606
607/// isReMaterializable - Returns true if the definition MI of the specified
608/// val# of the specified interval is re-materializable.
609bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000610 const VNInfo *ValNo, MachineInstr *MI,
611 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +0000612 if (DisableReMat)
613 return false;
614
Evan Cheng5ef3a042007-12-06 00:01:56 +0000615 isLoad = false;
616 if (tii_->isTriviallyReMaterializable(MI)) {
617 isLoad = MI->getInstrDescriptor()->Flags & M_LOAD_FLAG;
Evan Chengf2fbca62007-11-12 06:35:08 +0000618 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000619 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000620
621 int FrameIdx = 0;
622 if (!tii_->isLoadFromStackSlot(MI, FrameIdx) ||
623 !mf_->getFrameInfo()->isFixedObjectIndex(FrameIdx))
624 return false;
625
626 // This is a load from fixed stack slot. It can be rematerialized unless it's
627 // re-defined by a two-address instruction.
Evan Cheng5ef3a042007-12-06 00:01:56 +0000628 isLoad = true;
Evan Chengf2fbca62007-11-12 06:35:08 +0000629 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
630 i != e; ++i) {
631 const VNInfo *VNI = *i;
632 if (VNI == ValNo)
633 continue;
634 unsigned DefIdx = VNI->def;
635 if (DefIdx == ~1U)
636 continue; // Dead val#.
637 MachineInstr *DefMI = (DefIdx == ~0u)
638 ? NULL : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +0000639 if (DefMI && DefMI->isRegReDefinedByTwoAddr(li.reg)) {
640 isLoad = false;
Evan Chengf2fbca62007-11-12 06:35:08 +0000641 return false;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000642 }
643 }
644 return true;
645}
646
647/// isReMaterializable - Returns true if every definition of MI of every
648/// val# of the specified interval is re-materializable.
649bool LiveIntervals::isReMaterializable(const LiveInterval &li, bool &isLoad) {
650 isLoad = false;
651 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
652 i != e; ++i) {
653 const VNInfo *VNI = *i;
654 unsigned DefIdx = VNI->def;
655 if (DefIdx == ~1U)
656 continue; // Dead val#.
657 // Is the def for the val# rematerializable?
658 if (DefIdx == ~0u)
659 return false;
660 MachineInstr *ReMatDefMI = getInstructionFromIndex(DefIdx);
661 bool DefIsLoad = false;
662 if (!ReMatDefMI || !isReMaterializable(li, VNI, ReMatDefMI, DefIsLoad))
663 return false;
664 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +0000665 }
666 return true;
667}
668
669/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
670/// slot / to reg or any rematerialized load into ith operand of specified
671/// MI. If it is successul, MI is updated with the newly created MI and
672/// returns true.
Evan Cheng81a03822007-11-17 00:40:40 +0000673bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
Evan Chengcddbb832007-11-30 21:23:43 +0000674 VirtRegMap &vrm, MachineInstr *DefMI,
Evan Chengaee4af62007-12-02 08:30:39 +0000675 unsigned InstrIdx,
676 SmallVector<unsigned, 2> &Ops,
Evan Chengcddbb832007-11-30 21:23:43 +0000677 bool isSS, int Slot, unsigned Reg) {
Evan Chengaee4af62007-12-02 08:30:39 +0000678 unsigned MRInfo = 0;
679 const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
680 SmallVector<unsigned, 2> FoldOps;
681 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
682 unsigned OpIdx = Ops[i];
683 // FIXME: fold subreg use.
684 if (MI->getOperand(OpIdx).getSubReg())
Evan Chenge62f97c2007-12-01 02:07:52 +0000685 return false;
Evan Chengaee4af62007-12-02 08:30:39 +0000686 if (MI->getOperand(OpIdx).isDef())
687 MRInfo |= (unsigned)VirtRegMap::isMod;
688 else {
689 // Filter out two-address use operand(s).
690 if (TID->getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) {
691 MRInfo = VirtRegMap::isModRef;
692 continue;
693 }
694 MRInfo |= (unsigned)VirtRegMap::isRef;
695 }
696 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +0000697 }
698
Evan Chengaee4af62007-12-02 08:30:39 +0000699 MachineInstr *fmi = isSS ? mri_->foldMemoryOperand(MI, FoldOps, Slot)
700 : mri_->foldMemoryOperand(MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +0000701 if (fmi) {
702 // Attempt to fold the memory reference into the instruction. If
703 // we can do this, we don't need to insert spill code.
704 if (lv_)
705 lv_->instructionChanged(MI, fmi);
Evan Cheng81a03822007-11-17 00:40:40 +0000706 else
707 LiveVariables::transferKillDeadInfo(MI, fmi, mri_);
Evan Chengf2fbca62007-11-12 06:35:08 +0000708 MachineBasicBlock &MBB = *MI->getParent();
Evan Chengcddbb832007-11-30 21:23:43 +0000709 if (isSS && !mf_->getFrameInfo()->isFixedObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +0000710 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +0000711 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000712 vrm.transferRestorePts(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +0000713 mi2iMap_.erase(MI);
Evan Chengcddbb832007-11-30 21:23:43 +0000714 i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
715 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +0000716 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000717 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +0000718 return true;
719 }
720 return false;
721}
722
Evan Cheng018f9b02007-12-05 03:22:34 +0000723/// canFoldMemoryOperand - Returns true if the specified load / store
724/// folding is possible.
725bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
726 SmallVector<unsigned, 2> &Ops) const {
727 SmallVector<unsigned, 2> FoldOps;
728 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
729 unsigned OpIdx = Ops[i];
730 // FIXME: fold subreg use.
731 if (MI->getOperand(OpIdx).getSubReg())
732 return false;
733 FoldOps.push_back(OpIdx);
734 }
735
736 return mri_->canFoldMemoryOperand(MI, FoldOps);
737}
738
Evan Cheng81a03822007-11-17 00:40:40 +0000739bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
740 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
741 for (LiveInterval::Ranges::const_iterator
742 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
743 std::vector<IdxMBBPair>::const_iterator II =
744 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
745 if (II == Idx2MBBMap.end())
746 continue;
747 if (I->end > II->first) // crossing a MBB.
748 return false;
749 MBBs.insert(II->second);
750 if (MBBs.size() > 1)
751 return false;
752 }
753 return true;
754}
755
Evan Chengf2fbca62007-11-12 06:35:08 +0000756/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
757/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +0000758bool LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +0000759rewriteInstructionForSpills(const LiveInterval &li, bool TrySplit,
760 unsigned id, unsigned index, unsigned end, MachineInstr *MI,
761 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +0000762 unsigned Slot, int LdSlot,
763 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
764 VirtRegMap &vrm, SSARegMap *RegMap,
765 const TargetRegisterClass* rc,
766 SmallVector<int, 4> &ReMatIds,
Evan Cheng81a03822007-11-17 00:40:40 +0000767 unsigned &NewVReg, bool &HasDef, bool &HasUse,
Evan Chengcada2452007-11-28 01:28:46 +0000768 const LoopInfo *loopInfo,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000769 std::map<unsigned,unsigned> &MBBVRegsMap,
Evan Chengf2fbca62007-11-12 06:35:08 +0000770 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +0000771 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +0000772 RestartInstruction:
773 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
774 MachineOperand& mop = MI->getOperand(i);
775 if (!mop.isRegister())
776 continue;
777 unsigned Reg = mop.getReg();
778 unsigned RegI = Reg;
779 if (Reg == 0 || MRegisterInfo::isPhysicalRegister(Reg))
780 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +0000781 if (Reg != li.reg)
782 continue;
783
784 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +0000785 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +0000786 int FoldSlot = Slot;
787 if (DefIsReMat) {
788 // If this is the rematerializable definition MI itself and
789 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +0000790 if (MI == ReMatOrigDefMI && CanDelete) {
Evan Chengcddbb832007-11-30 21:23:43 +0000791 DOUT << "\t\t\t\tErasing re-materlizable def: ";
792 DOUT << MI << '\n';
Evan Chengf2fbca62007-11-12 06:35:08 +0000793 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +0000794 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +0000795 MI->eraseFromParent();
796 break;
797 }
798
799 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +0000800 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +0000801 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +0000802 if (isLoad) {
803 // Try fold loads (from stack slot, constant pool, etc.) into uses.
804 FoldSS = isLoadSS;
805 FoldSlot = LdSlot;
806 }
807 }
808
Evan Chengf2fbca62007-11-12 06:35:08 +0000809 // Scan all of the operands of this instruction rewriting operands
810 // to use NewVReg instead of li.reg as appropriate. We do this for
811 // two reasons:
812 //
813 // 1. If the instr reads the same spilled vreg multiple times, we
814 // want to reuse the NewVReg.
815 // 2. If the instr is a two-addr instruction, we are required to
816 // keep the src/dst regs pinned.
817 //
818 // Keep track of whether we replace a use and/or def so that we can
819 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +0000820
Evan Cheng81a03822007-11-17 00:40:40 +0000821 HasUse = mop.isUse();
822 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +0000823 SmallVector<unsigned, 2> Ops;
824 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +0000825 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +0000826 const MachineOperand &MOj = MI->getOperand(j);
827 if (!MOj.isRegister())
Evan Chengf2fbca62007-11-12 06:35:08 +0000828 continue;
Evan Chengaee4af62007-12-02 08:30:39 +0000829 unsigned RegJ = MOj.getReg();
Evan Chengf2fbca62007-11-12 06:35:08 +0000830 if (RegJ == 0 || MRegisterInfo::isPhysicalRegister(RegJ))
831 continue;
832 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +0000833 Ops.push_back(j);
834 HasUse |= MOj.isUse();
835 HasDef |= MOj.isDef();
Evan Chengf2fbca62007-11-12 06:35:08 +0000836 }
837 }
838
Evan Cheng018f9b02007-12-05 03:22:34 +0000839 if (TryFold) {
840 // Do not fold load / store here if we are splitting. We'll find an
841 // optimal point to insert a load / store later.
842 if (!TrySplit) {
843 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
844 Ops, FoldSS, FoldSlot, Reg)) {
845 // Folding the load/store can completely change the instruction in
846 // unpredictable ways, rescan it from the beginning.
847 HasUse = false;
848 HasDef = false;
849 CanFold = false;
850 goto RestartInstruction;
851 }
852 } else {
853 CanFold = canFoldMemoryOperand(MI, Ops);
854 }
855 } else CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +0000856
857 // Create a new virtual register for the spill interval.
858 bool CreatedNewVReg = false;
859 if (NewVReg == 0) {
860 NewVReg = RegMap->createVirtualRegister(rc);
861 vrm.grow();
862 CreatedNewVReg = true;
863 }
864 mop.setReg(NewVReg);
865
866 // Reuse NewVReg for other reads.
Evan Chengaee4af62007-12-02 08:30:39 +0000867 for (unsigned j = 0, e = Ops.size(); j != e; ++j)
868 MI->getOperand(Ops[j]).setReg(NewVReg);
Evan Chengcddbb832007-11-30 21:23:43 +0000869
Evan Cheng81a03822007-11-17 00:40:40 +0000870 if (CreatedNewVReg) {
871 if (DefIsReMat) {
872 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
873 if (ReMatIds[id] == VirtRegMap::MAX_STACK_SLOT) {
874 // Each valnum may have its own remat id.
875 ReMatIds[id] = vrm.assignVirtReMatId(NewVReg);
876 } else {
877 vrm.assignVirtReMatId(NewVReg, ReMatIds[id]);
878 }
879 if (!CanDelete || (HasUse && HasDef)) {
880 // If this is a two-addr instruction then its use operands are
881 // rematerializable but its def is not. It should be assigned a
882 // stack slot.
883 vrm.assignVirt2StackSlot(NewVReg, Slot);
884 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000885 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +0000886 vrm.assignVirt2StackSlot(NewVReg, Slot);
887 }
Evan Chengcb3c3302007-11-29 23:02:50 +0000888 } else if (HasUse && HasDef &&
889 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
890 // If this interval hasn't been assigned a stack slot (because earlier
891 // def is a deleted remat def), do it now.
892 assert(Slot != VirtRegMap::NO_STACK_SLOT);
893 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +0000894 }
895
896 // create a new register interval for this spill / remat.
897 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +0000898 if (CreatedNewVReg) {
899 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +0000900 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +0000901 if (TrySplit)
902 vrm.setIsSplitFromReg(NewVReg, li.reg);
903 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000904
905 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +0000906 if (CreatedNewVReg) {
907 LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
908 nI.getNextValue(~0U, 0, VNInfoAllocator));
909 DOUT << " +" << LR;
910 nI.addRange(LR);
911 } else {
912 // Extend the split live interval to this def / use.
913 unsigned End = getUseIndex(index)+1;
914 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
915 nI.getValNumInfo(nI.getNumValNums()-1));
916 DOUT << " +" << LR;
917 nI.addRange(LR);
918 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000919 }
920 if (HasDef) {
921 LiveRange LR(getDefIndex(index), getStoreIndex(index),
922 nI.getNextValue(~0U, 0, VNInfoAllocator));
923 DOUT << " +" << LR;
924 nI.addRange(LR);
925 }
Evan Cheng81a03822007-11-17 00:40:40 +0000926
Evan Chengf2fbca62007-11-12 06:35:08 +0000927 DOUT << "\t\t\t\tAdded new interval: ";
928 nI.print(DOUT, mri_);
929 DOUT << '\n';
930 }
Evan Cheng018f9b02007-12-05 03:22:34 +0000931 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +0000932}
Evan Cheng81a03822007-11-17 00:40:40 +0000933bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +0000934 const VNInfo *VNI,
935 MachineBasicBlock *MBB, unsigned Idx) const {
Evan Cheng81a03822007-11-17 00:40:40 +0000936 unsigned End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000937 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
938 unsigned KillIdx = VNI->kills[j];
939 if (KillIdx > Idx && KillIdx < End)
940 return true;
Evan Cheng81a03822007-11-17 00:40:40 +0000941 }
942 return false;
943}
944
Evan Cheng1953d0c2007-11-29 10:12:14 +0000945static const VNInfo *findDefinedVNInfo(const LiveInterval &li, unsigned DefIdx) {
946 const VNInfo *VNI = NULL;
947 for (LiveInterval::const_vni_iterator i = li.vni_begin(),
948 e = li.vni_end(); i != e; ++i)
949 if ((*i)->def == DefIdx) {
950 VNI = *i;
951 break;
952 }
953 return VNI;
954}
955
Evan Chengf2fbca62007-11-12 06:35:08 +0000956void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +0000957rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +0000958 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +0000959 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +0000960 unsigned Slot, int LdSlot,
961 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
962 VirtRegMap &vrm, SSARegMap *RegMap,
963 const TargetRegisterClass* rc,
964 SmallVector<int, 4> &ReMatIds,
Evan Cheng81a03822007-11-17 00:40:40 +0000965 const LoopInfo *loopInfo,
966 BitVector &SpillMBBs,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000967 std::map<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +0000968 BitVector &RestoreMBBs,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000969 std::map<unsigned, std::vector<SRInfo> > &RestoreIdxes,
970 std::map<unsigned,unsigned> &MBBVRegsMap,
Evan Chengf2fbca62007-11-12 06:35:08 +0000971 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +0000972 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +0000973 unsigned NewVReg = 0;
Evan Chengf2fbca62007-11-12 06:35:08 +0000974 unsigned index = getBaseIndex(I->start);
975 unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
976 for (; index != end; index += InstrSlots::NUM) {
977 // skip deleted instructions
978 while (index != end && !getInstructionFromIndex(index))
979 index += InstrSlots::NUM;
980 if (index == end) break;
981
982 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng81a03822007-11-17 00:40:40 +0000983 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng018f9b02007-12-05 03:22:34 +0000984 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +0000985 if (TrySplit) {
Evan Chengcada2452007-11-28 01:28:46 +0000986 std::map<unsigned,unsigned>::const_iterator NVI =
Evan Cheng1953d0c2007-11-29 10:12:14 +0000987 MBBVRegsMap.find(MBB->getNumber());
988 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +0000989 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +0000990 // One common case:
991 // x = use
992 // ...
993 // ...
994 // def = ...
995 // = use
996 // It's better to start a new interval to avoid artifically
997 // extend the new interval.
998 // FIXME: Too slow? Can we fix it after rewriteInstructionsForSpills?
999 bool MIHasUse = false;
1000 bool MIHasDef = false;
1001 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1002 MachineOperand& mop = MI->getOperand(i);
1003 if (!mop.isRegister() || mop.getReg() != li.reg)
1004 continue;
1005 if (mop.isUse())
1006 MIHasUse = true;
1007 else
1008 MIHasDef = true;
1009 }
1010 if (MIHasDef && !MIHasUse) {
1011 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00001012 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001013 }
1014 }
Evan Chengcada2452007-11-28 01:28:46 +00001015 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001016
1017 bool IsNew = ThisVReg == 0;
1018 if (IsNew) {
1019 // This ends the previous live interval. If all of its def / use
1020 // can be folded, give it a low spill weight.
1021 if (NewVReg && TrySplit && AllCanFold) {
1022 LiveInterval &nI = getOrCreateInterval(NewVReg);
1023 nI.weight /= 10.0F;
1024 }
1025 AllCanFold = true;
1026 }
1027 NewVReg = ThisVReg;
1028
Evan Cheng81a03822007-11-17 00:40:40 +00001029 bool HasDef = false;
1030 bool HasUse = false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001031 bool CanFold = rewriteInstructionForSpills(li, TrySplit, I->valno->id,
1032 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
1033 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
1034 CanDelete, vrm, RegMap, rc, ReMatIds, NewVReg,
1035 HasDef, HasUse, loopInfo, MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001036 if (!HasDef && !HasUse)
1037 continue;
1038
Evan Cheng018f9b02007-12-05 03:22:34 +00001039 AllCanFold &= CanFold;
1040
Evan Cheng81a03822007-11-17 00:40:40 +00001041 // Update weight of spill interval.
1042 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00001043 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00001044 // The spill weight is now infinity as it cannot be spilled again.
1045 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001046 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00001047 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001048
1049 // Keep track of the last def and first use in each MBB.
1050 unsigned MBBId = MBB->getNumber();
1051 if (HasDef) {
1052 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001053 bool HasKill = false;
1054 if (!HasUse)
1055 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
1056 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001057 // If this is a two-address code, then this index starts a new VNInfo.
1058 const VNInfo *VNI = findDefinedVNInfo(li, getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00001059 if (VNI)
1060 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
1061 }
Evan Chenge3110d02007-12-01 04:42:39 +00001062 std::map<unsigned, std::vector<SRInfo> >::iterator SII =
1063 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001064 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001065 if (SII == SpillIdxes.end()) {
1066 std::vector<SRInfo> S;
1067 S.push_back(SRInfo(index, NewVReg, true));
1068 SpillIdxes.insert(std::make_pair(MBBId, S));
1069 } else if (SII->second.back().vreg != NewVReg) {
1070 SII->second.push_back(SRInfo(index, NewVReg, true));
1071 } else if ((int)index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001072 // If there is an earlier def and this is a two-address
1073 // instruction, then it's not possible to fold the store (which
1074 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00001075 SRInfo &Info = SII->second.back();
1076 Info.index = index;
1077 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001078 }
1079 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00001080 } else if (SII != SpillIdxes.end() &&
1081 SII->second.back().vreg == NewVReg &&
1082 (int)index > SII->second.back().index) {
1083 // There is an earlier def that's not killed (must be two-address).
1084 // The spill is no longer needed.
1085 SII->second.pop_back();
1086 if (SII->second.empty()) {
1087 SpillIdxes.erase(MBBId);
1088 SpillMBBs.reset(MBBId);
1089 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001090 }
1091 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001092 }
1093
1094 if (HasUse) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001095 std::map<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001096 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001097 if (SII != SpillIdxes.end() &&
1098 SII->second.back().vreg == NewVReg &&
1099 (int)index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001100 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001101 SII->second.back().canFold = false;
1102 std::map<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001103 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001104 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001105 // If we are splitting live intervals, only fold if it's the first
1106 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001107 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001108 else if (IsNew) {
1109 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001110 if (RII == RestoreIdxes.end()) {
1111 std::vector<SRInfo> Infos;
1112 Infos.push_back(SRInfo(index, NewVReg, true));
1113 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
1114 } else {
1115 RII->second.push_back(SRInfo(index, NewVReg, true));
1116 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001117 RestoreMBBs.set(MBBId);
1118 }
1119 }
1120
1121 // Update spill weight.
1122 unsigned loopDepth = loopInfo->getLoopDepth(MBB->getBasicBlock());
1123 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00001124 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001125
1126 if (NewVReg && TrySplit && AllCanFold) {
1127 // If all of its def / use can be folded, give it a low spill weight.
1128 LiveInterval &nI = getOrCreateInterval(NewVReg);
1129 nI.weight /= 10.0F;
1130 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001131}
1132
Evan Cheng1953d0c2007-11-29 10:12:14 +00001133bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
1134 BitVector &RestoreMBBs,
1135 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
1136 if (!RestoreMBBs[Id])
1137 return false;
1138 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1139 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1140 if (Restores[i].index == index &&
1141 Restores[i].vreg == vr &&
1142 Restores[i].canFold)
1143 return true;
1144 return false;
1145}
1146
1147void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
1148 BitVector &RestoreMBBs,
1149 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
1150 if (!RestoreMBBs[Id])
1151 return;
1152 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1153 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1154 if (Restores[i].index == index && Restores[i].vreg)
1155 Restores[i].index = -1;
1156}
Evan Cheng81a03822007-11-17 00:40:40 +00001157
1158
Evan Chengf2fbca62007-11-12 06:35:08 +00001159std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001160addIntervalsForSpills(const LiveInterval &li,
1161 const LoopInfo *loopInfo, VirtRegMap &vrm) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001162 // Since this is called after the analysis is done we don't know if
1163 // LiveVariables is available
1164 lv_ = getAnalysisToUpdate<LiveVariables>();
1165
1166 assert(li.weight != HUGE_VALF &&
1167 "attempt to spill already spilled interval!");
1168
1169 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
1170 li.print(DOUT, mri_);
1171 DOUT << '\n';
1172
Evan Cheng81a03822007-11-17 00:40:40 +00001173 // Each bit specify whether it a spill is required in the MBB.
1174 BitVector SpillMBBs(mf_->getNumBlockIDs());
Evan Cheng1953d0c2007-11-29 10:12:14 +00001175 std::map<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001176 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Evan Cheng1953d0c2007-11-29 10:12:14 +00001177 std::map<unsigned, std::vector<SRInfo> > RestoreIdxes;
1178 std::map<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00001179 std::vector<LiveInterval*> NewLIs;
1180 SSARegMap *RegMap = mf_->getSSARegMap();
1181 const TargetRegisterClass* rc = RegMap->getRegClass(li.reg);
1182
1183 unsigned NumValNums = li.getNumValNums();
1184 SmallVector<MachineInstr*, 4> ReMatDefs;
1185 ReMatDefs.resize(NumValNums, NULL);
1186 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
1187 ReMatOrigDefs.resize(NumValNums, NULL);
1188 SmallVector<int, 4> ReMatIds;
1189 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
1190 BitVector ReMatDelete(NumValNums);
1191 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
1192
Evan Cheng81a03822007-11-17 00:40:40 +00001193 // Spilling a split live interval. It cannot be split any further. Also,
1194 // it's also guaranteed to be a single val# / range interval.
1195 if (vrm.getPreSplitReg(li.reg)) {
1196 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00001197 // Unset the split kill marker on the last use.
1198 unsigned KillIdx = vrm.getKillPoint(li.reg);
1199 if (KillIdx) {
1200 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
1201 assert(KillMI && "Last use disappeared?");
1202 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
1203 assert(KillOp != -1 && "Last use disappeared?");
1204 KillMI->getOperand(KillOp).unsetIsKill();
1205 }
Evan Chengadf85902007-12-05 09:51:10 +00001206 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00001207 bool DefIsReMat = vrm.isReMaterialized(li.reg);
1208 Slot = vrm.getStackSlot(li.reg);
1209 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
1210 MachineInstr *ReMatDefMI = DefIsReMat ?
1211 vrm.getReMaterializedMI(li.reg) : NULL;
1212 int LdSlot = 0;
1213 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1214 bool isLoad = isLoadSS ||
1215 (DefIsReMat && (ReMatDefMI->getInstrDescriptor()->Flags & M_LOAD_FLAG));
Evan Cheng81a03822007-11-17 00:40:40 +00001216 bool IsFirstRange = true;
1217 for (LiveInterval::Ranges::const_iterator
1218 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1219 // If this is a split live interval with multiple ranges, it means there
1220 // are two-address instructions that re-defined the value. Only the
1221 // first def can be rematerialized!
1222 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00001223 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00001224 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
1225 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001226 false, vrm, RegMap, rc, ReMatIds, loopInfo,
1227 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001228 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001229 } else {
1230 rewriteInstructionsForSpills(li, false, I, NULL, 0,
1231 Slot, 0, false, false, false,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001232 false, vrm, RegMap, rc, ReMatIds, loopInfo,
1233 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001234 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001235 }
1236 IsFirstRange = false;
1237 }
1238 return NewLIs;
1239 }
1240
1241 bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001242 if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
1243 TrySplit = false;
1244 if (TrySplit)
1245 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00001246 bool NeedStackSlot = false;
1247 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1248 i != e; ++i) {
1249 const VNInfo *VNI = *i;
1250 unsigned VN = VNI->id;
1251 unsigned DefIdx = VNI->def;
1252 if (DefIdx == ~1U)
1253 continue; // Dead val#.
1254 // Is the def for the val# rematerializable?
Evan Cheng81a03822007-11-17 00:40:40 +00001255 MachineInstr *ReMatDefMI = (DefIdx == ~0u)
1256 ? 0 : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001257 bool dummy;
1258 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001259 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00001260 ReMatOrigDefs[VN] = ReMatDefMI;
Evan Chengf2fbca62007-11-12 06:35:08 +00001261 // Original def may be modified so we have to make a copy here. vrm must
1262 // delete these!
Evan Cheng81a03822007-11-17 00:40:40 +00001263 ReMatDefs[VN] = ReMatDefMI = ReMatDefMI->clone();
Evan Chengf2fbca62007-11-12 06:35:08 +00001264
1265 bool CanDelete = true;
Evan Chengc3fc7d92007-11-29 09:49:23 +00001266 if (VNI->hasPHIKill) {
1267 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00001268 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001269 CanDelete = false;
1270 // Need a stack slot if there is any live range where uses cannot be
1271 // rematerialized.
1272 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00001273 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001274 if (CanDelete)
1275 ReMatDelete.set(VN);
1276 } else {
1277 // Need a stack slot if there is any live range where uses cannot be
1278 // rematerialized.
1279 NeedStackSlot = true;
1280 }
1281 }
1282
1283 // One stack slot per live interval.
Evan Cheng81a03822007-11-17 00:40:40 +00001284 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0)
Evan Chengf2fbca62007-11-12 06:35:08 +00001285 Slot = vrm.assignVirt2StackSlot(li.reg);
1286
1287 // Create new intervals and rewrite defs and uses.
1288 for (LiveInterval::Ranges::const_iterator
1289 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00001290 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
1291 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
1292 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00001293 bool CanDelete = ReMatDelete[I->valno->id];
1294 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00001295 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001296 bool isLoad = isLoadSS ||
Evan Cheng81a03822007-11-17 00:40:40 +00001297 (DefIsReMat && (ReMatDefMI->getInstrDescriptor()->Flags & M_LOAD_FLAG));
1298 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001299 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
1300 CanDelete, vrm, RegMap, rc, ReMatIds, loopInfo,
1301 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001302 MBBVRegsMap, NewLIs);
Evan Chengf2fbca62007-11-12 06:35:08 +00001303 }
1304
Evan Cheng0cbb1162007-11-29 01:06:25 +00001305 // Insert spills / restores if we are splitting.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001306 if (!TrySplit)
1307 return NewLIs;
1308
Evan Chengb50bb8c2007-12-05 08:16:32 +00001309 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00001310 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001311 if (NeedStackSlot) {
1312 int Id = SpillMBBs.find_first();
1313 while (Id != -1) {
1314 std::vector<SRInfo> &spills = SpillIdxes[Id];
1315 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
1316 int index = spills[i].index;
1317 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001318 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001319 bool isReMat = vrm.isReMaterialized(VReg);
1320 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001321 bool CanFold = false;
1322 bool FoundUse = false;
1323 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001324 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001325 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001326 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1327 MachineOperand &MO = MI->getOperand(j);
1328 if (!MO.isRegister() || MO.getReg() != VReg)
1329 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001330
1331 Ops.push_back(j);
1332 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00001333 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001334 if (isReMat ||
1335 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
1336 RestoreMBBs, RestoreIdxes))) {
1337 // MI has two-address uses of the same register. If the use
1338 // isn't the first and only use in the BB, then we can't fold
1339 // it. FIXME: Move this to rewriteInstructionsForSpills.
1340 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00001341 break;
1342 }
Evan Chengaee4af62007-12-02 08:30:39 +00001343 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001344 }
1345 }
1346 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001347 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001348 if (CanFold && !Ops.empty()) {
1349 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00001350 Folded = true;
Evan Chengf38d14f2007-12-05 09:05:34 +00001351 if (FoundUse > 0) {
Evan Chengaee4af62007-12-02 08:30:39 +00001352 // Also folded uses, do not issue a load.
1353 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Evan Chengf38d14f2007-12-05 09:05:34 +00001354 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
1355 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001356 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00001357 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001358 }
1359
Evan Chengaee4af62007-12-02 08:30:39 +00001360 // Else tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00001361 if (!Folded) {
1362 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
1363 bool isKill = LR->end == getStoreIndex(index);
1364 vrm.addSpillPoint(VReg, isKill, MI);
1365 if (isKill)
1366 AddedKill.insert(&nI);
1367 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001368 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001369 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001370 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001371 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001372
Evan Cheng1953d0c2007-11-29 10:12:14 +00001373 int Id = RestoreMBBs.find_first();
1374 while (Id != -1) {
1375 std::vector<SRInfo> &restores = RestoreIdxes[Id];
1376 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
1377 int index = restores[i].index;
1378 if (index == -1)
1379 continue;
1380 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001381 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001382 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001383 bool CanFold = false;
1384 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001385 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001386 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001387 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1388 MachineOperand &MO = MI->getOperand(j);
1389 if (!MO.isRegister() || MO.getReg() != VReg)
1390 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001391
Evan Cheng0cbb1162007-11-29 01:06:25 +00001392 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00001393 // If this restore were to be folded, it would have been folded
1394 // already.
1395 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00001396 break;
1397 }
Evan Chengaee4af62007-12-02 08:30:39 +00001398 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00001399 }
1400 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001401
1402 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001403 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001404 if (CanFold && !Ops.empty()) {
1405 if (!vrm.isReMaterialized(VReg))
1406 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
1407 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001408 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
1409 int LdSlot = 0;
1410 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1411 // If the rematerializable def is a load, also try to fold it.
1412 if (isLoadSS ||
1413 (ReMatDefMI->getInstrDescriptor()->Flags & M_LOAD_FLAG))
Evan Chengaee4af62007-12-02 08:30:39 +00001414 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
1415 Ops, isLoadSS, LdSlot, VReg);
1416 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001417 }
1418 // If folding is not possible / failed, then tell the spiller to issue a
1419 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00001420 if (Folded)
1421 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001422 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00001423 vrm.addRestorePoint(VReg, MI);
Evan Cheng81a03822007-11-17 00:40:40 +00001424 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001425 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00001426 }
1427
Evan Chengb50bb8c2007-12-05 08:16:32 +00001428 // Finalize intervals: add kills, finalize spill weights, and filter out
1429 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00001430 std::vector<LiveInterval*> RetNewLIs;
1431 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
1432 LiveInterval *LI = NewLIs[i];
1433 if (!LI->empty()) {
1434 LI->weight /= LI->getSize();
Evan Chengb50bb8c2007-12-05 08:16:32 +00001435 if (!AddedKill.count(LI)) {
1436 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Evan Chengd120ffd2007-12-05 10:24:35 +00001437 unsigned LastUseIdx = getBaseIndex(LR->end);
1438 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001439 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg);
1440 assert(UseIdx != -1);
1441 if (LastUse->getInstrDescriptor()->
Evan Chengadf85902007-12-05 09:51:10 +00001442 getOperandConstraint(UseIdx, TOI::TIED_TO) == -1) {
Evan Chengb50bb8c2007-12-05 08:16:32 +00001443 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00001444 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00001445 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00001446 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001447 RetNewLIs.push_back(LI);
1448 }
1449 }
Evan Cheng81a03822007-11-17 00:40:40 +00001450
Evan Cheng597d10d2007-12-04 00:32:23 +00001451 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00001452}