blob: 44ea4da31776f10e9b161a8c678ca86ccf5da75b [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
Chris Lattnerb1f89822005-09-21 04:19:09 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "LiveRangeCalc.h"
20#include "llvm/ADT/DenseSet.h"
21#include "llvm/ADT/STLExtras.h"
Dan Gohman09b04482008-07-25 00:02:30 +000022#include "llvm/Analysis/AliasAnalysis.h"
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000023#include "llvm/CodeGen/LiveVariables.h"
Michael Gottesman9f49d742013-12-14 00:53:32 +000024#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000025#include "llvm/CodeGen/MachineDominators.h"
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000026#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000028#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000029#include "llvm/CodeGen/VirtRegMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Value.h"
Benjamin Kramere2a1d892013-06-17 19:00:36 +000031#include "llvm/Support/BlockFrequency.h"
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +000032#include "llvm/Support/CommandLine.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000033#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000034#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Target/TargetInstrInfo.h"
37#include "llvm/Target/TargetMachine.h"
38#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000039#include "llvm/Target/TargetSubtargetInfo.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
Chandler Carruth1b9dde02014-04-22 02:02:50 +000045#define DEBUG_TYPE "regalloc"
46
Devang Patel8c78a0b2007-05-03 01:11:54 +000047char LiveIntervals::ID = 0;
Jakob Stoklund Olesen1c465892012-08-03 22:12:54 +000048char &llvm::LiveIntervalsID = LiveIntervals::ID;
Owen Anderson8ac477f2010-10-12 19:48:12 +000049INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
50 "Live Interval Analysis", false, false)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000051INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
Owen Anderson8ac477f2010-10-12 19:48:12 +000052INITIALIZE_PASS_DEPENDENCY(LiveVariables)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000053INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Owen Anderson8ac477f2010-10-12 19:48:12 +000054INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
Owen Anderson8ac477f2010-10-12 19:48:12 +000055INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
Owen Andersondf7a4f22010-10-07 22:25:06 +000056 "Live Interval Analysis", false, false)
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000057
Andrew Trick8d02e912013-06-21 18:33:23 +000058#ifndef NDEBUG
59static cl::opt<bool> EnablePrecomputePhysRegs(
60 "precompute-phys-liveness", cl::Hidden,
61 cl::desc("Eagerly compute live intervals for all physreg units."));
62#else
63static bool EnablePrecomputePhysRegs = false;
64#endif // NDEBUG
65
Chris Lattnerbdf12102006-08-24 22:43:55 +000066void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman04023152009-07-31 23:37:33 +000067 AU.setPreservesCFG();
Dan Gohman09b04482008-07-25 00:02:30 +000068 AU.addRequired<AliasAnalysis>();
69 AU.addPreserved<AliasAnalysis>();
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +000070 // LiveVariables isn't really required by this analysis, it is only required
71 // here to make sure it is live during TwoAddressInstructionPass and
72 // PHIElimination. This is temporary.
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000073 AU.addRequired<LiveVariables>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +000074 AU.addPreserved<LiveVariables>();
Andrew Trick5188c002012-02-13 20:44:42 +000075 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +000076 AU.addRequiredTransitiveID(MachineDominatorsID);
Bill Wendling0c209432008-01-04 20:54:55 +000077 AU.addPreservedID(MachineDominatorsID);
Lang Hames05fb9632009-11-03 23:52:08 +000078 AU.addPreserved<SlotIndexes>();
79 AU.addRequiredTransitive<SlotIndexes>();
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000080 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000081}
82
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000083LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
Craig Topperc0196b12014-04-14 00:51:57 +000084 DomTree(nullptr), LRCalc(nullptr) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000085 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
86}
87
88LiveIntervals::~LiveIntervals() {
89 delete LRCalc;
90}
91
Chris Lattnerbdf12102006-08-24 22:43:55 +000092void LiveIntervals::releaseMemory() {
Owen Anderson51f689a2008-08-13 21:49:13 +000093 // Free the live intervals themselves.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +000094 for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
95 delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
96 VirtRegIntervals.clear();
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +000097 RegMaskSlots.clear();
98 RegMaskBits.clear();
Jakob Stoklund Olesen25c41952012-02-10 01:26:29 +000099 RegMaskBlocks.clear();
Lang Hamesdab7b062009-07-09 03:57:02 +0000100
Matthias Braun34e1be92013-10-10 21:29:02 +0000101 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
102 delete RegUnitRanges[i];
103 RegUnitRanges.clear();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000104
Benjamin Kramera0000022010-06-26 11:30:59 +0000105 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
106 VNInfoAllocator.Reset();
Alkis Evlogimenos50d97e32004-01-31 19:59:32 +0000107}
108
Jakob Stoklund Olesen6d13b8f2013-08-14 17:28:46 +0000109/// runOnMachineFunction - calculates LiveIntervals
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000110///
111bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000112 MF = &fn;
113 MRI = &MF->getRegInfo();
114 TM = &fn.getTarget();
Eric Christopherd9134482014-08-04 21:25:23 +0000115 TRI = TM->getSubtargetImpl()->getRegisterInfo();
116 TII = TM->getSubtargetImpl()->getInstrInfo();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000117 AA = &getAnalysis<AliasAnalysis>();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000118 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000119 DomTree = &getAnalysis<MachineDominatorTree>();
120 if (!LRCalc)
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000121 LRCalc = new LiveRangeCalc();
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000122
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000123 // Allocate space for all virtual registers.
124 VirtRegIntervals.resize(MRI->getNumVirtRegs());
125
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +0000126 computeVirtRegs();
127 computeRegMasks();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000128 computeLiveInRegUnits();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000129
Andrew Trick8d02e912013-06-21 18:33:23 +0000130 if (EnablePrecomputePhysRegs) {
131 // For stress testing, precompute live ranges of all physical register
132 // units, including reserved registers.
133 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
134 getRegUnit(i);
135 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000136 DEBUG(dump());
Alkis Evlogimenosa6983082004-08-04 09:46:26 +0000137 return true;
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +0000138}
139
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000140/// print - Implement the dump method.
Chris Lattner13626022009-08-23 06:03:38 +0000141void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000142 OS << "********** INTERVALS **********\n";
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000143
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000144 // Dump the regunits.
Matthias Braun34e1be92013-10-10 21:29:02 +0000145 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
146 if (LiveRange *LR = RegUnitRanges[i])
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000147 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000148
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000149 // Dump the virtregs.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000150 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
151 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
152 if (hasInterval(Reg))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000153 OS << getInterval(Reg) << '\n';
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000154 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000155
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000156 OS << "RegMasks:";
157 for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
158 OS << ' ' << RegMaskSlots[i];
159 OS << '\n';
160
Evan Cheng7f789592009-09-14 21:33:42 +0000161 printInstrs(OS);
162}
163
164void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000165 OS << "********** MACHINEINSTRS **********\n";
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000166 MF->print(OS, Indexes);
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000167}
168
Manman Ren19f49ac2012-09-11 22:23:19 +0000169#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Evan Cheng7f789592009-09-14 21:33:42 +0000170void LiveIntervals::dumpInstrs() const {
David Greene1a51a212010-01-04 22:49:02 +0000171 printInstrs(dbgs());
Evan Cheng7f789592009-09-14 21:33:42 +0000172}
Manman Ren742534c2012-09-06 19:06:06 +0000173#endif
Evan Cheng7f789592009-09-14 21:33:42 +0000174
Owen Anderson51f689a2008-08-13 21:49:13 +0000175LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Aaron Ballman04999042013-11-13 00:15:44 +0000176 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
177 llvm::huge_valf : 0.0F;
Owen Anderson51f689a2008-08-13 21:49:13 +0000178 return new LiveInterval(reg, Weight);
Alkis Evlogimenos237f2032004-04-09 18:07:57 +0000179}
Evan Chengbe51f282007-11-12 06:35:08 +0000180
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000181
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000182/// computeVirtRegInterval - Compute the live interval of a virtual register,
183/// based on defs and uses.
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000184void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000185 assert(LRCalc && "LRCalc not initialized.");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000186 assert(LI.empty() && "Should only compute empty intervals.");
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000187 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
188 LRCalc->createDeadDefs(LI);
189 LRCalc->extendToUses(LI);
Pete Cooper72235572014-06-03 22:42:10 +0000190 computeDeadValues(&LI, LI, nullptr, nullptr);
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000191}
192
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000193void LiveIntervals::computeVirtRegs() {
194 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
195 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
196 if (MRI->reg_nodbg_empty(Reg))
197 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000198 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000199 }
200}
201
202void LiveIntervals::computeRegMasks() {
203 RegMaskBlocks.resize(MF->getNumBlockIDs());
204
205 // Find all instructions with regmask operands.
206 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
207 MBBI != E; ++MBBI) {
208 MachineBasicBlock *MBB = MBBI;
209 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
210 RMB.first = RegMaskSlots.size();
211 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
212 MI != ME; ++MI)
213 for (MIOperands MO(MI); MO.isValid(); ++MO) {
214 if (!MO->isRegMask())
215 continue;
216 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
217 RegMaskBits.push_back(MO->getRegMask());
218 }
219 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000220 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000221 }
222}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000223
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000224//===----------------------------------------------------------------------===//
225// Register Unit Liveness
226//===----------------------------------------------------------------------===//
227//
228// Fixed interference typically comes from ABI boundaries: Function arguments
229// and return values are passed in fixed registers, and so are exception
230// pointers entering landing pads. Certain instructions require values to be
231// present in specific registers. That is also represented through fixed
232// interference.
233//
234
Matthias Braun34e1be92013-10-10 21:29:02 +0000235/// computeRegUnitInterval - Compute the live range of a register unit, based
236/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000237/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000238void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000239 assert(LRCalc && "LRCalc not initialized.");
240 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
241
242 // The physregs aliasing Unit are the roots and their super-registers.
243 // Create all values as dead defs before extending to uses. Note that roots
244 // may share super-registers. That's OK because createDeadDefs() is
245 // idempotent. It is very rare for a register unit to have multiple roots, so
246 // uniquing super-registers is probably not worthwhile.
247 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000248 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
249 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000250 if (!MRI->reg_empty(*Supers))
Matthias Braun34e1be92013-10-10 21:29:02 +0000251 LRCalc->createDeadDefs(LR, *Supers);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000252 }
253 }
254
Matthias Braun34e1be92013-10-10 21:29:02 +0000255 // Now extend LR to reach all uses.
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000256 // Ignore uses of reserved registers. We only track defs of those.
257 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000258 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
259 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000260 unsigned Reg = *Supers;
Jakob Stoklund Olesencea596a2012-10-15 22:14:34 +0000261 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
Matthias Braun34e1be92013-10-10 21:29:02 +0000262 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000263 }
264 }
265}
266
267
268/// computeLiveInRegUnits - Precompute the live ranges of any register units
269/// that are live-in to an ABI block somewhere. Register values can appear
270/// without a corresponding def when entering the entry block or a landing pad.
271///
272void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000273 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000274 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
275
Matthias Braun34e1be92013-10-10 21:29:02 +0000276 // Keep track of the live range sets allocated.
277 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000278
279 // Check all basic blocks for live-ins.
280 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
281 MFI != MFE; ++MFI) {
282 const MachineBasicBlock *MBB = MFI;
283
284 // We only care about ABI blocks: Entry + landing pads.
285 if ((MFI != MF->begin() && !MBB->isLandingPad()) || MBB->livein_empty())
286 continue;
287
288 // Create phi-defs at Begin for all live-in registers.
289 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
290 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
291 for (MachineBasicBlock::livein_iterator LII = MBB->livein_begin(),
292 LIE = MBB->livein_end(); LII != LIE; ++LII) {
293 for (MCRegUnitIterator Units(*LII, TRI); Units.isValid(); ++Units) {
294 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000295 LiveRange *LR = RegUnitRanges[Unit];
296 if (!LR) {
297 LR = RegUnitRanges[Unit] = new LiveRange();
298 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000299 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000300 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000301 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000302 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
303 }
304 }
305 DEBUG(dbgs() << '\n');
306 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000307 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000308
Matthias Braun34e1be92013-10-10 21:29:02 +0000309 // Compute the 'normal' part of the ranges.
310 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
311 unsigned Unit = NewRanges[i];
312 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
313 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000314}
315
316
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000317/// shrinkToUses - After removing some uses of a register, shrink its live
318/// range to just the remaining uses. This method does not compute reaching
319/// defs for new uses, and it doesn't remove dead defs.
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000320bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000321 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000322 DEBUG(dbgs() << "Shrink: " << *li << '\n');
323 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000324 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000325 // Find all the values used, including PHI kills.
326 SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList;
327
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000328 // Blocks that have already been added to WorkList as live-out.
329 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
330
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000331 // Visit all instructions reading li->reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000332 for (MachineRegisterInfo::reg_instr_iterator
333 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
334 I != E; ) {
335 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000336 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
337 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000338 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000339 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000340 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000341 if (!VNI) {
342 // This shouldn't happen: readsVirtualRegister returns true, but there is
343 // no live value. It is likely caused by a target getting <undef> flags
344 // wrong.
345 DEBUG(dbgs() << Idx << '\t' << *UseMI
346 << "Warning: Instr claims to read non-existent value in "
347 << *li << '\n');
348 continue;
349 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000350 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000351 // register one slot early.
352 if (VNInfo *DefVNI = LRQ.valueDefined())
353 Idx = DefVNI->def;
354
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000355 WorkList.push_back(std::make_pair(Idx, VNI));
356 }
357
Matthias Braund7df9352013-10-10 21:28:47 +0000358 // Create new live ranges with only minimal live segments per def.
359 LiveRange NewLR;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000360 for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end();
361 I != E; ++I) {
362 VNInfo *VNI = *I;
363 if (VNI->isUnused())
364 continue;
Matthias Braund7df9352013-10-10 21:28:47 +0000365 NewLR.addSegment(LiveRange::Segment(VNI->def, VNI->def.getDeadSlot(), VNI));
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000366 }
367
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000368 // Keep track of the PHIs that are in use.
369 SmallPtrSet<VNInfo*, 8> UsedPHIs;
370
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000371 // Extend intervals to reach all uses in WorkList.
372 while (!WorkList.empty()) {
373 SlotIndex Idx = WorkList.back().first;
374 VNInfo *VNI = WorkList.back().second;
375 WorkList.pop_back();
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000376 const MachineBasicBlock *MBB = getMBBFromIndex(Idx.getPrevSlot());
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000377 SlotIndex BlockStart = getMBBStartIdx(MBB);
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000378
379 // Extend the live range for VNI to be live at Idx.
Matthias Braund7df9352013-10-10 21:28:47 +0000380 if (VNInfo *ExtVNI = NewLR.extendInBlock(BlockStart, Idx)) {
Nick Lewycky68faa2d2011-03-02 01:43:30 +0000381 (void)ExtVNI;
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000382 assert(ExtVNI == VNI && "Unexpected existing value number");
383 // Is this a PHIDef we haven't seen before?
Jakob Stoklund Olesend58c8d12011-03-03 00:20:51 +0000384 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI))
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000385 continue;
386 // The PHI is live, make sure the predecessors are live-out.
387 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
388 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000389 if (!LiveOut.insert(*PI))
390 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000391 SlotIndex Stop = getMBBEndIdx(*PI);
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000392 // A predecessor is not required to have a live-out value for a PHI.
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000393 if (VNInfo *PVNI = li->getVNInfoBefore(Stop))
Jakob Stoklund Olesenf3c6e922011-03-02 00:33:03 +0000394 WorkList.push_back(std::make_pair(Stop, PVNI));
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000395 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000396 continue;
397 }
398
399 // VNI is live-in to MBB.
400 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
Matthias Braund7df9352013-10-10 21:28:47 +0000401 NewLR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000402
403 // Make sure VNI is live-out from the predecessors.
404 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
405 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000406 if (!LiveOut.insert(*PI))
407 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000408 SlotIndex Stop = getMBBEndIdx(*PI);
409 assert(li->getVNInfoBefore(Stop) == VNI &&
410 "Wrong value out of predecessor");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000411 WorkList.push_back(std::make_pair(Stop, VNI));
412 }
413 }
414
415 // Handle dead values.
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000416 bool CanSeparate = false;
Pete Cooper72235572014-06-03 22:42:10 +0000417 computeDeadValues(li, NewLR, &CanSeparate, dead);
418
419 // Move the trimmed segments back.
420 li->segments.swap(NewLR.segments);
421 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
422 return CanSeparate;
423}
424
425void LiveIntervals::computeDeadValues(LiveInterval *li,
426 LiveRange &LR,
427 bool *CanSeparate,
428 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000429 for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end();
430 I != E; ++I) {
431 VNInfo *VNI = *I;
432 if (VNI->isUnused())
433 continue;
Pete Cooper72235572014-06-03 22:42:10 +0000434 LiveRange::iterator LRI = LR.FindSegmentContaining(VNI->def);
435 assert(LRI != LR.end() && "Missing segment for PHI");
Matthias Braund7df9352013-10-10 21:28:47 +0000436 if (LRI->end != VNI->def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000437 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000438 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000439 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000440 VNI->markUnused();
Pete Cooper72235572014-06-03 22:42:10 +0000441 LR.removeSegment(LRI->start, LRI->end);
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000442 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
Pete Cooper72235572014-06-03 22:42:10 +0000443 if (CanSeparate)
444 *CanSeparate = true;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000445 } else {
446 // This is a dead def. Make sure the instruction knows.
447 MachineInstr *MI = getInstructionFromIndex(VNI->def);
448 assert(MI && "No instruction defining live value");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000449 MI->addRegisterDead(li->reg, TRI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000450 if (dead && MI->allDefsAreDead()) {
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +0000451 DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000452 dead->push_back(MI);
453 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000454 }
455 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000456}
457
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000458void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000459 ArrayRef<SlotIndex> Indices) {
460 assert(LRCalc && "LRCalc not initialized.");
461 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
462 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000463 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000464}
465
466void LiveIntervals::pruneValue(LiveInterval *LI, SlotIndex Kill,
467 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000468 LiveQueryResult LRQ = LI->Query(Kill);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000469 VNInfo *VNI = LRQ.valueOut();
470 if (!VNI)
471 return;
472
473 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
474 SlotIndex MBBStart, MBBEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000475 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000476
477 // If VNI isn't live out from KillMBB, the value is trivially pruned.
478 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000479 LI->removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000480 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
481 return;
482 }
483
484 // VNI is live out of KillMBB.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000485 LI->removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000486 if (EndPoints) EndPoints->push_back(MBBEnd);
487
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000488 // Find all blocks that are reachable from KillMBB without leaving VNI's live
489 // range. It is possible that KillMBB itself is reachable, so start a DFS
490 // from each successor.
491 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
492 VisitedTy Visited;
493 for (MachineBasicBlock::succ_iterator
494 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
495 SuccI != SuccE; ++SuccI) {
496 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
497 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
498 I != E;) {
499 MachineBasicBlock *MBB = *I;
500
501 // Check if VNI is live in to MBB.
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000502 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000503 LiveQueryResult LRQ = LI->Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000504 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000505 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000506 I.skipChildren();
507 continue;
508 }
509
510 // Prune the search if VNI is killed in MBB.
511 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000512 LI->removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000513 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
514 I.skipChildren();
515 continue;
516 }
517
518 // VNI is live through MBB.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000519 LI->removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000520 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000521 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000522 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000523 }
524}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000525
Evan Chengbe51f282007-11-12 06:35:08 +0000526//===----------------------------------------------------------------------===//
527// Register allocator hooks.
528//
529
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000530void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
531 // Keep track of regunit ranges.
Matthias Braun34e1be92013-10-10 21:29:02 +0000532 SmallVector<std::pair<LiveRange*, LiveRange::iterator>, 8> RU;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000533
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000534 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
535 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000536 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000537 continue;
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000538 LiveInterval *LI = &getInterval(Reg);
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000539 if (LI->empty())
540 continue;
541
542 // Find the regunit intervals for the assigned register. They may overlap
543 // the virtual register live range, cancelling any kills.
544 RU.clear();
545 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
546 ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000547 LiveRange &RURanges = getRegUnit(*Units);
548 if (RURanges.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000549 continue;
Matthias Braun34e1be92013-10-10 21:29:02 +0000550 RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000551 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000552
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000553 // Every instruction that kills Reg corresponds to a segment range end
554 // point.
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000555 for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE;
556 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000557 // A block index indicates an MBB edge.
558 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000559 continue;
560 MachineInstr *MI = getInstructionFromIndex(RI->end);
561 if (!MI)
562 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000563
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000564 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000565 // happen when a physreg is defined as a copy of a virtreg:
566 //
567 // %EAX = COPY %vreg5
568 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
569 // BAR %EAX<kill>
570 //
571 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
572 bool CancelKill = false;
573 for (unsigned u = 0, e = RU.size(); u != e; ++u) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000574 LiveRange &RRanges = *RU[u].first;
575 LiveRange::iterator &I = RU[u].second;
576 if (I == RRanges.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000577 continue;
Matthias Braun34e1be92013-10-10 21:29:02 +0000578 I = RRanges.advanceTo(I, RI->end);
579 if (I == RRanges.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000580 continue;
581 // I is overlapping RI.
582 CancelKill = true;
583 break;
584 }
585 if (CancelKill)
Craig Topperc0196b12014-04-14 00:51:57 +0000586 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000587 else
Craig Topperc0196b12014-04-14 00:51:57 +0000588 MI->addRegisterKilled(Reg, nullptr);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000589 }
590 }
591}
592
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000593MachineBasicBlock*
594LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
595 // A local live range must be fully contained inside the block, meaning it is
596 // defined and killed at instructions, not at block boundaries. It is not
597 // live in or or out of any block.
598 //
599 // It is technically possible to have a PHI-defined live range identical to a
600 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000601
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000602 SlotIndex Start = LI.beginIndex();
603 if (Start.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000604 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000605
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000606 SlotIndex Stop = LI.endIndex();
607 if (Stop.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000608 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000609
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000610 // getMBBFromIndex doesn't need to search the MBB table when both indexes
611 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000612 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
613 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Craig Topperc0196b12014-04-14 00:51:57 +0000614 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng8e223792007-11-17 00:40:40 +0000615}
616
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000617bool
618LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
619 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
620 I != E; ++I) {
621 const VNInfo *PHI = *I;
622 if (PHI->isUnused() || !PHI->isPHIDef())
623 continue;
624 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
625 // Conservatively return true instead of scanning huge predecessor lists.
626 if (PHIMBB->pred_size() > 100)
627 return true;
628 for (MachineBasicBlock::const_pred_iterator
629 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
630 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
631 return true;
632 }
633 return false;
634}
635
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000636float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000637LiveIntervals::getSpillWeight(bool isDef, bool isUse,
638 const MachineBlockFrequencyInfo *MBFI,
639 const MachineInstr *MI) {
640 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
Michael Gottesman5e985ee2013-12-14 02:37:38 +0000641 const float Scale = 1.0f / MBFI->getEntryFreq();
Michael Gottesman9f49d742013-12-14 00:53:32 +0000642 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000643}
644
Matthias Braund7df9352013-10-10 21:28:47 +0000645LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000646LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000647 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000648 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000649 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000650 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000651 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000652 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000653 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000654 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000655
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000656 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000657}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000658
659
660//===----------------------------------------------------------------------===//
661// Register mask functions
662//===----------------------------------------------------------------------===//
663
664bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
665 BitVector &UsableRegs) {
666 if (LI.empty())
667 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000668 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
669
670 // Use a smaller arrays for local live ranges.
671 ArrayRef<SlotIndex> Slots;
672 ArrayRef<const uint32_t*> Bits;
673 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
674 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
675 Bits = getRegMaskBitsInBlock(MBB->getNumber());
676 } else {
677 Slots = getRegMaskSlots();
678 Bits = getRegMaskBits();
679 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000680
681 // We are going to enumerate all the register mask slots contained in LI.
682 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000683 ArrayRef<SlotIndex>::iterator SlotI =
684 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
685 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
686
687 // No slots in range, LI begins after the last call.
688 if (SlotI == SlotE)
689 return false;
690
691 bool Found = false;
692 for (;;) {
693 assert(*SlotI >= LiveI->start);
694 // Loop over all slots overlapping this segment.
695 while (*SlotI < LiveI->end) {
696 // *SlotI overlaps LI. Collect mask bits.
697 if (!Found) {
698 // This is the first overlap. Initialize UsableRegs to all ones.
699 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000700 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000701 Found = true;
702 }
703 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000704 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000705 if (++SlotI == SlotE)
706 return Found;
707 }
708 // *SlotI is beyond the current LI segment.
709 LiveI = LI.advanceTo(LiveI, *SlotI);
710 if (LiveI == LiveE)
711 return Found;
712 // Advance SlotI until it overlaps.
713 while (*SlotI < LiveI->start)
714 if (++SlotI == SlotE)
715 return Found;
716 }
717}
Lang Hamesb9057d52012-02-17 18:44:18 +0000718
719//===----------------------------------------------------------------------===//
720// IntervalUpdate class.
721//===----------------------------------------------------------------------===//
722
Lang Hames7e2ce882012-02-21 00:00:36 +0000723// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000724class LiveIntervals::HMEditor {
725private:
Lang Hames59761982012-02-17 23:43:40 +0000726 LiveIntervals& LIS;
727 const MachineRegisterInfo& MRI;
728 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000729 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000730 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000731 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000732 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000733
Lang Hamesb9057d52012-02-17 18:44:18 +0000734public:
Lang Hames59761982012-02-17 23:43:40 +0000735 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000736 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000737 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
738 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
739 UpdateFlags(UpdateFlags) {}
740
741 // FIXME: UpdateFlags is a workaround that creates live intervals for all
742 // physregs, even those that aren't needed for regalloc, in order to update
743 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
744 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000745 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000746 if (UpdateFlags)
747 return &LIS.getRegUnit(Unit);
748 return LIS.getCachedRegUnit(Unit);
749 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000750
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000751 /// Update all live ranges touched by MI, assuming a move from OldIdx to
752 /// NewIdx.
753 void updateAllRanges(MachineInstr *MI) {
754 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
755 bool hasRegMask = false;
756 for (MIOperands MO(MI); MO.isValid(); ++MO) {
757 if (MO->isRegMask())
758 hasRegMask = true;
759 if (!MO->isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000760 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000761 // Aggressively clear all kill flags.
762 // They are reinserted by VirtRegRewriter.
763 if (MO->isUse())
764 MO->setIsKill(false);
765
766 unsigned Reg = MO->getReg();
767 if (!Reg)
768 continue;
769 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000770 LiveInterval &LI = LIS.getInterval(Reg);
771 updateRange(LI, Reg);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000772 continue;
773 }
774
775 // For physregs, only update the regunits that actually have a
776 // precomputed live range.
777 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000778 if (LiveRange *LR = getRegUnitLI(*Units))
779 updateRange(*LR, *Units);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000780 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000781 if (hasRegMask)
782 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000783 }
784
Lang Hames4645a722012-02-19 03:00:30 +0000785private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000786 /// Update a single live range, assuming an instruction has been moved from
787 /// OldIdx to NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000788 void updateRange(LiveRange &LR, unsigned Reg) {
789 if (!Updated.insert(&LR))
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000790 return;
791 DEBUG({
792 dbgs() << " ";
Matthias Braun34e1be92013-10-10 21:29:02 +0000793 if (TargetRegisterInfo::isVirtualRegister(Reg))
794 dbgs() << PrintReg(Reg);
Jakob Stoklund Olesen3802bbf2012-06-19 23:50:18 +0000795 else
Matthias Braun34e1be92013-10-10 21:29:02 +0000796 dbgs() << PrintRegUnit(Reg, &TRI);
797 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000798 });
799 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +0000800 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000801 else
Matthias Braun34e1be92013-10-10 21:29:02 +0000802 handleMoveUp(LR, Reg);
803 DEBUG(dbgs() << " -->\t" << LR << '\n');
804 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +0000805 }
806
Matthias Braun34e1be92013-10-10 21:29:02 +0000807 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000808 /// to NewIdx.
809 ///
810 /// 1. Live def at OldIdx:
811 /// Move def to NewIdx, assert endpoint after NewIdx.
812 ///
813 /// 2. Live def at OldIdx, killed at NewIdx:
814 /// Change to dead def at NewIdx.
815 /// (Happens when bundling def+kill together).
816 ///
817 /// 3. Dead def at OldIdx:
818 /// Move def to NewIdx, possibly across another live value.
819 ///
820 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000821 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000822 /// (Happens when bundling multiple defs together).
823 ///
824 /// 5. Value read at OldIdx, killed before NewIdx:
825 /// Extend kill to NewIdx.
826 ///
Matthias Braun34e1be92013-10-10 21:29:02 +0000827 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000828 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000829 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
830 LiveRange::iterator E = LR.end();
831 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000832 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
833 return;
Lang Hames13b11522012-02-19 07:13:05 +0000834
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000835 // Handle a live-in value.
836 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
837 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
838 // If the live-in value already extends to NewIdx, there is nothing to do.
839 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
840 return;
841 // Aggressively remove all kill flags from the old kill point.
842 // Kill flags shouldn't be used while live intervals exist, they will be
843 // reinserted by VirtRegRewriter.
844 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
845 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
846 if (MO->isReg() && MO->isUse())
847 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +0000848 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000849 // overlapping ranges. Case 5 above.
850 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
851 // If this was a kill, there may also be a def. Otherwise we're done.
852 if (!isKill)
853 return;
854 ++I;
Lang Hames13b11522012-02-19 07:13:05 +0000855 }
856
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000857 // Check for a def at OldIdx.
858 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
859 return;
860 // We have a def at OldIdx.
861 VNInfo *DefVNI = I->valno;
862 assert(DefVNI->def == I->start && "Inconsistent def");
863 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
864 // If the defined value extends beyond NewIdx, just move the def down.
865 // This is case 1 above.
866 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
867 I->start = DefVNI->def;
868 return;
869 }
870 // The remaining possibilities are now:
871 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
872 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
873 // In either case, it is possible that there is an existing def at NewIdx.
874 assert((I->end == OldIdx.getDeadSlot() ||
875 SlotIndex::isSameInstr(I->end, NewIdx)) &&
876 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +0000877 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000878 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
879 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
880 // coalesced into that value.
881 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +0000882 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000883 return;
884 }
885 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000886 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000887 // values. The new range should be placed immediately before NewI, move any
888 // intermediate ranges up.
889 assert(NewI != I && "Inconsistent iterators");
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000890 std::copy(std::next(I), NewI, I);
891 *std::prev(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +0000892 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000893 }
894
Matthias Braun34e1be92013-10-10 21:29:02 +0000895 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000896 /// to NewIdx.
897 ///
898 /// 1. Live def at OldIdx:
899 /// Hoist def to NewIdx.
900 ///
901 /// 2. Dead def at OldIdx:
902 /// Hoist def+end to NewIdx, possibly move across other values.
903 ///
904 /// 3. Dead def at OldIdx AND existing def at NewIdx:
905 /// Remove value defined at OldIdx, coalescing it with existing value.
906 ///
907 /// 4. Live def at OldIdx AND existing def at NewIdx:
908 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
909 /// (Happens when bundling multiple defs together).
910 ///
911 /// 5. Value killed at OldIdx:
912 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
913 /// OldIdx.
914 ///
Matthias Braun34e1be92013-10-10 21:29:02 +0000915 void handleMoveUp(LiveRange &LR, unsigned Reg) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000916 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000917 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
918 LiveRange::iterator E = LR.end();
919 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000920 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
921 return;
922
923 // Handle a live-in value.
924 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
925 // If the live-in value isn't killed here, there is nothing to do.
926 if (!SlotIndex::isSameInstr(OldIdx, I->end))
927 return;
928 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
929 // another use, we need to search for that use. Case 5 above.
930 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
931 ++I;
932 // If OldIdx also defines a value, there couldn't have been another use.
933 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
934 // No def, search for the new kill.
935 // This can never be an early clobber kill since there is no def.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000936 std::prev(I)->end = findLastUseBefore(Reg).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000937 return;
Lang Hames13b11522012-02-19 07:13:05 +0000938 }
939 }
940
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000941 // Now deal with the def at OldIdx.
942 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
943 VNInfo *DefVNI = I->valno;
944 assert(DefVNI->def == I->start && "Inconsistent def");
945 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
946
947 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000948 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000949 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
950 assert(NewI->valno != DefVNI && "Same value defined more than once?");
951 // There is an existing def at NewIdx.
952 if (I->end.isDead()) {
953 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000954 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000955 return;
956 }
957 // Case 4: Replace def at NewIdx with live def at OldIdx.
958 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +0000959 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000960 return;
Lang Hames13b11522012-02-19 07:13:05 +0000961 }
962
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000963 // There is no existing def at NewIdx. Hoist DefVNI.
964 if (!I->end.isDead()) {
965 // Leave the end point of a live def.
966 I->start = DefVNI->def;
967 return;
968 }
969
Matthias Braun34e1be92013-10-10 21:29:02 +0000970 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000971 // so move I up to NewI. Slide [NewI;I) down one position.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000972 std::copy_backward(NewI, I, std::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +0000973 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +0000974 }
975
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000976 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +0000977 SmallVectorImpl<SlotIndex>::iterator RI =
978 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
979 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000980 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
981 "No RegMask at OldIdx.");
982 *RI = NewIdx.getRegSlot();
983 assert((RI == LIS.RegMaskSlots.begin() ||
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000984 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
985 "Cannot move regmask instruction above another call");
986 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
987 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
988 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +0000989 }
Lang Hames4645a722012-02-19 03:00:30 +0000990
991 // Return the last use of reg between NewIdx and OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000992 SlotIndex findLastUseBefore(unsigned Reg) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +0000993
994 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +0000995 SlotIndex LastUse = NewIdx;
Owen Andersonabb90c92014-03-13 06:02:25 +0000996 for (MachineRegisterInfo::use_instr_nodbg_iterator
997 UI = MRI.use_instr_nodbg_begin(Reg),
998 UE = MRI.use_instr_nodbg_end();
999 UI != UE; ++UI) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001000 const MachineInstr* MI = &*UI;
1001 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1002 if (InstSlot > LastUse && InstSlot < OldIdx)
1003 LastUse = InstSlot;
1004 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001005 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +00001006 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001007
1008 // This is a regunit interval, so scanning the use list could be very
1009 // expensive. Scan upwards from OldIdx instead.
1010 assert(NewIdx < OldIdx && "Expected upwards move");
1011 SlotIndexes *Indexes = LIS.getSlotIndexes();
1012 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1013
1014 // OldIdx may not correspond to an instruction any longer, so set MII to
1015 // point to the next instruction after OldIdx, or MBB->end().
1016 MachineBasicBlock::iterator MII = MBB->end();
1017 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1018 Indexes->getNextNonNullIndex(OldIdx)))
1019 if (MI->getParent() == MBB)
1020 MII = MI;
1021
1022 MachineBasicBlock::iterator Begin = MBB->begin();
1023 while (MII != Begin) {
1024 if ((--MII)->isDebugValue())
1025 continue;
1026 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1027
1028 // Stop searching when NewIdx is reached.
1029 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1030 return NewIdx;
1031
1032 // Check if MII uses Reg.
1033 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1034 if (MO->isReg() &&
1035 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1036 TRI.hasRegUnit(MO->getReg(), Reg))
1037 return Idx;
1038 }
1039 // Didn't reach NewIdx. It must be the first instruction in the block.
1040 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001041 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001042};
1043
Andrew Trickd9d4be02012-10-16 00:22:51 +00001044void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001045 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001046 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1047 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001048 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001049 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1050 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001051 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001052
Andrew Trickd9d4be02012-10-16 00:22:51 +00001053 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001054 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001055}
1056
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001057void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001058 MachineInstr* BundleStart,
1059 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001060 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001061 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001062 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001063 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001064}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001065
1066void
1067LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001068 MachineBasicBlock::iterator Begin,
1069 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001070 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001071 // Find anchor points, which are at the beginning/end of blocks or at
1072 // instructions that already have indexes.
1073 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1074 --Begin;
1075 while (End != MBB->end() && !Indexes->hasIndex(End))
1076 ++End;
1077
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001078 SlotIndex endIdx;
1079 if (End == MBB->end())
1080 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001081 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001082 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001083
Cameron Zwarich29414822013-02-20 06:46:41 +00001084 Indexes->repairIndexesInRange(MBB, Begin, End);
1085
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001086 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1087 --I;
1088 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001089 if (MI->isDebugValue())
1090 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001091 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1092 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1093 if (MOI->isReg() &&
1094 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1095 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001096 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001097 }
1098 }
1099 }
1100
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001101 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1102 unsigned Reg = OrigRegs[i];
1103 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1104 continue;
1105
1106 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001107 // FIXME: Should we support undefs that gain defs?
1108 if (!LI.hasAtLeastOneValue())
1109 continue;
1110
1111 LiveInterval::iterator LII = LI.find(endIdx);
1112 SlotIndex lastUseIdx;
1113 if (LII != LI.end() && LII->start < endIdx)
1114 lastUseIdx = LII->end;
1115 else
1116 --LII;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001117
Cameron Zwarich24955962013-02-17 11:09:00 +00001118 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1119 --I;
1120 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001121 if (MI->isDebugValue())
1122 continue;
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001123
Cameron Zwarich63acc732013-02-23 10:25:25 +00001124 SlotIndex instrIdx = getInstructionIndex(MI);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001125 bool isStartValid = getInstructionFromIndex(LII->start);
1126 bool isEndValid = getInstructionFromIndex(LII->end);
1127
1128 // FIXME: This doesn't currently handle early-clobber or multiple removed
1129 // defs inside of the region to repair.
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001130 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1131 OE = MI->operands_end(); OI != OE; ++OI) {
1132 const MachineOperand &MO = *OI;
1133 if (!MO.isReg() || MO.getReg() != Reg)
1134 continue;
1135
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001136 if (MO.isDef()) {
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001137 if (!isStartValid) {
1138 if (LII->end.isDead()) {
1139 SlotIndex prevStart;
1140 if (LII != LI.begin())
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001141 prevStart = std::prev(LII)->start;
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001142
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001143 // FIXME: This could be more efficient if there was a
1144 // removeSegment method that returned an iterator.
1145 LI.removeSegment(*LII, true);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001146 if (prevStart.isValid())
1147 LII = LI.find(prevStart);
1148 else
1149 LII = LI.begin();
1150 } else {
1151 LII->start = instrIdx.getRegSlot();
1152 LII->valno->def = instrIdx.getRegSlot();
1153 if (MO.getSubReg() && !MO.isUndef())
1154 lastUseIdx = instrIdx.getRegSlot();
1155 else
1156 lastUseIdx = SlotIndex();
1157 continue;
1158 }
1159 }
1160
1161 if (!lastUseIdx.isValid()) {
1162 VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1163 VNInfoAllocator);
Matthias Braund7df9352013-10-10 21:28:47 +00001164 LiveRange::Segment S(instrIdx.getRegSlot(),
1165 instrIdx.getDeadSlot(), VNI);
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001166 LII = LI.addSegment(S);
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001167 } else if (LII->start != instrIdx.getRegSlot()) {
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001168 VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1169 VNInfoAllocator);
Matthias Braund7df9352013-10-10 21:28:47 +00001170 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001171 LII = LI.addSegment(S);
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001172 }
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001173
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001174 if (MO.getSubReg() && !MO.isUndef())
1175 lastUseIdx = instrIdx.getRegSlot();
1176 else
1177 lastUseIdx = SlotIndex();
1178 } else if (MO.isUse()) {
1179 // FIXME: This should probably be handled outside of this branch,
1180 // either as part of the def case (for defs inside of the region) or
1181 // after the loop over the region.
1182 if (!isEndValid && !LII->end.isBlock())
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001183 LII->end = instrIdx.getRegSlot();
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001184 if (!lastUseIdx.isValid())
1185 lastUseIdx = instrIdx.getRegSlot();
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001186 }
1187 }
1188 }
1189 }
1190}