blob: 98ff22ce6e0ce73af2dd17732363f07c1ee72f62 [file] [log] [blame]
Chris Lattnera3b8b5c2004-07-23 17:56:30 +00001//===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LiveInterval analysis pass which is used
11// by the Linear Scan Register allocator. This pass linearizes the
12// basic blocks of the function in DFS order and uses the
13// LiveVariables pass to conservatively compute live intervals for
14// each virtual and physical register.
15//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "liveintervals"
Chris Lattner3c3fe462005-09-21 04:19:09 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Misha Brukman08a6c762004-09-03 18:25:53 +000020#include "VirtRegMap.h"
Chris Lattner015959e2004-05-01 21:24:39 +000021#include "llvm/Value.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000022#include "llvm/Analysis/AliasAnalysis.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000023#include "llvm/CodeGen/LiveVariables.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000025#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000026#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000028#include "llvm/CodeGen/Passes.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000029#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000030#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000031#include "llvm/Target/TargetInstrInfo.h"
32#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/Debug.h"
35#include "llvm/ADT/Statistic.h"
36#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000037#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000038#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000039using namespace llvm;
40
Dan Gohman844731a2008-05-13 00:00:25 +000041// Hidden options for help debugging.
42static cl::opt<bool> DisableReMat("disable-rematerialization",
43 cl::init(false), cl::Hidden);
Evan Cheng81a03822007-11-17 00:40:40 +000044
Dan Gohman844731a2008-05-13 00:00:25 +000045static cl::opt<bool> SplitAtBB("split-intervals-at-bb",
46 cl::init(true), cl::Hidden);
47static cl::opt<int> SplitLimit("split-limit",
48 cl::init(-1), cl::Hidden);
Evan Chengbc165e42007-08-16 07:24:22 +000049
Dan Gohman4c8f8702008-07-25 15:08:37 +000050static cl::opt<bool> EnableAggressiveRemat("aggressive-remat", cl::Hidden);
51
Owen Andersonae339ba2008-08-19 00:17:30 +000052static cl::opt<bool> EnableFastSpilling("fast-spill",
53 cl::init(false), cl::Hidden);
54
Chris Lattnercd3245a2006-12-19 22:41:21 +000055STATISTIC(numIntervals, "Number of original intervals");
56STATISTIC(numIntervalsAfter, "Number of intervals after coalescing");
Evan Cheng0cbb1162007-11-29 01:06:25 +000057STATISTIC(numFolds , "Number of loads/stores folded into instructions");
58STATISTIC(numSplits , "Number of intervals split");
Chris Lattnercd3245a2006-12-19 22:41:21 +000059
Devang Patel19974732007-05-03 01:11:54 +000060char LiveIntervals::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000061static RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000062
Chris Lattnerf7da2c72006-08-24 22:43:55 +000063void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman6d69ba82008-07-25 00:02:30 +000064 AU.addRequired<AliasAnalysis>();
65 AU.addPreserved<AliasAnalysis>();
David Greene25133302007-06-08 17:18:56 +000066 AU.addPreserved<LiveVariables>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000067 AU.addRequired<LiveVariables>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000068 AU.addPreservedID(MachineLoopInfoID);
69 AU.addPreservedID(MachineDominatorsID);
Owen Andersonaa111082008-08-06 20:58:38 +000070 AU.addPreservedID(PHIEliminationID);
71 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000072 AU.addRequiredID(TwoAddressInstructionPassID);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000073 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000074}
75
Chris Lattnerf7da2c72006-08-24 22:43:55 +000076void LiveIntervals::releaseMemory() {
Owen Anderson03857b22008-08-13 21:49:13 +000077 // Free the live intervals themselves.
Owen Anderson20e28392008-08-13 22:08:30 +000078 for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
Owen Anderson03857b22008-08-13 21:49:13 +000079 E = r2iMap_.end(); I != E; ++I)
80 delete I->second;
81
Evan Cheng3f32d652008-06-04 09:18:41 +000082 MBB2IdxMap.clear();
Evan Cheng4ca980e2007-10-17 02:10:22 +000083 Idx2MBBMap.clear();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000084 mi2iMap_.clear();
85 i2miMap_.clear();
86 r2iMap_.clear();
Evan Chengdd199d22007-09-06 01:07:24 +000087 // Release VNInfo memroy regions after all VNInfo objects are dtor'd.
88 VNInfoAllocator.Reset();
Evan Cheng1ed99222008-07-19 00:37:25 +000089 while (!ClonedMIs.empty()) {
90 MachineInstr *MI = ClonedMIs.back();
91 ClonedMIs.pop_back();
92 mf_->DeleteMachineInstr(MI);
93 }
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000094}
95
Owen Anderson80b3ce62008-05-28 20:54:50 +000096void LiveIntervals::computeNumbering() {
97 Index2MiMap OldI2MI = i2miMap_;
Owen Anderson7fbad272008-07-23 21:37:49 +000098 std::vector<IdxMBBPair> OldI2MBB = Idx2MBBMap;
Owen Anderson80b3ce62008-05-28 20:54:50 +000099
100 Idx2MBBMap.clear();
101 MBB2IdxMap.clear();
102 mi2iMap_.clear();
103 i2miMap_.clear();
104
Owen Andersona1566f22008-07-22 22:46:49 +0000105 FunctionSize = 0;
106
Chris Lattner428b92e2006-09-15 03:57:23 +0000107 // Number MachineInstrs and MachineBasicBlocks.
108 // Initialize MBB indexes to a sentinal.
Evan Cheng549f27d32007-08-13 23:45:17 +0000109 MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
Chris Lattner428b92e2006-09-15 03:57:23 +0000110
111 unsigned MIIndex = 0;
112 for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
113 MBB != E; ++MBB) {
Evan Cheng549f27d32007-08-13 23:45:17 +0000114 unsigned StartIdx = MIIndex;
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000115
Owen Anderson7fbad272008-07-23 21:37:49 +0000116 // Insert an empty slot at the beginning of each block.
117 MIIndex += InstrSlots::NUM;
118 i2miMap_.push_back(0);
119
Chris Lattner428b92e2006-09-15 03:57:23 +0000120 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
121 I != E; ++I) {
122 bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000123 assert(inserted && "multiple MachineInstr -> index mappings");
Chris Lattner428b92e2006-09-15 03:57:23 +0000124 i2miMap_.push_back(I);
125 MIIndex += InstrSlots::NUM;
Owen Andersona1566f22008-07-22 22:46:49 +0000126 FunctionSize++;
Owen Anderson7fbad272008-07-23 21:37:49 +0000127
128 // Insert an empty slot after every instruction.
Owen Anderson1fbb4542008-06-16 16:58:24 +0000129 MIIndex += InstrSlots::NUM;
130 i2miMap_.push_back(0);
Owen Anderson35578012008-06-16 07:10:49 +0000131 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000132
Owen Anderson1fbb4542008-06-16 16:58:24 +0000133 // Set the MBB2IdxMap entry for this MBB.
134 MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
135 Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
Chris Lattner428b92e2006-09-15 03:57:23 +0000136 }
Evan Cheng4ca980e2007-10-17 02:10:22 +0000137 std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
Owen Anderson80b3ce62008-05-28 20:54:50 +0000138
139 if (!OldI2MI.empty())
Owen Anderson788d0412008-08-06 18:35:45 +0000140 for (iterator OI = begin(), OE = end(); OI != OE; ++OI) {
Owen Anderson03857b22008-08-13 21:49:13 +0000141 for (LiveInterval::iterator LI = OI->second->begin(),
142 LE = OI->second->end(); LI != LE; ++LI) {
Owen Anderson4b5b2092008-05-29 18:15:49 +0000143
Owen Anderson7eec0c22008-05-29 23:01:22 +0000144 // Remap the start index of the live range to the corresponding new
145 // number, or our best guess at what it _should_ correspond to if the
146 // original instruction has been erased. This is either the following
147 // instruction or its predecessor.
Owen Anderson7fbad272008-07-23 21:37:49 +0000148 unsigned index = LI->start / InstrSlots::NUM;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000149 unsigned offset = LI->start % InstrSlots::NUM;
Owen Anderson0a7615a2008-07-25 23:06:59 +0000150 if (offset == InstrSlots::LOAD) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000151 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000152 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->start);
Owen Anderson7fbad272008-07-23 21:37:49 +0000153 // Take the pair containing the index
154 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000155 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000156
Owen Anderson7fbad272008-07-23 21:37:49 +0000157 LI->start = getMBBStartIdx(J->second);
158 } else {
159 LI->start = mi2iMap_[OldI2MI[index]] + offset;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000160 }
161
162 // Remap the ending index in the same way that we remapped the start,
163 // except for the final step where we always map to the immediately
164 // following instruction.
Owen Andersond7dcbec2008-07-25 19:50:48 +0000165 index = (LI->end - 1) / InstrSlots::NUM;
Owen Anderson7fbad272008-07-23 21:37:49 +0000166 offset = LI->end % InstrSlots::NUM;
Owen Anderson9382b932008-07-30 00:22:56 +0000167 if (offset == InstrSlots::LOAD) {
168 // VReg dies at end of block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000169 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000170 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), LI->end);
Owen Anderson9382b932008-07-30 00:22:56 +0000171 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000172
Owen Anderson9382b932008-07-30 00:22:56 +0000173 LI->end = getMBBEndIdx(I->second) + 1;
Owen Anderson4b5b2092008-05-29 18:15:49 +0000174 } else {
Owen Andersond7dcbec2008-07-25 19:50:48 +0000175 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000176 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
177
178 if (index != OldI2MI.size())
179 LI->end = mi2iMap_[OldI2MI[index]] + (idx == index ? offset : 0);
180 else
181 LI->end = InstrSlots::NUM * i2miMap_.size();
Owen Anderson4b5b2092008-05-29 18:15:49 +0000182 }
Owen Anderson788d0412008-08-06 18:35:45 +0000183 }
184
Owen Anderson03857b22008-08-13 21:49:13 +0000185 for (LiveInterval::vni_iterator VNI = OI->second->vni_begin(),
186 VNE = OI->second->vni_end(); VNI != VNE; ++VNI) {
Owen Anderson788d0412008-08-06 18:35:45 +0000187 VNInfo* vni = *VNI;
Owen Anderson745825f42008-05-28 22:40:08 +0000188
Owen Anderson7eec0c22008-05-29 23:01:22 +0000189 // Remap the VNInfo def index, which works the same as the
Owen Anderson788d0412008-08-06 18:35:45 +0000190 // start indices above. VN's with special sentinel defs
191 // don't need to be remapped.
Owen Anderson91292392008-07-30 17:42:47 +0000192 if (vni->def != ~0U && vni->def != ~1U) {
Owen Anderson788d0412008-08-06 18:35:45 +0000193 unsigned index = vni->def / InstrSlots::NUM;
194 unsigned offset = vni->def % InstrSlots::NUM;
Owen Anderson91292392008-07-30 17:42:47 +0000195 if (offset == InstrSlots::LOAD) {
196 std::vector<IdxMBBPair>::const_iterator I =
Owen Anderson0a7615a2008-07-25 23:06:59 +0000197 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->def);
Owen Anderson91292392008-07-30 17:42:47 +0000198 // Take the pair containing the index
199 std::vector<IdxMBBPair>::const_iterator J =
Owen Andersona0c032f2008-07-29 21:15:44 +0000200 (I == OldI2MBB.end() && OldI2MBB.size()>0) ? (I-1): I;
Owen Anderson7eec0c22008-05-29 23:01:22 +0000201
Owen Anderson91292392008-07-30 17:42:47 +0000202 vni->def = getMBBStartIdx(J->second);
203 } else {
204 vni->def = mi2iMap_[OldI2MI[index]] + offset;
205 }
Owen Anderson7eec0c22008-05-29 23:01:22 +0000206 }
Owen Anderson745825f42008-05-28 22:40:08 +0000207
Owen Anderson7eec0c22008-05-29 23:01:22 +0000208 // Remap the VNInfo kill indices, which works the same as
209 // the end indices above.
Owen Anderson4b5b2092008-05-29 18:15:49 +0000210 for (size_t i = 0; i < vni->kills.size(); ++i) {
Owen Anderson9382b932008-07-30 00:22:56 +0000211 // PHI kills don't need to be remapped.
212 if (!vni->kills[i]) continue;
213
Owen Anderson788d0412008-08-06 18:35:45 +0000214 unsigned index = (vni->kills[i]-1) / InstrSlots::NUM;
215 unsigned offset = vni->kills[i] % InstrSlots::NUM;
Owen Anderson309c6162008-09-30 22:51:54 +0000216 if (offset == InstrSlots::LOAD) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000217 std::vector<IdxMBBPair>::const_iterator I =
Owen Andersond7dcbec2008-07-25 19:50:48 +0000218 std::lower_bound(OldI2MBB.begin(), OldI2MBB.end(), vni->kills[i]);
Owen Anderson9382b932008-07-30 00:22:56 +0000219 --I;
Owen Anderson7fbad272008-07-23 21:37:49 +0000220
Owen Anderson788d0412008-08-06 18:35:45 +0000221 vni->kills[i] = getMBBEndIdx(I->second);
Owen Anderson7fbad272008-07-23 21:37:49 +0000222 } else {
Owen Andersond7dcbec2008-07-25 19:50:48 +0000223 unsigned idx = index;
Owen Anderson8d0cc0a2008-07-25 21:07:13 +0000224 while (index < OldI2MI.size() && !OldI2MI[index]) ++index;
225
226 if (index != OldI2MI.size())
227 vni->kills[i] = mi2iMap_[OldI2MI[index]] +
228 (idx == index ? offset : 0);
229 else
230 vni->kills[i] = InstrSlots::NUM * i2miMap_.size();
Owen Anderson7eec0c22008-05-29 23:01:22 +0000231 }
Owen Anderson4b5b2092008-05-29 18:15:49 +0000232 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000233 }
Owen Anderson788d0412008-08-06 18:35:45 +0000234 }
Owen Anderson80b3ce62008-05-28 20:54:50 +0000235}
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000236
Owen Anderson80b3ce62008-05-28 20:54:50 +0000237/// runOnMachineFunction - Register allocate the whole function
238///
239bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
240 mf_ = &fn;
241 mri_ = &mf_->getRegInfo();
242 tm_ = &fn.getTarget();
243 tri_ = tm_->getRegisterInfo();
244 tii_ = tm_->getInstrInfo();
Dan Gohman6d69ba82008-07-25 00:02:30 +0000245 aa_ = &getAnalysis<AliasAnalysis>();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000246 lv_ = &getAnalysis<LiveVariables>();
247 allocatableRegs_ = tri_->getAllocatableSet(fn);
248
249 computeNumbering();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000250 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000251
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000252 numIntervals += getNumIntervals();
253
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000254 DOUT << "********** INTERVALS **********\n";
255 for (iterator I = begin(), E = end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +0000256 I->second->print(DOUT, tri_);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000257 DOUT << "\n";
258 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000259
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000260 numIntervalsAfter += getNumIntervals();
Chris Lattner70ca3582004-09-30 15:59:17 +0000261 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000262 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000263}
264
Chris Lattner70ca3582004-09-30 15:59:17 +0000265/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000266void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000267 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000268 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +0000269 I->second->print(O, tri_);
Evan Cheng3f32d652008-06-04 09:18:41 +0000270 O << "\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000271 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000272
273 O << "********** MACHINEINSTRS **********\n";
274 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
275 mbbi != mbbe; ++mbbi) {
276 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
277 for (MachineBasicBlock::iterator mii = mbbi->begin(),
278 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000279 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000280 }
281 }
282}
283
Evan Chengc92da382007-11-03 07:20:12 +0000284/// conflictsWithPhysRegDef - Returns true if the specified register
285/// is defined during the duration of the specified interval.
286bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
287 VirtRegMap &vrm, unsigned reg) {
288 for (LiveInterval::Ranges::const_iterator
289 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
290 for (unsigned index = getBaseIndex(I->start),
291 end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
292 index += InstrSlots::NUM) {
293 // skip deleted instructions
294 while (index != end && !getInstructionFromIndex(index))
295 index += InstrSlots::NUM;
296 if (index == end) break;
297
298 MachineInstr *MI = getInstructionFromIndex(index);
Evan Cheng5d446262007-11-15 08:13:29 +0000299 unsigned SrcReg, DstReg;
300 if (tii_->isMoveInstr(*MI, SrcReg, DstReg))
301 if (SrcReg == li.reg || DstReg == li.reg)
302 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000303 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
304 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000305 if (!mop.isReg())
Evan Chengc92da382007-11-03 07:20:12 +0000306 continue;
307 unsigned PhysReg = mop.getReg();
Evan Cheng5d446262007-11-15 08:13:29 +0000308 if (PhysReg == 0 || PhysReg == li.reg)
Evan Chengc92da382007-11-03 07:20:12 +0000309 continue;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000310 if (TargetRegisterInfo::isVirtualRegister(PhysReg)) {
Evan Cheng5d446262007-11-15 08:13:29 +0000311 if (!vrm.hasPhys(PhysReg))
312 continue;
Evan Chengc92da382007-11-03 07:20:12 +0000313 PhysReg = vrm.getPhys(PhysReg);
Evan Cheng5d446262007-11-15 08:13:29 +0000314 }
Dan Gohman6f0d0242008-02-10 18:45:23 +0000315 if (PhysReg && tri_->regsOverlap(PhysReg, reg))
Evan Chengc92da382007-11-03 07:20:12 +0000316 return true;
317 }
318 }
319 }
320
321 return false;
322}
323
Evan Cheng549f27d32007-08-13 23:45:17 +0000324void LiveIntervals::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000325 if (TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000326 cerr << tri_->getName(reg);
Evan Cheng549f27d32007-08-13 23:45:17 +0000327 else
328 cerr << "%reg" << reg;
329}
330
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000331void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000332 MachineBasicBlock::iterator mi,
Owen Anderson6b098de2008-06-25 23:39:39 +0000333 unsigned MIIdx, MachineOperand& MO,
Evan Chengef0732d2008-07-10 07:35:43 +0000334 unsigned MOIdx,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000335 LiveInterval &interval) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000336 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000337 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000338
Evan Cheng419852c2008-04-03 16:39:43 +0000339 if (mi->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
340 DOUT << "is a implicit_def\n";
341 return;
342 }
343
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000344 // Virtual registers may be defined multiple times (due to phi
345 // elimination and 2-addr elimination). Much of what we do only has to be
346 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000347 // time we see a vreg.
348 if (interval.empty()) {
349 // Get the Idx of the defining instructions.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000350 unsigned defIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000351 // Earlyclobbers move back one.
352 if (MO.isEarlyClobber())
353 defIndex = getUseIndex(MIIdx);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000354 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000355 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000356 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000357 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000358 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000359 tii_->isMoveInstr(*mi, SrcReg, DstReg))
360 CopyMI = mi;
361 ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000362
363 assert(ValNo->id == 0 && "First value in interval is not 0?");
Chris Lattner7ac2d312004-07-24 02:59:07 +0000364
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000365 // Loop over all of the blocks that the vreg is defined in. There are
366 // two cases we have to handle here. The most common case is a vreg
367 // whose lifetime is contained within a basic block. In this case there
368 // will be a single kill, in MBB, which comes after the definition.
369 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
370 // FIXME: what about dead vars?
371 unsigned killIdx;
372 if (vi.Kills[0] != mi)
373 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
374 else
375 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000376
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000377 // If the kill happens after the definition, we have an intra-block
378 // live range.
379 if (killIdx > defIndex) {
Evan Cheng61de82d2007-02-15 05:59:24 +0000380 assert(vi.AliveBlocks.none() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000381 "Shouldn't be alive across any blocks!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000382 LiveRange LR(defIndex, killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000383 interval.addRange(LR);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000384 DOUT << " +" << LR << "\n";
Evan Chengf3bb2e62007-09-05 21:46:51 +0000385 interval.addKill(ValNo, killIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000386 return;
387 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000388 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000389
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000390 // The other case we handle is when a virtual register lives to the end
391 // of the defining block, potentially live across some blocks, then is
392 // live into some number of blocks, but gets killed. Start by adding a
393 // range that goes from this definition to the end of the defining block.
Owen Anderson7fbad272008-07-23 21:37:49 +0000394 LiveRange NewLR(defIndex, getMBBEndIdx(mbb)+1, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000395 DOUT << " +" << NewLR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000396 interval.addRange(NewLR);
397
398 // Iterate over all of the blocks that the variable is completely
399 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
400 // live interval.
401 for (unsigned i = 0, e = vi.AliveBlocks.size(); i != e; ++i) {
402 if (vi.AliveBlocks[i]) {
Owen Anderson31ec8412008-06-16 19:32:40 +0000403 LiveRange LR(getMBBStartIdx(i),
Evan Chengf26e8552008-06-17 20:13:36 +0000404 getMBBEndIdx(i)+1, // MBB ends at -1.
Owen Anderson31ec8412008-06-16 19:32:40 +0000405 ValNo);
406 interval.addRange(LR);
407 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000408 }
409 }
410
411 // Finally, this virtual register is live from the start of any killing
412 // block to the 'use' slot of the killing instruction.
413 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
414 MachineInstr *Kill = vi.Kills[i];
Evan Cheng8df78602007-08-08 03:00:28 +0000415 unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
Chris Lattner428b92e2006-09-15 03:57:23 +0000416 LiveRange LR(getMBBStartIdx(Kill->getParent()),
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000417 killIdx, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000418 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000419 interval.addKill(ValNo, killIdx);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000420 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000421 }
422
423 } else {
424 // If this is the second time we see a virtual register definition, it
425 // must be due to phi elimination or two addr elimination. If this is
Evan Chengbf105c82006-11-03 03:04:46 +0000426 // the result of two address elimination, then the vreg is one of the
427 // def-and-use register operand.
Evan Chengef0732d2008-07-10 07:35:43 +0000428 if (mi->isRegReDefinedByTwoAddr(interval.reg, MOIdx)) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000429 // If this is a two-address definition, then we have already processed
430 // the live range. The only problem is that we didn't realize there
431 // are actually two values in the live interval. Because of this we
432 // need to take the LiveRegion that defines this register and split it
433 // into two values.
Evan Chenga07cec92008-01-10 08:22:10 +0000434 assert(interval.containsOneValue());
435 unsigned DefIndex = getDefIndex(interval.getValNumInfo(0)->def);
Chris Lattner6b128bd2006-09-03 08:07:11 +0000436 unsigned RedefIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000437 // Earlyclobbers move back one.
438 if (MO.isEarlyClobber())
439 RedefIndex = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000440
Evan Cheng4f8ff162007-08-11 00:59:19 +0000441 const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000442 VNInfo *OldValNo = OldLR->valno;
Evan Cheng4f8ff162007-08-11 00:59:19 +0000443
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000444 // Delete the initial value, which should be short and continuous,
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000445 // because the 2-addr copy must be in the same MBB as the redef.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000446 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000447
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000448 // Two-address vregs should always only be redefined once. This means
449 // that at this point, there should be exactly one value number in it.
450 assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
451
Chris Lattner91725b72006-08-31 05:54:43 +0000452 // The new value number (#1) is defined by the instruction we claimed
453 // defined value #0.
Evan Chengc8d044e2008-02-15 18:24:29 +0000454 VNInfo *ValNo = interval.getNextValue(OldValNo->def, OldValNo->copy,
455 VNInfoAllocator);
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000456
Chris Lattner91725b72006-08-31 05:54:43 +0000457 // Value#0 is now defined by the 2-addr instruction.
Evan Chengc8d044e2008-02-15 18:24:29 +0000458 OldValNo->def = RedefIndex;
459 OldValNo->copy = 0;
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000460
461 // Add the new live interval which replaces the range for the input copy.
462 LiveRange LR(DefIndex, RedefIndex, ValNo);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000463 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000464 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000465 interval.addKill(ValNo, RedefIndex);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000466
467 // If this redefinition is dead, we need to add a dummy unit live
468 // range covering the def slot.
Owen Anderson6b098de2008-06-25 23:39:39 +0000469 if (MO.isDead())
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000470 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000471
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000472 DOUT << " RESULT: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000473 interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000474
475 } else {
476 // Otherwise, this must be because of phi elimination. If this is the
477 // first redefinition of the vreg that we have seen, go back and change
478 // the live range in the PHI block to be a different value number.
479 if (interval.containsOneValue()) {
480 assert(vi.Kills.size() == 1 &&
481 "PHI elimination vreg should have one kill, the PHI itself!");
482
483 // Remove the old range that we now know has an incorrect number.
Evan Chengf3bb2e62007-09-05 21:46:51 +0000484 VNInfo *VNI = interval.getValNumInfo(0);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000485 MachineInstr *Killer = vi.Kills[0];
Chris Lattner428b92e2006-09-15 03:57:23 +0000486 unsigned Start = getMBBStartIdx(Killer->getParent());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000487 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
Evan Cheng56fdd7a2007-03-15 21:19:28 +0000488 DOUT << " Removing [" << Start << "," << End << "] from: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000489 interval.print(DOUT, tri_); DOUT << "\n";
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000490 interval.removeRange(Start, End);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000491 VNI->hasPHIKill = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000492 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000493
Chris Lattnerbe4f88a2006-08-22 18:19:46 +0000494 // Replace the interval with one of a NEW value number. Note that this
495 // value number isn't actually defined by an instruction, weird huh? :)
Evan Chengf3bb2e62007-09-05 21:46:51 +0000496 LiveRange LR(Start, End, interval.getNextValue(~0, 0, VNInfoAllocator));
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000497 DOUT << " replace range with " << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000498 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000499 interval.addKill(LR.valno, End);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000500 DOUT << " RESULT: "; interval.print(DOUT, tri_);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000501 }
502
503 // In the case of PHI elimination, each variable definition is only
504 // live until the end of the block. We've already taken care of the
505 // rest of the live range.
Chris Lattner6b128bd2006-09-03 08:07:11 +0000506 unsigned defIndex = getDefIndex(MIIdx);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000507 // Earlyclobbers move back one.
508 if (MO.isEarlyClobber())
509 defIndex = getUseIndex(MIIdx);
Chris Lattner91725b72006-08-31 05:54:43 +0000510
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000511 VNInfo *ValNo;
Evan Chengc8d044e2008-02-15 18:24:29 +0000512 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000513 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000514 if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000515 mi->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000516 tii_->isMoveInstr(*mi, SrcReg, DstReg))
517 CopyMI = mi;
518 ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
Chris Lattner91725b72006-08-31 05:54:43 +0000519
Owen Anderson7fbad272008-07-23 21:37:49 +0000520 unsigned killIndex = getMBBEndIdx(mbb) + 1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000521 LiveRange LR(defIndex, killIndex, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000522 interval.addRange(LR);
Evan Chengc3fc7d92007-11-29 09:49:23 +0000523 interval.addKill(ValNo, killIndex);
524 ValNo->hasPHIKill = true;
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000525 DOUT << " +" << LR;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000526 }
527 }
528
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000529 DOUT << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000530}
531
Chris Lattnerf35fef72004-07-23 21:24:19 +0000532void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000533 MachineBasicBlock::iterator mi,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000534 unsigned MIIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000535 MachineOperand& MO,
Chris Lattner91725b72006-08-31 05:54:43 +0000536 LiveInterval &interval,
Evan Chengc8d044e2008-02-15 18:24:29 +0000537 MachineInstr *CopyMI) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000538 // A physical register cannot be live across basic block, so its
539 // lifetime must end somewhere in its defining basic block.
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000540 DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000541
Chris Lattner6b128bd2006-09-03 08:07:11 +0000542 unsigned baseIndex = MIIdx;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000543 unsigned start = getDefIndex(baseIndex);
Dale Johannesen86b49f82008-09-24 01:07:17 +0000544 // Earlyclobbers move back one.
545 if (MO.isEarlyClobber())
546 start = getUseIndex(MIIdx);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000547 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000548
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000549 // If it is not used after definition, it is considered dead at
550 // the instruction defining it. Hence its interval is:
551 // [defSlot(def), defSlot(def)+1)
Owen Anderson6b098de2008-06-25 23:39:39 +0000552 if (MO.isDead()) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000553 DOUT << " dead";
Dale Johannesen86b49f82008-09-24 01:07:17 +0000554 end = start + 1;
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000555 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000556 }
557
558 // If it is not dead on definition, it must be killed by a
559 // subsequent instruction. Hence its interval is:
560 // [defSlot(def), useSlot(kill)+1)
Owen Anderson7fbad272008-07-23 21:37:49 +0000561 baseIndex += InstrSlots::NUM;
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000562 while (++mi != MBB->end()) {
Owen Anderson7fbad272008-07-23 21:37:49 +0000563 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
564 getInstructionFromIndex(baseIndex) == 0)
565 baseIndex += InstrSlots::NUM;
Evan Cheng6130f662008-03-05 00:59:57 +0000566 if (mi->killsRegister(interval.reg, tri_)) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000567 DOUT << " killed";
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000568 end = getUseIndex(baseIndex) + 1;
569 goto exit;
Evan Cheng6130f662008-03-05 00:59:57 +0000570 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Cheng9a1956a2006-11-15 20:54:11 +0000571 // Another instruction redefines the register before it is ever read.
572 // Then the register is essentially dead at the instruction that defines
573 // it. Hence its interval is:
574 // [defSlot(def), defSlot(def)+1)
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000575 DOUT << " dead";
Dale Johannesen86b49f82008-09-24 01:07:17 +0000576 end = start + 1;
Evan Cheng9a1956a2006-11-15 20:54:11 +0000577 goto exit;
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000578 }
Owen Anderson7fbad272008-07-23 21:37:49 +0000579
580 baseIndex += InstrSlots::NUM;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000581 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000582
583 // The only case we should have a dead physreg here without a killing or
584 // instruction where we know it's dead is if it is live-in to the function
585 // and never used.
Evan Chengc8d044e2008-02-15 18:24:29 +0000586 assert(!CopyMI && "physreg was not killed in defining block!");
Dale Johannesen86b49f82008-09-24 01:07:17 +0000587 end = start + 1;
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000588
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000589exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000590 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000591
Evan Cheng24a3cc42007-04-25 07:30:23 +0000592 // Already exists? Extend old live interval.
593 LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000594 VNInfo *ValNo = (OldLR != interval.end())
Evan Chengc8d044e2008-02-15 18:24:29 +0000595 ? OldLR->valno : interval.getNextValue(start, CopyMI, VNInfoAllocator);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000596 LiveRange LR(start, end, ValNo);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000597 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000598 interval.addKill(LR.valno, end);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000599 DOUT << " +" << LR << '\n';
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000600}
601
Chris Lattnerf35fef72004-07-23 21:24:19 +0000602void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
603 MachineBasicBlock::iterator MI,
Chris Lattner6b128bd2006-09-03 08:07:11 +0000604 unsigned MIIdx,
Evan Chengef0732d2008-07-10 07:35:43 +0000605 MachineOperand& MO,
606 unsigned MOIdx) {
Owen Anderson6b098de2008-06-25 23:39:39 +0000607 if (TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Evan Chengef0732d2008-07-10 07:35:43 +0000608 handleVirtualRegisterDef(MBB, MI, MIIdx, MO, MOIdx,
Owen Anderson6b098de2008-06-25 23:39:39 +0000609 getOrCreateInterval(MO.getReg()));
610 else if (allocatableRegs_[MO.getReg()]) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000611 MachineInstr *CopyMI = NULL;
Chris Lattner91725b72006-08-31 05:54:43 +0000612 unsigned SrcReg, DstReg;
Evan Chengc8d044e2008-02-15 18:24:29 +0000613 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Evan Cheng7e073ba2008-04-09 20:57:25 +0000614 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
Evan Chengc8d044e2008-02-15 18:24:29 +0000615 tii_->isMoveInstr(*MI, SrcReg, DstReg))
616 CopyMI = MI;
Owen Anderson6b098de2008-06-25 23:39:39 +0000617 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
618 getOrCreateInterval(MO.getReg()), CopyMI);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000619 // Def of a register also defines its sub-registers.
Owen Anderson6b098de2008-06-25 23:39:39 +0000620 for (const unsigned* AS = tri_->getSubRegisters(MO.getReg()); *AS; ++AS)
Evan Cheng6130f662008-03-05 00:59:57 +0000621 // If MI also modifies the sub-register explicitly, avoid processing it
622 // more than once. Do not pass in TRI here so it checks for exact match.
623 if (!MI->modifiesRegister(*AS))
Owen Anderson6b098de2008-06-25 23:39:39 +0000624 handlePhysicalRegisterDef(MBB, MI, MIIdx, MO,
625 getOrCreateInterval(*AS), 0);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000626 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000627}
628
Evan Chengb371f452007-02-19 21:49:54 +0000629void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000630 unsigned MIIdx,
Evan Cheng24a3cc42007-04-25 07:30:23 +0000631 LiveInterval &interval, bool isAlias) {
Evan Chengb371f452007-02-19 21:49:54 +0000632 DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
633
634 // Look for kills, if it reaches a def before it's killed, then it shouldn't
635 // be considered a livein.
636 MachineBasicBlock::iterator mi = MBB->begin();
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000637 unsigned baseIndex = MIIdx;
638 unsigned start = baseIndex;
Owen Anderson99500ae2008-09-15 22:00:38 +0000639 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
640 getInstructionFromIndex(baseIndex) == 0)
641 baseIndex += InstrSlots::NUM;
642 unsigned end = baseIndex;
643
Evan Chengb371f452007-02-19 21:49:54 +0000644 while (mi != MBB->end()) {
Evan Cheng6130f662008-03-05 00:59:57 +0000645 if (mi->killsRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000646 DOUT << " killed";
647 end = getUseIndex(baseIndex) + 1;
648 goto exit;
Evan Cheng6130f662008-03-05 00:59:57 +0000649 } else if (mi->modifiesRegister(interval.reg, tri_)) {
Evan Chengb371f452007-02-19 21:49:54 +0000650 // Another instruction redefines the register before it is ever read.
651 // Then the register is essentially dead at the instruction that defines
652 // it. Hence its interval is:
653 // [defSlot(def), defSlot(def)+1)
654 DOUT << " dead";
655 end = getDefIndex(start) + 1;
656 goto exit;
657 }
658
659 baseIndex += InstrSlots::NUM;
Owen Anderson7fbad272008-07-23 21:37:49 +0000660 while (baseIndex / InstrSlots::NUM < i2miMap_.size() &&
661 getInstructionFromIndex(baseIndex) == 0)
662 baseIndex += InstrSlots::NUM;
Evan Chengb371f452007-02-19 21:49:54 +0000663 ++mi;
664 }
665
666exit:
Evan Cheng75611fb2007-06-27 01:16:36 +0000667 // Live-in register might not be used at all.
668 if (end == MIIdx) {
Evan Cheng292da942007-06-27 18:47:28 +0000669 if (isAlias) {
670 DOUT << " dead";
Evan Cheng75611fb2007-06-27 01:16:36 +0000671 end = getDefIndex(MIIdx) + 1;
Evan Cheng292da942007-06-27 18:47:28 +0000672 } else {
673 DOUT << " live through";
674 end = baseIndex;
675 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000676 }
677
Owen Anderson99500ae2008-09-15 22:00:38 +0000678 LiveRange LR(start, end, interval.getNextValue(~0U, 0, VNInfoAllocator));
Jim Laskey9b25b8c2007-02-21 22:41:17 +0000679 interval.addRange(LR);
Evan Chengf3bb2e62007-09-05 21:46:51 +0000680 interval.addKill(LR.valno, end);
Evan Cheng24c2e5c2007-08-08 07:03:29 +0000681 DOUT << " +" << LR << '\n';
Evan Chengb371f452007-02-19 21:49:54 +0000682}
683
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000684/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000685/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000686/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000687/// which a variable is live
Dale Johannesen91aac102008-09-17 21:13:11 +0000688void LiveIntervals::computeIntervals() {
Dale Johannesen91aac102008-09-17 21:13:11 +0000689
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000690 DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
691 << "********** Function: "
692 << ((Value*)mf_->getFunction())->getName() << '\n';
Owen Anderson7fbad272008-07-23 21:37:49 +0000693
Chris Lattner428b92e2006-09-15 03:57:23 +0000694 for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
695 MBBI != E; ++MBBI) {
696 MachineBasicBlock *MBB = MBBI;
Owen Anderson134eb732008-09-21 20:43:24 +0000697 // Track the index of the current machine instr.
698 unsigned MIIndex = getMBBStartIdx(MBB);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000699 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000700
Chris Lattner428b92e2006-09-15 03:57:23 +0000701 MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000702
Dan Gohmancb406c22007-10-03 19:26:29 +0000703 // Create intervals for live-ins to this BB first.
704 for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
705 LE = MBB->livein_end(); LI != LE; ++LI) {
706 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
707 // Multiple live-ins can alias the same register.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000708 for (const unsigned* AS = tri_->getSubRegisters(*LI); *AS; ++AS)
Dan Gohmancb406c22007-10-03 19:26:29 +0000709 if (!hasInterval(*AS))
710 handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
711 true);
Chris Lattnerdffb2e82006-09-04 18:27:40 +0000712 }
713
Owen Anderson99500ae2008-09-15 22:00:38 +0000714 // Skip over empty initial indices.
715 while (MIIndex / InstrSlots::NUM < i2miMap_.size() &&
716 getInstructionFromIndex(MIIndex) == 0)
717 MIIndex += InstrSlots::NUM;
718
Chris Lattner428b92e2006-09-15 03:57:23 +0000719 for (; MI != miEnd; ++MI) {
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000720 DOUT << MIIndex << "\t" << *MI;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000721
Evan Cheng438f7bc2006-11-10 08:43:01 +0000722 // Handle defs.
Chris Lattner428b92e2006-09-15 03:57:23 +0000723 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
724 MachineOperand &MO = MI->getOperand(i);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000725 // handle register defs - build intervals
Dan Gohmand735b802008-10-03 15:45:36 +0000726 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Evan Chengef0732d2008-07-10 07:35:43 +0000727 handleRegisterDef(MBB, MI, MIIndex, MO, i);
Dale Johannesen91aac102008-09-17 21:13:11 +0000728 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000729 }
Chris Lattner6b128bd2006-09-03 08:07:11 +0000730
731 MIIndex += InstrSlots::NUM;
Owen Anderson7fbad272008-07-23 21:37:49 +0000732
733 // Skip over empty indices.
734 while (MIIndex / InstrSlots::NUM < i2miMap_.size() &&
735 getInstructionFromIndex(MIIndex) == 0)
736 MIIndex += InstrSlots::NUM;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000737 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000738 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000739}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000740
Evan Cheng4ca980e2007-10-17 02:10:22 +0000741bool LiveIntervals::findLiveInMBBs(const LiveRange &LR,
Evan Chenga5bfc972007-10-17 06:53:44 +0000742 SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
Evan Cheng4ca980e2007-10-17 02:10:22 +0000743 std::vector<IdxMBBPair>::const_iterator I =
744 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), LR.start);
745
746 bool ResVal = false;
747 while (I != Idx2MBBMap.end()) {
748 if (LR.end <= I->first)
749 break;
750 MBBs.push_back(I->second);
751 ResVal = true;
752 ++I;
753 }
754 return ResVal;
755}
756
Owen Anderson03857b22008-08-13 21:49:13 +0000757LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000758 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
Jim Laskey7902c752006-11-07 12:25:45 +0000759 HUGE_VALF : 0.0F;
Owen Anderson03857b22008-08-13 21:49:13 +0000760 return new LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000761}
Evan Chengf2fbca62007-11-12 06:35:08 +0000762
Evan Chengc8d044e2008-02-15 18:24:29 +0000763/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
764/// copy field and returns the source register that defines it.
765unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
766 if (!VNI->copy)
767 return 0;
768
769 if (VNI->copy->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
770 return VNI->copy->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +0000771 if (VNI->copy->getOpcode() == TargetInstrInfo::INSERT_SUBREG)
772 return VNI->copy->getOperand(2).getReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000773 unsigned SrcReg, DstReg;
774 if (tii_->isMoveInstr(*VNI->copy, SrcReg, DstReg))
775 return SrcReg;
776 assert(0 && "Unrecognized copy instruction!");
777 return 0;
778}
Evan Chengf2fbca62007-11-12 06:35:08 +0000779
780//===----------------------------------------------------------------------===//
781// Register allocator hooks.
782//
783
Evan Chengd70dbb52008-02-22 09:24:50 +0000784/// getReMatImplicitUse - If the remat definition MI has one (for now, we only
785/// allow one) virtual register operand, then its uses are implicitly using
786/// the register. Returns the virtual register.
787unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
788 MachineInstr *MI) const {
789 unsigned RegOp = 0;
790 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
791 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000792 if (!MO.isReg() || !MO.isUse())
Evan Chengd70dbb52008-02-22 09:24:50 +0000793 continue;
794 unsigned Reg = MO.getReg();
795 if (Reg == 0 || Reg == li.reg)
796 continue;
797 // FIXME: For now, only remat MI with at most one register operand.
798 assert(!RegOp &&
799 "Can't rematerialize instruction with multiple register operand!");
800 RegOp = MO.getReg();
Dan Gohman6d69ba82008-07-25 00:02:30 +0000801#ifndef NDEBUG
Evan Chengd70dbb52008-02-22 09:24:50 +0000802 break;
Dan Gohman6d69ba82008-07-25 00:02:30 +0000803#endif
Evan Chengd70dbb52008-02-22 09:24:50 +0000804 }
805 return RegOp;
806}
807
808/// isValNoAvailableAt - Return true if the val# of the specified interval
809/// which reaches the given instruction also reaches the specified use index.
810bool LiveIntervals::isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
811 unsigned UseIdx) const {
812 unsigned Index = getInstructionIndex(MI);
813 VNInfo *ValNo = li.FindLiveRangeContaining(Index)->valno;
814 LiveInterval::const_iterator UI = li.FindLiveRangeContaining(UseIdx);
815 return UI != li.end() && UI->valno == ValNo;
816}
817
Evan Chengf2fbca62007-11-12 06:35:08 +0000818/// isReMaterializable - Returns true if the definition MI of the specified
819/// val# of the specified interval is re-materializable.
820bool LiveIntervals::isReMaterializable(const LiveInterval &li,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000821 const VNInfo *ValNo, MachineInstr *MI,
Evan Chengdc377862008-09-30 15:44:16 +0000822 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Cheng5ef3a042007-12-06 00:01:56 +0000823 bool &isLoad) {
Evan Chengf2fbca62007-11-12 06:35:08 +0000824 if (DisableReMat)
825 return false;
826
Evan Cheng20ccded2008-03-15 00:19:36 +0000827 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF)
Evan Chengd70dbb52008-02-22 09:24:50 +0000828 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +0000829
830 int FrameIdx = 0;
831 if (tii_->isLoadFromStackSlot(MI, FrameIdx) &&
Evan Cheng249ded32008-02-23 03:38:34 +0000832 mf_->getFrameInfo()->isImmutableObjectIndex(FrameIdx))
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000833 // FIXME: Let target specific isReallyTriviallyReMaterializable determines
834 // this but remember this is not safe to fold into a two-address
835 // instruction.
Evan Cheng249ded32008-02-23 03:38:34 +0000836 // This is a load from fixed stack slot. It can be rematerialized.
Evan Chengdd3465e2008-02-23 01:44:27 +0000837 return true;
Evan Chengdd3465e2008-02-23 01:44:27 +0000838
Dan Gohman6d69ba82008-07-25 00:02:30 +0000839 // If the target-specific rules don't identify an instruction as
840 // being trivially rematerializable, use some target-independent
841 // rules.
842 if (!MI->getDesc().isRematerializable() ||
843 !tii_->isTriviallyReMaterializable(MI)) {
Dan Gohman4c8f8702008-07-25 15:08:37 +0000844 if (!EnableAggressiveRemat)
845 return false;
Evan Chengd70dbb52008-02-22 09:24:50 +0000846
Dan Gohman0471a792008-07-28 18:43:51 +0000847 // If the instruction accesses memory but the memoperands have been lost,
Dan Gohman6d69ba82008-07-25 00:02:30 +0000848 // we can't analyze it.
849 const TargetInstrDesc &TID = MI->getDesc();
850 if ((TID.mayLoad() || TID.mayStore()) && MI->memoperands_empty())
851 return false;
852
853 // Avoid instructions obviously unsafe for remat.
854 if (TID.hasUnmodeledSideEffects() || TID.isNotDuplicable())
855 return false;
856
857 // If the instruction accesses memory and the memory could be non-constant,
858 // assume the instruction is not rematerializable.
Evan Chengdc377862008-09-30 15:44:16 +0000859 for (std::list<MachineMemOperand>::const_iterator
860 I = MI->memoperands_begin(), E = MI->memoperands_end(); I != E; ++I){
Dan Gohman6d69ba82008-07-25 00:02:30 +0000861 const MachineMemOperand &MMO = *I;
862 if (MMO.isVolatile() || MMO.isStore())
863 return false;
864 const Value *V = MMO.getValue();
865 if (!V)
866 return false;
867 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
868 if (!PSV->isConstant(mf_->getFrameInfo()))
Evan Chengd70dbb52008-02-22 09:24:50 +0000869 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +0000870 } else if (!aa_->pointsToConstantMemory(V))
871 return false;
872 }
873
874 // If any of the registers accessed are non-constant, conservatively assume
875 // the instruction is not rematerializable.
876 unsigned ImpUse = 0;
877 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
878 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000879 if (MO.isReg()) {
Dan Gohman6d69ba82008-07-25 00:02:30 +0000880 unsigned Reg = MO.getReg();
881 if (Reg == 0)
882 continue;
883 if (TargetRegisterInfo::isPhysicalRegister(Reg))
884 return false;
885
886 // Only allow one def, and that in the first operand.
887 if (MO.isDef() != (i == 0))
888 return false;
889
890 // Only allow constant-valued registers.
891 bool IsLiveIn = mri_->isLiveIn(Reg);
892 MachineRegisterInfo::def_iterator I = mri_->def_begin(Reg),
893 E = mri_->def_end();
894
895 // For the def, it should be the only def.
896 if (MO.isDef() && (next(I) != E || IsLiveIn))
897 return false;
898
899 if (MO.isUse()) {
900 // Only allow one use other register use, as that's all the
901 // remat mechanisms support currently.
902 if (Reg != li.reg) {
903 if (ImpUse == 0)
904 ImpUse = Reg;
905 else if (Reg != ImpUse)
906 return false;
907 }
908 // For uses, there should be only one associate def.
909 if (I != E && (next(I) != E || IsLiveIn))
910 return false;
911 }
Evan Chengd70dbb52008-02-22 09:24:50 +0000912 }
913 }
Evan Cheng5ef3a042007-12-06 00:01:56 +0000914 }
Evan Chengf2fbca62007-11-12 06:35:08 +0000915
Dan Gohman6d69ba82008-07-25 00:02:30 +0000916 unsigned ImpUse = getReMatImplicitUse(li, MI);
917 if (ImpUse) {
918 const LiveInterval &ImpLi = getInterval(ImpUse);
919 for (MachineRegisterInfo::use_iterator ri = mri_->use_begin(li.reg),
920 re = mri_->use_end(); ri != re; ++ri) {
921 MachineInstr *UseMI = &*ri;
922 unsigned UseIdx = getInstructionIndex(UseMI);
923 if (li.FindLiveRangeContaining(UseIdx)->valno != ValNo)
924 continue;
925 if (!isValNoAvailableAt(ImpLi, MI, UseIdx))
926 return false;
927 }
Evan Chengdc377862008-09-30 15:44:16 +0000928
929 // If a register operand of the re-materialized instruction is going to
930 // be spilled next, then it's not legal to re-materialize this instruction.
931 for (unsigned i = 0, e = SpillIs.size(); i != e; ++i)
932 if (ImpUse == SpillIs[i]->reg)
933 return false;
Dan Gohman6d69ba82008-07-25 00:02:30 +0000934 }
935 return true;
Evan Cheng5ef3a042007-12-06 00:01:56 +0000936}
937
938/// isReMaterializable - Returns true if every definition of MI of every
939/// val# of the specified interval is re-materializable.
Evan Chengdc377862008-09-30 15:44:16 +0000940bool LiveIntervals::isReMaterializable(const LiveInterval &li,
941 SmallVectorImpl<LiveInterval*> &SpillIs,
942 bool &isLoad) {
Evan Cheng5ef3a042007-12-06 00:01:56 +0000943 isLoad = false;
944 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
945 i != e; ++i) {
946 const VNInfo *VNI = *i;
947 unsigned DefIdx = VNI->def;
948 if (DefIdx == ~1U)
949 continue; // Dead val#.
950 // Is the def for the val# rematerializable?
951 if (DefIdx == ~0u)
952 return false;
953 MachineInstr *ReMatDefMI = getInstructionFromIndex(DefIdx);
954 bool DefIsLoad = false;
Evan Chengd70dbb52008-02-22 09:24:50 +0000955 if (!ReMatDefMI ||
Evan Chengdc377862008-09-30 15:44:16 +0000956 !isReMaterializable(li, VNI, ReMatDefMI, SpillIs, DefIsLoad))
Evan Cheng5ef3a042007-12-06 00:01:56 +0000957 return false;
958 isLoad |= DefIsLoad;
Evan Chengf2fbca62007-11-12 06:35:08 +0000959 }
960 return true;
961}
962
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000963/// FilterFoldedOps - Filter out two-address use operands. Return
964/// true if it finds any issue with the operands that ought to prevent
965/// folding.
966static bool FilterFoldedOps(MachineInstr *MI,
967 SmallVector<unsigned, 2> &Ops,
968 unsigned &MRInfo,
969 SmallVector<unsigned, 2> &FoldOps) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000970 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng6e141fd2007-12-12 23:12:09 +0000971
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000972 MRInfo = 0;
Evan Chengaee4af62007-12-02 08:30:39 +0000973 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
974 unsigned OpIdx = Ops[i];
Evan Chengd70dbb52008-02-22 09:24:50 +0000975 MachineOperand &MO = MI->getOperand(OpIdx);
Evan Chengaee4af62007-12-02 08:30:39 +0000976 // FIXME: fold subreg use.
Evan Chengd70dbb52008-02-22 09:24:50 +0000977 if (MO.getSubReg())
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000978 return true;
Evan Chengd70dbb52008-02-22 09:24:50 +0000979 if (MO.isDef())
Evan Chengaee4af62007-12-02 08:30:39 +0000980 MRInfo |= (unsigned)VirtRegMap::isMod;
981 else {
982 // Filter out two-address use operand(s).
Evan Chengd70dbb52008-02-22 09:24:50 +0000983 if (!MO.isImplicit() &&
984 TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) {
Evan Chengaee4af62007-12-02 08:30:39 +0000985 MRInfo = VirtRegMap::isModRef;
986 continue;
987 }
988 MRInfo |= (unsigned)VirtRegMap::isRef;
989 }
990 FoldOps.push_back(OpIdx);
Evan Chenge62f97c2007-12-01 02:07:52 +0000991 }
Evan Cheng79a0c1e2008-02-25 08:50:41 +0000992 return false;
993}
994
995
996/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
997/// slot / to reg or any rematerialized load into ith operand of specified
998/// MI. If it is successul, MI is updated with the newly created MI and
999/// returns true.
1000bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
1001 VirtRegMap &vrm, MachineInstr *DefMI,
1002 unsigned InstrIdx,
1003 SmallVector<unsigned, 2> &Ops,
1004 bool isSS, int Slot, unsigned Reg) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001005 // If it is an implicit def instruction, just delete it.
Evan Cheng20ccded2008-03-15 00:19:36 +00001006 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001007 RemoveMachineInstrFromMaps(MI);
1008 vrm.RemoveMachineInstrFromMaps(MI);
1009 MI->eraseFromParent();
1010 ++numFolds;
1011 return true;
1012 }
1013
1014 // Filter the list of operand indexes that are to be folded. Abort if
1015 // any operand will prevent folding.
1016 unsigned MRInfo = 0;
1017 SmallVector<unsigned, 2> FoldOps;
1018 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1019 return false;
Evan Chenge62f97c2007-12-01 02:07:52 +00001020
Evan Cheng427f4c12008-03-31 23:19:51 +00001021 // The only time it's safe to fold into a two address instruction is when
1022 // it's folding reload and spill from / into a spill stack slot.
1023 if (DefMI && (MRInfo & VirtRegMap::isMod))
Evan Cheng249ded32008-02-23 03:38:34 +00001024 return false;
1025
Evan Chengf2f8c2a2008-02-08 22:05:27 +00001026 MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(*mf_, MI, FoldOps, Slot)
1027 : tii_->foldMemoryOperand(*mf_, MI, FoldOps, DefMI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001028 if (fmi) {
Evan Chengd3653122008-02-27 03:04:06 +00001029 // Remember this instruction uses the spill slot.
1030 if (isSS) vrm.addSpillSlotUse(Slot, fmi);
1031
Evan Chengf2fbca62007-11-12 06:35:08 +00001032 // Attempt to fold the memory reference into the instruction. If
1033 // we can do this, we don't need to insert spill code.
Evan Chengf2fbca62007-11-12 06:35:08 +00001034 MachineBasicBlock &MBB = *MI->getParent();
Evan Cheng84802932008-01-10 08:24:38 +00001035 if (isSS && !mf_->getFrameInfo()->isImmutableObjectIndex(Slot))
Evan Chengaee4af62007-12-02 08:30:39 +00001036 vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
Evan Cheng81a03822007-11-17 00:40:40 +00001037 vrm.transferSpillPts(MI, fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001038 vrm.transferRestorePts(MI, fmi);
Evan Chengc1f53c72008-03-11 21:34:46 +00001039 vrm.transferEmergencySpills(MI, fmi);
Evan Chengf2fbca62007-11-12 06:35:08 +00001040 mi2iMap_.erase(MI);
Evan Chengcddbb832007-11-30 21:23:43 +00001041 i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
1042 mi2iMap_[fmi] = InstrIdx;
Evan Chengf2fbca62007-11-12 06:35:08 +00001043 MI = MBB.insert(MBB.erase(MI), fmi);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001044 ++numFolds;
Evan Chengf2fbca62007-11-12 06:35:08 +00001045 return true;
1046 }
1047 return false;
1048}
1049
Evan Cheng018f9b02007-12-05 03:22:34 +00001050/// canFoldMemoryOperand - Returns true if the specified load / store
1051/// folding is possible.
1052bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001053 SmallVector<unsigned, 2> &Ops,
Evan Cheng3c75ba82008-04-01 21:37:32 +00001054 bool ReMat) const {
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001055 // Filter the list of operand indexes that are to be folded. Abort if
1056 // any operand will prevent folding.
1057 unsigned MRInfo = 0;
Evan Cheng018f9b02007-12-05 03:22:34 +00001058 SmallVector<unsigned, 2> FoldOps;
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001059 if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
1060 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001061
Evan Cheng3c75ba82008-04-01 21:37:32 +00001062 // It's only legal to remat for a use, not a def.
1063 if (ReMat && (MRInfo & VirtRegMap::isMod))
Evan Cheng79a0c1e2008-02-25 08:50:41 +00001064 return false;
Evan Cheng018f9b02007-12-05 03:22:34 +00001065
Evan Chengd70dbb52008-02-22 09:24:50 +00001066 return tii_->canFoldMemoryOperand(MI, FoldOps);
1067}
1068
Evan Cheng81a03822007-11-17 00:40:40 +00001069bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
1070 SmallPtrSet<MachineBasicBlock*, 4> MBBs;
1071 for (LiveInterval::Ranges::const_iterator
1072 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1073 std::vector<IdxMBBPair>::const_iterator II =
1074 std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
1075 if (II == Idx2MBBMap.end())
1076 continue;
1077 if (I->end > II->first) // crossing a MBB.
1078 return false;
1079 MBBs.insert(II->second);
1080 if (MBBs.size() > 1)
1081 return false;
1082 }
1083 return true;
1084}
1085
Evan Chengd70dbb52008-02-22 09:24:50 +00001086/// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
1087/// interval on to-be re-materialized operands of MI) with new register.
1088void LiveIntervals::rewriteImplicitOps(const LiveInterval &li,
1089 MachineInstr *MI, unsigned NewVReg,
1090 VirtRegMap &vrm) {
1091 // There is an implicit use. That means one of the other operand is
1092 // being remat'ed and the remat'ed instruction has li.reg as an
1093 // use operand. Make sure we rewrite that as well.
1094 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1095 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001096 if (!MO.isReg())
Evan Chengd70dbb52008-02-22 09:24:50 +00001097 continue;
1098 unsigned Reg = MO.getReg();
1099 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
1100 continue;
1101 if (!vrm.isReMaterialized(Reg))
1102 continue;
1103 MachineInstr *ReMatMI = vrm.getReMaterializedMI(Reg);
Evan Cheng6130f662008-03-05 00:59:57 +00001104 MachineOperand *UseMO = ReMatMI->findRegisterUseOperand(li.reg);
1105 if (UseMO)
1106 UseMO->setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001107 }
1108}
1109
Evan Chengf2fbca62007-11-12 06:35:08 +00001110/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
1111/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
Evan Cheng018f9b02007-12-05 03:22:34 +00001112bool LiveIntervals::
Evan Chengd70dbb52008-02-22 09:24:50 +00001113rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
1114 bool TrySplit, unsigned index, unsigned end, MachineInstr *MI,
Evan Cheng81a03822007-11-17 00:40:40 +00001115 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001116 unsigned Slot, int LdSlot,
1117 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001118 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001119 const TargetRegisterClass* rc,
1120 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001121 const MachineLoopInfo *loopInfo,
Evan Cheng313d4b82008-02-23 00:33:04 +00001122 unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
Owen Anderson28998312008-08-13 22:28:50 +00001123 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001124 std::vector<LiveInterval*> &NewLIs, float &SSWeight) {
1125 MachineBasicBlock *MBB = MI->getParent();
1126 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng018f9b02007-12-05 03:22:34 +00001127 bool CanFold = false;
Evan Chengf2fbca62007-11-12 06:35:08 +00001128 RestartInstruction:
1129 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1130 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001131 if (!mop.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001132 continue;
1133 unsigned Reg = mop.getReg();
1134 unsigned RegI = Reg;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001135 if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
Evan Chengf2fbca62007-11-12 06:35:08 +00001136 continue;
Evan Chengf2fbca62007-11-12 06:35:08 +00001137 if (Reg != li.reg)
1138 continue;
1139
1140 bool TryFold = !DefIsReMat;
Evan Chengcb3c3302007-11-29 23:02:50 +00001141 bool FoldSS = true; // Default behavior unless it's a remat.
Evan Chengf2fbca62007-11-12 06:35:08 +00001142 int FoldSlot = Slot;
1143 if (DefIsReMat) {
1144 // If this is the rematerializable definition MI itself and
1145 // all of its uses are rematerialized, simply delete it.
Evan Cheng81a03822007-11-17 00:40:40 +00001146 if (MI == ReMatOrigDefMI && CanDelete) {
Evan Chengcddbb832007-11-30 21:23:43 +00001147 DOUT << "\t\t\t\tErasing re-materlizable def: ";
1148 DOUT << MI << '\n';
Evan Chengf2fbca62007-11-12 06:35:08 +00001149 RemoveMachineInstrFromMaps(MI);
Evan Chengcada2452007-11-28 01:28:46 +00001150 vrm.RemoveMachineInstrFromMaps(MI);
Evan Chengf2fbca62007-11-12 06:35:08 +00001151 MI->eraseFromParent();
1152 break;
1153 }
1154
1155 // If def for this use can't be rematerialized, then try folding.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001156 // If def is rematerializable and it's a load, also try folding.
Evan Chengcb3c3302007-11-29 23:02:50 +00001157 TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
Evan Chengf2fbca62007-11-12 06:35:08 +00001158 if (isLoad) {
1159 // Try fold loads (from stack slot, constant pool, etc.) into uses.
1160 FoldSS = isLoadSS;
1161 FoldSlot = LdSlot;
1162 }
1163 }
1164
Evan Chengf2fbca62007-11-12 06:35:08 +00001165 // Scan all of the operands of this instruction rewriting operands
1166 // to use NewVReg instead of li.reg as appropriate. We do this for
1167 // two reasons:
1168 //
1169 // 1. If the instr reads the same spilled vreg multiple times, we
1170 // want to reuse the NewVReg.
1171 // 2. If the instr is a two-addr instruction, we are required to
1172 // keep the src/dst regs pinned.
1173 //
1174 // Keep track of whether we replace a use and/or def so that we can
1175 // create the spill interval with the appropriate range.
Evan Chengcddbb832007-11-30 21:23:43 +00001176
Evan Cheng81a03822007-11-17 00:40:40 +00001177 HasUse = mop.isUse();
1178 HasDef = mop.isDef();
Evan Chengaee4af62007-12-02 08:30:39 +00001179 SmallVector<unsigned, 2> Ops;
1180 Ops.push_back(i);
Evan Chengf2fbca62007-11-12 06:35:08 +00001181 for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
Evan Chengaee4af62007-12-02 08:30:39 +00001182 const MachineOperand &MOj = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001183 if (!MOj.isReg())
Evan Chengf2fbca62007-11-12 06:35:08 +00001184 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001185 unsigned RegJ = MOj.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001186 if (RegJ == 0 || TargetRegisterInfo::isPhysicalRegister(RegJ))
Evan Chengf2fbca62007-11-12 06:35:08 +00001187 continue;
1188 if (RegJ == RegI) {
Evan Chengaee4af62007-12-02 08:30:39 +00001189 Ops.push_back(j);
1190 HasUse |= MOj.isUse();
1191 HasDef |= MOj.isDef();
Evan Chengf2fbca62007-11-12 06:35:08 +00001192 }
1193 }
1194
Evan Cheng79a796c2008-07-12 01:56:02 +00001195 if (HasUse && !li.liveAt(getUseIndex(index)))
1196 // Must be defined by an implicit def. It should not be spilled. Note,
1197 // this is for correctness reason. e.g.
1198 // 8 %reg1024<def> = IMPLICIT_DEF
1199 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1200 // The live range [12, 14) are not part of the r1024 live interval since
1201 // it's defined by an implicit def. It will not conflicts with live
1202 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001203 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001204 // the INSERT_SUBREG and both target registers that would overlap.
1205 HasUse = false;
1206
Evan Cheng9c3c2212008-06-06 07:54:39 +00001207 // Update stack slot spill weight if we are splitting.
Evan Chengc3417602008-06-21 06:45:54 +00001208 float Weight = getSpillWeight(HasDef, HasUse, loopDepth);
Evan Cheng9c3c2212008-06-06 07:54:39 +00001209 if (!TrySplit)
1210 SSWeight += Weight;
1211
1212 if (!TryFold)
1213 CanFold = false;
1214 else {
Evan Cheng018f9b02007-12-05 03:22:34 +00001215 // Do not fold load / store here if we are splitting. We'll find an
1216 // optimal point to insert a load / store later.
1217 if (!TrySplit) {
1218 if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
1219 Ops, FoldSS, FoldSlot, Reg)) {
1220 // Folding the load/store can completely change the instruction in
1221 // unpredictable ways, rescan it from the beginning.
1222 HasUse = false;
1223 HasDef = false;
1224 CanFold = false;
Evan Cheng9c3c2212008-06-06 07:54:39 +00001225 if (isRemoved(MI)) {
1226 SSWeight -= Weight;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001227 break;
Evan Cheng9c3c2212008-06-06 07:54:39 +00001228 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001229 goto RestartInstruction;
1230 }
1231 } else {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001232 // We'll try to fold it later if it's profitable.
Evan Cheng3c75ba82008-04-01 21:37:32 +00001233 CanFold = canFoldMemoryOperand(MI, Ops, DefIsReMat);
Evan Cheng018f9b02007-12-05 03:22:34 +00001234 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001235 }
Evan Chengcddbb832007-11-30 21:23:43 +00001236
1237 // Create a new virtual register for the spill interval.
1238 bool CreatedNewVReg = false;
1239 if (NewVReg == 0) {
Evan Chengd70dbb52008-02-22 09:24:50 +00001240 NewVReg = mri_->createVirtualRegister(rc);
Evan Chengcddbb832007-11-30 21:23:43 +00001241 vrm.grow();
1242 CreatedNewVReg = true;
1243 }
1244 mop.setReg(NewVReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00001245 if (mop.isImplicit())
1246 rewriteImplicitOps(li, MI, NewVReg, vrm);
Evan Chengcddbb832007-11-30 21:23:43 +00001247
1248 // Reuse NewVReg for other reads.
Evan Chengd70dbb52008-02-22 09:24:50 +00001249 for (unsigned j = 0, e = Ops.size(); j != e; ++j) {
1250 MachineOperand &mopj = MI->getOperand(Ops[j]);
1251 mopj.setReg(NewVReg);
1252 if (mopj.isImplicit())
1253 rewriteImplicitOps(li, MI, NewVReg, vrm);
1254 }
Evan Chengcddbb832007-11-30 21:23:43 +00001255
Evan Cheng81a03822007-11-17 00:40:40 +00001256 if (CreatedNewVReg) {
1257 if (DefIsReMat) {
1258 vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
Evan Chengd70dbb52008-02-22 09:24:50 +00001259 if (ReMatIds[VNI->id] == VirtRegMap::MAX_STACK_SLOT) {
Evan Cheng81a03822007-11-17 00:40:40 +00001260 // Each valnum may have its own remat id.
Evan Chengd70dbb52008-02-22 09:24:50 +00001261 ReMatIds[VNI->id] = vrm.assignVirtReMatId(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001262 } else {
Evan Chengd70dbb52008-02-22 09:24:50 +00001263 vrm.assignVirtReMatId(NewVReg, ReMatIds[VNI->id]);
Evan Cheng81a03822007-11-17 00:40:40 +00001264 }
1265 if (!CanDelete || (HasUse && HasDef)) {
1266 // If this is a two-addr instruction then its use operands are
1267 // rematerializable but its def is not. It should be assigned a
1268 // stack slot.
1269 vrm.assignVirt2StackSlot(NewVReg, Slot);
1270 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001271 } else {
Evan Chengf2fbca62007-11-12 06:35:08 +00001272 vrm.assignVirt2StackSlot(NewVReg, Slot);
1273 }
Evan Chengcb3c3302007-11-29 23:02:50 +00001274 } else if (HasUse && HasDef &&
1275 vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
1276 // If this interval hasn't been assigned a stack slot (because earlier
1277 // def is a deleted remat def), do it now.
1278 assert(Slot != VirtRegMap::NO_STACK_SLOT);
1279 vrm.assignVirt2StackSlot(NewVReg, Slot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001280 }
1281
Evan Cheng313d4b82008-02-23 00:33:04 +00001282 // Re-matting an instruction with virtual register use. Add the
1283 // register as an implicit use on the use MI.
1284 if (DefIsReMat && ImpUse)
1285 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
1286
Evan Chengf2fbca62007-11-12 06:35:08 +00001287 // create a new register interval for this spill / remat.
1288 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001289 if (CreatedNewVReg) {
1290 NewLIs.push_back(&nI);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001291 MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
Evan Cheng81a03822007-11-17 00:40:40 +00001292 if (TrySplit)
1293 vrm.setIsSplitFromReg(NewVReg, li.reg);
1294 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001295
1296 if (HasUse) {
Evan Cheng81a03822007-11-17 00:40:40 +00001297 if (CreatedNewVReg) {
1298 LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
1299 nI.getNextValue(~0U, 0, VNInfoAllocator));
1300 DOUT << " +" << LR;
1301 nI.addRange(LR);
1302 } else {
1303 // Extend the split live interval to this def / use.
1304 unsigned End = getUseIndex(index)+1;
1305 LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
1306 nI.getValNumInfo(nI.getNumValNums()-1));
1307 DOUT << " +" << LR;
1308 nI.addRange(LR);
1309 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001310 }
1311 if (HasDef) {
1312 LiveRange LR(getDefIndex(index), getStoreIndex(index),
1313 nI.getNextValue(~0U, 0, VNInfoAllocator));
1314 DOUT << " +" << LR;
1315 nI.addRange(LR);
1316 }
Evan Cheng81a03822007-11-17 00:40:40 +00001317
Evan Chengf2fbca62007-11-12 06:35:08 +00001318 DOUT << "\t\t\t\tAdded new interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001319 nI.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001320 DOUT << '\n';
1321 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001322 return CanFold;
Evan Chengf2fbca62007-11-12 06:35:08 +00001323}
Evan Cheng81a03822007-11-17 00:40:40 +00001324bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001325 const VNInfo *VNI,
1326 MachineBasicBlock *MBB, unsigned Idx) const {
Evan Cheng81a03822007-11-17 00:40:40 +00001327 unsigned End = getMBBEndIdx(MBB);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001328 for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
1329 unsigned KillIdx = VNI->kills[j];
1330 if (KillIdx > Idx && KillIdx < End)
1331 return true;
Evan Cheng81a03822007-11-17 00:40:40 +00001332 }
1333 return false;
1334}
1335
Evan Cheng063284c2008-02-21 00:34:19 +00001336/// RewriteInfo - Keep track of machine instrs that will be rewritten
1337/// during spilling.
Dan Gohman844731a2008-05-13 00:00:25 +00001338namespace {
1339 struct RewriteInfo {
1340 unsigned Index;
1341 MachineInstr *MI;
1342 bool HasUse;
1343 bool HasDef;
1344 RewriteInfo(unsigned i, MachineInstr *mi, bool u, bool d)
1345 : Index(i), MI(mi), HasUse(u), HasDef(d) {}
1346 };
Evan Cheng063284c2008-02-21 00:34:19 +00001347
Dan Gohman844731a2008-05-13 00:00:25 +00001348 struct RewriteInfoCompare {
1349 bool operator()(const RewriteInfo &LHS, const RewriteInfo &RHS) const {
1350 return LHS.Index < RHS.Index;
1351 }
1352 };
1353}
Evan Cheng063284c2008-02-21 00:34:19 +00001354
Evan Chengf2fbca62007-11-12 06:35:08 +00001355void LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001356rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
Evan Chengf2fbca62007-11-12 06:35:08 +00001357 LiveInterval::Ranges::const_iterator &I,
Evan Cheng81a03822007-11-17 00:40:40 +00001358 MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
Evan Chengf2fbca62007-11-12 06:35:08 +00001359 unsigned Slot, int LdSlot,
1360 bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
Evan Chengd70dbb52008-02-22 09:24:50 +00001361 VirtRegMap &vrm,
Evan Chengf2fbca62007-11-12 06:35:08 +00001362 const TargetRegisterClass* rc,
1363 SmallVector<int, 4> &ReMatIds,
Evan Cheng22f07ff2007-12-11 02:09:15 +00001364 const MachineLoopInfo *loopInfo,
Evan Cheng81a03822007-11-17 00:40:40 +00001365 BitVector &SpillMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001366 DenseMap<unsigned, std::vector<SRInfo> > &SpillIdxes,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001367 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001368 DenseMap<unsigned, std::vector<SRInfo> > &RestoreIdxes,
1369 DenseMap<unsigned,unsigned> &MBBVRegsMap,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001370 std::vector<LiveInterval*> &NewLIs, float &SSWeight) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001371 bool AllCanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001372 unsigned NewVReg = 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001373 unsigned start = getBaseIndex(I->start);
Evan Chengf2fbca62007-11-12 06:35:08 +00001374 unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
Evan Chengf2fbca62007-11-12 06:35:08 +00001375
Evan Cheng063284c2008-02-21 00:34:19 +00001376 // First collect all the def / use in this live range that will be rewritten.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001377 // Make sure they are sorted according to instruction index.
Evan Cheng063284c2008-02-21 00:34:19 +00001378 std::vector<RewriteInfo> RewriteMIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001379 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1380 re = mri_->reg_end(); ri != re; ) {
Evan Cheng419852c2008-04-03 16:39:43 +00001381 MachineInstr *MI = &*ri;
Evan Cheng063284c2008-02-21 00:34:19 +00001382 MachineOperand &O = ri.getOperand();
1383 ++ri;
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001384 assert(!O.isImplicit() && "Spilling register that's used as implicit use?");
Evan Cheng063284c2008-02-21 00:34:19 +00001385 unsigned index = getInstructionIndex(MI);
1386 if (index < start || index >= end)
1387 continue;
Evan Cheng79a796c2008-07-12 01:56:02 +00001388 if (O.isUse() && !li.liveAt(getUseIndex(index)))
1389 // Must be defined by an implicit def. It should not be spilled. Note,
1390 // this is for correctness reason. e.g.
1391 // 8 %reg1024<def> = IMPLICIT_DEF
1392 // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2
1393 // The live range [12, 14) are not part of the r1024 live interval since
1394 // it's defined by an implicit def. It will not conflicts with live
1395 // interval of r1025. Now suppose both registers are spilled, you can
Evan Chengb9890ae2008-07-12 02:22:07 +00001396 // easily see a situation where both registers are reloaded before
Evan Cheng79a796c2008-07-12 01:56:02 +00001397 // the INSERT_SUBREG and both target registers that would overlap.
1398 continue;
Evan Cheng063284c2008-02-21 00:34:19 +00001399 RewriteMIs.push_back(RewriteInfo(index, MI, O.isUse(), O.isDef()));
1400 }
1401 std::sort(RewriteMIs.begin(), RewriteMIs.end(), RewriteInfoCompare());
1402
Evan Cheng313d4b82008-02-23 00:33:04 +00001403 unsigned ImpUse = DefIsReMat ? getReMatImplicitUse(li, ReMatDefMI) : 0;
Evan Cheng063284c2008-02-21 00:34:19 +00001404 // Now rewrite the defs and uses.
1405 for (unsigned i = 0, e = RewriteMIs.size(); i != e; ) {
1406 RewriteInfo &rwi = RewriteMIs[i];
1407 ++i;
1408 unsigned index = rwi.Index;
1409 bool MIHasUse = rwi.HasUse;
1410 bool MIHasDef = rwi.HasDef;
1411 MachineInstr *MI = rwi.MI;
1412 // If MI def and/or use the same register multiple times, then there
1413 // are multiple entries.
Evan Cheng313d4b82008-02-23 00:33:04 +00001414 unsigned NumUses = MIHasUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001415 while (i != e && RewriteMIs[i].MI == MI) {
1416 assert(RewriteMIs[i].Index == index);
Evan Cheng313d4b82008-02-23 00:33:04 +00001417 bool isUse = RewriteMIs[i].HasUse;
1418 if (isUse) ++NumUses;
1419 MIHasUse |= isUse;
Evan Cheng063284c2008-02-21 00:34:19 +00001420 MIHasDef |= RewriteMIs[i].HasDef;
1421 ++i;
1422 }
Evan Cheng81a03822007-11-17 00:40:40 +00001423 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng313d4b82008-02-23 00:33:04 +00001424
Evan Cheng0a891ed2008-05-23 23:00:04 +00001425 if (ImpUse && MI != ReMatDefMI) {
Evan Cheng313d4b82008-02-23 00:33:04 +00001426 // Re-matting an instruction with virtual register use. Update the
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001427 // register interval's spill weight to HUGE_VALF to prevent it from
1428 // being spilled.
Evan Cheng313d4b82008-02-23 00:33:04 +00001429 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00001430 ImpLi.weight = HUGE_VALF;
Evan Cheng313d4b82008-02-23 00:33:04 +00001431 }
1432
Evan Cheng063284c2008-02-21 00:34:19 +00001433 unsigned MBBId = MBB->getNumber();
Evan Cheng018f9b02007-12-05 03:22:34 +00001434 unsigned ThisVReg = 0;
Evan Cheng70306f82007-12-03 09:58:48 +00001435 if (TrySplit) {
Owen Anderson28998312008-08-13 22:28:50 +00001436 DenseMap<unsigned,unsigned>::iterator NVI = MBBVRegsMap.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001437 if (NVI != MBBVRegsMap.end()) {
Evan Cheng018f9b02007-12-05 03:22:34 +00001438 ThisVReg = NVI->second;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001439 // One common case:
1440 // x = use
1441 // ...
1442 // ...
1443 // def = ...
1444 // = use
1445 // It's better to start a new interval to avoid artifically
1446 // extend the new interval.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001447 if (MIHasDef && !MIHasUse) {
1448 MBBVRegsMap.erase(MBB->getNumber());
Evan Cheng018f9b02007-12-05 03:22:34 +00001449 ThisVReg = 0;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001450 }
1451 }
Evan Chengcada2452007-11-28 01:28:46 +00001452 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001453
1454 bool IsNew = ThisVReg == 0;
1455 if (IsNew) {
1456 // This ends the previous live interval. If all of its def / use
1457 // can be folded, give it a low spill weight.
1458 if (NewVReg && TrySplit && AllCanFold) {
1459 LiveInterval &nI = getOrCreateInterval(NewVReg);
1460 nI.weight /= 10.0F;
1461 }
1462 AllCanFold = true;
1463 }
1464 NewVReg = ThisVReg;
1465
Evan Cheng81a03822007-11-17 00:40:40 +00001466 bool HasDef = false;
1467 bool HasUse = false;
Evan Chengd70dbb52008-02-22 09:24:50 +00001468 bool CanFold = rewriteInstructionForSpills(li, I->valno, TrySplit,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001469 index, end, MI, ReMatOrigDefMI, ReMatDefMI,
1470 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
1471 CanDelete, vrm, rc, ReMatIds, loopInfo, NewVReg,
1472 ImpUse, HasDef, HasUse, MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001473 if (!HasDef && !HasUse)
1474 continue;
1475
Evan Cheng018f9b02007-12-05 03:22:34 +00001476 AllCanFold &= CanFold;
1477
Evan Cheng81a03822007-11-17 00:40:40 +00001478 // Update weight of spill interval.
1479 LiveInterval &nI = getOrCreateInterval(NewVReg);
Evan Cheng70306f82007-12-03 09:58:48 +00001480 if (!TrySplit) {
Evan Cheng81a03822007-11-17 00:40:40 +00001481 // The spill weight is now infinity as it cannot be spilled again.
1482 nI.weight = HUGE_VALF;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001483 continue;
Evan Cheng81a03822007-11-17 00:40:40 +00001484 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001485
1486 // Keep track of the last def and first use in each MBB.
Evan Cheng0cbb1162007-11-29 01:06:25 +00001487 if (HasDef) {
1488 if (MI != ReMatOrigDefMI || !CanDelete) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001489 bool HasKill = false;
1490 if (!HasUse)
1491 HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
1492 else {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001493 // If this is a two-address code, then this index starts a new VNInfo.
Evan Cheng3f32d652008-06-04 09:18:41 +00001494 const VNInfo *VNI = li.findDefinedVNInfo(getDefIndex(index));
Evan Cheng0cbb1162007-11-29 01:06:25 +00001495 if (VNI)
1496 HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
1497 }
Owen Anderson28998312008-08-13 22:28:50 +00001498 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Chenge3110d02007-12-01 04:42:39 +00001499 SpillIdxes.find(MBBId);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001500 if (!HasKill) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001501 if (SII == SpillIdxes.end()) {
1502 std::vector<SRInfo> S;
1503 S.push_back(SRInfo(index, NewVReg, true));
1504 SpillIdxes.insert(std::make_pair(MBBId, S));
1505 } else if (SII->second.back().vreg != NewVReg) {
1506 SII->second.push_back(SRInfo(index, NewVReg, true));
1507 } else if ((int)index > SII->second.back().index) {
Evan Cheng0cbb1162007-11-29 01:06:25 +00001508 // If there is an earlier def and this is a two-address
1509 // instruction, then it's not possible to fold the store (which
1510 // would also fold the load).
Evan Cheng1953d0c2007-11-29 10:12:14 +00001511 SRInfo &Info = SII->second.back();
1512 Info.index = index;
1513 Info.canFold = !HasUse;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001514 }
1515 SpillMBBs.set(MBBId);
Evan Chenge3110d02007-12-01 04:42:39 +00001516 } else if (SII != SpillIdxes.end() &&
1517 SII->second.back().vreg == NewVReg &&
1518 (int)index > SII->second.back().index) {
1519 // There is an earlier def that's not killed (must be two-address).
1520 // The spill is no longer needed.
1521 SII->second.pop_back();
1522 if (SII->second.empty()) {
1523 SpillIdxes.erase(MBBId);
1524 SpillMBBs.reset(MBBId);
1525 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001526 }
1527 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001528 }
1529
1530 if (HasUse) {
Owen Anderson28998312008-08-13 22:28:50 +00001531 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001532 SpillIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001533 if (SII != SpillIdxes.end() &&
1534 SII->second.back().vreg == NewVReg &&
1535 (int)index > SII->second.back().index)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001536 // Use(s) following the last def, it's not safe to fold the spill.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001537 SII->second.back().canFold = false;
Owen Anderson28998312008-08-13 22:28:50 +00001538 DenseMap<unsigned, std::vector<SRInfo> >::iterator RII =
Evan Cheng0cbb1162007-11-29 01:06:25 +00001539 RestoreIdxes.find(MBBId);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001540 if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001541 // If we are splitting live intervals, only fold if it's the first
1542 // use and there isn't another use later in the MBB.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001543 RII->second.back().canFold = false;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001544 else if (IsNew) {
1545 // Only need a reload if there isn't an earlier def / use.
Evan Cheng1953d0c2007-11-29 10:12:14 +00001546 if (RII == RestoreIdxes.end()) {
1547 std::vector<SRInfo> Infos;
1548 Infos.push_back(SRInfo(index, NewVReg, true));
1549 RestoreIdxes.insert(std::make_pair(MBBId, Infos));
1550 } else {
1551 RII->second.push_back(SRInfo(index, NewVReg, true));
1552 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001553 RestoreMBBs.set(MBBId);
1554 }
1555 }
1556
1557 // Update spill weight.
Evan Cheng22f07ff2007-12-11 02:09:15 +00001558 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Chengc3417602008-06-21 06:45:54 +00001559 nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
Evan Chengf2fbca62007-11-12 06:35:08 +00001560 }
Evan Cheng018f9b02007-12-05 03:22:34 +00001561
1562 if (NewVReg && TrySplit && AllCanFold) {
1563 // If all of its def / use can be folded, give it a low spill weight.
1564 LiveInterval &nI = getOrCreateInterval(NewVReg);
1565 nI.weight /= 10.0F;
1566 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001567}
1568
Evan Cheng1953d0c2007-11-29 10:12:14 +00001569bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
1570 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001571 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001572 if (!RestoreMBBs[Id])
1573 return false;
1574 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1575 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1576 if (Restores[i].index == index &&
1577 Restores[i].vreg == vr &&
1578 Restores[i].canFold)
1579 return true;
1580 return false;
1581}
1582
1583void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
1584 BitVector &RestoreMBBs,
Owen Anderson28998312008-08-13 22:28:50 +00001585 DenseMap<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
Evan Cheng1953d0c2007-11-29 10:12:14 +00001586 if (!RestoreMBBs[Id])
1587 return;
1588 std::vector<SRInfo> &Restores = RestoreIdxes[Id];
1589 for (unsigned i = 0, e = Restores.size(); i != e; ++i)
1590 if (Restores[i].index == index && Restores[i].vreg)
1591 Restores[i].index = -1;
1592}
Evan Cheng81a03822007-11-17 00:40:40 +00001593
Evan Cheng4cce6b42008-04-11 17:53:36 +00001594/// handleSpilledImpDefs - Remove IMPLICIT_DEF instructions which are being
1595/// spilled and create empty intervals for their uses.
1596void
1597LiveIntervals::handleSpilledImpDefs(const LiveInterval &li, VirtRegMap &vrm,
1598 const TargetRegisterClass* rc,
1599 std::vector<LiveInterval*> &NewLIs) {
Evan Cheng419852c2008-04-03 16:39:43 +00001600 for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
1601 re = mri_->reg_end(); ri != re; ) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001602 MachineOperand &O = ri.getOperand();
Evan Cheng419852c2008-04-03 16:39:43 +00001603 MachineInstr *MI = &*ri;
1604 ++ri;
Evan Cheng4cce6b42008-04-11 17:53:36 +00001605 if (O.isDef()) {
1606 assert(MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF &&
1607 "Register def was not rewritten?");
1608 RemoveMachineInstrFromMaps(MI);
1609 vrm.RemoveMachineInstrFromMaps(MI);
1610 MI->eraseFromParent();
1611 } else {
1612 // This must be an use of an implicit_def so it's not part of the live
1613 // interval. Create a new empty live interval for it.
1614 // FIXME: Can we simply erase some of the instructions? e.g. Stores?
1615 unsigned NewVReg = mri_->createVirtualRegister(rc);
1616 vrm.grow();
1617 vrm.setIsImplicitlyDefined(NewVReg);
1618 NewLIs.push_back(&getOrCreateInterval(NewVReg));
1619 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1620 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001621 if (MO.isReg() && MO.getReg() == li.reg)
Evan Cheng4cce6b42008-04-11 17:53:36 +00001622 MO.setReg(NewVReg);
1623 }
1624 }
Evan Cheng419852c2008-04-03 16:39:43 +00001625 }
1626}
1627
Owen Anderson133f10f2008-08-18 19:52:22 +00001628namespace {
1629 struct LISorter {
1630 bool operator()(LiveInterval* A, LiveInterval* B) {
1631 return A->beginNumber() < B->beginNumber();
1632 }
1633 };
1634}
Evan Cheng81a03822007-11-17 00:40:40 +00001635
Evan Chengf2fbca62007-11-12 06:35:08 +00001636std::vector<LiveInterval*> LiveIntervals::
Owen Andersond6664312008-08-18 18:05:32 +00001637addIntervalsForSpillsFast(const LiveInterval &li,
1638 const MachineLoopInfo *loopInfo,
1639 VirtRegMap &vrm, float& SSWeight) {
Owen Anderson17197312008-08-18 23:41:04 +00001640 unsigned slot = vrm.assignVirt2StackSlot(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00001641
1642 std::vector<LiveInterval*> added;
1643
1644 assert(li.weight != HUGE_VALF &&
1645 "attempt to spill already spilled interval!");
1646
1647 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
1648 DEBUG(li.dump());
1649 DOUT << '\n';
1650
1651 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
1652
Owen Anderson9a032932008-08-18 21:20:32 +00001653 SSWeight = 0.0f;
1654
Owen Andersona41e47a2008-08-19 22:12:11 +00001655 MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg);
1656 while (RI != mri_->reg_end()) {
1657 MachineInstr* MI = &*RI;
1658
1659 SmallVector<unsigned, 2> Indices;
1660 bool HasUse = false;
1661 bool HasDef = false;
1662
1663 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
1664 MachineOperand& mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00001665 if (!mop.isReg() || mop.getReg() != li.reg) continue;
Owen Andersona41e47a2008-08-19 22:12:11 +00001666
1667 HasUse |= MI->getOperand(i).isUse();
1668 HasDef |= MI->getOperand(i).isDef();
1669
1670 Indices.push_back(i);
1671 }
1672
1673 if (!tryFoldMemoryOperand(MI, vrm, NULL, getInstructionIndex(MI),
1674 Indices, true, slot, li.reg)) {
1675 unsigned NewVReg = mri_->createVirtualRegister(rc);
Owen Anderson9a032932008-08-18 21:20:32 +00001676 vrm.grow();
Owen Anderson17197312008-08-18 23:41:04 +00001677 vrm.assignVirt2StackSlot(NewVReg, slot);
1678
Owen Andersona41e47a2008-08-19 22:12:11 +00001679 // create a new register for this spill
1680 LiveInterval &nI = getOrCreateInterval(NewVReg);
Owen Andersond6664312008-08-18 18:05:32 +00001681
Owen Andersona41e47a2008-08-19 22:12:11 +00001682 // the spill weight is now infinity as it
1683 // cannot be spilled again
1684 nI.weight = HUGE_VALF;
1685
1686 // Rewrite register operands to use the new vreg.
1687 for (SmallVectorImpl<unsigned>::iterator I = Indices.begin(),
1688 E = Indices.end(); I != E; ++I) {
1689 MI->getOperand(*I).setReg(NewVReg);
1690
1691 if (MI->getOperand(*I).isUse())
1692 MI->getOperand(*I).setIsKill(true);
1693 }
1694
1695 // Fill in the new live interval.
1696 unsigned index = getInstructionIndex(MI);
1697 if (HasUse) {
1698 LiveRange LR(getLoadIndex(index), getUseIndex(index),
1699 nI.getNextValue(~0U, 0, getVNInfoAllocator()));
1700 DOUT << " +" << LR;
1701 nI.addRange(LR);
1702 vrm.addRestorePoint(NewVReg, MI);
1703 }
1704 if (HasDef) {
1705 LiveRange LR(getDefIndex(index), getStoreIndex(index),
1706 nI.getNextValue(~0U, 0, getVNInfoAllocator()));
1707 DOUT << " +" << LR;
1708 nI.addRange(LR);
1709 vrm.addSpillPoint(NewVReg, true, MI);
1710 }
1711
Owen Anderson17197312008-08-18 23:41:04 +00001712 added.push_back(&nI);
Owen Anderson8dc2cbe2008-08-18 18:38:12 +00001713
Owen Andersona41e47a2008-08-19 22:12:11 +00001714 DOUT << "\t\t\t\tadded new interval: ";
1715 DEBUG(nI.dump());
1716 DOUT << '\n';
1717
1718 unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
1719 if (HasUse) {
1720 if (HasDef)
1721 SSWeight += getSpillWeight(true, true, loopDepth);
1722 else
1723 SSWeight += getSpillWeight(false, true, loopDepth);
1724 } else
1725 SSWeight += getSpillWeight(true, false, loopDepth);
1726 }
Owen Anderson9a032932008-08-18 21:20:32 +00001727
Owen Anderson9a032932008-08-18 21:20:32 +00001728
Owen Andersona41e47a2008-08-19 22:12:11 +00001729 RI = mri_->reg_begin(li.reg);
Owen Andersond6664312008-08-18 18:05:32 +00001730 }
Owen Andersond6664312008-08-18 18:05:32 +00001731
Owen Andersona41e47a2008-08-19 22:12:11 +00001732 // Clients expect the new intervals to be returned in sorted order.
Owen Anderson133f10f2008-08-18 19:52:22 +00001733 std::sort(added.begin(), added.end(), LISorter());
1734
Owen Andersond6664312008-08-18 18:05:32 +00001735 return added;
1736}
1737
1738std::vector<LiveInterval*> LiveIntervals::
Evan Cheng81a03822007-11-17 00:40:40 +00001739addIntervalsForSpills(const LiveInterval &li,
Evan Chengdc377862008-09-30 15:44:16 +00001740 SmallVectorImpl<LiveInterval*> &SpillIs,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001741 const MachineLoopInfo *loopInfo, VirtRegMap &vrm,
1742 float &SSWeight) {
Owen Andersonae339ba2008-08-19 00:17:30 +00001743
1744 if (EnableFastSpilling)
1745 return addIntervalsForSpillsFast(li, loopInfo, vrm, SSWeight);
1746
Evan Chengf2fbca62007-11-12 06:35:08 +00001747 assert(li.weight != HUGE_VALF &&
1748 "attempt to spill already spilled interval!");
1749
1750 DOUT << "\t\t\t\tadding intervals for spills for interval: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001751 li.print(DOUT, tri_);
Evan Chengf2fbca62007-11-12 06:35:08 +00001752 DOUT << '\n';
1753
Evan Cheng9c3c2212008-06-06 07:54:39 +00001754 // Spill slot weight.
1755 SSWeight = 0.0f;
1756
Evan Cheng81a03822007-11-17 00:40:40 +00001757 // Each bit specify whether it a spill is required in the MBB.
1758 BitVector SpillMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00001759 DenseMap<unsigned, std::vector<SRInfo> > SpillIdxes;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001760 BitVector RestoreMBBs(mf_->getNumBlockIDs());
Owen Anderson28998312008-08-13 22:28:50 +00001761 DenseMap<unsigned, std::vector<SRInfo> > RestoreIdxes;
1762 DenseMap<unsigned,unsigned> MBBVRegsMap;
Evan Chengf2fbca62007-11-12 06:35:08 +00001763 std::vector<LiveInterval*> NewLIs;
Evan Chengd70dbb52008-02-22 09:24:50 +00001764 const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
Evan Chengf2fbca62007-11-12 06:35:08 +00001765
1766 unsigned NumValNums = li.getNumValNums();
1767 SmallVector<MachineInstr*, 4> ReMatDefs;
1768 ReMatDefs.resize(NumValNums, NULL);
1769 SmallVector<MachineInstr*, 4> ReMatOrigDefs;
1770 ReMatOrigDefs.resize(NumValNums, NULL);
1771 SmallVector<int, 4> ReMatIds;
1772 ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
1773 BitVector ReMatDelete(NumValNums);
1774 unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
1775
Evan Cheng81a03822007-11-17 00:40:40 +00001776 // Spilling a split live interval. It cannot be split any further. Also,
1777 // it's also guaranteed to be a single val# / range interval.
1778 if (vrm.getPreSplitReg(li.reg)) {
1779 vrm.setIsSplitFromReg(li.reg, 0);
Evan Chengd120ffd2007-12-05 10:24:35 +00001780 // Unset the split kill marker on the last use.
1781 unsigned KillIdx = vrm.getKillPoint(li.reg);
1782 if (KillIdx) {
1783 MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
1784 assert(KillMI && "Last use disappeared?");
1785 int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
1786 assert(KillOp != -1 && "Last use disappeared?");
Chris Lattnerf7382302007-12-30 21:56:09 +00001787 KillMI->getOperand(KillOp).setIsKill(false);
Evan Chengd120ffd2007-12-05 10:24:35 +00001788 }
Evan Chengadf85902007-12-05 09:51:10 +00001789 vrm.removeKillPoint(li.reg);
Evan Cheng81a03822007-11-17 00:40:40 +00001790 bool DefIsReMat = vrm.isReMaterialized(li.reg);
1791 Slot = vrm.getStackSlot(li.reg);
1792 assert(Slot != VirtRegMap::MAX_STACK_SLOT);
1793 MachineInstr *ReMatDefMI = DefIsReMat ?
1794 vrm.getReMaterializedMI(li.reg) : NULL;
1795 int LdSlot = 0;
1796 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
1797 bool isLoad = isLoadSS ||
Chris Lattner749c6f62008-01-07 07:27:27 +00001798 (DefIsReMat && (ReMatDefMI->getDesc().isSimpleLoad()));
Evan Cheng81a03822007-11-17 00:40:40 +00001799 bool IsFirstRange = true;
1800 for (LiveInterval::Ranges::const_iterator
1801 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
1802 // If this is a split live interval with multiple ranges, it means there
1803 // are two-address instructions that re-defined the value. Only the
1804 // first def can be rematerialized!
1805 if (IsFirstRange) {
Evan Chengcb3c3302007-11-29 23:02:50 +00001806 // Note ReMatOrigDefMI has already been deleted.
Evan Cheng81a03822007-11-17 00:40:40 +00001807 rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
1808 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00001809 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001810 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001811 MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001812 } else {
1813 rewriteInstructionsForSpills(li, false, I, NULL, 0,
1814 Slot, 0, false, false, false,
Evan Chengd70dbb52008-02-22 09:24:50 +00001815 false, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001816 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001817 MBBVRegsMap, NewLIs, SSWeight);
Evan Cheng81a03822007-11-17 00:40:40 +00001818 }
1819 IsFirstRange = false;
1820 }
Evan Cheng419852c2008-04-03 16:39:43 +00001821
Evan Cheng9c3c2212008-06-06 07:54:39 +00001822 SSWeight = 0.0f; // Already accounted for when split.
Evan Cheng4cce6b42008-04-11 17:53:36 +00001823 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng81a03822007-11-17 00:40:40 +00001824 return NewLIs;
1825 }
1826
1827 bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001828 if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
1829 TrySplit = false;
1830 if (TrySplit)
1831 ++numSplits;
Evan Chengf2fbca62007-11-12 06:35:08 +00001832 bool NeedStackSlot = false;
1833 for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
1834 i != e; ++i) {
1835 const VNInfo *VNI = *i;
1836 unsigned VN = VNI->id;
1837 unsigned DefIdx = VNI->def;
1838 if (DefIdx == ~1U)
1839 continue; // Dead val#.
1840 // Is the def for the val# rematerializable?
Evan Cheng81a03822007-11-17 00:40:40 +00001841 MachineInstr *ReMatDefMI = (DefIdx == ~0u)
1842 ? 0 : getInstructionFromIndex(DefIdx);
Evan Cheng5ef3a042007-12-06 00:01:56 +00001843 bool dummy;
Evan Chengdc377862008-09-30 15:44:16 +00001844 if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, SpillIs, dummy)) {
Evan Chengf2fbca62007-11-12 06:35:08 +00001845 // Remember how to remat the def of this val#.
Evan Cheng81a03822007-11-17 00:40:40 +00001846 ReMatOrigDefs[VN] = ReMatDefMI;
Dan Gohman2c3f7ae2008-07-17 23:49:46 +00001847 // Original def may be modified so we have to make a copy here.
Evan Cheng1ed99222008-07-19 00:37:25 +00001848 MachineInstr *Clone = mf_->CloneMachineInstr(ReMatDefMI);
1849 ClonedMIs.push_back(Clone);
1850 ReMatDefs[VN] = Clone;
Evan Chengf2fbca62007-11-12 06:35:08 +00001851
1852 bool CanDelete = true;
Evan Chengc3fc7d92007-11-29 09:49:23 +00001853 if (VNI->hasPHIKill) {
1854 // A kill is a phi node, not all of its uses can be rematerialized.
Evan Chengf2fbca62007-11-12 06:35:08 +00001855 // It must not be deleted.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001856 CanDelete = false;
1857 // Need a stack slot if there is any live range where uses cannot be
1858 // rematerialized.
1859 NeedStackSlot = true;
Evan Chengf2fbca62007-11-12 06:35:08 +00001860 }
Evan Chengf2fbca62007-11-12 06:35:08 +00001861 if (CanDelete)
1862 ReMatDelete.set(VN);
1863 } else {
1864 // Need a stack slot if there is any live range where uses cannot be
1865 // rematerialized.
1866 NeedStackSlot = true;
1867 }
1868 }
1869
1870 // One stack slot per live interval.
Evan Cheng81a03822007-11-17 00:40:40 +00001871 if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0)
Evan Chengf2fbca62007-11-12 06:35:08 +00001872 Slot = vrm.assignVirt2StackSlot(li.reg);
1873
1874 // Create new intervals and rewrite defs and uses.
1875 for (LiveInterval::Ranges::const_iterator
1876 I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
Evan Cheng81a03822007-11-17 00:40:40 +00001877 MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
1878 MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
1879 bool DefIsReMat = ReMatDefMI != NULL;
Evan Chengf2fbca62007-11-12 06:35:08 +00001880 bool CanDelete = ReMatDelete[I->valno->id];
1881 int LdSlot = 0;
Evan Cheng81a03822007-11-17 00:40:40 +00001882 bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
Evan Chengf2fbca62007-11-12 06:35:08 +00001883 bool isLoad = isLoadSS ||
Chris Lattner749c6f62008-01-07 07:27:27 +00001884 (DefIsReMat && ReMatDefMI->getDesc().isSimpleLoad());
Evan Cheng81a03822007-11-17 00:40:40 +00001885 rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001886 Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
Evan Chengd70dbb52008-02-22 09:24:50 +00001887 CanDelete, vrm, rc, ReMatIds, loopInfo,
Evan Cheng0cbb1162007-11-29 01:06:25 +00001888 SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
Evan Cheng9c3c2212008-06-06 07:54:39 +00001889 MBBVRegsMap, NewLIs, SSWeight);
Evan Chengf2fbca62007-11-12 06:35:08 +00001890 }
1891
Evan Cheng0cbb1162007-11-29 01:06:25 +00001892 // Insert spills / restores if we are splitting.
Evan Cheng419852c2008-04-03 16:39:43 +00001893 if (!TrySplit) {
Evan Cheng4cce6b42008-04-11 17:53:36 +00001894 handleSpilledImpDefs(li, vrm, rc, NewLIs);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001895 return NewLIs;
Evan Cheng419852c2008-04-03 16:39:43 +00001896 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001897
Evan Chengb50bb8c2007-12-05 08:16:32 +00001898 SmallPtrSet<LiveInterval*, 4> AddedKill;
Evan Chengaee4af62007-12-02 08:30:39 +00001899 SmallVector<unsigned, 2> Ops;
Evan Cheng1953d0c2007-11-29 10:12:14 +00001900 if (NeedStackSlot) {
1901 int Id = SpillMBBs.find_first();
1902 while (Id != -1) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001903 MachineBasicBlock *MBB = mf_->getBlockNumbered(Id);
1904 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
Evan Cheng1953d0c2007-11-29 10:12:14 +00001905 std::vector<SRInfo> &spills = SpillIdxes[Id];
1906 for (unsigned i = 0, e = spills.size(); i != e; ++i) {
1907 int index = spills[i].index;
1908 unsigned VReg = spills[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001909 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001910 bool isReMat = vrm.isReMaterialized(VReg);
1911 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001912 bool CanFold = false;
1913 bool FoundUse = false;
1914 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001915 if (spills[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001916 CanFold = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001917 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1918 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001919 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng0cbb1162007-11-29 01:06:25 +00001920 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001921
1922 Ops.push_back(j);
1923 if (MO.isDef())
Evan Chengcddbb832007-11-30 21:23:43 +00001924 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001925 if (isReMat ||
1926 (!FoundUse && !alsoFoldARestore(Id, index, VReg,
1927 RestoreMBBs, RestoreIdxes))) {
1928 // MI has two-address uses of the same register. If the use
1929 // isn't the first and only use in the BB, then we can't fold
1930 // it. FIXME: Move this to rewriteInstructionsForSpills.
1931 CanFold = false;
Evan Chengcddbb832007-11-30 21:23:43 +00001932 break;
1933 }
Evan Chengaee4af62007-12-02 08:30:39 +00001934 FoundUse = true;
Evan Cheng0cbb1162007-11-29 01:06:25 +00001935 }
1936 }
1937 // Fold the store into the def if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00001938 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00001939 if (CanFold && !Ops.empty()) {
1940 if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
Evan Chengcddbb832007-11-30 21:23:43 +00001941 Folded = true;
Evan Chengf38d14f2007-12-05 09:05:34 +00001942 if (FoundUse > 0) {
Evan Chengaee4af62007-12-02 08:30:39 +00001943 // Also folded uses, do not issue a load.
1944 eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
Evan Chengf38d14f2007-12-05 09:05:34 +00001945 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
1946 }
Evan Cheng597d10d2007-12-04 00:32:23 +00001947 nI.removeRange(getDefIndex(index), getStoreIndex(index));
Evan Chengcddbb832007-11-30 21:23:43 +00001948 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001949 }
1950
Evan Cheng7e073ba2008-04-09 20:57:25 +00001951 // Otherwise tell the spiller to issue a spill.
Evan Chengb50bb8c2007-12-05 08:16:32 +00001952 if (!Folded) {
1953 LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
1954 bool isKill = LR->end == getStoreIndex(index);
Evan Chengb0a6f622008-05-20 08:10:37 +00001955 if (!MI->registerDefIsDead(nI.reg))
1956 // No need to spill a dead def.
1957 vrm.addSpillPoint(VReg, isKill, MI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00001958 if (isKill)
1959 AddedKill.insert(&nI);
1960 }
Evan Cheng9c3c2212008-06-06 07:54:39 +00001961
1962 // Update spill slot weight.
1963 if (!isReMat)
Evan Chengc3417602008-06-21 06:45:54 +00001964 SSWeight += getSpillWeight(true, false, loopDepth);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001965 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001966 Id = SpillMBBs.find_next(Id);
Evan Cheng0cbb1162007-11-29 01:06:25 +00001967 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00001968 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00001969
Evan Cheng1953d0c2007-11-29 10:12:14 +00001970 int Id = RestoreMBBs.find_first();
1971 while (Id != -1) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00001972 MachineBasicBlock *MBB = mf_->getBlockNumbered(Id);
1973 unsigned loopDepth = loopInfo->getLoopDepth(MBB);
1974
Evan Cheng1953d0c2007-11-29 10:12:14 +00001975 std::vector<SRInfo> &restores = RestoreIdxes[Id];
1976 for (unsigned i = 0, e = restores.size(); i != e; ++i) {
1977 int index = restores[i].index;
1978 if (index == -1)
1979 continue;
1980 unsigned VReg = restores[i].vreg;
Evan Cheng597d10d2007-12-04 00:32:23 +00001981 LiveInterval &nI = getOrCreateInterval(VReg);
Evan Cheng9c3c2212008-06-06 07:54:39 +00001982 bool isReMat = vrm.isReMaterialized(VReg);
Evan Cheng81a03822007-11-17 00:40:40 +00001983 MachineInstr *MI = getInstructionFromIndex(index);
Evan Chengaee4af62007-12-02 08:30:39 +00001984 bool CanFold = false;
1985 Ops.clear();
Evan Chengcddbb832007-11-30 21:23:43 +00001986 if (restores[i].canFold) {
Evan Chengaee4af62007-12-02 08:30:39 +00001987 CanFold = true;
Evan Cheng81a03822007-11-17 00:40:40 +00001988 for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
1989 MachineOperand &MO = MI->getOperand(j);
Dan Gohmand735b802008-10-03 15:45:36 +00001990 if (!MO.isReg() || MO.getReg() != VReg)
Evan Cheng81a03822007-11-17 00:40:40 +00001991 continue;
Evan Chengaee4af62007-12-02 08:30:39 +00001992
Evan Cheng0cbb1162007-11-29 01:06:25 +00001993 if (MO.isDef()) {
Evan Chengaee4af62007-12-02 08:30:39 +00001994 // If this restore were to be folded, it would have been folded
1995 // already.
1996 CanFold = false;
Evan Cheng81a03822007-11-17 00:40:40 +00001997 break;
1998 }
Evan Chengaee4af62007-12-02 08:30:39 +00001999 Ops.push_back(j);
Evan Cheng81a03822007-11-17 00:40:40 +00002000 }
2001 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002002
2003 // Fold the load into the use if possible.
Evan Chengcddbb832007-11-30 21:23:43 +00002004 bool Folded = false;
Evan Chengaee4af62007-12-02 08:30:39 +00002005 if (CanFold && !Ops.empty()) {
Evan Cheng9c3c2212008-06-06 07:54:39 +00002006 if (!isReMat)
Evan Chengaee4af62007-12-02 08:30:39 +00002007 Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
2008 else {
Evan Cheng0cbb1162007-11-29 01:06:25 +00002009 MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
2010 int LdSlot = 0;
2011 bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
2012 // If the rematerializable def is a load, also try to fold it.
Chris Lattner749c6f62008-01-07 07:27:27 +00002013 if (isLoadSS || ReMatDefMI->getDesc().isSimpleLoad())
Evan Chengaee4af62007-12-02 08:30:39 +00002014 Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
2015 Ops, isLoadSS, LdSlot, VReg);
Evan Chengd70dbb52008-02-22 09:24:50 +00002016 unsigned ImpUse = getReMatImplicitUse(li, ReMatDefMI);
2017 if (ImpUse) {
2018 // Re-matting an instruction with virtual register use. Add the
2019 // register as an implicit use on the use MI and update the register
Evan Cheng24d2f8a2008-03-31 07:53:30 +00002020 // interval's spill weight to HUGE_VALF to prevent it from being
2021 // spilled.
Evan Chengd70dbb52008-02-22 09:24:50 +00002022 LiveInterval &ImpLi = getInterval(ImpUse);
Evan Cheng24d2f8a2008-03-31 07:53:30 +00002023 ImpLi.weight = HUGE_VALF;
Evan Chengd70dbb52008-02-22 09:24:50 +00002024 MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
2025 }
Evan Chengaee4af62007-12-02 08:30:39 +00002026 }
Evan Cheng0cbb1162007-11-29 01:06:25 +00002027 }
2028 // If folding is not possible / failed, then tell the spiller to issue a
2029 // load / rematerialization for us.
Evan Cheng597d10d2007-12-04 00:32:23 +00002030 if (Folded)
2031 nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002032 else
Evan Cheng0cbb1162007-11-29 01:06:25 +00002033 vrm.addRestorePoint(VReg, MI);
Evan Cheng9c3c2212008-06-06 07:54:39 +00002034
2035 // Update spill slot weight.
2036 if (!isReMat)
Evan Chengc3417602008-06-21 06:45:54 +00002037 SSWeight += getSpillWeight(false, true, loopDepth);
Evan Cheng81a03822007-11-17 00:40:40 +00002038 }
Evan Cheng1953d0c2007-11-29 10:12:14 +00002039 Id = RestoreMBBs.find_next(Id);
Evan Cheng81a03822007-11-17 00:40:40 +00002040 }
2041
Evan Chengb50bb8c2007-12-05 08:16:32 +00002042 // Finalize intervals: add kills, finalize spill weights, and filter out
2043 // dead intervals.
Evan Cheng597d10d2007-12-04 00:32:23 +00002044 std::vector<LiveInterval*> RetNewLIs;
2045 for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
2046 LiveInterval *LI = NewLIs[i];
2047 if (!LI->empty()) {
Owen Anderson496bac52008-07-23 19:47:27 +00002048 LI->weight /= InstrSlots::NUM * getApproximateInstructionCount(*LI);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002049 if (!AddedKill.count(LI)) {
2050 LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
Evan Chengd120ffd2007-12-05 10:24:35 +00002051 unsigned LastUseIdx = getBaseIndex(LR->end);
2052 MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
Evan Cheng6130f662008-03-05 00:59:57 +00002053 int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg, false);
Evan Chengb50bb8c2007-12-05 08:16:32 +00002054 assert(UseIdx != -1);
Evan Chengd70dbb52008-02-22 09:24:50 +00002055 if (LastUse->getOperand(UseIdx).isImplicit() ||
2056 LastUse->getDesc().getOperandConstraint(UseIdx,TOI::TIED_TO) == -1){
Evan Chengb50bb8c2007-12-05 08:16:32 +00002057 LastUse->getOperand(UseIdx).setIsKill();
Evan Chengd120ffd2007-12-05 10:24:35 +00002058 vrm.addKillPoint(LI->reg, LastUseIdx);
Evan Chengadf85902007-12-05 09:51:10 +00002059 }
Evan Chengb50bb8c2007-12-05 08:16:32 +00002060 }
Evan Cheng597d10d2007-12-04 00:32:23 +00002061 RetNewLIs.push_back(LI);
2062 }
2063 }
Evan Cheng81a03822007-11-17 00:40:40 +00002064
Evan Cheng4cce6b42008-04-11 17:53:36 +00002065 handleSpilledImpDefs(li, vrm, rc, RetNewLIs);
Evan Cheng597d10d2007-12-04 00:32:23 +00002066 return RetNewLIs;
Evan Chengf2fbca62007-11-12 06:35:08 +00002067}
Evan Cheng676dd7c2008-03-11 07:19:34 +00002068
2069/// hasAllocatableSuperReg - Return true if the specified physical register has
2070/// any super register that's allocatable.
2071bool LiveIntervals::hasAllocatableSuperReg(unsigned Reg) const {
2072 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS)
2073 if (allocatableRegs_[*AS] && hasInterval(*AS))
2074 return true;
2075 return false;
2076}
2077
2078/// getRepresentativeReg - Find the largest super register of the specified
2079/// physical register.
2080unsigned LiveIntervals::getRepresentativeReg(unsigned Reg) const {
2081 // Find the largest super-register that is allocatable.
2082 unsigned BestReg = Reg;
2083 for (const unsigned* AS = tri_->getSuperRegisters(Reg); *AS; ++AS) {
2084 unsigned SuperReg = *AS;
2085 if (!hasAllocatableSuperReg(SuperReg) && hasInterval(SuperReg)) {
2086 BestReg = SuperReg;
2087 break;
2088 }
2089 }
2090 return BestReg;
2091}
2092
2093/// getNumConflictsWithPhysReg - Return the number of uses and defs of the
2094/// specified interval that conflicts with the specified physical register.
2095unsigned LiveIntervals::getNumConflictsWithPhysReg(const LiveInterval &li,
2096 unsigned PhysReg) const {
2097 unsigned NumConflicts = 0;
2098 const LiveInterval &pli = getInterval(getRepresentativeReg(PhysReg));
2099 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2100 E = mri_->reg_end(); I != E; ++I) {
2101 MachineOperand &O = I.getOperand();
2102 MachineInstr *MI = O.getParent();
2103 unsigned Index = getInstructionIndex(MI);
2104 if (pli.liveAt(Index))
2105 ++NumConflicts;
2106 }
2107 return NumConflicts;
2108}
2109
2110/// spillPhysRegAroundRegDefsUses - Spill the specified physical register
2111/// around all defs and uses of the specified interval.
2112void LiveIntervals::spillPhysRegAroundRegDefsUses(const LiveInterval &li,
2113 unsigned PhysReg, VirtRegMap &vrm) {
2114 unsigned SpillReg = getRepresentativeReg(PhysReg);
2115
2116 for (const unsigned *AS = tri_->getAliasSet(PhysReg); *AS; ++AS)
2117 // If there are registers which alias PhysReg, but which are not a
2118 // sub-register of the chosen representative super register. Assert
2119 // since we can't handle it yet.
2120 assert(*AS == SpillReg || !allocatableRegs_[*AS] ||
2121 tri_->isSuperRegister(*AS, SpillReg));
2122
2123 LiveInterval &pli = getInterval(SpillReg);
2124 SmallPtrSet<MachineInstr*, 8> SeenMIs;
2125 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(li.reg),
2126 E = mri_->reg_end(); I != E; ++I) {
2127 MachineOperand &O = I.getOperand();
2128 MachineInstr *MI = O.getParent();
2129 if (SeenMIs.count(MI))
2130 continue;
2131 SeenMIs.insert(MI);
2132 unsigned Index = getInstructionIndex(MI);
2133 if (pli.liveAt(Index)) {
2134 vrm.addEmergencySpill(SpillReg, MI);
2135 pli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
2136 for (const unsigned* AS = tri_->getSubRegisters(SpillReg); *AS; ++AS) {
2137 if (!hasInterval(*AS))
2138 continue;
2139 LiveInterval &spli = getInterval(*AS);
2140 if (spli.liveAt(Index))
2141 spli.removeRange(getLoadIndex(Index), getStoreIndex(Index)+1);
2142 }
2143 }
2144 }
2145}
Owen Andersonc4dc1322008-06-05 17:15:43 +00002146
2147LiveRange LiveIntervals::addLiveRangeToEndOfBlock(unsigned reg,
2148 MachineInstr* startInst) {
2149 LiveInterval& Interval = getOrCreateInterval(reg);
2150 VNInfo* VN = Interval.getNextValue(
2151 getInstructionIndex(startInst) + InstrSlots::DEF,
2152 startInst, getVNInfoAllocator());
2153 VN->hasPHIKill = true;
2154 VN->kills.push_back(getMBBEndIdx(startInst->getParent()));
2155 LiveRange LR(getInstructionIndex(startInst) + InstrSlots::DEF,
2156 getMBBEndIdx(startInst->getParent()) + 1, VN);
2157 Interval.addRange(LR);
2158
2159 return LR;
2160}