blob: 6f74774df8b0a28c4ff7ab1fdf81e53f72f07a0c [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"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000028#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>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000063 AU.addPreservedID(MachineLoopInfoID);
64 AU.addPreservedID(MachineDominatorsID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000065 AU.addPreservedID(PHIEliminationID);
66 AU.addRequiredID(PHIEliminationID);
67 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000068 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000069}
70
Chris Lattnerf7da2c72006-08-24 22:43:55 +000071void LiveIntervals::releaseMemory() {
Evan Cheng4ca980e2007-10-17 02:10:22 +000072 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000073 mi2iMap_.clear();
74 i2miMap_.clear();
75 r2iMap_.clear();
Evan Chengdd199d22007-09-06 01:07:24 +000076 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
77 VNInfoAllocator.Reset();
Evan Cheng549f27d32007-08-13 23:45:17 +000078 for (unsigned i = 0, e = ClonedMIs.size(); i != e; ++i)
79 delete ClonedMIs[i];
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000080}
81
Evan Cheng4ca980e2007-10-17 02:10:22 +000082namespace llvm {
83 inline bool operator<(unsigned V, const IdxMBBPair &IM) {
84 return V < IM.first;
85 }
86
87 inline bool operator<(const IdxMBBPair &IM, unsigned V) {
88 return IM.first < V;
89 }
90
91 struct Idx2MBBCompare {
92 bool operator()(const IdxMBBPair &LHS, const IdxMBBPair &RHS) const {
93 return LHS.first < RHS.first;
94 }
95 };
96}
97
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000098/// runOnMachineFunction - Register allocate the whole function
99///
100bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000101 mf_ = &fn;
102 tm_ = &fn.getTarget();
103 mri_ = tm_->getRegisterInfo();
Chris Lattnerf768bba2005-03-09 23:05:19 +0000104 tii_ = tm_->getInstrInfo();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000105 lv_ = &getAnalysis<LiveVariables>();
Evan Cheng20b0abc2007-04-17 20:32:26 +0000106 allocatableRegs_ = mri_->getAllocatableSet(fn);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000107
Chris Lattner428b92e2006-09-15 03:57:23 +0000108 // Number MachineInstrs and MachineBasicBlocks.
109 // Initialize MBB indexes to a sentinal.
Evan Cheng549f27d32007-08-13 23:45:17 +0000110 MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
Chris Lattner428b92e2006-09-15 03:57:23 +0000111
112 unsigned MIIndex = 0;
113 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
114 MBB != E; ++MBB) {
Evan Cheng549f27d32007-08-13 23:45:17 +0000115 unsigned StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000116
Chris Lattner428b92e2006-09-15 03:57:23 +0000117 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
118 I != E; ++I) {
119 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000120 assert(inserted && "multiple MachineInstr -> index mappings");
Chris Lattner428b92e2006-09-15 03:57:23 +0000121 i2miMap_.push_back(I);
122 MIIndex += InstrSlots::NUM;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000123 }
Evan Cheng549f27d32007-08-13 23:45:17 +0000124
125 // Set the MBB2IdxMap entry for this MBB.
126 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
Evan Cheng4ca980e2007-10-17 02:10:22 +0000127 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000128 }
Evan Cheng4ca980e2007-10-17 02:10:22 +0000129 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000130
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000131 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000132
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000133 numIntervals += getNumIntervals();
134
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000135 DOUT << "********** INTERVALS **********\n";
136 for (iterator I = begin(), E = end(); I != E; ++I) {
137 I->second.print(DOUT, mri_);
138 DOUT << "\n";
139 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000140
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000141 numIntervalsAfter += getNumIntervals();
Chris Lattner70ca3582004-09-30 15:59:17 +0000142 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000143 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000144}
145
Chris Lattner70ca3582004-09-30 15:59:17 +0000146/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000147void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000148 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000149 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000150 I->second.print(DOUT, mri_);
151 DOUT << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000152 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000153
154 O << "********** MACHINEINSTRS **********\n";
155 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
156 mbbi != mbbe; ++mbbi) {
157 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
158 for (MachineBasicBlock::iterator mii = mbbi->begin(),
159 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000160 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000161 }
162 }
163}
164
Evan Chengc92da382007-11-03 07:20:12 +0000165/// conflictsWithPhysRegDef - Returns true if the specified register
166/// is defined during the duration of the specified interval.
167bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
168 VirtRegMap &vrm, unsigned reg) {
169 for (LiveInterval::Ranges::const_iterator
170 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
171 for (unsigned index = getBaseIndex(I->start),
172 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
173 index += InstrSlots::NUM) {
174 // skip deleted instructions
175 while (index != end && !getInstructionFromIndex(index))
176 index += InstrSlots::NUM;
177 if (index == end) break;
178
179 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng5d446262007-11-15 08:13:29 +0000180 unsigned SrcReg, DstReg;
181 if (tii_->isMoveInstr(*MI, SrcReg, DstReg))
182 if (SrcReg == li.reg || DstReg == li.reg)
183 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000184 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
185 MachineOperand& mop = MI->getOperand(i);
Evan Cheng5d446262007-11-15 08:13:29 +0000186 if (!mop.isRegister())
Evan Chengc92da382007-11-03 07:20:12 +0000187 continue;
188 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000189 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000190 continue;
Evan Cheng5d446262007-11-15 08:13:29 +0000191 if (MRegisterInfo::isVirtualRegister(PhysReg)) {
192 if (!vrm.hasPhys(PhysReg))
193 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000194 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000195 }
Evan Cheng5f5f3b62007-11-05 00:59:10 +0000196 if (PhysReg && mri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000197 return true;
198 }
199 }
200 }
201
202 return false;
203}
204
Evan Cheng549f27d32007-08-13 23:45:17 +0000205void LiveIntervals::printRegName(unsigned reg) const {
206 if (MRegisterInfo::isPhysicalRegister(reg))
207 cerr << mri_->getName(reg);
208 else
209 cerr << "%reg" << reg;
210}
211
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000212void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000213 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000214 unsigned MIIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000215 LiveInterval &interval) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000216 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000217 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000218
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000219 // Virtual registers may be defined multiple times (due to phi
220 // elimination and 2-addr elimination). Much of what we do only has to be
221 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000222 // time we see a vreg.
223 if (interval.empty()) {
224 // Get the Idx of the defining instructions.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000225 unsigned defIndex = getDefIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000226 VNInfo *ValNo;
Chris Lattner91725b72006-08-31 05:54:43 +0000227 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000228 if (tii_->isMoveInstr(*mi, SrcReg, DstReg))
Evan Chengf3bb2e62007-09-05 21:46:51 +0000229 ValNo = interval.getNextValue(defIndex, SrcReg, VNInfoAllocator);
Evan Cheng48ff2822007-10-12 17:16:50 +0000230 else if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
Evan Cheng32dfbea2007-10-12 08:50:34 +0000231 ValNo = interval.getNextValue(defIndex, mi->getOperand(1).getReg(),
232 VNInfoAllocator);
233 else
234 ValNo = interval.getNextValue(defIndex, 0, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000235
236 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000237
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000238 // Loop over all of the blocks that the vreg is defined in. There are
239 // two cases we have to handle here. The most common case is a vreg
240 // whose lifetime is contained within a basic block. In this case there
241 // will be a single kill, in MBB, which comes after the definition.
242 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
243 // FIXME: what about dead vars?
244 unsigned killIdx;
245 if (vi.Kills[0] != mi)
246 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
247 else
248 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000249
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000250 // If the kill happens after the definition, we have an intra-block
251 // live range.
252 if (killIdx > defIndex) {
Evan Cheng61de82d2007-02-15 05:59:24 +0000253 assert(vi.AliveBlocks.none() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000254 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000255 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000256 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000257 DOUT << " +" << LR << "\n";
Evan Chengf3bb2e62007-09-05 21:46:51 +0000258 interval.addKill(ValNo, killIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000259 return;
260 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000261 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000262
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000263 // The other case we handle is when a virtual register lives to the end
264 // of the defining block, potentially live across some blocks, then is
265 // live into some number of blocks, but gets killed. Start by adding a
266 // range that goes from this definition to the end of the defining block.
Alkis Evlogimenosd19e2902004-08-31 17:39:15 +0000267 LiveRange NewLR(defIndex,
268 getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000269 ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000270 DOUT << " +" << NewLR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000271 interval.addRange(NewLR);
272
273 // Iterate over all of the blocks that the variable is completely
274 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
275 // live interval.
276 for (unsigned i = 0, e = vi.AliveBlocks.size(); i != e; ++i) {
277 if (vi.AliveBlocks[i]) {
Chris Lattner428b92e2006-09-15 03:57:23 +0000278 MachineBasicBlock *MBB = mf_->getBlockNumbered(i);
279 if (!MBB->empty()) {
280 LiveRange LR(getMBBStartIdx(i),
281 getInstructionIndex(&MBB->back()) + InstrSlots::NUM,
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000282 ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000283 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000284 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000285 }
286 }
287 }
288
289 // Finally, this virtual register is live from the start of any killing
290 // block to the 'use' slot of the killing instruction.
291 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
292 MachineInstr *Kill = vi.Kills[i];
Evan Cheng8df78602007-08-08 03:00:28 +0000293 unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
Chris Lattner428b92e2006-09-15 03:57:23 +0000294 LiveRange LR(getMBBStartIdx(Kill->getParent()),
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000295 killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000296 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000297 interval.addKill(ValNo, killIdx);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000298 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000299 }
300
301 } else {
302 // If this is the second time we see a virtual register definition, it
303 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000304 // the result of two address elimination, then the vreg is one of the
305 // def-and-use register operand.
Evan Cheng32dfbea2007-10-12 08:50:34 +0000306 if (mi->isRegReDefinedByTwoAddr(interval.reg)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000307 // If this is a two-address definition, then we have already processed
308 // the live range. The only problem is that we didn't realize there
309 // are actually two values in the live interval. Because of this we
310 // need to take the LiveRegion that defines this register and split it
311 // into two values.
312 unsigned DefIndex = getDefIndex(getInstructionIndex(vi.DefInst));
Chris Lattner6b128bd2006-09-03 08:07:11 +0000313 unsigned RedefIndex = getDefIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000314
Evan Cheng4f8ff162007-08-11 00:59:19 +0000315 const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000316 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000317 unsigned OldEnd = OldLR->end;
318
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000319 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000320 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000321 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000322
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000323 // Two-address vregs should always only be redefined once. This means
324 // that at this point, there should be exactly one value number in it.
325 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
326
Chris Lattner91725b72006-08-31 05:54:43 +0000327 // The new value number (#1) is defined by the instruction we claimed
328 // defined value #0.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000329 VNInfo *ValNo = interval.getNextValue(0, 0, VNInfoAllocator);
330 interval.copyValNumInfo(ValNo, OldValNo);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000331
Chris Lattner91725b72006-08-31 05:54:43 +0000332 // Value#0 is now defined by the 2-addr instruction.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000333 OldValNo->def = RedefIndex;
334 OldValNo->reg = 0;
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000335
336 // Add the new live interval which replaces the range for the input copy.
337 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000338 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000339 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000340 interval.addKill(ValNo, RedefIndex);
341 interval.removeKills(ValNo, RedefIndex, OldEnd);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000342
343 // If this redefinition is dead, we need to add a dummy unit live
344 // range covering the def slot.
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000345 if (lv_->RegisterDefIsDead(mi, interval.reg))
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000346 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000347
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000348 DOUT << " RESULT: ";
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000349 interval.print(DOUT, mri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000350
351 } else {
352 // Otherwise, this must be because of phi elimination. If this is the
353 // first redefinition of the vreg that we have seen, go back and change
354 // the live range in the PHI block to be a different value number.
355 if (interval.containsOneValue()) {
356 assert(vi.Kills.size() == 1 &&
357 "PHI elimination vreg should have one kill, the PHI itself!");
358
359 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000360 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000361 MachineInstr *Killer = vi.Kills[0];
Chris Lattner428b92e2006-09-15 03:57:23 +0000362 unsigned Start = getMBBStartIdx(Killer->getParent());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000363 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000364 DOUT << " Removing [" << Start << "," << End << "] from: ";
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000365 interval.print(DOUT, mri_); DOUT << "\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000366 interval.removeRange(Start, End);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000367 interval.addKill(VNI, Start);
368 VNI->hasPHIKill = true;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000369 DOUT << " RESULT: "; interval.print(DOUT, mri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000370
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000371 // Replace the interval with one of a NEW value number. Note that this
372 // value number isn't actually defined by an instruction, weird huh? :)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000373 LiveRange LR(Start, End, interval.getNextValue(~0, 0, VNInfoAllocator));
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000374 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000375 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000376 interval.addKill(LR.valno, End);
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000377 DOUT << " RESULT: "; interval.print(DOUT, mri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000378 }
379
380 // In the case of PHI elimination, each variable definition is only
381 // live until the end of the block. We've already taken care of the
382 // rest of the live range.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000383 unsigned defIndex = getDefIndex(MIIdx);
Chris Lattner91725b72006-08-31 05:54:43 +0000384
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000385 VNInfo *ValNo;
Chris Lattner91725b72006-08-31 05:54:43 +0000386 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000387 if (tii_->isMoveInstr(*mi, SrcReg, DstReg))
Evan Chengf3bb2e62007-09-05 21:46:51 +0000388 ValNo = interval.getNextValue(defIndex, SrcReg, VNInfoAllocator);
Evan Cheng32dfbea2007-10-12 08:50:34 +0000389 else if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
390 ValNo = interval.getNextValue(defIndex, mi->getOperand(1).getReg(),
391 VNInfoAllocator);
392 else
393 ValNo = interval.getNextValue(defIndex, 0, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000394
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000395 unsigned killIndex = getInstructionIndex(&mbb->back()) + InstrSlots::NUM;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000396 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000397 interval.addRange(LR);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000398 interval.addKill(ValNo, killIndex);
399 ValNo->hasPHIKill = true;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000400 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000401 }
402 }
403
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000404 DOUT << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000405}
406
Chris Lattnerf35fef72004-07-23 21:24:19 +0000407void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000408 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000409 unsigned MIIdx,
Chris Lattner91725b72006-08-31 05:54:43 +0000410 LiveInterval &interval,
411 unsigned SrcReg) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000412 // A physical register cannot be live across basic block, so its
413 // lifetime must end somewhere in its defining basic block.
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000414 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000415
Chris Lattner6b128bd2006-09-03 08:07:11 +0000416 unsigned baseIndex = MIIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000417 unsigned start = getDefIndex(baseIndex);
418 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000419
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000420 // If it is not used after definition, it is considered dead at
421 // the instruction defining it. Hence its interval is:
422 // [defSlot(def), defSlot(def)+1)
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000423 if (lv_->RegisterDefIsDead(mi, interval.reg)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000424 DOUT << " dead";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000425 end = getDefIndex(start) + 1;
426 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000427 }
428
429 // If it is not dead on definition, it must be killed by a
430 // subsequent instruction. Hence its interval is:
431 // [defSlot(def), useSlot(kill)+1)
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000432 while (++mi != MBB->end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000433 baseIndex += InstrSlots::NUM;
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000434 if (lv_->KillsRegister(mi, interval.reg)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000435 DOUT << " killed";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000436 end = getUseIndex(baseIndex) + 1;
437 goto exit;
Evan Cheng9a1956a2006-11-15 20:54:11 +0000438 } else if (lv_->ModifiesRegister(mi, interval.reg)) {
439 // Another instruction redefines the register before it is ever read.
440 // Then the register is essentially dead at the instruction that defines
441 // it. Hence its interval is:
442 // [defSlot(def), defSlot(def)+1)
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000443 DOUT << " dead";
Evan Cheng9a1956a2006-11-15 20:54:11 +0000444 end = getDefIndex(start) + 1;
445 goto exit;
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000446 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000447 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000448
449 // The only case we should have a dead physreg here without a killing or
450 // instruction where we know it's dead is if it is live-in to the function
451 // and never used.
Chris Lattner91725b72006-08-31 05:54:43 +0000452 assert(!SrcReg && "physreg was not killed in defining block!");
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000453 end = getDefIndex(start) + 1; // It's dead.
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000454
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000455exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000456 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000457
Evan Cheng24a3cc42007-04-25 07:30:23 +0000458 // Already exists? Extend old live interval.
459 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000460 VNInfo *ValNo = (OldLR != interval.end())
Evan Chengf3bb2e62007-09-05 21:46:51 +0000461 ? OldLR->valno : interval.getNextValue(start, SrcReg, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000462 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000463 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000464 interval.addKill(LR.valno, end);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000465 DOUT << " +" << LR << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000466}
467
Chris Lattnerf35fef72004-07-23 21:24:19 +0000468void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
469 MachineBasicBlock::iterator MI,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000470 unsigned MIIdx,
Chris Lattnerf35fef72004-07-23 21:24:19 +0000471 unsigned reg) {
472 if (MRegisterInfo::isVirtualRegister(reg))
Chris Lattner6b128bd2006-09-03 08:07:11 +0000473 handleVirtualRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg));
Alkis Evlogimenos53278012004-08-26 22:22:38 +0000474 else if (allocatableRegs_[reg]) {
Chris Lattner91725b72006-08-31 05:54:43 +0000475 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +0000476 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
477 SrcReg = MI->getOperand(1).getReg();
478 else if (!tii_->isMoveInstr(*MI, SrcReg, DstReg))
Chris Lattner91725b72006-08-31 05:54:43 +0000479 SrcReg = 0;
Chris Lattner6b128bd2006-09-03 08:07:11 +0000480 handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg), SrcReg);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000481 // Def of a register also defines its sub-registers.
482 for (const unsigned* AS = mri_->getSubRegisters(reg); *AS; ++AS)
483 // Avoid processing some defs more than once.
484 if (!MI->findRegisterDefOperand(*AS))
485 handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000486 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000487}
488
Evan Chengb371f452007-02-19 21:49:54 +0000489void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000490 unsigned MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +0000491 LiveInterval &interval, bool isAlias) {
Evan Chengb371f452007-02-19 21:49:54 +0000492 DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
493
494 // Look for kills, if it reaches a def before it's killed, then it shouldn't
495 // be considered a livein.
496 MachineBasicBlock::iterator mi = MBB->begin();
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000497 unsigned baseIndex = MIIdx;
498 unsigned start = baseIndex;
Evan Chengb371f452007-02-19 21:49:54 +0000499 unsigned end = start;
500 while (mi != MBB->end()) {
501 if (lv_->KillsRegister(mi, interval.reg)) {
502 DOUT << " killed";
503 end = getUseIndex(baseIndex) + 1;
504 goto exit;
505 } else if (lv_->ModifiesRegister(mi, interval.reg)) {
506 // Another instruction redefines the register before it is ever read.
507 // Then the register is essentially dead at the instruction that defines
508 // it. Hence its interval is:
509 // [defSlot(def), defSlot(def)+1)
510 DOUT << " dead";
511 end = getDefIndex(start) + 1;
512 goto exit;
513 }
514
515 baseIndex += InstrSlots::NUM;
516 ++mi;
517 }
518
519exit:
Evan Cheng75611fb2007-06-27 01:16:36 +0000520 // Live-in register might not be used at all.
521 if (end == MIIdx) {
Evan Cheng292da942007-06-27 18:47:28 +0000522 if (isAlias) {
523 DOUT << " dead";
Evan Cheng75611fb2007-06-27 01:16:36 +0000524 end = getDefIndex(MIIdx) + 1;
Evan Cheng292da942007-06-27 18:47:28 +0000525 } else {
526 DOUT << " live through";
527 end = baseIndex;
528 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000529 }
530
Evan Chengf3bb2e62007-09-05 21:46:51 +0000531 LiveRange LR(start, end, interval.getNextValue(start, 0, VNInfoAllocator));
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000532 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000533 interval.addKill(LR.valno, end);
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000534 DOUT << " +" << LR << '\n';
Evan Chengb371f452007-02-19 21:49:54 +0000535}
536
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000537/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000538/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000539/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000540/// which a variable is live
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000541void LiveIntervals::computeIntervals() {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000542 DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
543 << "********** Function: "
544 << ((Value*)mf_->getFunction())->getName() << '\n';
Chris Lattner6b128bd2006-09-03 08:07:11 +0000545 // Track the index of the current machine instr.
546 unsigned MIIndex = 0;
Chris Lattner428b92e2006-09-15 03:57:23 +0000547 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
548 MBBI != E; ++MBBI) {
549 MachineBasicBlock *MBB = MBBI;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000550 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000551
Chris Lattner428b92e2006-09-15 03:57:23 +0000552 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000553
Dan Gohmancb406c22007-10-03 19:26:29 +0000554 // Create intervals for live-ins to this BB first.
555 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
556 LE = MBB->livein_end(); LI != LE; ++LI) {
557 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
558 // Multiple live-ins can alias the same register.
559 for (const unsigned* AS = mri_->getSubRegisters(*LI); *AS; ++AS)
560 if (!hasInterval(*AS))
561 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
562 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +0000563 }
564
Chris Lattner428b92e2006-09-15 03:57:23 +0000565 for (; MI != miEnd; ++MI) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000566 DOUT << MIIndex << "\t" << *MI;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000567
Evan Cheng438f7bc2006-11-10 08:43:01 +0000568 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +0000569 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
570 MachineOperand &MO = MI->getOperand(i);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000571 // handle register defs - build intervals
Chris Lattner428b92e2006-09-15 03:57:23 +0000572 if (MO.isRegister() && MO.getReg() && MO.isDef())
573 handleRegisterDef(MBB, MI, MIIndex, MO.getReg());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000574 }
Chris Lattner6b128bd2006-09-03 08:07:11 +0000575
576 MIIndex += InstrSlots::NUM;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000577 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000578 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000579}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000580
Evan Cheng4ca980e2007-10-17 02:10:22 +0000581bool LiveIntervals::findLiveInMBBs(const LiveRange &LR,
Evan Chenga5bfc972007-10-17 06:53:44 +0000582 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +0000583 std::vector<IdxMBBPair>::const_iterator I =
584 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), LR.start);
585
586 bool ResVal = false;
587 while (I != Idx2MBBMap.end()) {
588 if (LR.end <= I->first)
589 break;
590 MBBs.push_back(I->second);
591 ResVal = true;
592 ++I;
593 }
594 return ResVal;
595}
596
597
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000598LiveInterval LiveIntervals::createInterval(unsigned reg) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000599 float Weight = MRegisterInfo::isPhysicalRegister(reg) ?
Jim Laskey7902c752006-11-07 12:25:45 +0000600 HUGE_VALF : 0.0F;
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000601 return LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000602}
Evan Chengf2fbca62007-11-12 06:35:08 +0000603
604
605//===----------------------------------------------------------------------===//
606// Register allocator hooks.
607//
608
609/// isReMaterializable - Returns true if the definition MI of the specified
610/// val# of the specified interval is re-materializable.
611bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000612 const VNInfo *ValNo, MachineInstr *MI,
613 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +0000614 if (DisableReMat)
615 return false;
616
Evan Cheng5ef3a042007-12-06 00:01:56 +0000617 isLoad = false;
Evan Cheng6e141fd2007-12-12 23:12:09 +0000618 const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
619 if ((TID->Flags & M_IMPLICIT_DEF_FLAG) ||
620 tii_->isTriviallyReMaterializable(MI)) {
Chris Lattner834f1ce2008-01-06 23:38:27 +0000621 isLoad = TID->isSimpleLoad();
Evan Chengf2fbca62007-11-12 06:35:08 +0000622 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000623 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000624
625 int FrameIdx = 0;
626 if (!tii_->isLoadFromStackSlot(MI, FrameIdx) ||
627 !mf_->getFrameInfo()->isFixedObjectIndex(FrameIdx))
628 return false;
629
630 // This is a load from fixed stack slot. It can be rematerialized unless it's
631 // re-defined by a two-address instruction.
Evan Cheng5ef3a042007-12-06 00:01:56 +0000632 isLoad = true;
Evan Chengf2fbca62007-11-12 06:35:08 +0000633 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
634 i != e; ++i) {
635 const VNInfo *VNI = *i;
636 if (VNI == ValNo)
637 continue;
638 unsigned DefIdx = VNI->def;
639 if (DefIdx == ~1U)
640 continue; // Dead val#.
641 MachineInstr *DefMI = (DefIdx == ~0u)
642 ? NULL : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +0000643 if (DefMI && DefMI->isRegReDefinedByTwoAddr(li.reg)) {
644 isLoad = false;
Evan Chengf2fbca62007-11-12 06:35:08 +0000645 return false;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000646 }
647 }
648 return true;
649}
650
651/// isReMaterializable - Returns true if every definition of MI of every
652/// val# of the specified interval is re-materializable.
653bool LiveIntervals::isReMaterializable(const LiveInterval &li, bool &isLoad) {
654 isLoad = false;
655 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
656 i != e; ++i) {
657 const VNInfo *VNI = *i;
658 unsigned DefIdx = VNI->def;
659 if (DefIdx == ~1U)
660 continue; // Dead val#.
661 // Is the def for the val# rematerializable?
662 if (DefIdx == ~0u)
663 return false;
664 MachineInstr *ReMatDefMI = getInstructionFromIndex(DefIdx);
665 bool DefIsLoad = false;
666 if (!ReMatDefMI || !isReMaterializable(li, VNI, ReMatDefMI, DefIsLoad))
667 return false;
668 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +0000669 }
670 return true;
671}
672
673/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
674/// slot / to reg or any rematerialized load into ith operand of specified
675/// MI. If it is successul, MI is updated with the newly created MI and
676/// returns true.
Evan Cheng81a03822007-11-17 00:40:40 +0000677bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
Evan Chengcddbb832007-11-30 21:23:43 +0000678 VirtRegMap &vrm, MachineInstr *DefMI,
Evan Chengaee4af62007-12-02 08:30:39 +0000679 unsigned InstrIdx,
680 SmallVector<unsigned, 2> &Ops,
Evan Chengcddbb832007-11-30 21:23:43 +0000681 bool isSS, int Slot, unsigned Reg) {
Evan Chengaee4af62007-12-02 08:30:39 +0000682 unsigned MRInfo = 0;
683 const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
Evan Cheng6e141fd2007-12-12 23:12:09 +0000684 // If it is an implicit def instruction, just delete it.
685 if (TID->Flags & M_IMPLICIT_DEF_FLAG) {
686 RemoveMachineInstrFromMaps(MI);
687 vrm.RemoveMachineInstrFromMaps(MI);
688 MI->eraseFromParent();
689 ++numFolds;
690 return true;
691 }
692
Evan Chengaee4af62007-12-02 08:30:39 +0000693 SmallVector<unsigned, 2> FoldOps;
694 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
695 unsigned OpIdx = Ops[i];
696 // FIXME: fold subreg use.
697 if (MI->getOperand(OpIdx).getSubReg())
Evan Chenge62f97c2007-12-01 02:07:52 +0000698 return false;
Evan Chengaee4af62007-12-02 08:30:39 +0000699 if (MI->getOperand(OpIdx).isDef())
700 MRInfo |= (unsigned)VirtRegMap::isMod;
701 else {
702 // Filter out two-address use operand(s).
703 if (TID->getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) {
704 MRInfo = VirtRegMap::isModRef;
705 continue;
706 }
707 MRInfo |= (unsigned)VirtRegMap::isRef;
708 }
709 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +0000710 }
711
Owen Anderson6425f8b2008-01-07 01:35:56 +0000712 MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(MI, FoldOps, Slot)
713 : tii_->foldMemoryOperand(MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +0000714 if (fmi) {
715 // Attempt to fold the memory reference into the instruction. If
716 // we can do this, we don't need to insert spill code.
717 if (lv_)
718 lv_->instructionChanged(MI, fmi);
Evan Cheng81a03822007-11-17 00:40:40 +0000719 else
720 LiveVariables::transferKillDeadInfo(MI, fmi, mri_);
Evan Chengf2fbca62007-11-12 06:35:08 +0000721 MachineBasicBlock &MBB = *MI->getParent();
Evan Chengcddbb832007-11-30 21:23:43 +0000722 if (isSS && !mf_->getFrameInfo()->isFixedObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +0000723 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +0000724 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000725 vrm.transferRestorePts(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +0000726 mi2iMap_.erase(MI);
Evan Chengcddbb832007-11-30 21:23:43 +0000727 i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
728 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +0000729 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000730 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +0000731 return true;
732 }
733 return false;
734}
735
Evan Cheng018f9b02007-12-05 03:22:34 +0000736/// canFoldMemoryOperand - Returns true if the specified load / store
737/// folding is possible.
738bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
739 SmallVector<unsigned, 2> &Ops) const {
740 SmallVector<unsigned, 2> FoldOps;
741 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
742 unsigned OpIdx = Ops[i];
743 // FIXME: fold subreg use.
744 if (MI->getOperand(OpIdx).getSubReg())
745 return false;
746 FoldOps.push_back(OpIdx);
747 }
748
Owen Anderson6425f8b2008-01-07 01:35:56 +0000749 return tii_->canFoldMemoryOperand(MI, FoldOps);
Evan Cheng018f9b02007-12-05 03:22:34 +0000750}
751
Evan Cheng81a03822007-11-17 00:40:40 +0000752bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
753 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
754 for (LiveInterval::Ranges::const_iterator
755 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
756 std::vector<IdxMBBPair>::const_iterator II =
757 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
758 if (II == Idx2MBBMap.end())
759 continue;
760 if (I->end > II->first) // crossing a MBB.
761 return false;
762 MBBs.insert(II->second);
763 if (MBBs.size() > 1)
764 return false;
765 }
766 return true;
767}
768
Evan Chengf2fbca62007-11-12 06:35:08 +0000769/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
770/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +0000771bool LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +0000772rewriteInstructionForSpills(const LiveInterval &li, bool TrySplit,
773 unsigned id, unsigned index, unsigned end, MachineInstr *MI,
774 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +0000775 unsigned Slot, int LdSlot,
776 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Chris Lattner84bc5422007-12-31 04:13:23 +0000777 VirtRegMap &vrm, MachineRegisterInfo &RegInfo,
Evan Chengf2fbca62007-11-12 06:35:08 +0000778 const TargetRegisterClass* rc,
779 SmallVector<int, 4> &ReMatIds,
Evan Cheng81a03822007-11-17 00:40:40 +0000780 unsigned &NewVReg, bool &HasDef, bool &HasUse,
Evan Cheng22f07ff2007-12-11 02:09:15 +0000781 const MachineLoopInfo *loopInfo,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000782 std::map<unsigned,unsigned> &MBBVRegsMap,
Evan Chengf2fbca62007-11-12 06:35:08 +0000783 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +0000784 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +0000785 RestartInstruction:
786 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
787 MachineOperand& mop = MI->getOperand(i);
788 if (!mop.isRegister())
789 continue;
790 unsigned Reg = mop.getReg();
791 unsigned RegI = Reg;
792 if (Reg == 0 || MRegisterInfo::isPhysicalRegister(Reg))
793 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +0000794 if (Reg != li.reg)
795 continue;
796
797 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +0000798 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +0000799 int FoldSlot = Slot;
800 if (DefIsReMat) {
801 // If this is the rematerializable definition MI itself and
802 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +0000803 if (MI == ReMatOrigDefMI && CanDelete) {
Evan Chengcddbb832007-11-30 21:23:43 +0000804 DOUT << "\t\t\t\tErasing re-materlizable def: ";
805 DOUT << MI << '\n';
Evan Chengf2fbca62007-11-12 06:35:08 +0000806 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +0000807 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +0000808 MI->eraseFromParent();
809 break;
810 }
811
812 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +0000813 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +0000814 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +0000815 if (isLoad) {
816 // Try fold loads (from stack slot, constant pool, etc.) into uses.
817 FoldSS = isLoadSS;
818 FoldSlot = LdSlot;
819 }
820 }
821
Evan Chengf2fbca62007-11-12 06:35:08 +0000822 // Scan all of the operands of this instruction rewriting operands
823 // to use NewVReg instead of li.reg as appropriate. We do this for
824 // two reasons:
825 //
826 // 1. If the instr reads the same spilled vreg multiple times, we
827 // want to reuse the NewVReg.
828 // 2. If the instr is a two-addr instruction, we are required to
829 // keep the src/dst regs pinned.
830 //
831 // Keep track of whether we replace a use and/or def so that we can
832 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +0000833
Evan Cheng81a03822007-11-17 00:40:40 +0000834 HasUse = mop.isUse();
835 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +0000836 SmallVector<unsigned, 2> Ops;
837 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +0000838 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +0000839 const MachineOperand &MOj = MI->getOperand(j);
840 if (!MOj.isRegister())
Evan Chengf2fbca62007-11-12 06:35:08 +0000841 continue;
Evan Chengaee4af62007-12-02 08:30:39 +0000842 unsigned RegJ = MOj.getReg();
Evan Chengf2fbca62007-11-12 06:35:08 +0000843 if (RegJ == 0 || MRegisterInfo::isPhysicalRegister(RegJ))
844 continue;
845 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +0000846 Ops.push_back(j);
847 HasUse |= MOj.isUse();
848 HasDef |= MOj.isDef();
Evan Chengf2fbca62007-11-12 06:35:08 +0000849 }
850 }
851
Evan Cheng018f9b02007-12-05 03:22:34 +0000852 if (TryFold) {
853 // Do not fold load / store here if we are splitting. We'll find an
854 // optimal point to insert a load / store later.
855 if (!TrySplit) {
856 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
857 Ops, FoldSS, FoldSlot, Reg)) {
858 // Folding the load/store can completely change the instruction in
859 // unpredictable ways, rescan it from the beginning.
860 HasUse = false;
861 HasDef = false;
862 CanFold = false;
863 goto RestartInstruction;
864 }
865 } else {
866 CanFold = canFoldMemoryOperand(MI, Ops);
867 }
Evan Cheng6e141fd2007-12-12 23:12:09 +0000868 } else
869 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +0000870
871 // Create a new virtual register for the spill interval.
872 bool CreatedNewVReg = false;
873 if (NewVReg == 0) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000874 NewVReg = RegInfo.createVirtualRegister(rc);
Evan Chengcddbb832007-11-30 21:23:43 +0000875 vrm.grow();
876 CreatedNewVReg = true;
877 }
878 mop.setReg(NewVReg);
879
880 // Reuse NewVReg for other reads.
Evan Chengaee4af62007-12-02 08:30:39 +0000881 for (unsigned j = 0, e = Ops.size(); j != e; ++j)
882 MI->getOperand(Ops[j]).setReg(NewVReg);
Evan Chengcddbb832007-11-30 21:23:43 +0000883
Evan Cheng81a03822007-11-17 00:40:40 +0000884 if (CreatedNewVReg) {
885 if (DefIsReMat) {
886 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
887 if (ReMatIds[id] == VirtRegMap::MAX_STACK_SLOT) {
888 // Each valnum may have its own remat id.
889 ReMatIds[id] = vrm.assignVirtReMatId(NewVReg);
890 } else {
891 vrm.assignVirtReMatId(NewVReg, ReMatIds[id]);
892 }
893 if (!CanDelete || (HasUse && HasDef)) {
894 // If this is a two-addr instruction then its use operands are
895 // rematerializable but its def is not. It should be assigned a
896 // stack slot.
897 vrm.assignVirt2StackSlot(NewVReg, Slot);
898 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000899 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +0000900 vrm.assignVirt2StackSlot(NewVReg, Slot);
901 }
Evan Chengcb3c3302007-11-29 23:02:50 +0000902 } else if (HasUse && HasDef &&
903 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
904 // If this interval hasn't been assigned a stack slot (because earlier
905 // def is a deleted remat def), do it now.
906 assert(Slot != VirtRegMap::NO_STACK_SLOT);
907 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +0000908 }
909
910 // create a new register interval for this spill / remat.
911 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +0000912 if (CreatedNewVReg) {
913 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +0000914 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +0000915 if (TrySplit)
916 vrm.setIsSplitFromReg(NewVReg, li.reg);
917 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000918
919 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +0000920 if (CreatedNewVReg) {
921 LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
922 nI.getNextValue(~0U, 0, VNInfoAllocator));
923 DOUT << " +" << LR;
924 nI.addRange(LR);
925 } else {
926 // Extend the split live interval to this def / use.
927 unsigned End = getUseIndex(index)+1;
928 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
929 nI.getValNumInfo(nI.getNumValNums()-1));
930 DOUT << " +" << LR;
931 nI.addRange(LR);
932 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000933 }
934 if (HasDef) {
935 LiveRange LR(getDefIndex(index), getStoreIndex(index),
936 nI.getNextValue(~0U, 0, VNInfoAllocator));
937 DOUT << " +" << LR;
938 nI.addRange(LR);
939 }
Evan Cheng81a03822007-11-17 00:40:40 +0000940
Evan Chengf2fbca62007-11-12 06:35:08 +0000941 DOUT << "\t\t\t\tAdded new interval: ";
942 nI.print(DOUT, mri_);
943 DOUT << '\n';
944 }
Evan Cheng018f9b02007-12-05 03:22:34 +0000945 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +0000946}
Evan Cheng81a03822007-11-17 00:40:40 +0000947bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +0000948 const VNInfo *VNI,
949 MachineBasicBlock *MBB, unsigned Idx) const {
Evan Cheng81a03822007-11-17 00:40:40 +0000950 unsigned End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +0000951 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
952 unsigned KillIdx = VNI->kills[j];
953 if (KillIdx > Idx && KillIdx < End)
954 return true;
Evan Cheng81a03822007-11-17 00:40:40 +0000955 }
956 return false;
957}
958
Evan Cheng1953d0c2007-11-29 10:12:14 +0000959static const VNInfo *findDefinedVNInfo(const LiveInterval &li, unsigned DefIdx) {
960 const VNInfo *VNI = NULL;
961 for (LiveInterval::const_vni_iterator i = li.vni_begin(),
962 e = li.vni_end(); i != e; ++i)
963 if ((*i)->def == DefIdx) {
964 VNI = *i;
965 break;
966 }
967 return VNI;
968}
969
Evan Chengf2fbca62007-11-12 06:35:08 +0000970void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +0000971rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +0000972 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +0000973 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +0000974 unsigned Slot, int LdSlot,
975 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Chris Lattner84bc5422007-12-31 04:13:23 +0000976 VirtRegMap &vrm, MachineRegisterInfo &RegInfo,
Evan Chengf2fbca62007-11-12 06:35:08 +0000977 const TargetRegisterClass* rc,
978 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +0000979 const MachineLoopInfo *loopInfo,
Evan Cheng81a03822007-11-17 00:40:40 +0000980 BitVector &SpillMBBs,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000981 std::map<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +0000982 BitVector &RestoreMBBs,
Evan Cheng1953d0c2007-11-29 10:12:14 +0000983 std::map<unsigned, std::vector<SRInfo> > &RestoreIdxes,
984 std::map<unsigned,unsigned> &MBBVRegsMap,
Evan Chengf2fbca62007-11-12 06:35:08 +0000985 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng018f9b02007-12-05 03:22:34 +0000986 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +0000987 unsigned NewVReg = 0;
Evan Chengf2fbca62007-11-12 06:35:08 +0000988 unsigned index = getBaseIndex(I->start);
989 unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
990 for (; index != end; index += InstrSlots::NUM) {
991 // skip deleted instructions
992 while (index != end && !getInstructionFromIndex(index))
993 index += InstrSlots::NUM;
994 if (index == end) break;
995
996 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng81a03822007-11-17 00:40:40 +0000997 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng018f9b02007-12-05 03:22:34 +0000998 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +0000999 if (TrySplit) {
Evan Chengcada2452007-11-28 01:28:46 +00001000 std::map<unsigned,unsigned>::const_iterator NVI =
Evan Cheng1953d0c2007-11-29 10:12:14 +00001001 MBBVRegsMap.find(MBB->getNumber());
1002 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001003 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001004 // One common case:
1005 // x = use
1006 // ...
1007 // ...
1008 // def = ...
1009 // = use
1010 // It's better to start a new interval to avoid artifically
1011 // extend the new interval.
1012 // FIXME: Too slow? Can we fix it after rewriteInstructionsForSpills?
1013 bool MIHasUse = false;
1014 bool MIHasDef = false;
1015 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1016 MachineOperand& mop = MI->getOperand(i);
1017 if (!mop.isRegister() || mop.getReg() != li.reg)
1018 continue;
1019 if (mop.isUse())
1020 MIHasUse = true;
1021 else
1022 MIHasDef = true;
1023 }
1024 if (MIHasDef && !MIHasUse) {
1025 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00001026 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001027 }
1028 }
Evan Chengcada2452007-11-28 01:28:46 +00001029 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001030
1031 bool IsNew = ThisVReg == 0;
1032 if (IsNew) {
1033 // This ends the previous live interval. If all of its def / use
1034 // can be folded, give it a low spill weight.
1035 if (NewVReg && TrySplit && AllCanFold) {
1036 LiveInterval &nI = getOrCreateInterval(NewVReg);
1037 nI.weight /= 10.0F;
1038 }
1039 AllCanFold = true;
1040 }
1041 NewVReg = ThisVReg;
1042
Evan Cheng81a03822007-11-17 00:40:40 +00001043 bool HasDef = false;
1044 bool HasUse = false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001045 bool CanFold = rewriteInstructionForSpills(li, TrySplit, I->valno->id,
1046 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
1047 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Chris Lattner84bc5422007-12-31 04:13:23 +00001048 CanDelete, vrm, RegInfo, rc, ReMatIds, NewVReg,
Evan Cheng018f9b02007-12-05 03:22:34 +00001049 HasDef, HasUse, loopInfo, MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001050 if (!HasDef && !HasUse)
1051 continue;
1052
Evan Cheng018f9b02007-12-05 03:22:34 +00001053 AllCanFold &= CanFold;
1054
Evan Cheng81a03822007-11-17 00:40:40 +00001055 // Update weight of spill interval.
1056 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00001057 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00001058 // The spill weight is now infinity as it cannot be spilled again.
1059 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001060 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00001061 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001062
1063 // Keep track of the last def and first use in each MBB.
1064 unsigned MBBId = MBB->getNumber();
1065 if (HasDef) {
1066 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001067 bool HasKill = false;
1068 if (!HasUse)
1069 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
1070 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001071 // If this is a two-address code, then this index starts a new VNInfo.
1072 const VNInfo *VNI = findDefinedVNInfo(li, getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00001073 if (VNI)
1074 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
1075 }
Evan Chenge3110d02007-12-01 04:42:39 +00001076 std::map<unsigned, std::vector<SRInfo> >::iterator SII =
1077 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001078 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001079 if (SII == SpillIdxes.end()) {
1080 std::vector<SRInfo> S;
1081 S.push_back(SRInfo(index, NewVReg, true));
1082 SpillIdxes.insert(std::make_pair(MBBId, S));
1083 } else if (SII->second.back().vreg != NewVReg) {
1084 SII->second.push_back(SRInfo(index, NewVReg, true));
1085 } else if ((int)index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001086 // If there is an earlier def and this is a two-address
1087 // instruction, then it's not possible to fold the store (which
1088 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00001089 SRInfo &Info = SII->second.back();
1090 Info.index = index;
1091 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001092 }
1093 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00001094 } else if (SII != SpillIdxes.end() &&
1095 SII->second.back().vreg == NewVReg &&
1096 (int)index > SII->second.back().index) {
1097 // There is an earlier def that's not killed (must be two-address).
1098 // The spill is no longer needed.
1099 SII->second.pop_back();
1100 if (SII->second.empty()) {
1101 SpillIdxes.erase(MBBId);
1102 SpillMBBs.reset(MBBId);
1103 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001104 }
1105 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001106 }
1107
1108 if (HasUse) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001109 std::map<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001110 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001111 if (SII != SpillIdxes.end() &&
1112 SII->second.back().vreg == NewVReg &&
1113 (int)index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001114 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001115 SII->second.back().canFold = false;
1116 std::map<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001117 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001118 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001119 // If we are splitting live intervals, only fold if it's the first
1120 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001121 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001122 else if (IsNew) {
1123 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001124 if (RII == RestoreIdxes.end()) {
1125 std::vector<SRInfo> Infos;
1126 Infos.push_back(SRInfo(index, NewVReg, true));
1127 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
1128 } else {
1129 RII->second.push_back(SRInfo(index, NewVReg, true));
1130 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001131 RestoreMBBs.set(MBBId);
1132 }
1133 }
1134
1135 // Update spill weight.
Evan Cheng22f07ff2007-12-11 02:09:15 +00001136 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001137 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00001138 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001139
1140 if (NewVReg && TrySplit && AllCanFold) {
1141 // If all of its def / use can be folded, give it a low spill weight.
1142 LiveInterval &nI = getOrCreateInterval(NewVReg);
1143 nI.weight /= 10.0F;
1144 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001145}
1146
Evan Cheng1953d0c2007-11-29 10:12:14 +00001147bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
1148 BitVector &RestoreMBBs,
1149 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
1150 if (!RestoreMBBs[Id])
1151 return false;
1152 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1153 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1154 if (Restores[i].index == index &&
1155 Restores[i].vreg == vr &&
1156 Restores[i].canFold)
1157 return true;
1158 return false;
1159}
1160
1161void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
1162 BitVector &RestoreMBBs,
1163 std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
1164 if (!RestoreMBBs[Id])
1165 return;
1166 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1167 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1168 if (Restores[i].index == index && Restores[i].vreg)
1169 Restores[i].index = -1;
1170}
Evan Cheng81a03822007-11-17 00:40:40 +00001171
1172
Evan Chengf2fbca62007-11-12 06:35:08 +00001173std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001174addIntervalsForSpills(const LiveInterval &li,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001175 const MachineLoopInfo *loopInfo, VirtRegMap &vrm) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001176 // Since this is called after the analysis is done we don't know if
1177 // LiveVariables is available
1178 lv_ = getAnalysisToUpdate<LiveVariables>();
1179
1180 assert(li.weight != HUGE_VALF &&
1181 "attempt to spill already spilled interval!");
1182
1183 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
1184 li.print(DOUT, mri_);
1185 DOUT << '\n';
1186
Evan Cheng81a03822007-11-17 00:40:40 +00001187 // Each bit specify whether it a spill is required in the MBB.
1188 BitVector SpillMBBs(mf_->getNumBlockIDs());
Evan Cheng1953d0c2007-11-29 10:12:14 +00001189 std::map<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001190 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Evan Cheng1953d0c2007-11-29 10:12:14 +00001191 std::map<unsigned, std::vector<SRInfo> > RestoreIdxes;
1192 std::map<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00001193 std::vector<LiveInterval*> NewLIs;
Chris Lattner84bc5422007-12-31 04:13:23 +00001194 MachineRegisterInfo &RegInfo = mf_->getRegInfo();
1195 const TargetRegisterClass* rc = RegInfo.getRegClass(li.reg);
Evan Chengf2fbca62007-11-12 06:35:08 +00001196
1197 unsigned NumValNums = li.getNumValNums();
1198 SmallVector<MachineInstr*, 4> ReMatDefs;
1199 ReMatDefs.resize(NumValNums, NULL);
1200 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
1201 ReMatOrigDefs.resize(NumValNums, NULL);
1202 SmallVector<int, 4> ReMatIds;
1203 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
1204 BitVector ReMatDelete(NumValNums);
1205 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
1206
Evan Cheng81a03822007-11-17 00:40:40 +00001207 // Spilling a split live interval. It cannot be split any further. Also,
1208 // it's also guaranteed to be a single val# / range interval.
1209 if (vrm.getPreSplitReg(li.reg)) {
1210 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00001211 // Unset the split kill marker on the last use.
1212 unsigned KillIdx = vrm.getKillPoint(li.reg);
1213 if (KillIdx) {
1214 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
1215 assert(KillMI && "Last use disappeared?");
1216 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
1217 assert(KillOp != -1 && "Last use disappeared?");
Chris Lattnerf7382302007-12-30 21:56:09 +00001218 KillMI->getOperand(KillOp).setIsKill(false);
Evan Chengd120ffd2007-12-05 10:24:35 +00001219 }
Evan Chengadf85902007-12-05 09:51:10 +00001220 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00001221 bool DefIsReMat = vrm.isReMaterialized(li.reg);
1222 Slot = vrm.getStackSlot(li.reg);
1223 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
1224 MachineInstr *ReMatDefMI = DefIsReMat ?
1225 vrm.getReMaterializedMI(li.reg) : NULL;
1226 int LdSlot = 0;
1227 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1228 bool isLoad = isLoadSS ||
Chris Lattner834f1ce2008-01-06 23:38:27 +00001229 (DefIsReMat && (ReMatDefMI->getInstrDescriptor()->isSimpleLoad()));
Evan Cheng81a03822007-11-17 00:40:40 +00001230 bool IsFirstRange = true;
1231 for (LiveInterval::Ranges::const_iterator
1232 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1233 // If this is a split live interval with multiple ranges, it means there
1234 // are two-address instructions that re-defined the value. Only the
1235 // first def can be rematerialized!
1236 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00001237 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00001238 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
1239 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Chris Lattner84bc5422007-12-31 04:13:23 +00001240 false, vrm, RegInfo, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001241 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001242 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001243 } else {
1244 rewriteInstructionsForSpills(li, false, I, NULL, 0,
1245 Slot, 0, false, false, false,
Chris Lattner84bc5422007-12-31 04:13:23 +00001246 false, vrm, RegInfo, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001247 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001248 MBBVRegsMap, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001249 }
1250 IsFirstRange = false;
1251 }
1252 return NewLIs;
1253 }
1254
1255 bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001256 if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
1257 TrySplit = false;
1258 if (TrySplit)
1259 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00001260 bool NeedStackSlot = false;
1261 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1262 i != e; ++i) {
1263 const VNInfo *VNI = *i;
1264 unsigned VN = VNI->id;
1265 unsigned DefIdx = VNI->def;
1266 if (DefIdx == ~1U)
1267 continue; // Dead val#.
1268 // Is the def for the val# rematerializable?
Evan Cheng81a03822007-11-17 00:40:40 +00001269 MachineInstr *ReMatDefMI = (DefIdx == ~0u)
1270 ? 0 : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001271 bool dummy;
1272 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001273 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00001274 ReMatOrigDefs[VN] = ReMatDefMI;
Evan Chengf2fbca62007-11-12 06:35:08 +00001275 // Original def may be modified so we have to make a copy here. vrm must
1276 // delete these!
Evan Cheng81a03822007-11-17 00:40:40 +00001277 ReMatDefs[VN] = ReMatDefMI = ReMatDefMI->clone();
Evan Chengf2fbca62007-11-12 06:35:08 +00001278
1279 bool CanDelete = true;
Evan Chengc3fc7d92007-11-29 09:49:23 +00001280 if (VNI->hasPHIKill) {
1281 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00001282 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001283 CanDelete = false;
1284 // Need a stack slot if there is any live range where uses cannot be
1285 // rematerialized.
1286 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00001287 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001288 if (CanDelete)
1289 ReMatDelete.set(VN);
1290 } else {
1291 // Need a stack slot if there is any live range where uses cannot be
1292 // rematerialized.
1293 NeedStackSlot = true;
1294 }
1295 }
1296
1297 // One stack slot per live interval.
Evan Cheng81a03822007-11-17 00:40:40 +00001298 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0)
Evan Chengf2fbca62007-11-12 06:35:08 +00001299 Slot = vrm.assignVirt2StackSlot(li.reg);
1300
1301 // Create new intervals and rewrite defs and uses.
1302 for (LiveInterval::Ranges::const_iterator
1303 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00001304 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
1305 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
1306 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00001307 bool CanDelete = ReMatDelete[I->valno->id];
1308 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00001309 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001310 bool isLoad = isLoadSS ||
Chris Lattner834f1ce2008-01-06 23:38:27 +00001311 (DefIsReMat && ReMatDefMI->getInstrDescriptor()->isSimpleLoad());
Evan Cheng81a03822007-11-17 00:40:40 +00001312 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001313 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Chris Lattner84bc5422007-12-31 04:13:23 +00001314 CanDelete, vrm, RegInfo, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001315 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng1953d0c2007-11-29 10:12:14 +00001316 MBBVRegsMap, NewLIs);
Evan Chengf2fbca62007-11-12 06:35:08 +00001317 }
1318
Evan Cheng0cbb1162007-11-29 01:06:25 +00001319 // Insert spills / restores if we are splitting.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001320 if (!TrySplit)
1321 return NewLIs;
1322
Evan Chengb50bb8c2007-12-05 08:16:32 +00001323 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00001324 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001325 if (NeedStackSlot) {
1326 int Id = SpillMBBs.find_first();
1327 while (Id != -1) {
1328 std::vector<SRInfo> &spills = SpillIdxes[Id];
1329 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
1330 int index = spills[i].index;
1331 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001332 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001333 bool isReMat = vrm.isReMaterialized(VReg);
1334 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001335 bool CanFold = false;
1336 bool FoundUse = false;
1337 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001338 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001339 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001340 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1341 MachineOperand &MO = MI->getOperand(j);
1342 if (!MO.isRegister() || MO.getReg() != VReg)
1343 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001344
1345 Ops.push_back(j);
1346 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00001347 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001348 if (isReMat ||
1349 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
1350 RestoreMBBs, RestoreIdxes))) {
1351 // MI has two-address uses of the same register. If the use
1352 // isn't the first and only use in the BB, then we can't fold
1353 // it. FIXME: Move this to rewriteInstructionsForSpills.
1354 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00001355 break;
1356 }
Evan Chengaee4af62007-12-02 08:30:39 +00001357 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001358 }
1359 }
1360 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001361 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001362 if (CanFold && !Ops.empty()) {
1363 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00001364 Folded = true;
Evan Chengf38d14f2007-12-05 09:05:34 +00001365 if (FoundUse > 0) {
Evan Chengaee4af62007-12-02 08:30:39 +00001366 // Also folded uses, do not issue a load.
1367 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Evan Chengf38d14f2007-12-05 09:05:34 +00001368 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
1369 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001370 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00001371 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001372 }
1373
Evan Chengaee4af62007-12-02 08:30:39 +00001374 // Else tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00001375 if (!Folded) {
1376 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
1377 bool isKill = LR->end == getStoreIndex(index);
1378 vrm.addSpillPoint(VReg, isKill, MI);
1379 if (isKill)
1380 AddedKill.insert(&nI);
1381 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001382 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001383 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001384 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001385 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001386
Evan Cheng1953d0c2007-11-29 10:12:14 +00001387 int Id = RestoreMBBs.find_first();
1388 while (Id != -1) {
1389 std::vector<SRInfo> &restores = RestoreIdxes[Id];
1390 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
1391 int index = restores[i].index;
1392 if (index == -1)
1393 continue;
1394 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001395 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001396 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001397 bool CanFold = false;
1398 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001399 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001400 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001401 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1402 MachineOperand &MO = MI->getOperand(j);
1403 if (!MO.isRegister() || MO.getReg() != VReg)
1404 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001405
Evan Cheng0cbb1162007-11-29 01:06:25 +00001406 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00001407 // If this restore were to be folded, it would have been folded
1408 // already.
1409 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00001410 break;
1411 }
Evan Chengaee4af62007-12-02 08:30:39 +00001412 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00001413 }
1414 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001415
1416 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001417 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001418 if (CanFold && !Ops.empty()) {
1419 if (!vrm.isReMaterialized(VReg))
1420 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
1421 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001422 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
1423 int LdSlot = 0;
1424 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1425 // If the rematerializable def is a load, also try to fold it.
Chris Lattner834f1ce2008-01-06 23:38:27 +00001426 if (isLoadSS || ReMatDefMI->getInstrDescriptor()->isSimpleLoad())
Evan Chengaee4af62007-12-02 08:30:39 +00001427 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
1428 Ops, isLoadSS, LdSlot, VReg);
1429 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001430 }
1431 // If folding is not possible / failed, then tell the spiller to issue a
1432 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00001433 if (Folded)
1434 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001435 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00001436 vrm.addRestorePoint(VReg, MI);
Evan Cheng81a03822007-11-17 00:40:40 +00001437 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001438 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00001439 }
1440
Evan Chengb50bb8c2007-12-05 08:16:32 +00001441 // Finalize intervals: add kills, finalize spill weights, and filter out
1442 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00001443 std::vector<LiveInterval*> RetNewLIs;
1444 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
1445 LiveInterval *LI = NewLIs[i];
1446 if (!LI->empty()) {
1447 LI->weight /= LI->getSize();
Evan Chengb50bb8c2007-12-05 08:16:32 +00001448 if (!AddedKill.count(LI)) {
1449 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Evan Chengd120ffd2007-12-05 10:24:35 +00001450 unsigned LastUseIdx = getBaseIndex(LR->end);
1451 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001452 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg);
1453 assert(UseIdx != -1);
1454 if (LastUse->getInstrDescriptor()->
Evan Chengadf85902007-12-05 09:51:10 +00001455 getOperandConstraint(UseIdx, TOI::TIED_TO) == -1) {
Evan Chengb50bb8c2007-12-05 08:16:32 +00001456 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00001457 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00001458 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00001459 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001460 RetNewLIs.push_back(LI);
1461 }
1462 }
Evan Cheng81a03822007-11-17 00:40:40 +00001463
Evan Cheng597d10d2007-12-04 00:32:23 +00001464 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00001465}