blob: 17ab6b58a252800c3f122f56901190b0d4b3adf8 [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"
Matthias Braun7044d692014-12-10 01:12:20 +000035#include "llvm/Support/Format.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000036#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Target/TargetInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#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)
Chandler Carruth7b560d42015-09-09 17:55:00 +000051INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
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
Matthias Braune3d3b882014-12-10 01:12:30 +000066static cl::opt<bool> EnableSubRegLiveness(
67 "enable-subreg-liveness", cl::Hidden, cl::init(true),
68 cl::desc("Enable subregister liveness tracking."));
69
Quentin Colombeta8cb36e2015-02-06 18:42:41 +000070namespace llvm {
71cl::opt<bool> UseSegmentSetForPhysRegs(
72 "use-segment-set-for-physregs", cl::Hidden, cl::init(true),
73 cl::desc(
74 "Use segment set for the computation of the live ranges of physregs."));
75}
76
Chris Lattnerbdf12102006-08-24 22:43:55 +000077void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman04023152009-07-31 23:37:33 +000078 AU.setPreservesCFG();
Chandler Carruth7b560d42015-09-09 17:55:00 +000079 AU.addRequired<AAResultsWrapperPass>();
80 AU.addPreserved<AAResultsWrapperPass>();
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +000081 // LiveVariables isn't really required by this analysis, it is only required
82 // here to make sure it is live during TwoAddressInstructionPass and
83 // PHIElimination. This is temporary.
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000084 AU.addRequired<LiveVariables>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +000085 AU.addPreserved<LiveVariables>();
Andrew Trick5188c002012-02-13 20:44:42 +000086 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +000087 AU.addRequiredTransitiveID(MachineDominatorsID);
Bill Wendling0c209432008-01-04 20:54:55 +000088 AU.addPreservedID(MachineDominatorsID);
Lang Hames05fb9632009-11-03 23:52:08 +000089 AU.addPreserved<SlotIndexes>();
90 AU.addRequiredTransitive<SlotIndexes>();
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000091 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000092}
93
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000094LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
Craig Topperc0196b12014-04-14 00:51:57 +000095 DomTree(nullptr), LRCalc(nullptr) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000096 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
97}
98
99LiveIntervals::~LiveIntervals() {
100 delete LRCalc;
101}
102
Chris Lattnerbdf12102006-08-24 22:43:55 +0000103void LiveIntervals::releaseMemory() {
Owen Anderson51f689a2008-08-13 21:49:13 +0000104 // Free the live intervals themselves.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000105 for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
106 delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
107 VirtRegIntervals.clear();
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000108 RegMaskSlots.clear();
109 RegMaskBits.clear();
Jakob Stoklund Olesen25c41952012-02-10 01:26:29 +0000110 RegMaskBlocks.clear();
Lang Hamesdab7b062009-07-09 03:57:02 +0000111
Matthias Braun34e1be92013-10-10 21:29:02 +0000112 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
113 delete RegUnitRanges[i];
114 RegUnitRanges.clear();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000115
Benjamin Kramera0000022010-06-26 11:30:59 +0000116 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
117 VNInfoAllocator.Reset();
Alkis Evlogimenos50d97e32004-01-31 19:59:32 +0000118}
119
Jakob Stoklund Olesen6d13b8f2013-08-14 17:28:46 +0000120/// runOnMachineFunction - calculates LiveIntervals
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000121///
122bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000123 MF = &fn;
124 MRI = &MF->getRegInfo();
Eric Christopherd3fa4402014-10-14 06:26:53 +0000125 TRI = MF->getSubtarget().getRegisterInfo();
126 TII = MF->getSubtarget().getInstrInfo();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000127 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000128 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000129 DomTree = &getAnalysis<MachineDominatorTree>();
Matthias Braune3d3b882014-12-10 01:12:30 +0000130
131 if (EnableSubRegLiveness && MF->getSubtarget().enableSubRegLiveness())
132 MRI->enableSubRegLiveness(true);
133
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000134 if (!LRCalc)
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000135 LRCalc = new LiveRangeCalc();
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000136
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000137 // Allocate space for all virtual registers.
138 VirtRegIntervals.resize(MRI->getNumVirtRegs());
139
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +0000140 computeVirtRegs();
141 computeRegMasks();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000142 computeLiveInRegUnits();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000143
Andrew Trick8d02e912013-06-21 18:33:23 +0000144 if (EnablePrecomputePhysRegs) {
145 // For stress testing, precompute live ranges of all physical register
146 // units, including reserved registers.
147 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
148 getRegUnit(i);
149 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000150 DEBUG(dump());
Alkis Evlogimenosa6983082004-08-04 09:46:26 +0000151 return true;
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +0000152}
153
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000154/// print - Implement the dump method.
Chris Lattner13626022009-08-23 06:03:38 +0000155void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000156 OS << "********** INTERVALS **********\n";
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000157
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000158 // Dump the regunits.
Matthias Braun34e1be92013-10-10 21:29:02 +0000159 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
160 if (LiveRange *LR = RegUnitRanges[i])
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000161 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000162
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000163 // Dump the virtregs.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000164 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
165 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
166 if (hasInterval(Reg))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000167 OS << getInterval(Reg) << '\n';
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000168 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000169
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000170 OS << "RegMasks:";
171 for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
172 OS << ' ' << RegMaskSlots[i];
173 OS << '\n';
174
Evan Cheng7f789592009-09-14 21:33:42 +0000175 printInstrs(OS);
176}
177
178void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000179 OS << "********** MACHINEINSTRS **********\n";
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000180 MF->print(OS, Indexes);
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000181}
182
Manman Ren19f49ac2012-09-11 22:23:19 +0000183#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Evan Cheng7f789592009-09-14 21:33:42 +0000184void LiveIntervals::dumpInstrs() const {
David Greene1a51a212010-01-04 22:49:02 +0000185 printInstrs(dbgs());
Evan Cheng7f789592009-09-14 21:33:42 +0000186}
Manman Ren742534c2012-09-06 19:06:06 +0000187#endif
Evan Cheng7f789592009-09-14 21:33:42 +0000188
Owen Anderson51f689a2008-08-13 21:49:13 +0000189LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Aaron Ballman04999042013-11-13 00:15:44 +0000190 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
191 llvm::huge_valf : 0.0F;
Owen Anderson51f689a2008-08-13 21:49:13 +0000192 return new LiveInterval(reg, Weight);
Alkis Evlogimenos237f2032004-04-09 18:07:57 +0000193}
Evan Chengbe51f282007-11-12 06:35:08 +0000194
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000195
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000196/// computeVirtRegInterval - Compute the live interval of a virtual register,
197/// based on defs and uses.
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000198void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000199 assert(LRCalc && "LRCalc not initialized.");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000200 assert(LI.empty() && "Should only compute empty intervals.");
Matthias Braun73e42212015-09-22 22:37:44 +0000201 bool ShouldTrackSubRegLiveness = MRI->shouldTrackSubRegLiveness(LI.reg);
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000202 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
Matthias Braun73e42212015-09-22 22:37:44 +0000203 LRCalc->calculate(LI, ShouldTrackSubRegLiveness);
204 bool SeparatedComponents = computeDeadValues(LI, nullptr);
205 if (SeparatedComponents) {
206 assert(ShouldTrackSubRegLiveness
207 && "Separated components should only occur for unused subreg defs");
208 SmallVector<LiveInterval*, 8> SplitLIs;
209 splitSeparateComponents(LI, SplitLIs);
210 }
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000211}
212
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000213void LiveIntervals::computeVirtRegs() {
214 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
215 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
216 if (MRI->reg_nodbg_empty(Reg))
217 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000218 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000219 }
220}
221
222void LiveIntervals::computeRegMasks() {
223 RegMaskBlocks.resize(MF->getNumBlockIDs());
224
225 // Find all instructions with regmask operands.
226 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
227 MBBI != E; ++MBBI) {
228 MachineBasicBlock *MBB = MBBI;
229 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
230 RMB.first = RegMaskSlots.size();
231 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
232 MI != ME; ++MI)
Matthias Braune41e1462015-05-29 02:56:46 +0000233 for (const MachineOperand &MO : MI->operands()) {
234 if (!MO.isRegMask())
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000235 continue;
236 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
Matthias Braune41e1462015-05-29 02:56:46 +0000237 RegMaskBits.push_back(MO.getRegMask());
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000238 }
239 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000240 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000241 }
242}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000243
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000244//===----------------------------------------------------------------------===//
245// Register Unit Liveness
246//===----------------------------------------------------------------------===//
247//
248// Fixed interference typically comes from ABI boundaries: Function arguments
249// and return values are passed in fixed registers, and so are exception
250// pointers entering landing pads. Certain instructions require values to be
251// present in specific registers. That is also represented through fixed
252// interference.
253//
254
Matthias Braun34e1be92013-10-10 21:29:02 +0000255/// computeRegUnitInterval - Compute the live range of a register unit, based
256/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000257/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000258void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000259 assert(LRCalc && "LRCalc not initialized.");
260 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
261
262 // The physregs aliasing Unit are the roots and their super-registers.
263 // Create all values as dead defs before extending to uses. Note that roots
264 // may share super-registers. That's OK because createDeadDefs() is
265 // idempotent. It is very rare for a register unit to have multiple roots, so
266 // uniquing super-registers is probably not worthwhile.
267 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000268 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
269 Supers.isValid(); ++Supers) {
Matthias Braunc3a72c22014-12-15 21:36:35 +0000270 if (!MRI->reg_empty(*Supers))
271 LRCalc->createDeadDefs(LR, *Supers);
272 }
273 }
274
275 // Now extend LR to reach all uses.
276 // Ignore uses of reserved registers. We only track defs of those.
277 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
278 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
279 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000280 unsigned Reg = *Supers;
Matthias Braunc3a72c22014-12-15 21:36:35 +0000281 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
282 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000283 }
284 }
Quentin Colombeta8cb36e2015-02-06 18:42:41 +0000285
286 // Flush the segment set to the segment vector.
287 if (UseSegmentSetForPhysRegs)
288 LR.flushSegmentSet();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000289}
290
291
292/// computeLiveInRegUnits - Precompute the live ranges of any register units
293/// that are live-in to an ABI block somewhere. Register values can appear
294/// without a corresponding def when entering the entry block or a landing pad.
295///
296void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000297 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000298 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
299
Matthias Braun34e1be92013-10-10 21:29:02 +0000300 // Keep track of the live range sets allocated.
301 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000302
303 // Check all basic blocks for live-ins.
304 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
305 MFI != MFE; ++MFI) {
306 const MachineBasicBlock *MBB = MFI;
307
308 // We only care about ABI blocks: Entry + landing pads.
Reid Kleckner0e288232015-08-27 23:27:47 +0000309 if ((MFI != MF->begin() && !MBB->isEHPad()) || MBB->livein_empty())
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000310 continue;
311
312 // Create phi-defs at Begin for all live-in registers.
313 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
314 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
Matthias Braund9da1622015-09-09 18:08:03 +0000315 for (const auto &LI : MBB->liveins()) {
316 for (MCRegUnitIterator Units(LI.PhysReg, TRI); Units.isValid(); ++Units) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000317 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000318 LiveRange *LR = RegUnitRanges[Unit];
319 if (!LR) {
Quentin Colombeta8cb36e2015-02-06 18:42:41 +0000320 // Use segment set to speed-up initial computation of the live range.
321 LR = RegUnitRanges[Unit] = new LiveRange(UseSegmentSetForPhysRegs);
Matthias Braun34e1be92013-10-10 21:29:02 +0000322 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000323 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000324 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000325 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000326 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
327 }
328 }
329 DEBUG(dbgs() << '\n');
330 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000331 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000332
Matthias Braun34e1be92013-10-10 21:29:02 +0000333 // Compute the 'normal' part of the ranges.
334 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
335 unsigned Unit = NewRanges[i];
336 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
337 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000338}
339
340
Matthias Braun20e1f382014-12-10 01:12:18 +0000341static void createSegmentsForValues(LiveRange &LR,
342 iterator_range<LiveInterval::vni_iterator> VNIs) {
343 for (auto VNI : VNIs) {
344 if (VNI->isUnused())
345 continue;
346 SlotIndex Def = VNI->def;
347 LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI));
348 }
349}
350
351typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList;
352
353static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes,
354 ShrinkToUsesWorkList &WorkList,
355 const LiveRange &OldRange) {
356 // Keep track of the PHIs that are in use.
357 SmallPtrSet<VNInfo*, 8> UsedPHIs;
358 // Blocks that have already been added to WorkList as live-out.
359 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
360
361 // Extend intervals to reach all uses in WorkList.
362 while (!WorkList.empty()) {
363 SlotIndex Idx = WorkList.back().first;
364 VNInfo *VNI = WorkList.back().second;
365 WorkList.pop_back();
366 const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot());
367 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
368
369 // Extend the live range for VNI to be live at Idx.
370 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
371 assert(ExtVNI == VNI && "Unexpected existing value number");
372 (void)ExtVNI;
373 // Is this a PHIDef we haven't seen before?
374 if (!VNI->isPHIDef() || VNI->def != BlockStart ||
375 !UsedPHIs.insert(VNI).second)
376 continue;
377 // The PHI is live, make sure the predecessors are live-out.
378 for (auto &Pred : MBB->predecessors()) {
379 if (!LiveOut.insert(Pred).second)
380 continue;
381 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
382 // A predecessor is not required to have a live-out value for a PHI.
383 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
384 WorkList.push_back(std::make_pair(Stop, PVNI));
385 }
386 continue;
387 }
388
389 // VNI is live-in to MBB.
390 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
391 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
392
393 // Make sure VNI is live-out from the predecessors.
394 for (auto &Pred : MBB->predecessors()) {
395 if (!LiveOut.insert(Pred).second)
396 continue;
397 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
398 assert(OldRange.getVNInfoBefore(Stop) == VNI &&
399 "Wrong value out of predecessor");
400 WorkList.push_back(std::make_pair(Stop, VNI));
401 }
402 }
403}
404
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000405bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000406 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000407 DEBUG(dbgs() << "Shrink: " << *li << '\n');
408 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000409 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000410
Matthias Braun20e1f382014-12-10 01:12:18 +0000411 // Shrink subregister live ranges.
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000412 bool NeedsCleanup = false;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000413 for (LiveInterval::SubRange &S : li->subranges()) {
414 shrinkToUses(S, li->reg);
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000415 if (S.empty())
416 NeedsCleanup = true;
Matthias Braun20e1f382014-12-10 01:12:18 +0000417 }
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000418 if (NeedsCleanup)
419 li->removeEmptySubRanges();
Matthias Braun20e1f382014-12-10 01:12:18 +0000420
421 // Find all the values used, including PHI kills.
422 ShrinkToUsesWorkList WorkList;
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000423
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000424 // Visit all instructions reading li->reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000425 for (MachineRegisterInfo::reg_instr_iterator
426 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
427 I != E; ) {
428 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000429 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
430 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000431 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000432 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000433 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000434 if (!VNI) {
435 // This shouldn't happen: readsVirtualRegister returns true, but there is
436 // no live value. It is likely caused by a target getting <undef> flags
437 // wrong.
438 DEBUG(dbgs() << Idx << '\t' << *UseMI
439 << "Warning: Instr claims to read non-existent value in "
440 << *li << '\n');
441 continue;
442 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000443 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000444 // register one slot early.
445 if (VNInfo *DefVNI = LRQ.valueDefined())
446 Idx = DefVNI->def;
447
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000448 WorkList.push_back(std::make_pair(Idx, VNI));
449 }
450
Matthias Braund7df9352013-10-10 21:28:47 +0000451 // Create new live ranges with only minimal live segments per def.
452 LiveRange NewLR;
Matthias Braun20e1f382014-12-10 01:12:18 +0000453 createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end()));
454 extendSegmentsToUses(NewLR, *Indexes, WorkList, *li);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000455
Pete Cooper72235572014-06-03 22:42:10 +0000456 // Move the trimmed segments back.
457 li->segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000458
459 // Handle dead values.
460 bool CanSeparate = computeDeadValues(*li, dead);
Pete Cooper72235572014-06-03 22:42:10 +0000461 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
462 return CanSeparate;
463}
464
Matthias Braun15abf372014-12-18 19:58:52 +0000465bool LiveIntervals::computeDeadValues(LiveInterval &LI,
Pete Cooper72235572014-06-03 22:42:10 +0000466 SmallVectorImpl<MachineInstr*> *dead) {
Matthias Braun73e42212015-09-22 22:37:44 +0000467 bool MayHaveSplitComponents = false;
Matthias Braun15abf372014-12-18 19:58:52 +0000468 for (auto VNI : LI.valnos) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000469 if (VNI->isUnused())
470 continue;
Matthias Braunc1988f32015-01-21 22:55:13 +0000471 SlotIndex Def = VNI->def;
472 LiveRange::iterator I = LI.FindSegmentContaining(Def);
Matthias Braun15abf372014-12-18 19:58:52 +0000473 assert(I != LI.end() && "Missing segment for VNI");
Matthias Braunc1988f32015-01-21 22:55:13 +0000474
475 // Is the register live before? Otherwise we may have to add a read-undef
476 // flag for subregister defs.
Matthias Braun73e42212015-09-22 22:37:44 +0000477 bool DeadBeforeDef = false;
478 unsigned VReg = LI.reg;
479 if (MRI->shouldTrackSubRegLiveness(VReg)) {
Matthias Braunc1988f32015-01-21 22:55:13 +0000480 if ((I == LI.begin() || std::prev(I)->end < Def) && !VNI->isPHIDef()) {
481 MachineInstr *MI = getInstructionFromIndex(Def);
Matthias Braun73e42212015-09-22 22:37:44 +0000482 MI->addRegisterDefReadUndef(VReg);
483 DeadBeforeDef = true;
Matthias Braunc1988f32015-01-21 22:55:13 +0000484 }
485 }
486
487 if (I->end != Def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000488 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000489 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000490 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000491 VNI->markUnused();
Matthias Braun15abf372014-12-18 19:58:52 +0000492 LI.removeSegment(I);
Matthias Braunc1988f32015-01-21 22:55:13 +0000493 DEBUG(dbgs() << "Dead PHI at " << Def << " may separate interval\n");
Matthias Braun73e42212015-09-22 22:37:44 +0000494 MayHaveSplitComponents = true;
Matthias Braun15abf372014-12-18 19:58:52 +0000495 } else {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000496 // This is a dead def. Make sure the instruction knows.
Matthias Braunc1988f32015-01-21 22:55:13 +0000497 MachineInstr *MI = getInstructionFromIndex(Def);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000498 assert(MI && "No instruction defining live value");
Matthias Braun73e42212015-09-22 22:37:44 +0000499 MI->addRegisterDead(VReg, TRI);
500
501 // If we have a dead def that is completely separate from the rest of
502 // the liverange then we rewrite it to use a different VReg to not violate
503 // the rule that the liveness of a virtual register forms a connected
504 // component. This should only happen if subregister liveness is tracked.
505 if (DeadBeforeDef)
506 MayHaveSplitComponents = true;
507
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000508 if (dead && MI->allDefsAreDead()) {
Matthias Braunc1988f32015-01-21 22:55:13 +0000509 DEBUG(dbgs() << "All defs dead: " << Def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000510 dead->push_back(MI);
511 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000512 }
513 }
Matthias Braun73e42212015-09-22 22:37:44 +0000514 return MayHaveSplitComponents;
Matthias Braun20e1f382014-12-10 01:12:18 +0000515}
516
Matthias Braun15abf372014-12-18 19:58:52 +0000517void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg)
Matthias Braun20e1f382014-12-10 01:12:18 +0000518{
519 DEBUG(dbgs() << "Shrink: " << SR << '\n');
520 assert(TargetRegisterInfo::isVirtualRegister(Reg)
521 && "Can only shrink virtual registers");
522 // Find all the values used, including PHI kills.
523 ShrinkToUsesWorkList WorkList;
524
525 // Visit all instructions reading Reg.
526 SlotIndex LastIdx;
527 for (MachineOperand &MO : MRI->reg_operands(Reg)) {
528 MachineInstr *UseMI = MO.getParent();
529 if (UseMI->isDebugValue())
530 continue;
531 // Maybe the operand is for a subregister we don't care about.
532 unsigned SubReg = MO.getSubReg();
533 if (SubReg != 0) {
Matthias Braune6a24852015-09-25 21:51:14 +0000534 LaneBitmask LaneMask = TRI->getSubRegIndexLaneMask(SubReg);
535 if ((LaneMask & SR.LaneMask) == 0)
Matthias Braun20e1f382014-12-10 01:12:18 +0000536 continue;
537 }
538 // We only need to visit each instruction once.
539 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
540 if (Idx == LastIdx)
541 continue;
542 LastIdx = Idx;
543
544 LiveQueryResult LRQ = SR.Query(Idx);
545 VNInfo *VNI = LRQ.valueIn();
546 // For Subranges it is possible that only undef values are left in that
547 // part of the subregister, so there is no real liverange at the use
548 if (!VNI)
549 continue;
550
551 // Special case: An early-clobber tied operand reads and writes the
552 // register one slot early.
553 if (VNInfo *DefVNI = LRQ.valueDefined())
554 Idx = DefVNI->def;
555
556 WorkList.push_back(std::make_pair(Idx, VNI));
557 }
558
559 // Create a new live ranges with only minimal live segments per def.
560 LiveRange NewLR;
561 createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end()));
562 extendSegmentsToUses(NewLR, *Indexes, WorkList, SR);
563
Matthias Braun20e1f382014-12-10 01:12:18 +0000564 // Move the trimmed ranges back.
565 SR.segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000566
567 // Remove dead PHI value numbers
568 for (auto VNI : SR.valnos) {
569 if (VNI->isUnused())
570 continue;
571 const LiveRange::Segment *Segment = SR.getSegmentContaining(VNI->def);
572 assert(Segment != nullptr && "Missing segment for VNI");
573 if (Segment->end != VNI->def.getDeadSlot())
574 continue;
575 if (VNI->isPHIDef()) {
576 // This is a dead PHI. Remove it.
577 VNI->markUnused();
578 SR.removeSegment(*Segment);
579 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
580 }
581 }
582
Matthias Braun20e1f382014-12-10 01:12:18 +0000583 DEBUG(dbgs() << "Shrunk: " << SR << '\n');
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000584}
585
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000586void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000587 ArrayRef<SlotIndex> Indices) {
588 assert(LRCalc && "LRCalc not initialized.");
589 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
590 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000591 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000592}
593
Matthias Braun8970d842014-12-10 01:12:36 +0000594void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000595 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun8970d842014-12-10 01:12:36 +0000596 LiveQueryResult LRQ = LR.Query(Kill);
597 VNInfo *VNI = LRQ.valueOutOrDead();
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000598 if (!VNI)
599 return;
600
601 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
Matthias Braun8970d842014-12-10 01:12:36 +0000602 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000603
604 // If VNI isn't live out from KillMBB, the value is trivially pruned.
605 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000606 LR.removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000607 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
608 return;
609 }
610
611 // VNI is live out of KillMBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000612 LR.removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000613 if (EndPoints) EndPoints->push_back(MBBEnd);
614
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000615 // Find all blocks that are reachable from KillMBB without leaving VNI's live
616 // range. It is possible that KillMBB itself is reachable, so start a DFS
617 // from each successor.
618 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
619 VisitedTy Visited;
620 for (MachineBasicBlock::succ_iterator
621 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
622 SuccI != SuccE; ++SuccI) {
623 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
624 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
625 I != E;) {
626 MachineBasicBlock *MBB = *I;
627
628 // Check if VNI is live in to MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000629 SlotIndex MBBStart, MBBEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000630 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun8970d842014-12-10 01:12:36 +0000631 LiveQueryResult LRQ = LR.Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000632 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000633 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000634 I.skipChildren();
635 continue;
636 }
637
638 // Prune the search if VNI is killed in MBB.
639 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000640 LR.removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000641 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
642 I.skipChildren();
643 continue;
644 }
645
646 // VNI is live through MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000647 LR.removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000648 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000649 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000650 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000651 }
652}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000653
Evan Chengbe51f282007-11-12 06:35:08 +0000654//===----------------------------------------------------------------------===//
655// Register allocator hooks.
656//
657
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000658void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
659 // Keep track of regunit ranges.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000660 SmallVector<std::pair<const LiveRange*, LiveRange::const_iterator>, 8> RU;
Matthias Braun714c4942014-12-20 01:54:50 +0000661 // Keep track of subregister ranges.
662 SmallVector<std::pair<const LiveInterval::SubRange*,
663 LiveRange::const_iterator>, 4> SRs;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000664
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000665 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
666 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000667 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000668 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000669 const LiveInterval &LI = getInterval(Reg);
670 if (LI.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000671 continue;
672
673 // Find the regunit intervals for the assigned register. They may overlap
674 // the virtual register live range, cancelling any kills.
675 RU.clear();
676 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
677 ++Units) {
Matthias Braun7f8dece2014-12-20 01:54:48 +0000678 const LiveRange &RURange = getRegUnit(*Units);
679 if (RURange.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000680 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000681 RU.push_back(std::make_pair(&RURange, RURange.find(LI.begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000682 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000683
Matthias Brauna25e13a2015-03-19 00:21:58 +0000684 if (MRI->subRegLivenessEnabled()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000685 SRs.clear();
686 for (const LiveInterval::SubRange &SR : LI.subranges()) {
687 SRs.push_back(std::make_pair(&SR, SR.find(LI.begin()->end)));
688 }
689 }
690
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000691 // Every instruction that kills Reg corresponds to a segment range end
692 // point.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000693 for (LiveInterval::const_iterator RI = LI.begin(), RE = LI.end(); RI != RE;
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000694 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000695 // A block index indicates an MBB edge.
696 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000697 continue;
698 MachineInstr *MI = getInstructionFromIndex(RI->end);
699 if (!MI)
700 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000701
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000702 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000703 // happen when a physreg is defined as a copy of a virtreg:
704 //
705 // %EAX = COPY %vreg5
706 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
707 // BAR %EAX<kill>
708 //
709 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000710 for (auto &RUP : RU) {
711 const LiveRange &RURange = *RUP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000712 LiveRange::const_iterator &I = RUP.second;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000713 if (I == RURange.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000714 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000715 I = RURange.advanceTo(I, RI->end);
716 if (I == RURange.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000717 continue;
718 // I is overlapping RI.
Matthias Braun714c4942014-12-20 01:54:50 +0000719 goto CancelKill;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000720 }
Matthias Braund70caaf2014-12-10 01:13:04 +0000721
Matthias Brauna25e13a2015-03-19 00:21:58 +0000722 if (MRI->subRegLivenessEnabled()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000723 // When reading a partial undefined value we must not add a kill flag.
724 // The regalloc might have used the undef lane for something else.
725 // Example:
726 // %vreg1 = ... ; R32: %vreg1
727 // %vreg2:high16 = ... ; R64: %vreg2
728 // = read %vreg2<kill> ; R64: %vreg2
729 // = read %vreg1 ; R32: %vreg1
730 // The <kill> flag is correct for %vreg2, but the register allocator may
731 // assign R0L to %vreg1, and R0 to %vreg2 because the low 32bits of R0
732 // are actually never written by %vreg2. After assignment the <kill>
733 // flag at the read instruction is invalid.
Matthias Braune6a24852015-09-25 21:51:14 +0000734 LaneBitmask DefinedLanesMask;
Matthias Braun714c4942014-12-20 01:54:50 +0000735 if (!SRs.empty()) {
736 // Compute a mask of lanes that are defined.
737 DefinedLanesMask = 0;
738 for (auto &SRP : SRs) {
739 const LiveInterval::SubRange &SR = *SRP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000740 LiveRange::const_iterator &I = SRP.second;
Matthias Braun714c4942014-12-20 01:54:50 +0000741 if (I == SR.end())
742 continue;
743 I = SR.advanceTo(I, RI->end);
744 if (I == SR.end() || I->start >= RI->end)
745 continue;
746 // I is overlapping RI
747 DefinedLanesMask |= SR.LaneMask;
Matthias Braund70caaf2014-12-10 01:13:04 +0000748 }
Matthias Braun714c4942014-12-20 01:54:50 +0000749 } else
750 DefinedLanesMask = ~0u;
751
752 bool IsFullWrite = false;
753 for (const MachineOperand &MO : MI->operands()) {
754 if (!MO.isReg() || MO.getReg() != Reg)
755 continue;
756 if (MO.isUse()) {
757 // Reading any undefined lanes?
Matthias Braune6a24852015-09-25 21:51:14 +0000758 LaneBitmask UseMask = TRI->getSubRegIndexLaneMask(MO.getSubReg());
Matthias Braun714c4942014-12-20 01:54:50 +0000759 if ((UseMask & ~DefinedLanesMask) != 0)
760 goto CancelKill;
761 } else if (MO.getSubReg() == 0) {
762 // Writing to the full register?
763 assert(MO.isDef());
764 IsFullWrite = true;
765 }
766 }
767
768 // If an instruction writes to a subregister, a new segment starts in
769 // the LiveInterval. But as this is only overriding part of the register
770 // adding kill-flags is not correct here after registers have been
771 // assigned.
772 if (!IsFullWrite) {
773 // Next segment has to be adjacent in the subregister write case.
774 LiveRange::const_iterator N = std::next(RI);
775 if (N != LI.end() && N->start == RI->end)
776 goto CancelKill;
Matthias Braund70caaf2014-12-10 01:13:04 +0000777 }
778 }
779
Matthias Braun714c4942014-12-20 01:54:50 +0000780 MI->addRegisterKilled(Reg, nullptr);
781 continue;
782CancelKill:
783 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000784 }
785 }
786}
787
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000788MachineBasicBlock*
789LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
790 // A local live range must be fully contained inside the block, meaning it is
791 // defined and killed at instructions, not at block boundaries. It is not
792 // live in or or out of any block.
793 //
794 // It is technically possible to have a PHI-defined live range identical to a
795 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000796
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000797 SlotIndex Start = LI.beginIndex();
798 if (Start.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000799 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000800
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000801 SlotIndex Stop = LI.endIndex();
802 if (Stop.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000803 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000804
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000805 // getMBBFromIndex doesn't need to search the MBB table when both indexes
806 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000807 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
808 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Craig Topperc0196b12014-04-14 00:51:57 +0000809 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng8e223792007-11-17 00:40:40 +0000810}
811
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000812bool
813LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
Matthias Braun96761952014-12-10 23:07:54 +0000814 for (const VNInfo *PHI : LI.valnos) {
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000815 if (PHI->isUnused() || !PHI->isPHIDef())
816 continue;
817 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
818 // Conservatively return true instead of scanning huge predecessor lists.
819 if (PHIMBB->pred_size() > 100)
820 return true;
821 for (MachineBasicBlock::const_pred_iterator
822 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
823 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
824 return true;
825 }
826 return false;
827}
828
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000829float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000830LiveIntervals::getSpillWeight(bool isDef, bool isUse,
831 const MachineBlockFrequencyInfo *MBFI,
832 const MachineInstr *MI) {
833 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
Michael Gottesman5e985ee2013-12-14 02:37:38 +0000834 const float Scale = 1.0f / MBFI->getEntryFreq();
Michael Gottesman9f49d742013-12-14 00:53:32 +0000835 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000836}
837
Matthias Braund7df9352013-10-10 21:28:47 +0000838LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000839LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000840 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000841 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000842 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000843 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000844 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000845 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000846 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000847 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000848
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000849 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000850}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000851
852
853//===----------------------------------------------------------------------===//
854// Register mask functions
855//===----------------------------------------------------------------------===//
856
857bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
858 BitVector &UsableRegs) {
859 if (LI.empty())
860 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000861 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
862
863 // Use a smaller arrays for local live ranges.
864 ArrayRef<SlotIndex> Slots;
865 ArrayRef<const uint32_t*> Bits;
866 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
867 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
868 Bits = getRegMaskBitsInBlock(MBB->getNumber());
869 } else {
870 Slots = getRegMaskSlots();
871 Bits = getRegMaskBits();
872 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000873
874 // We are going to enumerate all the register mask slots contained in LI.
875 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000876 ArrayRef<SlotIndex>::iterator SlotI =
877 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
878 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
879
880 // No slots in range, LI begins after the last call.
881 if (SlotI == SlotE)
882 return false;
883
884 bool Found = false;
885 for (;;) {
886 assert(*SlotI >= LiveI->start);
887 // Loop over all slots overlapping this segment.
888 while (*SlotI < LiveI->end) {
889 // *SlotI overlaps LI. Collect mask bits.
890 if (!Found) {
891 // This is the first overlap. Initialize UsableRegs to all ones.
892 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000893 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000894 Found = true;
895 }
896 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000897 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000898 if (++SlotI == SlotE)
899 return Found;
900 }
901 // *SlotI is beyond the current LI segment.
902 LiveI = LI.advanceTo(LiveI, *SlotI);
903 if (LiveI == LiveE)
904 return Found;
905 // Advance SlotI until it overlaps.
906 while (*SlotI < LiveI->start)
907 if (++SlotI == SlotE)
908 return Found;
909 }
910}
Lang Hamesb9057d52012-02-17 18:44:18 +0000911
912//===----------------------------------------------------------------------===//
913// IntervalUpdate class.
914//===----------------------------------------------------------------------===//
915
Lang Hames7e2ce882012-02-21 00:00:36 +0000916// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000917class LiveIntervals::HMEditor {
918private:
Lang Hames59761982012-02-17 23:43:40 +0000919 LiveIntervals& LIS;
920 const MachineRegisterInfo& MRI;
921 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000922 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000923 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000924 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000925 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000926
Lang Hamesb9057d52012-02-17 18:44:18 +0000927public:
Lang Hames59761982012-02-17 23:43:40 +0000928 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000929 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000930 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
931 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
932 UpdateFlags(UpdateFlags) {}
933
934 // FIXME: UpdateFlags is a workaround that creates live intervals for all
935 // physregs, even those that aren't needed for regalloc, in order to update
936 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
937 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000938 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000939 if (UpdateFlags)
940 return &LIS.getRegUnit(Unit);
941 return LIS.getCachedRegUnit(Unit);
942 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000943
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000944 /// Update all live ranges touched by MI, assuming a move from OldIdx to
945 /// NewIdx.
946 void updateAllRanges(MachineInstr *MI) {
947 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
948 bool hasRegMask = false;
Matthias Braune41e1462015-05-29 02:56:46 +0000949 for (MachineOperand &MO : MI->operands()) {
950 if (MO.isRegMask())
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000951 hasRegMask = true;
Matthias Braune41e1462015-05-29 02:56:46 +0000952 if (!MO.isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000953 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000954 // Aggressively clear all kill flags.
955 // They are reinserted by VirtRegRewriter.
Matthias Braune41e1462015-05-29 02:56:46 +0000956 if (MO.isUse())
957 MO.setIsKill(false);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000958
Matthias Braune41e1462015-05-29 02:56:46 +0000959 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000960 if (!Reg)
961 continue;
962 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000963 LiveInterval &LI = LIS.getInterval(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000964 if (LI.hasSubRanges()) {
Matthias Braune41e1462015-05-29 02:56:46 +0000965 unsigned SubReg = MO.getSubReg();
Matthias Braune6a24852015-09-25 21:51:14 +0000966 LaneBitmask LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
Matthias Braun09afa1e2014-12-11 00:59:06 +0000967 for (LiveInterval::SubRange &S : LI.subranges()) {
968 if ((S.LaneMask & LaneMask) == 0)
Matthias Braun7044d692014-12-10 01:12:20 +0000969 continue;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000970 updateRange(S, Reg, S.LaneMask);
Matthias Braun7044d692014-12-10 01:12:20 +0000971 }
972 }
973 updateRange(LI, Reg, 0);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000974 continue;
975 }
976
977 // For physregs, only update the regunits that actually have a
978 // precomputed live range.
979 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000980 if (LiveRange *LR = getRegUnitLI(*Units))
Matthias Braun7044d692014-12-10 01:12:20 +0000981 updateRange(*LR, *Units, 0);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000982 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000983 if (hasRegMask)
984 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000985 }
986
Lang Hames4645a722012-02-19 03:00:30 +0000987private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000988 /// Update a single live range, assuming an instruction has been moved from
989 /// OldIdx to NewIdx.
Matthias Braune6a24852015-09-25 21:51:14 +0000990 void updateRange(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask) {
David Blaikie70573dc2014-11-19 07:49:26 +0000991 if (!Updated.insert(&LR).second)
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000992 return;
993 DEBUG({
994 dbgs() << " ";
Matthias Braun7044d692014-12-10 01:12:20 +0000995 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000996 dbgs() << PrintReg(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000997 if (LaneMask != 0)
998 dbgs() << format(" L%04X", LaneMask);
999 } else {
Matthias Braun34e1be92013-10-10 21:29:02 +00001000 dbgs() << PrintRegUnit(Reg, &TRI);
Matthias Braun7044d692014-12-10 01:12:20 +00001001 }
Matthias Braun34e1be92013-10-10 21:29:02 +00001002 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001003 });
1004 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +00001005 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001006 else
Matthias Braun7044d692014-12-10 01:12:20 +00001007 handleMoveUp(LR, Reg, LaneMask);
Matthias Braun34e1be92013-10-10 21:29:02 +00001008 DEBUG(dbgs() << " -->\t" << LR << '\n');
1009 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +00001010 }
1011
Matthias Braun34e1be92013-10-10 21:29:02 +00001012 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001013 /// to NewIdx.
1014 ///
1015 /// 1. Live def at OldIdx:
1016 /// Move def to NewIdx, assert endpoint after NewIdx.
1017 ///
1018 /// 2. Live def at OldIdx, killed at NewIdx:
1019 /// Change to dead def at NewIdx.
1020 /// (Happens when bundling def+kill together).
1021 ///
1022 /// 3. Dead def at OldIdx:
1023 /// Move def to NewIdx, possibly across another live value.
1024 ///
1025 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001026 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001027 /// (Happens when bundling multiple defs together).
1028 ///
1029 /// 5. Value read at OldIdx, killed before NewIdx:
1030 /// Extend kill to NewIdx.
1031 ///
Matthias Braun34e1be92013-10-10 21:29:02 +00001032 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001033 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001034 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1035 LiveRange::iterator E = LR.end();
1036 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001037 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1038 return;
Lang Hames13b11522012-02-19 07:13:05 +00001039
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001040 // Handle a live-in value.
1041 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1042 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
1043 // If the live-in value already extends to NewIdx, there is nothing to do.
1044 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
1045 return;
1046 // Aggressively remove all kill flags from the old kill point.
1047 // Kill flags shouldn't be used while live intervals exist, they will be
1048 // reinserted by VirtRegRewriter.
1049 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
1050 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
1051 if (MO->isReg() && MO->isUse())
1052 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +00001053 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001054 // overlapping ranges. Case 5 above.
1055 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1056 // If this was a kill, there may also be a def. Otherwise we're done.
1057 if (!isKill)
1058 return;
1059 ++I;
Lang Hames13b11522012-02-19 07:13:05 +00001060 }
1061
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001062 // Check for a def at OldIdx.
1063 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
1064 return;
1065 // We have a def at OldIdx.
1066 VNInfo *DefVNI = I->valno;
1067 assert(DefVNI->def == I->start && "Inconsistent def");
1068 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1069 // If the defined value extends beyond NewIdx, just move the def down.
1070 // This is case 1 above.
1071 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
1072 I->start = DefVNI->def;
1073 return;
1074 }
1075 // The remaining possibilities are now:
1076 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
1077 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
1078 // In either case, it is possible that there is an existing def at NewIdx.
1079 assert((I->end == OldIdx.getDeadSlot() ||
1080 SlotIndex::isSameInstr(I->end, NewIdx)) &&
1081 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +00001082 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001083 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1084 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
1085 // coalesced into that value.
1086 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +00001087 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001088 return;
1089 }
1090 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001091 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001092 // values. The new range should be placed immediately before NewI, move any
1093 // intermediate ranges up.
1094 assert(NewI != I && "Inconsistent iterators");
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001095 std::copy(std::next(I), NewI, I);
1096 *std::prev(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +00001097 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001098 }
1099
Matthias Braun34e1be92013-10-10 21:29:02 +00001100 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001101 /// to NewIdx.
1102 ///
1103 /// 1. Live def at OldIdx:
1104 /// Hoist def to NewIdx.
1105 ///
1106 /// 2. Dead def at OldIdx:
1107 /// Hoist def+end to NewIdx, possibly move across other values.
1108 ///
1109 /// 3. Dead def at OldIdx AND existing def at NewIdx:
1110 /// Remove value defined at OldIdx, coalescing it with existing value.
1111 ///
1112 /// 4. Live def at OldIdx AND existing def at NewIdx:
1113 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
1114 /// (Happens when bundling multiple defs together).
1115 ///
1116 /// 5. Value killed at OldIdx:
1117 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
1118 /// OldIdx.
1119 ///
Matthias Braune6a24852015-09-25 21:51:14 +00001120 void handleMoveUp(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001121 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001122 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1123 LiveRange::iterator E = LR.end();
1124 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001125 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1126 return;
1127
1128 // Handle a live-in value.
1129 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1130 // If the live-in value isn't killed here, there is nothing to do.
1131 if (!SlotIndex::isSameInstr(OldIdx, I->end))
1132 return;
1133 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
1134 // another use, we need to search for that use. Case 5 above.
1135 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1136 ++I;
1137 // If OldIdx also defines a value, there couldn't have been another use.
1138 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
1139 // No def, search for the new kill.
1140 // This can never be an early clobber kill since there is no def.
Matthias Braun7044d692014-12-10 01:12:20 +00001141 std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001142 return;
Lang Hames13b11522012-02-19 07:13:05 +00001143 }
1144 }
1145
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001146 // Now deal with the def at OldIdx.
1147 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
1148 VNInfo *DefVNI = I->valno;
1149 assert(DefVNI->def == I->start && "Inconsistent def");
1150 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1151
1152 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001153 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001154 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1155 assert(NewI->valno != DefVNI && "Same value defined more than once?");
1156 // There is an existing def at NewIdx.
1157 if (I->end.isDead()) {
1158 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001159 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001160 return;
1161 }
1162 // Case 4: Replace def at NewIdx with live def at OldIdx.
1163 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +00001164 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001165 return;
Lang Hames13b11522012-02-19 07:13:05 +00001166 }
1167
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001168 // There is no existing def at NewIdx. Hoist DefVNI.
1169 if (!I->end.isDead()) {
1170 // Leave the end point of a live def.
1171 I->start = DefVNI->def;
1172 return;
1173 }
1174
Matthias Braun34e1be92013-10-10 21:29:02 +00001175 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001176 // so move I up to NewI. Slide [NewI;I) down one position.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001177 std::copy_backward(NewI, I, std::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +00001178 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +00001179 }
1180
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001181 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +00001182 SmallVectorImpl<SlotIndex>::iterator RI =
1183 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
1184 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +00001185 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1186 "No RegMask at OldIdx.");
1187 *RI = NewIdx.getRegSlot();
1188 assert((RI == LIS.RegMaskSlots.begin() ||
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001189 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
1190 "Cannot move regmask instruction above another call");
1191 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1192 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
1193 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +00001194 }
Lang Hames4645a722012-02-19 03:00:30 +00001195
1196 // Return the last use of reg between NewIdx and OldIdx.
Matthias Braune6a24852015-09-25 21:51:14 +00001197 SlotIndex findLastUseBefore(unsigned Reg, LaneBitmask LaneMask) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001198
1199 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001200 SlotIndex LastUse = NewIdx;
Matthias Braun7044d692014-12-10 01:12:20 +00001201 for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) {
1202 unsigned SubReg = MO.getSubReg();
1203 if (SubReg != 0 && LaneMask != 0
1204 && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0)
1205 continue;
1206
1207 const MachineInstr *MI = MO.getParent();
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001208 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1209 if (InstSlot > LastUse && InstSlot < OldIdx)
1210 LastUse = InstSlot;
1211 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001212 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +00001213 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001214
1215 // This is a regunit interval, so scanning the use list could be very
1216 // expensive. Scan upwards from OldIdx instead.
1217 assert(NewIdx < OldIdx && "Expected upwards move");
1218 SlotIndexes *Indexes = LIS.getSlotIndexes();
1219 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1220
1221 // OldIdx may not correspond to an instruction any longer, so set MII to
1222 // point to the next instruction after OldIdx, or MBB->end().
1223 MachineBasicBlock::iterator MII = MBB->end();
1224 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1225 Indexes->getNextNonNullIndex(OldIdx)))
1226 if (MI->getParent() == MBB)
1227 MII = MI;
1228
1229 MachineBasicBlock::iterator Begin = MBB->begin();
1230 while (MII != Begin) {
1231 if ((--MII)->isDebugValue())
1232 continue;
1233 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1234
1235 // Stop searching when NewIdx is reached.
1236 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1237 return NewIdx;
1238
1239 // Check if MII uses Reg.
1240 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1241 if (MO->isReg() &&
1242 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1243 TRI.hasRegUnit(MO->getReg(), Reg))
1244 return Idx;
1245 }
1246 // Didn't reach NewIdx. It must be the first instruction in the block.
1247 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001248 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001249};
1250
Andrew Trickd9d4be02012-10-16 00:22:51 +00001251void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001252 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001253 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1254 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001255 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001256 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1257 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001258 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001259
Andrew Trickd9d4be02012-10-16 00:22:51 +00001260 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001261 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001262}
1263
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001264void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001265 MachineInstr* BundleStart,
1266 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001267 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001268 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001269 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001270 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001271}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001272
Matthias Braune5f861b2014-12-10 01:12:26 +00001273void LiveIntervals::repairOldRegInRange(const MachineBasicBlock::iterator Begin,
1274 const MachineBasicBlock::iterator End,
1275 const SlotIndex endIdx,
1276 LiveRange &LR, const unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001277 LaneBitmask LaneMask) {
Matthias Braune5f861b2014-12-10 01:12:26 +00001278 LiveInterval::iterator LII = LR.find(endIdx);
1279 SlotIndex lastUseIdx;
1280 if (LII != LR.end() && LII->start < endIdx)
1281 lastUseIdx = LII->end;
1282 else
1283 --LII;
1284
1285 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1286 --I;
1287 MachineInstr *MI = I;
1288 if (MI->isDebugValue())
1289 continue;
1290
1291 SlotIndex instrIdx = getInstructionIndex(MI);
1292 bool isStartValid = getInstructionFromIndex(LII->start);
1293 bool isEndValid = getInstructionFromIndex(LII->end);
1294
1295 // FIXME: This doesn't currently handle early-clobber or multiple removed
1296 // defs inside of the region to repair.
1297 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1298 OE = MI->operands_end(); OI != OE; ++OI) {
1299 const MachineOperand &MO = *OI;
1300 if (!MO.isReg() || MO.getReg() != Reg)
1301 continue;
1302
1303 unsigned SubReg = MO.getSubReg();
Matthias Braune6a24852015-09-25 21:51:14 +00001304 LaneBitmask Mask = TRI->getSubRegIndexLaneMask(SubReg);
Matthias Braune5f861b2014-12-10 01:12:26 +00001305 if ((Mask & LaneMask) == 0)
1306 continue;
1307
1308 if (MO.isDef()) {
1309 if (!isStartValid) {
1310 if (LII->end.isDead()) {
1311 SlotIndex prevStart;
1312 if (LII != LR.begin())
1313 prevStart = std::prev(LII)->start;
1314
1315 // FIXME: This could be more efficient if there was a
1316 // removeSegment method that returned an iterator.
1317 LR.removeSegment(*LII, true);
1318 if (prevStart.isValid())
1319 LII = LR.find(prevStart);
1320 else
1321 LII = LR.begin();
1322 } else {
1323 LII->start = instrIdx.getRegSlot();
1324 LII->valno->def = instrIdx.getRegSlot();
1325 if (MO.getSubReg() && !MO.isUndef())
1326 lastUseIdx = instrIdx.getRegSlot();
1327 else
1328 lastUseIdx = SlotIndex();
1329 continue;
1330 }
1331 }
1332
1333 if (!lastUseIdx.isValid()) {
1334 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1335 LiveRange::Segment S(instrIdx.getRegSlot(),
1336 instrIdx.getDeadSlot(), VNI);
1337 LII = LR.addSegment(S);
1338 } else if (LII->start != instrIdx.getRegSlot()) {
1339 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1340 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
1341 LII = LR.addSegment(S);
1342 }
1343
1344 if (MO.getSubReg() && !MO.isUndef())
1345 lastUseIdx = instrIdx.getRegSlot();
1346 else
1347 lastUseIdx = SlotIndex();
1348 } else if (MO.isUse()) {
1349 // FIXME: This should probably be handled outside of this branch,
1350 // either as part of the def case (for defs inside of the region) or
1351 // after the loop over the region.
1352 if (!isEndValid && !LII->end.isBlock())
1353 LII->end = instrIdx.getRegSlot();
1354 if (!lastUseIdx.isValid())
1355 lastUseIdx = instrIdx.getRegSlot();
1356 }
1357 }
1358 }
1359}
1360
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001361void
1362LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001363 MachineBasicBlock::iterator Begin,
1364 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001365 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001366 // Find anchor points, which are at the beginning/end of blocks or at
1367 // instructions that already have indexes.
1368 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1369 --Begin;
1370 while (End != MBB->end() && !Indexes->hasIndex(End))
1371 ++End;
1372
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001373 SlotIndex endIdx;
1374 if (End == MBB->end())
1375 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001376 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001377 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001378
Cameron Zwarich29414822013-02-20 06:46:41 +00001379 Indexes->repairIndexesInRange(MBB, Begin, End);
1380
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001381 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1382 --I;
1383 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001384 if (MI->isDebugValue())
1385 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001386 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1387 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1388 if (MOI->isReg() &&
1389 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1390 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001391 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001392 }
1393 }
1394 }
1395
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001396 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1397 unsigned Reg = OrigRegs[i];
1398 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1399 continue;
1400
1401 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001402 // FIXME: Should we support undefs that gain defs?
1403 if (!LI.hasAtLeastOneValue())
1404 continue;
1405
Matthias Braun09afa1e2014-12-11 00:59:06 +00001406 for (LiveInterval::SubRange &S : LI.subranges()) {
1407 repairOldRegInRange(Begin, End, endIdx, S, Reg, S.LaneMask);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001408 }
Matthias Braune5f861b2014-12-10 01:12:26 +00001409 repairOldRegInRange(Begin, End, endIdx, LI, Reg);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001410 }
1411}
Matthias Brauncfb8ad22015-01-21 18:50:21 +00001412
1413void LiveIntervals::removePhysRegDefAt(unsigned Reg, SlotIndex Pos) {
1414 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1415 if (LiveRange *LR = getCachedRegUnit(*Units))
1416 if (VNInfo *VNI = LR->getVNInfoAt(Pos))
1417 LR->removeValNo(VNI);
1418 }
1419}
Matthias Braun311730a2015-01-21 19:02:30 +00001420
1421void LiveIntervals::removeVRegDefAt(LiveInterval &LI, SlotIndex Pos) {
1422 VNInfo *VNI = LI.getVNInfoAt(Pos);
1423 if (VNI == nullptr)
1424 return;
1425 LI.removeValNo(VNI);
1426
1427 // Also remove the value in subranges.
1428 for (LiveInterval::SubRange &S : LI.subranges()) {
1429 if (VNInfo *SVNI = S.getVNInfoAt(Pos))
1430 S.removeValNo(SVNI);
1431 }
1432 LI.removeEmptySubRanges();
1433}
Matthias Braund3dd1352015-09-22 03:44:41 +00001434
1435void LiveIntervals::splitSeparateComponents(LiveInterval &LI,
1436 SmallVectorImpl<LiveInterval*> &SplitLIs) {
1437 ConnectedVNInfoEqClasses ConEQ(*this);
1438 unsigned NumComp = ConEQ.Classify(&LI);
1439 if (NumComp <= 1)
1440 return;
1441 DEBUG(dbgs() << " Split " << NumComp << " components: " << LI << '\n');
1442 unsigned Reg = LI.reg;
1443 const TargetRegisterClass *RegClass = MRI->getRegClass(Reg);
1444 for (unsigned I = 1; I < NumComp; ++I) {
1445 unsigned NewVReg = MRI->createVirtualRegister(RegClass);
1446 LiveInterval &NewLI = createEmptyInterval(NewVReg);
1447 SplitLIs.push_back(&NewLI);
1448 }
1449 ConEQ.Distribute(LI, SplitLIs.data(), *MRI);
1450}