blob: 778ba4a5b95c209a8248a90fb415b325f02de648 [file] [log] [blame]
Chris Lattner85638332004-07-23 17:56:30 +00001//===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Evlogimenos0e9ded72003-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
Jakob Stoklund Olesena8879082012-01-07 07:39:47 +000018#define DEBUG_TYPE "regalloc"
Chris Lattnerb1f89822005-09-21 04:19:09 +000019#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "LiveRangeCalc.h"
21#include "llvm/ADT/DenseSet.h"
22#include "llvm/ADT/STLExtras.h"
Dan Gohman09b04482008-07-25 00:02:30 +000023#include "llvm/Analysis/AliasAnalysis.h"
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000024#include "llvm/CodeGen/LiveVariables.h"
Michael Gottesman9f49d742013-12-14 00:53:32 +000025#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000026#include "llvm/CodeGen/MachineDominators.h"
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000027#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000028#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000029#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000030#include "llvm/CodeGen/VirtRegMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/Value.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000032#include "llvm/Support/BlockFrequency.h"
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +000033#include "llvm/Support/CommandLine.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000034#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000035#include "llvm/Support/ErrorHandling.h"
36#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Target/TargetInstrInfo.h"
38#include "llvm/Target/TargetMachine.h"
39#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenosa5c04ee2004-09-03 18:19:51 +000040#include <algorithm>
Jeff Cohencc08c832006-12-02 02:22:01 +000041#include <cmath>
Chandler Carruthed0881b2012-12-03 16:50:05 +000042#include <limits>
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000043using namespace llvm;
44
Devang Patel8c78a0b2007-05-03 01:11:54 +000045char LiveIntervals::ID = 0;
Jakob Stoklund Olesen1c465892012-08-03 22:12:54 +000046char &llvm::LiveIntervalsID = LiveIntervals::ID;
Owen Anderson8ac477f2010-10-12 19:48:12 +000047INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
48 "Live Interval Analysis", false, false)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000049INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
Owen Anderson8ac477f2010-10-12 19:48:12 +000050INITIALIZE_PASS_DEPENDENCY(LiveVariables)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000051INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Owen Anderson8ac477f2010-10-12 19:48:12 +000052INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
Owen Anderson8ac477f2010-10-12 19:48:12 +000053INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
Owen Andersondf7a4f22010-10-07 22:25:06 +000054 "Live Interval Analysis", false, false)
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000055
Andrew Trick8d02e912013-06-21 18:33:23 +000056#ifndef NDEBUG
57static cl::opt<bool> EnablePrecomputePhysRegs(
58 "precompute-phys-liveness", cl::Hidden,
59 cl::desc("Eagerly compute live intervals for all physreg units."));
60#else
61static bool EnablePrecomputePhysRegs = false;
62#endif // NDEBUG
63
Chris Lattnerbdf12102006-08-24 22:43:55 +000064void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman04023152009-07-31 23:37:33 +000065 AU.setPreservesCFG();
Dan Gohman09b04482008-07-25 00:02:30 +000066 AU.addRequired<AliasAnalysis>();
67 AU.addPreserved<AliasAnalysis>();
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +000068 // LiveVariables isn't really required by this analysis, it is only required
69 // here to make sure it is live during TwoAddressInstructionPass and
70 // PHIElimination. This is temporary.
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000071 AU.addRequired<LiveVariables>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +000072 AU.addPreserved<LiveVariables>();
Andrew Trick5188c002012-02-13 20:44:42 +000073 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +000074 AU.addRequiredTransitiveID(MachineDominatorsID);
Bill Wendling0c209432008-01-04 20:54:55 +000075 AU.addPreservedID(MachineDominatorsID);
Lang Hames05fb9632009-11-03 23:52:08 +000076 AU.addPreserved<SlotIndexes>();
77 AU.addRequiredTransitive<SlotIndexes>();
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000078 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000079}
80
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000081LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
82 DomTree(0), LRCalc(0) {
83 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
84}
85
86LiveIntervals::~LiveIntervals() {
87 delete LRCalc;
88}
89
Chris Lattnerbdf12102006-08-24 22:43:55 +000090void LiveIntervals::releaseMemory() {
Owen Anderson51f689a2008-08-13 21:49:13 +000091 // Free the live intervals themselves.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +000092 for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
93 delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
94 VirtRegIntervals.clear();
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +000095 RegMaskSlots.clear();
96 RegMaskBits.clear();
Jakob Stoklund Olesen25c41952012-02-10 01:26:29 +000097 RegMaskBlocks.clear();
Lang Hamesdab7b062009-07-09 03:57:02 +000098
Matthias Braun34e1be92013-10-10 21:29:02 +000099 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
100 delete RegUnitRanges[i];
101 RegUnitRanges.clear();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000102
Benjamin Kramera0000022010-06-26 11:30:59 +0000103 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
104 VNInfoAllocator.Reset();
Alkis Evlogimenos50d97e32004-01-31 19:59:32 +0000105}
106
Jakob Stoklund Olesen6d13b8f2013-08-14 17:28:46 +0000107/// runOnMachineFunction - calculates LiveIntervals
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000108///
109bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000110 MF = &fn;
111 MRI = &MF->getRegInfo();
112 TM = &fn.getTarget();
113 TRI = TM->getRegisterInfo();
114 TII = TM->getInstrInfo();
115 AA = &getAnalysis<AliasAnalysis>();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000116 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000117 DomTree = &getAnalysis<MachineDominatorTree>();
118 if (!LRCalc)
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000119 LRCalc = new LiveRangeCalc();
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000120
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000121 // Allocate space for all virtual registers.
122 VirtRegIntervals.resize(MRI->getNumVirtRegs());
123
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +0000124 computeVirtRegs();
125 computeRegMasks();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000126 computeLiveInRegUnits();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000127
Andrew Trick8d02e912013-06-21 18:33:23 +0000128 if (EnablePrecomputePhysRegs) {
129 // For stress testing, precompute live ranges of all physical register
130 // units, including reserved registers.
131 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
132 getRegUnit(i);
133 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000134 DEBUG(dump());
Alkis Evlogimenosa6983082004-08-04 09:46:26 +0000135 return true;
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +0000136}
137
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000138/// print - Implement the dump method.
Chris Lattner13626022009-08-23 06:03:38 +0000139void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000140 OS << "********** INTERVALS **********\n";
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000141
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000142 // Dump the regunits.
Matthias Braun34e1be92013-10-10 21:29:02 +0000143 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
144 if (LiveRange *LR = RegUnitRanges[i])
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000145 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000146
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000147 // Dump the virtregs.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000148 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
149 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
150 if (hasInterval(Reg))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000151 OS << getInterval(Reg) << '\n';
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000152 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000153
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000154 OS << "RegMasks:";
155 for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
156 OS << ' ' << RegMaskSlots[i];
157 OS << '\n';
158
Evan Cheng7f789592009-09-14 21:33:42 +0000159 printInstrs(OS);
160}
161
162void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000163 OS << "********** MACHINEINSTRS **********\n";
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000164 MF->print(OS, Indexes);
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000165}
166
Manman Ren19f49ac2012-09-11 22:23:19 +0000167#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Evan Cheng7f789592009-09-14 21:33:42 +0000168void LiveIntervals::dumpInstrs() const {
David Greene1a51a212010-01-04 22:49:02 +0000169 printInstrs(dbgs());
Evan Cheng7f789592009-09-14 21:33:42 +0000170}
Manman Ren742534c2012-09-06 19:06:06 +0000171#endif
Evan Cheng7f789592009-09-14 21:33:42 +0000172
Owen Anderson51f689a2008-08-13 21:49:13 +0000173LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Aaron Ballman04999042013-11-13 00:15:44 +0000174 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
175 llvm::huge_valf : 0.0F;
Owen Anderson51f689a2008-08-13 21:49:13 +0000176 return new LiveInterval(reg, Weight);
Alkis Evlogimenos237f2032004-04-09 18:07:57 +0000177}
Evan Chengbe51f282007-11-12 06:35:08 +0000178
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000179
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000180/// computeVirtRegInterval - Compute the live interval of a virtual register,
181/// based on defs and uses.
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000182void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000183 assert(LRCalc && "LRCalc not initialized.");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000184 assert(LI.empty() && "Should only compute empty intervals.");
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000185 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
186 LRCalc->createDeadDefs(LI);
187 LRCalc->extendToUses(LI);
188}
189
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000190void LiveIntervals::computeVirtRegs() {
191 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
192 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
193 if (MRI->reg_nodbg_empty(Reg))
194 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000195 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000196 }
197}
198
199void LiveIntervals::computeRegMasks() {
200 RegMaskBlocks.resize(MF->getNumBlockIDs());
201
202 // Find all instructions with regmask operands.
203 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
204 MBBI != E; ++MBBI) {
205 MachineBasicBlock *MBB = MBBI;
206 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
207 RMB.first = RegMaskSlots.size();
208 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
209 MI != ME; ++MI)
210 for (MIOperands MO(MI); MO.isValid(); ++MO) {
211 if (!MO->isRegMask())
212 continue;
213 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
214 RegMaskBits.push_back(MO->getRegMask());
215 }
216 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000217 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000218 }
219}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000220
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000221//===----------------------------------------------------------------------===//
222// Register Unit Liveness
223//===----------------------------------------------------------------------===//
224//
225// Fixed interference typically comes from ABI boundaries: Function arguments
226// and return values are passed in fixed registers, and so are exception
227// pointers entering landing pads. Certain instructions require values to be
228// present in specific registers. That is also represented through fixed
229// interference.
230//
231
Matthias Braun34e1be92013-10-10 21:29:02 +0000232/// computeRegUnitInterval - Compute the live range of a register unit, based
233/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000234/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000235void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000236 assert(LRCalc && "LRCalc not initialized.");
237 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
238
239 // The physregs aliasing Unit are the roots and their super-registers.
240 // Create all values as dead defs before extending to uses. Note that roots
241 // may share super-registers. That's OK because createDeadDefs() is
242 // idempotent. It is very rare for a register unit to have multiple roots, so
243 // uniquing super-registers is probably not worthwhile.
244 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000245 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
246 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000247 if (!MRI->reg_empty(*Supers))
Matthias Braun34e1be92013-10-10 21:29:02 +0000248 LRCalc->createDeadDefs(LR, *Supers);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000249 }
250 }
251
Matthias Braun34e1be92013-10-10 21:29:02 +0000252 // Now extend LR to reach all uses.
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000253 // Ignore uses of reserved registers. We only track defs of those.
254 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000255 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
256 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000257 unsigned Reg = *Supers;
Jakob Stoklund Olesencea596a2012-10-15 22:14:34 +0000258 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
Matthias Braun34e1be92013-10-10 21:29:02 +0000259 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000260 }
261 }
262}
263
264
265/// computeLiveInRegUnits - Precompute the live ranges of any register units
266/// that are live-in to an ABI block somewhere. Register values can appear
267/// without a corresponding def when entering the entry block or a landing pad.
268///
269void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000270 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000271 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
272
Matthias Braun34e1be92013-10-10 21:29:02 +0000273 // Keep track of the live range sets allocated.
274 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000275
276 // Check all basic blocks for live-ins.
277 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
278 MFI != MFE; ++MFI) {
279 const MachineBasicBlock *MBB = MFI;
280
281 // We only care about ABI blocks: Entry + landing pads.
282 if ((MFI != MF->begin() && !MBB->isLandingPad()) || MBB->livein_empty())
283 continue;
284
285 // Create phi-defs at Begin for all live-in registers.
286 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
287 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
288 for (MachineBasicBlock::livein_iterator LII = MBB->livein_begin(),
289 LIE = MBB->livein_end(); LII != LIE; ++LII) {
290 for (MCRegUnitIterator Units(*LII, TRI); Units.isValid(); ++Units) {
291 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000292 LiveRange *LR = RegUnitRanges[Unit];
293 if (!LR) {
294 LR = RegUnitRanges[Unit] = new LiveRange();
295 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000296 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000297 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000298 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000299 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
300 }
301 }
302 DEBUG(dbgs() << '\n');
303 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000304 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000305
Matthias Braun34e1be92013-10-10 21:29:02 +0000306 // Compute the 'normal' part of the ranges.
307 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
308 unsigned Unit = NewRanges[i];
309 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
310 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000311}
312
313
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000314/// shrinkToUses - After removing some uses of a register, shrink its live
315/// range to just the remaining uses. This method does not compute reaching
316/// defs for new uses, and it doesn't remove dead defs.
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000317bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000318 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000319 DEBUG(dbgs() << "Shrink: " << *li << '\n');
320 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000321 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000322 // Find all the values used, including PHI kills.
323 SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList;
324
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000325 // Blocks that have already been added to WorkList as live-out.
326 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
327
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000328 // Visit all instructions reading li->reg.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000329 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(li->reg);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000330 MachineInstr *UseMI = I.skipInstruction();) {
331 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
332 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000333 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000334 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000335 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000336 if (!VNI) {
337 // This shouldn't happen: readsVirtualRegister returns true, but there is
338 // no live value. It is likely caused by a target getting <undef> flags
339 // wrong.
340 DEBUG(dbgs() << Idx << '\t' << *UseMI
341 << "Warning: Instr claims to read non-existent value in "
342 << *li << '\n');
343 continue;
344 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000345 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000346 // register one slot early.
347 if (VNInfo *DefVNI = LRQ.valueDefined())
348 Idx = DefVNI->def;
349
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000350 WorkList.push_back(std::make_pair(Idx, VNI));
351 }
352
Matthias Braund7df9352013-10-10 21:28:47 +0000353 // Create new live ranges with only minimal live segments per def.
354 LiveRange NewLR;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000355 for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end();
356 I != E; ++I) {
357 VNInfo *VNI = *I;
358 if (VNI->isUnused())
359 continue;
Matthias Braund7df9352013-10-10 21:28:47 +0000360 NewLR.addSegment(LiveRange::Segment(VNI->def, VNI->def.getDeadSlot(), VNI));
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000361 }
362
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000363 // Keep track of the PHIs that are in use.
364 SmallPtrSet<VNInfo*, 8> UsedPHIs;
365
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000366 // Extend intervals to reach all uses in WorkList.
367 while (!WorkList.empty()) {
368 SlotIndex Idx = WorkList.back().first;
369 VNInfo *VNI = WorkList.back().second;
370 WorkList.pop_back();
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000371 const MachineBasicBlock *MBB = getMBBFromIndex(Idx.getPrevSlot());
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000372 SlotIndex BlockStart = getMBBStartIdx(MBB);
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000373
374 // Extend the live range for VNI to be live at Idx.
Matthias Braund7df9352013-10-10 21:28:47 +0000375 if (VNInfo *ExtVNI = NewLR.extendInBlock(BlockStart, Idx)) {
Nick Lewycky68faa2d2011-03-02 01:43:30 +0000376 (void)ExtVNI;
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000377 assert(ExtVNI == VNI && "Unexpected existing value number");
378 // Is this a PHIDef we haven't seen before?
Jakob Stoklund Olesend58c8d12011-03-03 00:20:51 +0000379 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI))
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000380 continue;
381 // The PHI is live, make sure the predecessors are live-out.
382 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
383 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000384 if (!LiveOut.insert(*PI))
385 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000386 SlotIndex Stop = getMBBEndIdx(*PI);
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000387 // A predecessor is not required to have a live-out value for a PHI.
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000388 if (VNInfo *PVNI = li->getVNInfoBefore(Stop))
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000389 WorkList.push_back(std::make_pair(Stop, PVNI));
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000390 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000391 continue;
392 }
393
394 // VNI is live-in to MBB.
395 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
Matthias Braund7df9352013-10-10 21:28:47 +0000396 NewLR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000397
398 // Make sure VNI is live-out from the predecessors.
399 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
400 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000401 if (!LiveOut.insert(*PI))
402 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000403 SlotIndex Stop = getMBBEndIdx(*PI);
404 assert(li->getVNInfoBefore(Stop) == VNI &&
405 "Wrong value out of predecessor");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000406 WorkList.push_back(std::make_pair(Stop, VNI));
407 }
408 }
409
410 // Handle dead values.
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000411 bool CanSeparate = false;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000412 for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end();
413 I != E; ++I) {
414 VNInfo *VNI = *I;
415 if (VNI->isUnused())
416 continue;
Matthias Braund7df9352013-10-10 21:28:47 +0000417 LiveRange::iterator LRI = NewLR.FindSegmentContaining(VNI->def);
418 assert(LRI != NewLR.end() && "Missing segment for PHI");
419 if (LRI->end != VNI->def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000420 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000421 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000422 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000423 VNI->markUnused();
Matthias Braund7df9352013-10-10 21:28:47 +0000424 NewLR.removeSegment(LRI->start, LRI->end);
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000425 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
426 CanSeparate = true;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000427 } else {
428 // This is a dead def. Make sure the instruction knows.
429 MachineInstr *MI = getInstructionFromIndex(VNI->def);
430 assert(MI && "No instruction defining live value");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000431 MI->addRegisterDead(li->reg, TRI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000432 if (dead && MI->allDefsAreDead()) {
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +0000433 DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000434 dead->push_back(MI);
435 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000436 }
437 }
438
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000439 // Move the trimmed segments back.
Matthias Braund7df9352013-10-10 21:28:47 +0000440 li->segments.swap(NewLR.segments);
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +0000441 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000442 return CanSeparate;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000443}
444
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000445void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000446 ArrayRef<SlotIndex> Indices) {
447 assert(LRCalc && "LRCalc not initialized.");
448 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
449 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000450 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000451}
452
453void LiveIntervals::pruneValue(LiveInterval *LI, SlotIndex Kill,
454 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000455 LiveQueryResult LRQ = LI->Query(Kill);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000456 VNInfo *VNI = LRQ.valueOut();
457 if (!VNI)
458 return;
459
460 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
461 SlotIndex MBBStart, MBBEnd;
462 tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB);
463
464 // If VNI isn't live out from KillMBB, the value is trivially pruned.
465 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000466 LI->removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000467 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
468 return;
469 }
470
471 // VNI is live out of KillMBB.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000472 LI->removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000473 if (EndPoints) EndPoints->push_back(MBBEnd);
474
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000475 // Find all blocks that are reachable from KillMBB without leaving VNI's live
476 // range. It is possible that KillMBB itself is reachable, so start a DFS
477 // from each successor.
478 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
479 VisitedTy Visited;
480 for (MachineBasicBlock::succ_iterator
481 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
482 SuccI != SuccE; ++SuccI) {
483 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
484 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
485 I != E;) {
486 MachineBasicBlock *MBB = *I;
487
488 // Check if VNI is live in to MBB.
489 tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000490 LiveQueryResult LRQ = LI->Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000491 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000492 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000493 I.skipChildren();
494 continue;
495 }
496
497 // Prune the search if VNI is killed in MBB.
498 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000499 LI->removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000500 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
501 I.skipChildren();
502 continue;
503 }
504
505 // VNI is live through MBB.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000506 LI->removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000507 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000508 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000509 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000510 }
511}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000512
Evan Chengbe51f282007-11-12 06:35:08 +0000513//===----------------------------------------------------------------------===//
514// Register allocator hooks.
515//
516
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000517void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
518 // Keep track of regunit ranges.
Matthias Braun34e1be92013-10-10 21:29:02 +0000519 SmallVector<std::pair<LiveRange*, LiveRange::iterator>, 8> RU;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000520
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000521 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
522 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000523 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000524 continue;
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000525 LiveInterval *LI = &getInterval(Reg);
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000526 if (LI->empty())
527 continue;
528
529 // Find the regunit intervals for the assigned register. They may overlap
530 // the virtual register live range, cancelling any kills.
531 RU.clear();
532 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
533 ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000534 LiveRange &RURanges = getRegUnit(*Units);
535 if (RURanges.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000536 continue;
Matthias Braun34e1be92013-10-10 21:29:02 +0000537 RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000538 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000539
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000540 // Every instruction that kills Reg corresponds to a segment range end
541 // point.
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000542 for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE;
543 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000544 // A block index indicates an MBB edge.
545 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000546 continue;
547 MachineInstr *MI = getInstructionFromIndex(RI->end);
548 if (!MI)
549 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000550
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000551 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000552 // happen when a physreg is defined as a copy of a virtreg:
553 //
554 // %EAX = COPY %vreg5
555 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
556 // BAR %EAX<kill>
557 //
558 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
559 bool CancelKill = false;
560 for (unsigned u = 0, e = RU.size(); u != e; ++u) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000561 LiveRange &RRanges = *RU[u].first;
562 LiveRange::iterator &I = RU[u].second;
563 if (I == RRanges.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000564 continue;
Matthias Braun34e1be92013-10-10 21:29:02 +0000565 I = RRanges.advanceTo(I, RI->end);
566 if (I == RRanges.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000567 continue;
568 // I is overlapping RI.
569 CancelKill = true;
570 break;
571 }
572 if (CancelKill)
573 MI->clearRegisterKills(Reg, NULL);
574 else
575 MI->addRegisterKilled(Reg, NULL);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000576 }
577 }
578}
579
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000580MachineBasicBlock*
581LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
582 // A local live range must be fully contained inside the block, meaning it is
583 // defined and killed at instructions, not at block boundaries. It is not
584 // live in or or out of any block.
585 //
586 // It is technically possible to have a PHI-defined live range identical to a
587 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000588
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000589 SlotIndex Start = LI.beginIndex();
590 if (Start.isBlock())
591 return NULL;
Lang Hames05fb9632009-11-03 23:52:08 +0000592
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000593 SlotIndex Stop = LI.endIndex();
594 if (Stop.isBlock())
595 return NULL;
Lang Hames05fb9632009-11-03 23:52:08 +0000596
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000597 // getMBBFromIndex doesn't need to search the MBB table when both indexes
598 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000599 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
600 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000601 return MBB1 == MBB2 ? MBB1 : NULL;
Evan Cheng8e223792007-11-17 00:40:40 +0000602}
603
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000604bool
605LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
606 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
607 I != E; ++I) {
608 const VNInfo *PHI = *I;
609 if (PHI->isUnused() || !PHI->isPHIDef())
610 continue;
611 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
612 // Conservatively return true instead of scanning huge predecessor lists.
613 if (PHIMBB->pred_size() > 100)
614 return true;
615 for (MachineBasicBlock::const_pred_iterator
616 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
617 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
618 return true;
619 }
620 return false;
621}
622
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000623float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000624LiveIntervals::getSpillWeight(bool isDef, bool isUse,
625 const MachineBlockFrequencyInfo *MBFI,
626 const MachineInstr *MI) {
627 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
628 const float Scale = 1.0f / MBFI->getEntryFrequency();
629 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000630}
631
Matthias Braund7df9352013-10-10 21:28:47 +0000632LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000633LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000634 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000635 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000636 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000637 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000638 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000639 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000640 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000641 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000642
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000643 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000644}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000645
646
647//===----------------------------------------------------------------------===//
648// Register mask functions
649//===----------------------------------------------------------------------===//
650
651bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
652 BitVector &UsableRegs) {
653 if (LI.empty())
654 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000655 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
656
657 // Use a smaller arrays for local live ranges.
658 ArrayRef<SlotIndex> Slots;
659 ArrayRef<const uint32_t*> Bits;
660 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
661 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
662 Bits = getRegMaskBitsInBlock(MBB->getNumber());
663 } else {
664 Slots = getRegMaskSlots();
665 Bits = getRegMaskBits();
666 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000667
668 // We are going to enumerate all the register mask slots contained in LI.
669 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000670 ArrayRef<SlotIndex>::iterator SlotI =
671 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
672 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
673
674 // No slots in range, LI begins after the last call.
675 if (SlotI == SlotE)
676 return false;
677
678 bool Found = false;
679 for (;;) {
680 assert(*SlotI >= LiveI->start);
681 // Loop over all slots overlapping this segment.
682 while (*SlotI < LiveI->end) {
683 // *SlotI overlaps LI. Collect mask bits.
684 if (!Found) {
685 // This is the first overlap. Initialize UsableRegs to all ones.
686 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000687 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000688 Found = true;
689 }
690 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000691 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000692 if (++SlotI == SlotE)
693 return Found;
694 }
695 // *SlotI is beyond the current LI segment.
696 LiveI = LI.advanceTo(LiveI, *SlotI);
697 if (LiveI == LiveE)
698 return Found;
699 // Advance SlotI until it overlaps.
700 while (*SlotI < LiveI->start)
701 if (++SlotI == SlotE)
702 return Found;
703 }
704}
Lang Hamesb9057d52012-02-17 18:44:18 +0000705
706//===----------------------------------------------------------------------===//
707// IntervalUpdate class.
708//===----------------------------------------------------------------------===//
709
Lang Hames7e2ce882012-02-21 00:00:36 +0000710// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000711class LiveIntervals::HMEditor {
712private:
Lang Hames59761982012-02-17 23:43:40 +0000713 LiveIntervals& LIS;
714 const MachineRegisterInfo& MRI;
715 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000716 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000717 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000718 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000719 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000720
Lang Hamesb9057d52012-02-17 18:44:18 +0000721public:
Lang Hames59761982012-02-17 23:43:40 +0000722 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000723 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000724 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
725 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
726 UpdateFlags(UpdateFlags) {}
727
728 // FIXME: UpdateFlags is a workaround that creates live intervals for all
729 // physregs, even those that aren't needed for regalloc, in order to update
730 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
731 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000732 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000733 if (UpdateFlags)
734 return &LIS.getRegUnit(Unit);
735 return LIS.getCachedRegUnit(Unit);
736 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000737
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000738 /// Update all live ranges touched by MI, assuming a move from OldIdx to
739 /// NewIdx.
740 void updateAllRanges(MachineInstr *MI) {
741 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
742 bool hasRegMask = false;
743 for (MIOperands MO(MI); MO.isValid(); ++MO) {
744 if (MO->isRegMask())
745 hasRegMask = true;
746 if (!MO->isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000747 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000748 // Aggressively clear all kill flags.
749 // They are reinserted by VirtRegRewriter.
750 if (MO->isUse())
751 MO->setIsKill(false);
752
753 unsigned Reg = MO->getReg();
754 if (!Reg)
755 continue;
756 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000757 LiveInterval &LI = LIS.getInterval(Reg);
758 updateRange(LI, Reg);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000759 continue;
760 }
761
762 // For physregs, only update the regunits that actually have a
763 // precomputed live range.
764 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000765 if (LiveRange *LR = getRegUnitLI(*Units))
766 updateRange(*LR, *Units);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000767 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000768 if (hasRegMask)
769 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000770 }
771
Lang Hames4645a722012-02-19 03:00:30 +0000772private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000773 /// Update a single live range, assuming an instruction has been moved from
774 /// OldIdx to NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000775 void updateRange(LiveRange &LR, unsigned Reg) {
776 if (!Updated.insert(&LR))
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000777 return;
778 DEBUG({
779 dbgs() << " ";
Matthias Braun34e1be92013-10-10 21:29:02 +0000780 if (TargetRegisterInfo::isVirtualRegister(Reg))
781 dbgs() << PrintReg(Reg);
Jakob Stoklund Olesen3802bbf2012-06-19 23:50:18 +0000782 else
Matthias Braun34e1be92013-10-10 21:29:02 +0000783 dbgs() << PrintRegUnit(Reg, &TRI);
784 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000785 });
786 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +0000787 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000788 else
Matthias Braun34e1be92013-10-10 21:29:02 +0000789 handleMoveUp(LR, Reg);
790 DEBUG(dbgs() << " -->\t" << LR << '\n');
791 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +0000792 }
793
Matthias Braun34e1be92013-10-10 21:29:02 +0000794 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000795 /// to NewIdx.
796 ///
797 /// 1. Live def at OldIdx:
798 /// Move def to NewIdx, assert endpoint after NewIdx.
799 ///
800 /// 2. Live def at OldIdx, killed at NewIdx:
801 /// Change to dead def at NewIdx.
802 /// (Happens when bundling def+kill together).
803 ///
804 /// 3. Dead def at OldIdx:
805 /// Move def to NewIdx, possibly across another live value.
806 ///
807 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000808 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000809 /// (Happens when bundling multiple defs together).
810 ///
811 /// 5. Value read at OldIdx, killed before NewIdx:
812 /// Extend kill to NewIdx.
813 ///
Matthias Braun34e1be92013-10-10 21:29:02 +0000814 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000815 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000816 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
817 LiveRange::iterator E = LR.end();
818 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000819 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
820 return;
Lang Hames13b11522012-02-19 07:13:05 +0000821
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000822 // Handle a live-in value.
823 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
824 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
825 // If the live-in value already extends to NewIdx, there is nothing to do.
826 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
827 return;
828 // Aggressively remove all kill flags from the old kill point.
829 // Kill flags shouldn't be used while live intervals exist, they will be
830 // reinserted by VirtRegRewriter.
831 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
832 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
833 if (MO->isReg() && MO->isUse())
834 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +0000835 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000836 // overlapping ranges. Case 5 above.
837 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
838 // If this was a kill, there may also be a def. Otherwise we're done.
839 if (!isKill)
840 return;
841 ++I;
Lang Hames13b11522012-02-19 07:13:05 +0000842 }
843
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000844 // Check for a def at OldIdx.
845 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
846 return;
847 // We have a def at OldIdx.
848 VNInfo *DefVNI = I->valno;
849 assert(DefVNI->def == I->start && "Inconsistent def");
850 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
851 // If the defined value extends beyond NewIdx, just move the def down.
852 // This is case 1 above.
853 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
854 I->start = DefVNI->def;
855 return;
856 }
857 // The remaining possibilities are now:
858 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
859 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
860 // In either case, it is possible that there is an existing def at NewIdx.
861 assert((I->end == OldIdx.getDeadSlot() ||
862 SlotIndex::isSameInstr(I->end, NewIdx)) &&
863 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +0000864 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000865 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
866 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
867 // coalesced into that value.
868 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +0000869 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000870 return;
871 }
872 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000873 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000874 // values. The new range should be placed immediately before NewI, move any
875 // intermediate ranges up.
876 assert(NewI != I && "Inconsistent iterators");
877 std::copy(llvm::next(I), NewI, I);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000878 *llvm::prior(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +0000879 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000880 }
881
Matthias Braun34e1be92013-10-10 21:29:02 +0000882 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000883 /// to NewIdx.
884 ///
885 /// 1. Live def at OldIdx:
886 /// Hoist def to NewIdx.
887 ///
888 /// 2. Dead def at OldIdx:
889 /// Hoist def+end to NewIdx, possibly move across other values.
890 ///
891 /// 3. Dead def at OldIdx AND existing def at NewIdx:
892 /// Remove value defined at OldIdx, coalescing it with existing value.
893 ///
894 /// 4. Live def at OldIdx AND existing def at NewIdx:
895 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
896 /// (Happens when bundling multiple defs together).
897 ///
898 /// 5. Value killed at OldIdx:
899 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
900 /// OldIdx.
901 ///
Matthias Braun34e1be92013-10-10 21:29:02 +0000902 void handleMoveUp(LiveRange &LR, unsigned Reg) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000903 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000904 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
905 LiveRange::iterator E = LR.end();
906 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000907 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
908 return;
909
910 // Handle a live-in value.
911 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
912 // If the live-in value isn't killed here, there is nothing to do.
913 if (!SlotIndex::isSameInstr(OldIdx, I->end))
914 return;
915 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
916 // another use, we need to search for that use. Case 5 above.
917 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
918 ++I;
919 // If OldIdx also defines a value, there couldn't have been another use.
920 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
921 // No def, search for the new kill.
922 // This can never be an early clobber kill since there is no def.
Matthias Braun34e1be92013-10-10 21:29:02 +0000923 llvm::prior(I)->end = findLastUseBefore(Reg).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000924 return;
Lang Hames13b11522012-02-19 07:13:05 +0000925 }
926 }
927
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000928 // Now deal with the def at OldIdx.
929 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
930 VNInfo *DefVNI = I->valno;
931 assert(DefVNI->def == I->start && "Inconsistent def");
932 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
933
934 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000935 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000936 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
937 assert(NewI->valno != DefVNI && "Same value defined more than once?");
938 // There is an existing def at NewIdx.
939 if (I->end.isDead()) {
940 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000941 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000942 return;
943 }
944 // Case 4: Replace def at NewIdx with live def at OldIdx.
945 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +0000946 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000947 return;
Lang Hames13b11522012-02-19 07:13:05 +0000948 }
949
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000950 // There is no existing def at NewIdx. Hoist DefVNI.
951 if (!I->end.isDead()) {
952 // Leave the end point of a live def.
953 I->start = DefVNI->def;
954 return;
955 }
956
Matthias Braun34e1be92013-10-10 21:29:02 +0000957 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000958 // so move I up to NewI. Slide [NewI;I) down one position.
959 std::copy_backward(NewI, I, llvm::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +0000960 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +0000961 }
962
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000963 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +0000964 SmallVectorImpl<SlotIndex>::iterator RI =
965 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
966 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000967 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
968 "No RegMask at OldIdx.");
969 *RI = NewIdx.getRegSlot();
970 assert((RI == LIS.RegMaskSlots.begin() ||
971 SlotIndex::isEarlierInstr(*llvm::prior(RI), *RI)) &&
972 "Cannot move regmask instruction above another call");
973 assert((llvm::next(RI) == LIS.RegMaskSlots.end() ||
974 SlotIndex::isEarlierInstr(*RI, *llvm::next(RI))) &&
975 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +0000976 }
Lang Hames4645a722012-02-19 03:00:30 +0000977
978 // Return the last use of reg between NewIdx and OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000979 SlotIndex findLastUseBefore(unsigned Reg) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +0000980
981 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +0000982 SlotIndex LastUse = NewIdx;
Lang Hamesc3d9a3d2012-09-12 06:56:16 +0000983 for (MachineRegisterInfo::use_nodbg_iterator
984 UI = MRI.use_nodbg_begin(Reg),
985 UE = MRI.use_nodbg_end();
986 UI != UE; UI.skipInstruction()) {
987 const MachineInstr* MI = &*UI;
988 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
989 if (InstSlot > LastUse && InstSlot < OldIdx)
990 LastUse = InstSlot;
991 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +0000992 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +0000993 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +0000994
995 // This is a regunit interval, so scanning the use list could be very
996 // expensive. Scan upwards from OldIdx instead.
997 assert(NewIdx < OldIdx && "Expected upwards move");
998 SlotIndexes *Indexes = LIS.getSlotIndexes();
999 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1000
1001 // OldIdx may not correspond to an instruction any longer, so set MII to
1002 // point to the next instruction after OldIdx, or MBB->end().
1003 MachineBasicBlock::iterator MII = MBB->end();
1004 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1005 Indexes->getNextNonNullIndex(OldIdx)))
1006 if (MI->getParent() == MBB)
1007 MII = MI;
1008
1009 MachineBasicBlock::iterator Begin = MBB->begin();
1010 while (MII != Begin) {
1011 if ((--MII)->isDebugValue())
1012 continue;
1013 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1014
1015 // Stop searching when NewIdx is reached.
1016 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1017 return NewIdx;
1018
1019 // Check if MII uses Reg.
1020 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1021 if (MO->isReg() &&
1022 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1023 TRI.hasRegUnit(MO->getReg(), Reg))
1024 return Idx;
1025 }
1026 // Didn't reach NewIdx. It must be the first instruction in the block.
1027 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001028 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001029};
1030
Andrew Trickd9d4be02012-10-16 00:22:51 +00001031void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001032 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001033 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1034 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001035 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001036 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1037 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001038 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001039
Andrew Trickd9d4be02012-10-16 00:22:51 +00001040 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001041 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001042}
1043
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001044void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001045 MachineInstr* BundleStart,
1046 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001047 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001048 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001049 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001050 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001051}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001052
1053void
1054LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001055 MachineBasicBlock::iterator Begin,
1056 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001057 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001058 // Find anchor points, which are at the beginning/end of blocks or at
1059 // instructions that already have indexes.
1060 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1061 --Begin;
1062 while (End != MBB->end() && !Indexes->hasIndex(End))
1063 ++End;
1064
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001065 SlotIndex endIdx;
1066 if (End == MBB->end())
1067 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001068 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001069 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001070
Cameron Zwarich29414822013-02-20 06:46:41 +00001071 Indexes->repairIndexesInRange(MBB, Begin, End);
1072
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001073 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1074 --I;
1075 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001076 if (MI->isDebugValue())
1077 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001078 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1079 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1080 if (MOI->isReg() &&
1081 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1082 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001083 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001084 }
1085 }
1086 }
1087
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001088 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1089 unsigned Reg = OrigRegs[i];
1090 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1091 continue;
1092
1093 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001094 // FIXME: Should we support undefs that gain defs?
1095 if (!LI.hasAtLeastOneValue())
1096 continue;
1097
1098 LiveInterval::iterator LII = LI.find(endIdx);
1099 SlotIndex lastUseIdx;
1100 if (LII != LI.end() && LII->start < endIdx)
1101 lastUseIdx = LII->end;
1102 else
1103 --LII;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001104
Cameron Zwarich24955962013-02-17 11:09:00 +00001105 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1106 --I;
1107 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001108 if (MI->isDebugValue())
1109 continue;
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001110
Cameron Zwarich63acc732013-02-23 10:25:25 +00001111 SlotIndex instrIdx = getInstructionIndex(MI);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001112 bool isStartValid = getInstructionFromIndex(LII->start);
1113 bool isEndValid = getInstructionFromIndex(LII->end);
1114
1115 // FIXME: This doesn't currently handle early-clobber or multiple removed
1116 // defs inside of the region to repair.
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001117 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1118 OE = MI->operands_end(); OI != OE; ++OI) {
1119 const MachineOperand &MO = *OI;
1120 if (!MO.isReg() || MO.getReg() != Reg)
1121 continue;
1122
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001123 if (MO.isDef()) {
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001124 if (!isStartValid) {
1125 if (LII->end.isDead()) {
1126 SlotIndex prevStart;
1127 if (LII != LI.begin())
1128 prevStart = llvm::prior(LII)->start;
1129
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001130 // FIXME: This could be more efficient if there was a
1131 // removeSegment method that returned an iterator.
1132 LI.removeSegment(*LII, true);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001133 if (prevStart.isValid())
1134 LII = LI.find(prevStart);
1135 else
1136 LII = LI.begin();
1137 } else {
1138 LII->start = instrIdx.getRegSlot();
1139 LII->valno->def = instrIdx.getRegSlot();
1140 if (MO.getSubReg() && !MO.isUndef())
1141 lastUseIdx = instrIdx.getRegSlot();
1142 else
1143 lastUseIdx = SlotIndex();
1144 continue;
1145 }
1146 }
1147
1148 if (!lastUseIdx.isValid()) {
1149 VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1150 VNInfoAllocator);
Matthias Braund7df9352013-10-10 21:28:47 +00001151 LiveRange::Segment S(instrIdx.getRegSlot(),
1152 instrIdx.getDeadSlot(), VNI);
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001153 LII = LI.addSegment(S);
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001154 } else if (LII->start != instrIdx.getRegSlot()) {
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001155 VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1156 VNInfoAllocator);
Matthias Braund7df9352013-10-10 21:28:47 +00001157 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001158 LII = LI.addSegment(S);
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001159 }
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001160
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001161 if (MO.getSubReg() && !MO.isUndef())
1162 lastUseIdx = instrIdx.getRegSlot();
1163 else
1164 lastUseIdx = SlotIndex();
1165 } else if (MO.isUse()) {
1166 // FIXME: This should probably be handled outside of this branch,
1167 // either as part of the def case (for defs inside of the region) or
1168 // after the loop over the region.
1169 if (!isEndValid && !LII->end.isBlock())
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001170 LII->end = instrIdx.getRegSlot();
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001171 if (!lastUseIdx.isValid())
1172 lastUseIdx = instrIdx.getRegSlot();
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001173 }
1174 }
1175 }
1176 }
1177}