blob: ca445e03b31709173cd9ecaa4ebc1dc8cd776833 [file] [log] [blame]
Chris Lattnera3b8b5c2004-07-23 17:56:30 +00001//===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LiveInterval analysis pass which is used
11// by the Linear Scan Register allocator. This pass linearizes the
12// basic blocks of the function in DFS order and uses the
13// LiveVariables pass to conservatively compute live intervals for
14// each virtual and physical register.
15//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "liveintervals"
Chris Lattnera3b8b5c2004-07-23 17:56:30 +000019#include "LiveIntervalAnalysis.h"
Misha Brukman08a6c762004-09-03 18:25:53 +000020#include "VirtRegMap.h"
Chris Lattner015959e2004-05-01 21:24:39 +000021#include "llvm/Value.h"
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +000022#include "llvm/Analysis/LoopInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000023#include "llvm/CodeGen/LiveVariables.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000025#include "llvm/CodeGen/MachineInstr.h"
26#include "llvm/CodeGen/Passes.h"
27#include "llvm/CodeGen/SSARegMap.h"
28#include "llvm/Target/MRegisterInfo.h"
29#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/Debug.h"
33#include "llvm/ADT/Statistic.h"
34#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000035#include <algorithm>
Misha Brukman08a6c762004-09-03 18:25:53 +000036#include <cmath>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000037using namespace llvm;
38
39namespace {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000040 RegisterAnalysis<LiveIntervals> X("liveintervals", "Live Interval Analysis");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000041
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000042 Statistic<> numIntervals
43 ("liveintervals", "Number of original intervals");
Alkis Evlogimenos007726c2004-02-20 20:53:26 +000044
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000045 Statistic<> numIntervalsAfter
46 ("liveintervals", "Number of intervals after coalescing");
Alkis Evlogimenos007726c2004-02-20 20:53:26 +000047
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000048 Statistic<> numJoins
49 ("liveintervals", "Number of interval joins performed");
Alkis Evlogimenos007726c2004-02-20 20:53:26 +000050
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000051 Statistic<> numPeep
52 ("liveintervals", "Number of identity moves eliminated after coalescing");
Alkis Evlogimenos007726c2004-02-20 20:53:26 +000053
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000054 Statistic<> numFolded
55 ("liveintervals", "Number of loads/stores folded into instructions");
Alkis Evlogimenos007726c2004-02-20 20:53:26 +000056
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000057 cl::opt<bool>
58 EnableJoining("join-liveintervals",
59 cl::desc("Join compatible live intervals"),
60 cl::init(true));
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000061};
62
63void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const
64{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000065 AU.addRequired<LiveVariables>();
66 AU.addPreservedID(PHIEliminationID);
67 AU.addRequiredID(PHIEliminationID);
68 AU.addRequiredID(TwoAddressInstructionPassID);
69 AU.addRequired<LoopInfo>();
70 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000071}
72
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000073void LiveIntervals::releaseMemory()
74{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000075 mi2iMap_.clear();
76 i2miMap_.clear();
77 r2iMap_.clear();
78 r2rMap_.clear();
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000079}
80
81
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000082/// runOnMachineFunction - Register allocate the whole function
83///
84bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000085 mf_ = &fn;
86 tm_ = &fn.getTarget();
87 mri_ = tm_->getRegisterInfo();
Chris Lattnerf768bba2005-03-09 23:05:19 +000088 tii_ = tm_->getInstrInfo();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000089 lv_ = &getAnalysis<LiveVariables>();
Alkis Evlogimenos53278012004-08-26 22:22:38 +000090 allocatableRegs_ = mri_->getAllocatableSet(fn);
Alkis Evlogimenos2c4f7b52004-09-09 19:24:38 +000091 r2rMap_.grow(mf_->getSSARegMap()->getLastVirtReg());
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000092
Chris Lattner799a9192005-04-09 16:17:50 +000093 // If this function has any live ins, insert a dummy instruction at the
94 // beginning of the function that we will pretend "defines" the values. This
95 // is to make the interval analysis simpler by providing a number.
96 if (fn.livein_begin() != fn.livein_end()) {
Chris Lattner712ad0c2005-05-13 07:08:07 +000097 unsigned FirstLiveIn = fn.livein_begin()->first;
Chris Lattner799a9192005-04-09 16:17:50 +000098
99 // Find a reg class that contains this live in.
100 const TargetRegisterClass *RC = 0;
101 for (MRegisterInfo::regclass_iterator RCI = mri_->regclass_begin(),
102 E = mri_->regclass_end(); RCI != E; ++RCI)
103 if ((*RCI)->contains(FirstLiveIn)) {
104 RC = *RCI;
105 break;
106 }
107
108 MachineInstr *OldFirstMI = fn.begin()->begin();
109 mri_->copyRegToReg(*fn.begin(), fn.begin()->begin(),
110 FirstLiveIn, FirstLiveIn, RC);
111 assert(OldFirstMI != fn.begin()->begin() &&
112 "copyRetToReg didn't insert anything!");
113 }
114
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000115 // number MachineInstrs
116 unsigned miIndex = 0;
117 for (MachineFunction::iterator mbb = mf_->begin(), mbbEnd = mf_->end();
118 mbb != mbbEnd; ++mbb)
119 for (MachineBasicBlock::iterator mi = mbb->begin(), miEnd = mbb->end();
120 mi != miEnd; ++mi) {
121 bool inserted = mi2iMap_.insert(std::make_pair(mi, miIndex)).second;
122 assert(inserted && "multiple MachineInstr -> index mappings");
123 i2miMap_.push_back(mi);
124 miIndex += InstrSlots::NUM;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000125 }
Alkis Evlogimenosd6e40a62004-01-14 10:44:29 +0000126
Chris Lattner799a9192005-04-09 16:17:50 +0000127 // Note intervals due to live-in values.
128 if (fn.livein_begin() != fn.livein_end()) {
129 MachineBasicBlock *Entry = fn.begin();
Chris Lattner712ad0c2005-05-13 07:08:07 +0000130 for (MachineFunction::livein_iterator I = fn.livein_begin(),
Chris Lattner799a9192005-04-09 16:17:50 +0000131 E = fn.livein_end(); I != E; ++I) {
132 handlePhysicalRegisterDef(Entry, Entry->begin(),
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000133 getOrCreateInterval(I->first), 0, 0, true);
Chris Lattner712ad0c2005-05-13 07:08:07 +0000134 for (const unsigned* AS = mri_->getAliasSet(I->first); *AS; ++AS)
Chris Lattner799a9192005-04-09 16:17:50 +0000135 handlePhysicalRegisterDef(Entry, Entry->begin(),
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000136 getOrCreateInterval(*AS), 0, 0, true);
Chris Lattner799a9192005-04-09 16:17:50 +0000137 }
138 }
139
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000140 computeIntervals();
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000141
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000142 numIntervals += getNumIntervals();
143
Chris Lattner38135af2005-05-14 05:34:15 +0000144 DEBUG(std::cerr << "********** INTERVALS **********\n";
145 for (iterator I = begin(), E = end(); I != E; ++I) {
146 I->second.print(std::cerr, mri_);
147 std::cerr << "\n";
148 });
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000149
150 // join intervals if requested
151 if (EnableJoining) joinIntervals();
152
153 numIntervalsAfter += getNumIntervals();
154
155 // perform a final pass over the instructions and compute spill
156 // weights, coalesce virtual registers and remove identity moves
157 const LoopInfo& loopInfo = getAnalysis<LoopInfo>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000158
159 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
160 mbbi != mbbe; ++mbbi) {
161 MachineBasicBlock* mbb = mbbi;
162 unsigned loopDepth = loopInfo.getLoopDepth(mbb->getBasicBlock());
163
164 for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();
165 mii != mie; ) {
166 // if the move will be an identity move delete it
167 unsigned srcReg, dstReg, RegRep;
Chris Lattnerf768bba2005-03-09 23:05:19 +0000168 if (tii_->isMoveInstr(*mii, srcReg, dstReg) &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000169 (RegRep = rep(srcReg)) == rep(dstReg)) {
170 // remove from def list
171 LiveInterval &interval = getOrCreateInterval(RegRep);
172 // remove index -> MachineInstr and
173 // MachineInstr -> index mappings
174 Mi2IndexMap::iterator mi2i = mi2iMap_.find(mii);
175 if (mi2i != mi2iMap_.end()) {
176 i2miMap_[mi2i->second/InstrSlots::NUM] = 0;
177 mi2iMap_.erase(mi2i);
178 }
179 mii = mbbi->erase(mii);
180 ++numPeep;
181 }
182 else {
183 for (unsigned i = 0; i < mii->getNumOperands(); ++i) {
184 const MachineOperand& mop = mii->getOperand(i);
185 if (mop.isRegister() && mop.getReg() &&
186 MRegisterInfo::isVirtualRegister(mop.getReg())) {
187 // replace register with representative register
188 unsigned reg = rep(mop.getReg());
189 mii->SetMachineOperandReg(i, reg);
190
191 LiveInterval &RegInt = getInterval(reg);
192 RegInt.weight +=
Chris Lattner7a36ae82004-10-25 18:40:47 +0000193 (mop.isUse() + mop.isDef()) * pow(10.0F, (int)loopDepth);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000194 }
195 }
196 ++mii;
197 }
198 }
199 }
200
Chris Lattner70ca3582004-09-30 15:59:17 +0000201 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000202 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000203}
204
Chris Lattner70ca3582004-09-30 15:59:17 +0000205/// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000206void LiveIntervals::print(std::ostream &O, const Module* ) const {
Chris Lattner70ca3582004-09-30 15:59:17 +0000207 O << "********** INTERVALS **********\n";
Chris Lattner8e7a7092005-07-27 23:03:38 +0000208 for (const_iterator I = begin(), E = end(); I != E; ++I) {
209 I->second.print(std::cerr, mri_);
210 std::cerr << "\n";
211 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000212
213 O << "********** MACHINEINSTRS **********\n";
214 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
215 mbbi != mbbe; ++mbbi) {
216 O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
217 for (MachineBasicBlock::iterator mii = mbbi->begin(),
218 mie = mbbi->end(); mii != mie; ++mii) {
Chris Lattner477e4552004-09-30 16:10:45 +0000219 O << getInstructionIndex(mii) << '\t' << *mii;
Chris Lattner70ca3582004-09-30 15:59:17 +0000220 }
221 }
222}
223
Chris Lattner70ca3582004-09-30 15:59:17 +0000224std::vector<LiveInterval*> LiveIntervals::
225addIntervalsForSpills(const LiveInterval &li, VirtRegMap &vrm, int slot) {
Alkis Evlogimenosd8d26b32004-08-27 18:59:22 +0000226 // since this is called after the analysis is done we don't know if
227 // LiveVariables is available
228 lv_ = getAnalysisToUpdate<LiveVariables>();
229
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000230 std::vector<LiveInterval*> added;
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +0000231
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000232 assert(li.weight != HUGE_VAL &&
233 "attempt to spill already spilled interval!");
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000234
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000235 DEBUG(std::cerr << "\t\t\t\tadding intervals for spills for interval: "
236 << li << '\n');
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000237
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000238 const TargetRegisterClass* rc = mf_->getSSARegMap()->getRegClass(li.reg);
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +0000239
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000240 for (LiveInterval::Ranges::const_iterator
241 i = li.ranges.begin(), e = li.ranges.end(); i != e; ++i) {
242 unsigned index = getBaseIndex(i->start);
243 unsigned end = getBaseIndex(i->end-1) + InstrSlots::NUM;
244 for (; index != end; index += InstrSlots::NUM) {
245 // skip deleted instructions
246 while (index != end && !getInstructionFromIndex(index))
247 index += InstrSlots::NUM;
248 if (index == end) break;
Chris Lattner8640f4e2004-07-19 15:16:53 +0000249
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000250 MachineBasicBlock::iterator mi = getInstructionFromIndex(index);
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000251
Chris Lattnerb11443d2005-09-09 19:17:47 +0000252 // NewRegLiveIn - This instruction might have multiple uses of the spilled
253 // register. In this case, for the first use, keep track of the new vreg
254 // that we reload it into. If we see a second use, reuse this vreg
255 // instead of creating live ranges for two reloads.
256 unsigned NewRegLiveIn = 0;
257
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000258 for_operand:
259 for (unsigned i = 0; i != mi->getNumOperands(); ++i) {
260 MachineOperand& mop = mi->getOperand(i);
261 if (mop.isRegister() && mop.getReg() == li.reg) {
Chris Lattnerb11443d2005-09-09 19:17:47 +0000262 if (NewRegLiveIn && mop.isUse()) {
263 // We already emitted a reload of this value, reuse it for
264 // subsequent operands.
265 mi->SetMachineOperandReg(i, NewRegLiveIn);
266 DEBUG(std::cerr << "\t\t\t\treused reload into reg" << NewRegLiveIn
267 << " for operand #" << i << '\n');
268 mi->dump();
269 } else if (MachineInstr* fmi = mri_->foldMemoryOperand(mi, i, slot)) {
270 // Attempt to fold the memory reference into the instruction. If we
271 // can do this, we don't need to insert spill code.
Alkis Evlogimenosd8d26b32004-08-27 18:59:22 +0000272 if (lv_)
273 lv_->instructionChanged(mi, fmi);
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000274 vrm.virtFolded(li.reg, mi, i, fmi);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000275 mi2iMap_.erase(mi);
276 i2miMap_[index/InstrSlots::NUM] = fmi;
277 mi2iMap_[fmi] = index;
Chris Lattner477e4552004-09-30 16:10:45 +0000278 MachineBasicBlock &MBB = *mi->getParent();
279 mi = MBB.insert(MBB.erase(mi), fmi);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000280 ++numFolded;
Chris Lattner477e4552004-09-30 16:10:45 +0000281
282 // Folding the load/store can completely change the instruction in
283 // unpredictable ways, rescan it from the beginning.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000284 goto for_operand;
Chris Lattner477e4552004-09-30 16:10:45 +0000285 } else {
Chris Lattner70ca3582004-09-30 15:59:17 +0000286 // This is tricky. We need to add information in the interval about
287 // the spill code so we have to use our extra load/store slots.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000288 //
Chris Lattner70ca3582004-09-30 15:59:17 +0000289 // If we have a use we are going to have a load so we start the
290 // interval from the load slot onwards. Otherwise we start from the
291 // def slot.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000292 unsigned start = (mop.isUse() ?
293 getLoadIndex(index) :
294 getDefIndex(index));
Chris Lattner70ca3582004-09-30 15:59:17 +0000295 // If we have a def we are going to have a store right after it so
296 // we end the interval after the use of the next
297 // instruction. Otherwise we end after the use of this instruction.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000298 unsigned end = 1 + (mop.isDef() ?
299 getStoreIndex(index) :
300 getUseIndex(index));
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +0000301
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000302 // create a new register for this spill
Chris Lattnerb11443d2005-09-09 19:17:47 +0000303 NewRegLiveIn = mf_->getSSARegMap()->createVirtualRegister(rc);
304 mi->SetMachineOperandReg(i, NewRegLiveIn);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000305 vrm.grow();
Chris Lattnerb11443d2005-09-09 19:17:47 +0000306 vrm.assignVirt2StackSlot(NewRegLiveIn, slot);
307 LiveInterval& nI = getOrCreateInterval(NewRegLiveIn);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000308 assert(nI.empty());
Chris Lattner70ca3582004-09-30 15:59:17 +0000309
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000310 // the spill weight is now infinity as it
311 // cannot be spilled again
Chris Lattner28696be2005-01-08 19:55:00 +0000312 nI.weight = float(HUGE_VAL);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000313 LiveRange LR(start, end, nI.getNextValue());
314 DEBUG(std::cerr << " +" << LR);
315 nI.addRange(LR);
316 added.push_back(&nI);
Chris Lattner70ca3582004-09-30 15:59:17 +0000317
Alkis Evlogimenosd8d26b32004-08-27 18:59:22 +0000318 // update live variables if it is available
319 if (lv_)
Chris Lattnerb11443d2005-09-09 19:17:47 +0000320 lv_->addVirtualRegisterKilled(NewRegLiveIn, mi);
321
322 // If this is a live in, reuse it for subsequent live-ins. If it's
323 // a def, we can't do this.
324 if (!mop.isUse()) NewRegLiveIn = 0;
325
Alkis Evlogimenosd8d26b32004-08-27 18:59:22 +0000326 DEBUG(std::cerr << "\t\t\t\tadded new interval: " << nI << '\n');
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000327 }
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000328 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000329 }
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000330 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000331 }
Alkis Evlogimenos26f5a692004-05-30 07:24:39 +0000332
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000333 return added;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000334}
335
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000336void LiveIntervals::printRegName(unsigned reg) const
337{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000338 if (MRegisterInfo::isPhysicalRegister(reg))
339 std::cerr << mri_->getName(reg);
340 else
341 std::cerr << "%reg" << reg;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000342}
343
344void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock* mbb,
345 MachineBasicBlock::iterator mi,
Chris Lattner418da552004-06-21 13:10:56 +0000346 LiveInterval& interval)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000347{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000348 DEBUG(std::cerr << "\t\tregister: "; printRegName(interval.reg));
349 LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000350
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000351 // Virtual registers may be defined multiple times (due to phi
352 // elimination and 2-addr elimination). Much of what we do only has to be
353 // done once for the vreg. We use an empty interval to detect the first
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000354 // time we see a vreg.
355 if (interval.empty()) {
356 // Get the Idx of the defining instructions.
357 unsigned defIndex = getDefIndex(getInstructionIndex(mi));
Chris Lattner6097d132004-07-19 02:15:56 +0000358
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000359 unsigned ValNum = interval.getNextValue();
360 assert(ValNum == 0 && "First value in interval is not 0?");
361 ValNum = 0; // Clue in the optimizer.
Chris Lattner7ac2d312004-07-24 02:59:07 +0000362
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000363 // Loop over all of the blocks that the vreg is defined in. There are
364 // two cases we have to handle here. The most common case is a vreg
365 // whose lifetime is contained within a basic block. In this case there
366 // will be a single kill, in MBB, which comes after the definition.
367 if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
368 // FIXME: what about dead vars?
369 unsigned killIdx;
370 if (vi.Kills[0] != mi)
371 killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
372 else
373 killIdx = defIndex+1;
Chris Lattner6097d132004-07-19 02:15:56 +0000374
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000375 // If the kill happens after the definition, we have an intra-block
376 // live range.
377 if (killIdx > defIndex) {
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000378 assert(vi.AliveBlocks.empty() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000379 "Shouldn't be alive across any blocks!");
380 LiveRange LR(defIndex, killIdx, ValNum);
381 interval.addRange(LR);
382 DEBUG(std::cerr << " +" << LR << "\n");
383 return;
384 }
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +0000385 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000386
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000387 // The other case we handle is when a virtual register lives to the end
388 // of the defining block, potentially live across some blocks, then is
389 // live into some number of blocks, but gets killed. Start by adding a
390 // range that goes from this definition to the end of the defining block.
Alkis Evlogimenosd19e2902004-08-31 17:39:15 +0000391 LiveRange NewLR(defIndex,
392 getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
393 ValNum);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000394 DEBUG(std::cerr << " +" << NewLR);
395 interval.addRange(NewLR);
396
397 // Iterate over all of the blocks that the variable is completely
398 // live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
399 // live interval.
400 for (unsigned i = 0, e = vi.AliveBlocks.size(); i != e; ++i) {
401 if (vi.AliveBlocks[i]) {
402 MachineBasicBlock* mbb = mf_->getBlockNumbered(i);
403 if (!mbb->empty()) {
404 LiveRange LR(getInstructionIndex(&mbb->front()),
Alkis Evlogimenosd19e2902004-08-31 17:39:15 +0000405 getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000406 ValNum);
407 interval.addRange(LR);
408 DEBUG(std::cerr << " +" << LR);
409 }
410 }
411 }
412
413 // Finally, this virtual register is live from the start of any killing
414 // block to the 'use' slot of the killing instruction.
415 for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
416 MachineInstr *Kill = vi.Kills[i];
417 LiveRange LR(getInstructionIndex(Kill->getParent()->begin()),
Alkis Evlogimenosd19e2902004-08-31 17:39:15 +0000418 getUseIndex(getInstructionIndex(Kill))+1,
419 ValNum);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000420 interval.addRange(LR);
421 DEBUG(std::cerr << " +" << LR);
422 }
423
424 } else {
425 // If this is the second time we see a virtual register definition, it
426 // must be due to phi elimination or two addr elimination. If this is
427 // the result of two address elimination, then the vreg is the first
428 // operand, and is a def-and-use.
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000429 if (mi->getOperand(0).isRegister() &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000430 mi->getOperand(0).getReg() == interval.reg &&
431 mi->getOperand(0).isDef() && mi->getOperand(0).isUse()) {
432 // If this is a two-address definition, then we have already processed
433 // the live range. The only problem is that we didn't realize there
434 // are actually two values in the live interval. Because of this we
435 // need to take the LiveRegion that defines this register and split it
436 // into two values.
437 unsigned DefIndex = getDefIndex(getInstructionIndex(vi.DefInst));
438 unsigned RedefIndex = getDefIndex(getInstructionIndex(mi));
439
440 // Delete the initial value, which should be short and continuous,
441 // becuase the 2-addr copy must be in the same MBB as the redef.
442 interval.removeRange(DefIndex, RedefIndex);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000443
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000444 LiveRange LR(DefIndex, RedefIndex, interval.getNextValue());
445 DEBUG(std::cerr << " replace range with " << LR);
446 interval.addRange(LR);
447
448 // If this redefinition is dead, we need to add a dummy unit live
449 // range covering the def slot.
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000450 if (lv_->RegisterDefIsDead(mi, interval.reg))
451 interval.addRange(LiveRange(RedefIndex, RedefIndex+1, 0));
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000452
453 DEBUG(std::cerr << "RESULT: " << interval);
454
455 } else {
456 // Otherwise, this must be because of phi elimination. If this is the
457 // first redefinition of the vreg that we have seen, go back and change
458 // the live range in the PHI block to be a different value number.
459 if (interval.containsOneValue()) {
460 assert(vi.Kills.size() == 1 &&
461 "PHI elimination vreg should have one kill, the PHI itself!");
462
463 // Remove the old range that we now know has an incorrect number.
464 MachineInstr *Killer = vi.Kills[0];
465 unsigned Start = getInstructionIndex(Killer->getParent()->begin());
466 unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
467 DEBUG(std::cerr << "Removing [" << Start << "," << End << "] from: "
468 << interval << "\n");
469 interval.removeRange(Start, End);
470 DEBUG(std::cerr << "RESULT: " << interval);
471
472 // Replace the interval with one of a NEW value number.
473 LiveRange LR(Start, End, interval.getNextValue());
474 DEBUG(std::cerr << " replace range with " << LR);
475 interval.addRange(LR);
476 DEBUG(std::cerr << "RESULT: " << interval);
477 }
478
479 // In the case of PHI elimination, each variable definition is only
480 // live until the end of the block. We've already taken care of the
481 // rest of the live range.
482 unsigned defIndex = getDefIndex(getInstructionIndex(mi));
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000483 LiveRange LR(defIndex,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000484 getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
485 interval.getNextValue());
486 interval.addRange(LR);
487 DEBUG(std::cerr << " +" << LR);
488 }
489 }
490
491 DEBUG(std::cerr << '\n');
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000492}
493
Chris Lattnerf35fef72004-07-23 21:24:19 +0000494void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000495 MachineBasicBlock::iterator mi,
Chris Lattnerf768bba2005-03-09 23:05:19 +0000496 LiveInterval& interval,
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000497 unsigned SrcReg, unsigned DestReg,
498 bool isLiveIn)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000499{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000500 // A physical register cannot be live across basic block, so its
501 // lifetime must end somewhere in its defining basic block.
502 DEBUG(std::cerr << "\t\tregister: "; printRegName(interval.reg));
503 typedef LiveVariables::killed_iterator KillIter;
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000504
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000505 unsigned baseIndex = getInstructionIndex(mi);
506 unsigned start = getDefIndex(baseIndex);
507 unsigned end = start;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000508
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000509 // If it is not used after definition, it is considered dead at
510 // the instruction defining it. Hence its interval is:
511 // [defSlot(def), defSlot(def)+1)
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000512 if (lv_->RegisterDefIsDead(mi, interval.reg)) {
513 DEBUG(std::cerr << " dead");
514 end = getDefIndex(start) + 1;
515 goto exit;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000516 }
517
518 // If it is not dead on definition, it must be killed by a
519 // subsequent instruction. Hence its interval is:
520 // [defSlot(def), useSlot(kill)+1)
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000521 while (++mi != MBB->end()) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000522 baseIndex += InstrSlots::NUM;
Chris Lattnerab4b66d2005-08-23 22:51:41 +0000523 if (lv_->KillsRegister(mi, interval.reg)) {
524 DEBUG(std::cerr << " killed");
525 end = getUseIndex(baseIndex) + 1;
526 goto exit;
Alkis Evlogimenosaf254732004-01-13 22:26:14 +0000527 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000528 }
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000529
530 // The only case we should have a dead physreg here without a killing or
531 // instruction where we know it's dead is if it is live-in to the function
532 // and never used.
533 assert(isLiveIn && "physreg was not killed in defining block!");
534 end = getDefIndex(start) + 1; // It's dead.
Alkis Evlogimenos02ba13c2004-01-31 23:13:30 +0000535
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000536exit:
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000537 assert(start < end && "did not find end of interval?");
Chris Lattnerf768bba2005-03-09 23:05:19 +0000538
539 // Finally, if this is defining a new range for the physical register, and if
540 // that physreg is just a copy from a vreg, and if THAT vreg was a copy from
541 // the physreg, then the new fragment has the same value as the one copied
542 // into the vreg.
543 if (interval.reg == DestReg && !interval.empty() &&
Chris Lattnere97568c2005-03-10 20:59:51 +0000544 MRegisterInfo::isVirtualRegister(SrcReg)) {
Chris Lattnerf768bba2005-03-09 23:05:19 +0000545
546 // Get the live interval for the vreg, see if it is defined by a copy.
547 LiveInterval &SrcInterval = getOrCreateInterval(SrcReg);
548
549 if (SrcInterval.containsOneValue()) {
550 assert(!SrcInterval.empty() && "Can't contain a value and be empty!");
551
552 // Get the first index of the first range. Though the interval may have
553 // multiple liveranges in it, we only check the first.
554 unsigned StartIdx = SrcInterval.begin()->start;
555 MachineInstr *SrcDefMI = getInstructionFromIndex(StartIdx);
556
557 // Check to see if the vreg was defined by a copy instruction, and that
558 // the source was this physreg.
559 unsigned VRegSrcSrc, VRegSrcDest;
560 if (tii_->isMoveInstr(*SrcDefMI, VRegSrcSrc, VRegSrcDest) &&
561 SrcReg == VRegSrcDest && VRegSrcSrc == DestReg) {
562 // Okay, now we know that the vreg was defined by a copy from this
563 // physreg. Find the value number being copied and use it as the value
564 // for this range.
565 const LiveRange *DefRange = interval.getLiveRangeContaining(StartIdx-1);
566 if (DefRange) {
567 LiveRange LR(start, end, DefRange->ValId);
568 interval.addRange(LR);
569 DEBUG(std::cerr << " +" << LR << '\n');
570 return;
571 }
572 }
573 }
574 }
575
576
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000577 LiveRange LR(start, end, interval.getNextValue());
578 interval.addRange(LR);
579 DEBUG(std::cerr << " +" << LR << '\n');
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000580}
581
Chris Lattnerf35fef72004-07-23 21:24:19 +0000582void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
583 MachineBasicBlock::iterator MI,
584 unsigned reg) {
585 if (MRegisterInfo::isVirtualRegister(reg))
586 handleVirtualRegisterDef(MBB, MI, getOrCreateInterval(reg));
Alkis Evlogimenos53278012004-08-26 22:22:38 +0000587 else if (allocatableRegs_[reg]) {
Chris Lattnerf768bba2005-03-09 23:05:19 +0000588 unsigned SrcReg = 0, DestReg = 0;
589 bool IsMove = tii_->isMoveInstr(*MI, SrcReg, DestReg);
590
591 handlePhysicalRegisterDef(MBB, MI, getOrCreateInterval(reg),
592 SrcReg, DestReg);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000593 for (const unsigned* AS = mri_->getAliasSet(reg); *AS; ++AS)
Chris Lattnerf768bba2005-03-09 23:05:19 +0000594 handlePhysicalRegisterDef(MBB, MI, getOrCreateInterval(*AS),
595 SrcReg, DestReg);
Chris Lattnerf35fef72004-07-23 21:24:19 +0000596 }
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000597}
598
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000599/// computeIntervals - computes the live intervals for virtual
Alkis Evlogimenos4d46e1e2004-01-31 14:37:41 +0000600/// registers. for some ordering of the machine instructions [1,N] a
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000601/// live interval is an interval [i, j) where 1 <= i <= j < N for
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000602/// which a variable is live
603void LiveIntervals::computeIntervals()
604{
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000605 DEBUG(std::cerr << "********** COMPUTING LIVE INTERVALS **********\n");
606 DEBUG(std::cerr << "********** Function: "
607 << ((Value*)mf_->getFunction())->getName() << '\n');
Chris Lattner799a9192005-04-09 16:17:50 +0000608 bool IgnoreFirstInstr = mf_->livein_begin() != mf_->livein_end();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000609
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000610 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000611 I != E; ++I) {
612 MachineBasicBlock* mbb = I;
613 DEBUG(std::cerr << ((Value*)mbb->getBasicBlock())->getName() << ":\n");
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +0000614
Chris Lattner799a9192005-04-09 16:17:50 +0000615 MachineBasicBlock::iterator mi = mbb->begin(), miEnd = mbb->end();
616 if (IgnoreFirstInstr) { ++mi; IgnoreFirstInstr = false; }
617 for (; mi != miEnd; ++mi) {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000618 const TargetInstrDescriptor& tid =
619 tm_->getInstrInfo()->get(mi->getOpcode());
Chris Lattner477e4552004-09-30 16:10:45 +0000620 DEBUG(std::cerr << getInstructionIndex(mi) << "\t" << *mi);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000621
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000622 // handle implicit defs
623 for (const unsigned* id = tid.ImplicitDefs; *id; ++id)
624 handleRegisterDef(mbb, mi, *id);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000625
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000626 // handle explicit defs
627 for (int i = mi->getNumOperands() - 1; i >= 0; --i) {
628 MachineOperand& mop = mi->getOperand(i);
629 // handle register defs - build intervals
630 if (mop.isRegister() && mop.getReg() && mop.isDef())
631 handleRegisterDef(mbb, mi, mop.getReg());
632 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000633 }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000634 }
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000635}
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000636
Chris Lattner1c5c0442004-07-19 14:08:10 +0000637void LiveIntervals::joinIntervalsInMachineBB(MachineBasicBlock *MBB) {
Chris Lattner7ac2d312004-07-24 02:59:07 +0000638 DEBUG(std::cerr << ((Value*)MBB->getBasicBlock())->getName() << ":\n");
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000639
Chris Lattner7ac2d312004-07-24 02:59:07 +0000640 for (MachineBasicBlock::iterator mi = MBB->begin(), mie = MBB->end();
641 mi != mie; ++mi) {
642 DEBUG(std::cerr << getInstructionIndex(mi) << '\t' << *mi);
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000643
Chris Lattner7ac2d312004-07-24 02:59:07 +0000644 // we only join virtual registers with allocatable
645 // physical registers since we do not have liveness information
646 // on not allocatable physical registers
647 unsigned regA, regB;
Chris Lattnerf768bba2005-03-09 23:05:19 +0000648 if (tii_->isMoveInstr(*mi, regA, regB) &&
Alkis Evlogimenos53278012004-08-26 22:22:38 +0000649 (MRegisterInfo::isVirtualRegister(regA) || allocatableRegs_[regA]) &&
650 (MRegisterInfo::isVirtualRegister(regB) || allocatableRegs_[regB])) {
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000651
Chris Lattner7ac2d312004-07-24 02:59:07 +0000652 // Get representative registers.
653 regA = rep(regA);
654 regB = rep(regB);
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000655
Chris Lattner7ac2d312004-07-24 02:59:07 +0000656 // If they are already joined we continue.
657 if (regA == regB)
658 continue;
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000659
Chris Lattner7ac2d312004-07-24 02:59:07 +0000660 // If they are both physical registers, we cannot join them.
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000661 if (MRegisterInfo::isPhysicalRegister(regA) &&
Chris Lattner7ac2d312004-07-24 02:59:07 +0000662 MRegisterInfo::isPhysicalRegister(regB))
663 continue;
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000664
Chris Lattner7ac2d312004-07-24 02:59:07 +0000665 // If they are not of the same register class, we cannot join them.
666 if (differingRegisterClasses(regA, regB))
667 continue;
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000668
Chris Lattner7ac2d312004-07-24 02:59:07 +0000669 LiveInterval &IntA = getInterval(regA);
670 LiveInterval &IntB = getInterval(regB);
671 assert(IntA.reg == regA && IntB.reg == regB &&
672 "Register mapping is horribly broken!");
Chris Lattner060913c2004-07-24 04:32:22 +0000673
674 DEBUG(std::cerr << "\t\tInspecting " << IntA << " and " << IntB << ": ");
675
Chris Lattner4df98e52004-07-24 03:32:06 +0000676 // If two intervals contain a single value and are joined by a copy, it
677 // does not matter if the intervals overlap, they can always be joined.
Chris Lattner7ac2d312004-07-24 02:59:07 +0000678 bool TriviallyJoinable =
679 IntA.containsOneValue() && IntB.containsOneValue();
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000680
Chris Lattner7ac2d312004-07-24 02:59:07 +0000681 unsigned MIDefIdx = getDefIndex(getInstructionIndex(mi));
Chris Lattnerc25b55a2004-07-25 07:47:25 +0000682 if ((TriviallyJoinable || IntB.joinable(IntA, MIDefIdx)) &&
Chris Lattner7ac2d312004-07-24 02:59:07 +0000683 !overlapsAliases(&IntA, &IntB)) {
684 IntB.join(IntA, MIDefIdx);
Chris Lattnercef21c32005-07-27 23:11:25 +0000685 DEBUG(std::cerr << "Joined. Result = " << IntB << "\n");
Chris Lattner1c5c0442004-07-19 14:08:10 +0000686
Chris Lattner7ac2d312004-07-24 02:59:07 +0000687 if (!MRegisterInfo::isPhysicalRegister(regA)) {
Chris Lattner4df98e52004-07-24 03:32:06 +0000688 r2iMap_.erase(regA);
Chris Lattner7ac2d312004-07-24 02:59:07 +0000689 r2rMap_[regA] = regB;
690 } else {
691 // Otherwise merge the data structures the other way so we don't lose
692 // the physreg information.
693 r2rMap_[regB] = regA;
694 IntB.reg = regA;
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000695 IntA.swap(IntB);
Chris Lattner4df98e52004-07-24 03:32:06 +0000696 r2iMap_.erase(regB);
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000697 }
Chris Lattner7ac2d312004-07-24 02:59:07 +0000698 ++numJoins;
699 } else {
700 DEBUG(std::cerr << "Interference!\n");
701 }
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000702 }
Chris Lattner7ac2d312004-07-24 02:59:07 +0000703 }
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000704}
705
Chris Lattnercc0d1562004-07-19 14:40:29 +0000706namespace {
707 // DepthMBBCompare - Comparison predicate that sort first based on the loop
708 // depth of the basic block (the unsigned), and then on the MBB number.
709 struct DepthMBBCompare {
710 typedef std::pair<unsigned, MachineBasicBlock*> DepthMBBPair;
711 bool operator()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const {
712 if (LHS.first > RHS.first) return true; // Deeper loops first
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000713 return LHS.first == RHS.first &&
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000714 LHS.second->getNumber() < RHS.second->getNumber();
Chris Lattnercc0d1562004-07-19 14:40:29 +0000715 }
716 };
717}
Chris Lattner1c5c0442004-07-19 14:08:10 +0000718
Chris Lattnercc0d1562004-07-19 14:40:29 +0000719void LiveIntervals::joinIntervals() {
720 DEBUG(std::cerr << "********** JOINING INTERVALS ***********\n");
721
722 const LoopInfo &LI = getAnalysis<LoopInfo>();
723 if (LI.begin() == LI.end()) {
724 // If there are no loops in the function, join intervals in function order.
Chris Lattner1c5c0442004-07-19 14:08:10 +0000725 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
726 I != E; ++I)
727 joinIntervalsInMachineBB(I);
Chris Lattnercc0d1562004-07-19 14:40:29 +0000728 } else {
729 // Otherwise, join intervals in inner loops before other intervals.
730 // Unfortunately we can't just iterate over loop hierarchy here because
731 // there may be more MBB's than BB's. Collect MBB's for sorting.
732 std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs;
733 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
734 I != E; ++I)
735 MBBs.push_back(std::make_pair(LI.getLoopDepth(I->getBasicBlock()), I));
736
737 // Sort by loop depth.
738 std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
739
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000740 // Finally, join intervals in loop nest order.
Chris Lattnercc0d1562004-07-19 14:40:29 +0000741 for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
742 joinIntervalsInMachineBB(MBBs[i].second);
743 }
Chris Lattnerc83e40d2004-07-25 03:24:11 +0000744
745 DEBUG(std::cerr << "*** Register mapping ***\n");
Alkis Evlogimenos5d0d1e32004-09-08 03:01:50 +0000746 DEBUG(for (int i = 0, e = r2rMap_.size(); i != e; ++i)
747 if (r2rMap_[i])
748 std::cerr << " reg " << i << " -> reg " << r2rMap_[i] << "\n");
Chris Lattner1c5c0442004-07-19 14:08:10 +0000749}
750
Chris Lattner7ac2d312004-07-24 02:59:07 +0000751/// Return true if the two specified registers belong to different register
752/// classes. The registers may be either phys or virt regs.
753bool LiveIntervals::differingRegisterClasses(unsigned RegA,
754 unsigned RegB) const {
Alkis Evlogimenos79b0c3f2004-01-23 13:37:51 +0000755
Chris Lattner7ac2d312004-07-24 02:59:07 +0000756 // Get the register classes for the first reg.
Chris Lattnerad3c74f2004-10-26 05:29:18 +0000757 if (MRegisterInfo::isPhysicalRegister(RegA)) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000758 assert(MRegisterInfo::isVirtualRegister(RegB) &&
Chris Lattnerad3c74f2004-10-26 05:29:18 +0000759 "Shouldn't consider two physregs!");
760 return !mf_->getSSARegMap()->getRegClass(RegB)->contains(RegA);
761 }
Chris Lattner7ac2d312004-07-24 02:59:07 +0000762
763 // Compare against the regclass for the second reg.
Chris Lattnerad3c74f2004-10-26 05:29:18 +0000764 const TargetRegisterClass *RegClass = mf_->getSSARegMap()->getRegClass(RegA);
Chris Lattner7ac2d312004-07-24 02:59:07 +0000765 if (MRegisterInfo::isVirtualRegister(RegB))
766 return RegClass != mf_->getSSARegMap()->getRegClass(RegB);
767 else
Chris Lattnerd0d0a1a2004-08-24 17:48:29 +0000768 return !RegClass->contains(RegB);
Chris Lattner7ac2d312004-07-24 02:59:07 +0000769}
770
771bool LiveIntervals::overlapsAliases(const LiveInterval *LHS,
772 const LiveInterval *RHS) const {
773 if (!MRegisterInfo::isPhysicalRegister(LHS->reg)) {
774 if (!MRegisterInfo::isPhysicalRegister(RHS->reg))
775 return false; // vreg-vreg merge has no aliases!
776 std::swap(LHS, RHS);
777 }
778
779 assert(MRegisterInfo::isPhysicalRegister(LHS->reg) &&
780 MRegisterInfo::isVirtualRegister(RHS->reg) &&
781 "first interval must describe a physical register");
782
Chris Lattner4df98e52004-07-24 03:32:06 +0000783 for (const unsigned *AS = mri_->getAliasSet(LHS->reg); *AS; ++AS)
784 if (RHS->overlaps(getInterval(*AS)))
785 return true;
Alkis Evlogimenos79b0c3f2004-01-23 13:37:51 +0000786
Chris Lattner4df98e52004-07-24 03:32:06 +0000787 return false;
Alkis Evlogimenos79b0c3f2004-01-23 13:37:51 +0000788}
789
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000790LiveInterval LiveIntervals::createInterval(unsigned reg) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000791 float Weight = MRegisterInfo::isPhysicalRegister(reg) ?
Chris Lattner28696be2005-01-08 19:55:00 +0000792 (float)HUGE_VAL :0.0F;
Alkis Evlogimenosa1613db2004-07-24 11:44:15 +0000793 return LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000794}