blob: 9451d92bd7ae3e1036e9a634eb4318ec958131c6 [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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000038#include "llvm/Target/TargetSubtargetInfo.h"
Alkis Evlogimenosa5c04ee2004-09-03 18:19:51 +000039#include <algorithm>
Jeff Cohencc08c832006-12-02 02:22:01 +000040#include <cmath>
Chandler Carruthed0881b2012-12-03 16:50:05 +000041#include <limits>
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000042using namespace llvm;
43
Chandler Carruth1b9dde02014-04-22 02:02:50 +000044#define DEBUG_TYPE "regalloc"
45
Devang Patel8c78a0b2007-05-03 01:11:54 +000046char LiveIntervals::ID = 0;
Jakob Stoklund Olesen1c465892012-08-03 22:12:54 +000047char &llvm::LiveIntervalsID = LiveIntervals::ID;
Owen Anderson8ac477f2010-10-12 19:48:12 +000048INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
49 "Live Interval Analysis", false, false)
Chandler Carruth7b560d42015-09-09 17:55:00 +000050INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +000051INITIALIZE_PASS_DEPENDENCY(LiveVariables)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000052INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Owen Anderson8ac477f2010-10-12 19:48:12 +000053INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
Owen Anderson8ac477f2010-10-12 19:48:12 +000054INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
Owen Andersondf7a4f22010-10-07 22:25:06 +000055 "Live Interval Analysis", false, false)
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000056
Andrew Trick8d02e912013-06-21 18:33:23 +000057#ifndef NDEBUG
58static cl::opt<bool> EnablePrecomputePhysRegs(
59 "precompute-phys-liveness", cl::Hidden,
60 cl::desc("Eagerly compute live intervals for all physreg units."));
61#else
62static bool EnablePrecomputePhysRegs = false;
63#endif // NDEBUG
64
Matthias Braune3d3b882014-12-10 01:12:30 +000065static cl::opt<bool> EnableSubRegLiveness(
66 "enable-subreg-liveness", cl::Hidden, cl::init(true),
67 cl::desc("Enable subregister liveness tracking."));
68
Quentin Colombeta8cb36e2015-02-06 18:42:41 +000069namespace llvm {
70cl::opt<bool> UseSegmentSetForPhysRegs(
71 "use-segment-set-for-physregs", cl::Hidden, cl::init(true),
72 cl::desc(
73 "Use segment set for the computation of the live ranges of physregs."));
74}
75
Chris Lattnerbdf12102006-08-24 22:43:55 +000076void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman04023152009-07-31 23:37:33 +000077 AU.setPreservesCFG();
Chandler Carruth7b560d42015-09-09 17:55:00 +000078 AU.addRequired<AAResultsWrapperPass>();
79 AU.addPreserved<AAResultsWrapperPass>();
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +000080 // LiveVariables isn't really required by this analysis, it is only required
81 // here to make sure it is live during TwoAddressInstructionPass and
82 // PHIElimination. This is temporary.
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000083 AU.addRequired<LiveVariables>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +000084 AU.addPreserved<LiveVariables>();
Andrew Trick5188c002012-02-13 20:44:42 +000085 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +000086 AU.addRequiredTransitiveID(MachineDominatorsID);
Bill Wendling0c209432008-01-04 20:54:55 +000087 AU.addPreservedID(MachineDominatorsID);
Lang Hames05fb9632009-11-03 23:52:08 +000088 AU.addPreserved<SlotIndexes>();
89 AU.addRequiredTransitive<SlotIndexes>();
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000090 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000091}
92
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000093LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
Craig Topperc0196b12014-04-14 00:51:57 +000094 DomTree(nullptr), LRCalc(nullptr) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000095 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
96}
97
98LiveIntervals::~LiveIntervals() {
99 delete LRCalc;
100}
101
Chris Lattnerbdf12102006-08-24 22:43:55 +0000102void LiveIntervals::releaseMemory() {
Owen Anderson51f689a2008-08-13 21:49:13 +0000103 // Free the live intervals themselves.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000104 for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
105 delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
106 VirtRegIntervals.clear();
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000107 RegMaskSlots.clear();
108 RegMaskBits.clear();
Jakob Stoklund Olesen25c41952012-02-10 01:26:29 +0000109 RegMaskBlocks.clear();
Lang Hamesdab7b062009-07-09 03:57:02 +0000110
Matthias Braun34e1be92013-10-10 21:29:02 +0000111 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
112 delete RegUnitRanges[i];
113 RegUnitRanges.clear();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000114
Benjamin Kramera0000022010-06-26 11:30:59 +0000115 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
116 VNInfoAllocator.Reset();
Alkis Evlogimenos50d97e32004-01-31 19:59:32 +0000117}
118
Jakob Stoklund Olesen6d13b8f2013-08-14 17:28:46 +0000119/// runOnMachineFunction - calculates LiveIntervals
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000120///
121bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000122 MF = &fn;
123 MRI = &MF->getRegInfo();
Eric Christopherd3fa4402014-10-14 06:26:53 +0000124 TRI = MF->getSubtarget().getRegisterInfo();
125 TII = MF->getSubtarget().getInstrInfo();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000126 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000127 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000128 DomTree = &getAnalysis<MachineDominatorTree>();
Matthias Braune3d3b882014-12-10 01:12:30 +0000129
130 if (EnableSubRegLiveness && MF->getSubtarget().enableSubRegLiveness())
131 MRI->enableSubRegLiveness(true);
132
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000133 if (!LRCalc)
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000134 LRCalc = new LiveRangeCalc();
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000135
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000136 // Allocate space for all virtual registers.
137 VirtRegIntervals.resize(MRI->getNumVirtRegs());
138
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +0000139 computeVirtRegs();
140 computeRegMasks();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000141 computeLiveInRegUnits();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000142
Andrew Trick8d02e912013-06-21 18:33:23 +0000143 if (EnablePrecomputePhysRegs) {
144 // For stress testing, precompute live ranges of all physical register
145 // units, including reserved registers.
146 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
147 getRegUnit(i);
148 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000149 DEBUG(dump());
Alkis Evlogimenosa6983082004-08-04 09:46:26 +0000150 return true;
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +0000151}
152
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000153/// print - Implement the dump method.
Chris Lattner13626022009-08-23 06:03:38 +0000154void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000155 OS << "********** INTERVALS **********\n";
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000156
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000157 // Dump the regunits.
Matthias Braun34e1be92013-10-10 21:29:02 +0000158 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
159 if (LiveRange *LR = RegUnitRanges[i])
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000160 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000161
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000162 // Dump the virtregs.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000163 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
164 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
165 if (hasInterval(Reg))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000166 OS << getInterval(Reg) << '\n';
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000167 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000168
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000169 OS << "RegMasks:";
170 for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
171 OS << ' ' << RegMaskSlots[i];
172 OS << '\n';
173
Evan Cheng7f789592009-09-14 21:33:42 +0000174 printInstrs(OS);
175}
176
177void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000178 OS << "********** MACHINEINSTRS **********\n";
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000179 MF->print(OS, Indexes);
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000180}
181
Manman Ren19f49ac2012-09-11 22:23:19 +0000182#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Evan Cheng7f789592009-09-14 21:33:42 +0000183void LiveIntervals::dumpInstrs() const {
David Greene1a51a212010-01-04 22:49:02 +0000184 printInstrs(dbgs());
Evan Cheng7f789592009-09-14 21:33:42 +0000185}
Manman Ren742534c2012-09-06 19:06:06 +0000186#endif
Evan Cheng7f789592009-09-14 21:33:42 +0000187
Owen Anderson51f689a2008-08-13 21:49:13 +0000188LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Aaron Ballman04999042013-11-13 00:15:44 +0000189 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
190 llvm::huge_valf : 0.0F;
Owen Anderson51f689a2008-08-13 21:49:13 +0000191 return new LiveInterval(reg, Weight);
Alkis Evlogimenos237f2032004-04-09 18:07:57 +0000192}
Evan Chengbe51f282007-11-12 06:35:08 +0000193
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000194
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000195/// computeVirtRegInterval - Compute the live interval of a virtual register,
196/// based on defs and uses.
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000197void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000198 assert(LRCalc && "LRCalc not initialized.");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000199 assert(LI.empty() && "Should only compute empty intervals.");
Matthias Braun73e42212015-09-22 22:37:44 +0000200 bool ShouldTrackSubRegLiveness = MRI->shouldTrackSubRegLiveness(LI.reg);
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000201 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
Matthias Braun73e42212015-09-22 22:37:44 +0000202 LRCalc->calculate(LI, ShouldTrackSubRegLiveness);
203 bool SeparatedComponents = computeDeadValues(LI, nullptr);
204 if (SeparatedComponents) {
205 assert(ShouldTrackSubRegLiveness
206 && "Separated components should only occur for unused subreg defs");
207 SmallVector<LiveInterval*, 8> SplitLIs;
208 splitSeparateComponents(LI, SplitLIs);
209 }
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000210}
211
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000212void LiveIntervals::computeVirtRegs() {
213 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
214 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
215 if (MRI->reg_nodbg_empty(Reg))
216 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000217 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000218 }
219}
220
221void LiveIntervals::computeRegMasks() {
222 RegMaskBlocks.resize(MF->getNumBlockIDs());
223
224 // Find all instructions with regmask operands.
Reid Klecknere535c1f2015-11-06 02:01:02 +0000225 for (MachineBasicBlock &MBB : *MF) {
226 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB.getNumber()];
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000227 RMB.first = RegMaskSlots.size();
Reid Klecknerb8fd1622015-11-06 17:06:38 +0000228
229 // Some block starts, such as EH funclets, create masks.
230 if (const uint32_t *Mask = MBB.getBeginClobberMask(TRI)) {
231 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&MBB));
232 RegMaskBits.push_back(Mask);
233 }
234
Reid Klecknere535c1f2015-11-06 02:01:02 +0000235 for (MachineInstr &MI : MBB) {
236 for (const MachineOperand &MO : MI.operands()) {
Matthias Braune41e1462015-05-29 02:56:46 +0000237 if (!MO.isRegMask())
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000238 continue;
Reid Klecknere535c1f2015-11-06 02:01:02 +0000239 RegMaskSlots.push_back(Indexes->getInstructionIndex(&MI).getRegSlot());
240 RegMaskBits.push_back(MO.getRegMask());
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000241 }
Reid Klecknere535c1f2015-11-06 02:01:02 +0000242 }
Reid Klecknerb8fd1622015-11-06 17:06:38 +0000243
244 // Some block ends, such as funclet returns, create masks.
245 if (const uint32_t *Mask = MBB.getEndClobberMask(TRI)) {
246 RegMaskSlots.push_back(Indexes->getMBBEndIdx(&MBB));
247 RegMaskBits.push_back(Mask);
248 }
249
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000250 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000251 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000252 }
253}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000254
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000255//===----------------------------------------------------------------------===//
256// Register Unit Liveness
257//===----------------------------------------------------------------------===//
258//
259// Fixed interference typically comes from ABI boundaries: Function arguments
260// and return values are passed in fixed registers, and so are exception
261// pointers entering landing pads. Certain instructions require values to be
262// present in specific registers. That is also represented through fixed
263// interference.
264//
265
Matthias Braun34e1be92013-10-10 21:29:02 +0000266/// computeRegUnitInterval - Compute the live range of a register unit, based
267/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000268/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000269void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000270 assert(LRCalc && "LRCalc not initialized.");
271 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
272
273 // The physregs aliasing Unit are the roots and their super-registers.
274 // Create all values as dead defs before extending to uses. Note that roots
275 // may share super-registers. That's OK because createDeadDefs() is
276 // idempotent. It is very rare for a register unit to have multiple roots, so
277 // uniquing super-registers is probably not worthwhile.
278 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000279 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
280 Supers.isValid(); ++Supers) {
Matthias Braunc3a72c22014-12-15 21:36:35 +0000281 if (!MRI->reg_empty(*Supers))
282 LRCalc->createDeadDefs(LR, *Supers);
283 }
284 }
285
286 // Now extend LR to reach all uses.
287 // Ignore uses of reserved registers. We only track defs of those.
288 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
289 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
290 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000291 unsigned Reg = *Supers;
Matthias Braunc3a72c22014-12-15 21:36:35 +0000292 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
293 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000294 }
295 }
Quentin Colombeta8cb36e2015-02-06 18:42:41 +0000296
297 // Flush the segment set to the segment vector.
298 if (UseSegmentSetForPhysRegs)
299 LR.flushSegmentSet();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000300}
301
302
303/// computeLiveInRegUnits - Precompute the live ranges of any register units
304/// that are live-in to an ABI block somewhere. Register values can appear
305/// without a corresponding def when entering the entry block or a landing pad.
306///
307void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000308 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000309 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
310
Matthias Braun34e1be92013-10-10 21:29:02 +0000311 // Keep track of the live range sets allocated.
312 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000313
314 // Check all basic blocks for live-ins.
315 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
316 MFI != MFE; ++MFI) {
Duncan P. N. Exon Smith5ae59392015-10-09 19:13:58 +0000317 const MachineBasicBlock *MBB = &*MFI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000318
319 // We only care about ABI blocks: Entry + landing pads.
Reid Kleckner0e288232015-08-27 23:27:47 +0000320 if ((MFI != MF->begin() && !MBB->isEHPad()) || MBB->livein_empty())
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000321 continue;
322
323 // Create phi-defs at Begin for all live-in registers.
324 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
325 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
Matthias Braund9da1622015-09-09 18:08:03 +0000326 for (const auto &LI : MBB->liveins()) {
327 for (MCRegUnitIterator Units(LI.PhysReg, TRI); Units.isValid(); ++Units) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000328 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000329 LiveRange *LR = RegUnitRanges[Unit];
330 if (!LR) {
Quentin Colombeta8cb36e2015-02-06 18:42:41 +0000331 // Use segment set to speed-up initial computation of the live range.
332 LR = RegUnitRanges[Unit] = new LiveRange(UseSegmentSetForPhysRegs);
Matthias Braun34e1be92013-10-10 21:29:02 +0000333 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000334 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000335 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000336 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000337 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
338 }
339 }
340 DEBUG(dbgs() << '\n');
341 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000342 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000343
Matthias Braun34e1be92013-10-10 21:29:02 +0000344 // Compute the 'normal' part of the ranges.
345 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
346 unsigned Unit = NewRanges[i];
347 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
348 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000349}
350
351
Matthias Braun20e1f382014-12-10 01:12:18 +0000352static void createSegmentsForValues(LiveRange &LR,
353 iterator_range<LiveInterval::vni_iterator> VNIs) {
354 for (auto VNI : VNIs) {
355 if (VNI->isUnused())
356 continue;
357 SlotIndex Def = VNI->def;
358 LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI));
359 }
360}
361
362typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList;
363
364static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes,
365 ShrinkToUsesWorkList &WorkList,
366 const LiveRange &OldRange) {
367 // Keep track of the PHIs that are in use.
368 SmallPtrSet<VNInfo*, 8> UsedPHIs;
369 // Blocks that have already been added to WorkList as live-out.
370 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
371
372 // Extend intervals to reach all uses in WorkList.
373 while (!WorkList.empty()) {
374 SlotIndex Idx = WorkList.back().first;
375 VNInfo *VNI = WorkList.back().second;
376 WorkList.pop_back();
377 const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot());
378 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
379
380 // Extend the live range for VNI to be live at Idx.
381 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
382 assert(ExtVNI == VNI && "Unexpected existing value number");
383 (void)ExtVNI;
384 // Is this a PHIDef we haven't seen before?
385 if (!VNI->isPHIDef() || VNI->def != BlockStart ||
386 !UsedPHIs.insert(VNI).second)
387 continue;
388 // The PHI is live, make sure the predecessors are live-out.
389 for (auto &Pred : MBB->predecessors()) {
390 if (!LiveOut.insert(Pred).second)
391 continue;
392 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
393 // A predecessor is not required to have a live-out value for a PHI.
394 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
395 WorkList.push_back(std::make_pair(Stop, PVNI));
396 }
397 continue;
398 }
399
400 // VNI is live-in to MBB.
401 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
402 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
403
404 // Make sure VNI is live-out from the predecessors.
405 for (auto &Pred : MBB->predecessors()) {
406 if (!LiveOut.insert(Pred).second)
407 continue;
408 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
409 assert(OldRange.getVNInfoBefore(Stop) == VNI &&
410 "Wrong value out of predecessor");
411 WorkList.push_back(std::make_pair(Stop, VNI));
412 }
413 }
414}
415
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000416bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000417 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000418 DEBUG(dbgs() << "Shrink: " << *li << '\n');
419 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000420 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000421
Matthias Braun20e1f382014-12-10 01:12:18 +0000422 // Shrink subregister live ranges.
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000423 bool NeedsCleanup = false;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000424 for (LiveInterval::SubRange &S : li->subranges()) {
425 shrinkToUses(S, li->reg);
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000426 if (S.empty())
427 NeedsCleanup = true;
Matthias Braun20e1f382014-12-10 01:12:18 +0000428 }
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000429 if (NeedsCleanup)
430 li->removeEmptySubRanges();
Matthias Braun20e1f382014-12-10 01:12:18 +0000431
432 // Find all the values used, including PHI kills.
433 ShrinkToUsesWorkList WorkList;
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000434
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000435 // Visit all instructions reading li->reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000436 for (MachineRegisterInfo::reg_instr_iterator
437 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
438 I != E; ) {
439 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000440 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
441 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000442 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000443 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000444 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000445 if (!VNI) {
446 // This shouldn't happen: readsVirtualRegister returns true, but there is
447 // no live value. It is likely caused by a target getting <undef> flags
448 // wrong.
449 DEBUG(dbgs() << Idx << '\t' << *UseMI
450 << "Warning: Instr claims to read non-existent value in "
451 << *li << '\n');
452 continue;
453 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000454 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000455 // register one slot early.
456 if (VNInfo *DefVNI = LRQ.valueDefined())
457 Idx = DefVNI->def;
458
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000459 WorkList.push_back(std::make_pair(Idx, VNI));
460 }
461
Matthias Braund7df9352013-10-10 21:28:47 +0000462 // Create new live ranges with only minimal live segments per def.
463 LiveRange NewLR;
Matthias Braun20e1f382014-12-10 01:12:18 +0000464 createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end()));
465 extendSegmentsToUses(NewLR, *Indexes, WorkList, *li);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000466
Pete Cooper72235572014-06-03 22:42:10 +0000467 // Move the trimmed segments back.
468 li->segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000469
470 // Handle dead values.
471 bool CanSeparate = computeDeadValues(*li, dead);
Pete Cooper72235572014-06-03 22:42:10 +0000472 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
473 return CanSeparate;
474}
475
Matthias Braun15abf372014-12-18 19:58:52 +0000476bool LiveIntervals::computeDeadValues(LiveInterval &LI,
Pete Cooper72235572014-06-03 22:42:10 +0000477 SmallVectorImpl<MachineInstr*> *dead) {
Matthias Braun73e42212015-09-22 22:37:44 +0000478 bool MayHaveSplitComponents = false;
Matthias Braun15abf372014-12-18 19:58:52 +0000479 for (auto VNI : LI.valnos) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000480 if (VNI->isUnused())
481 continue;
Matthias Braunc1988f32015-01-21 22:55:13 +0000482 SlotIndex Def = VNI->def;
483 LiveRange::iterator I = LI.FindSegmentContaining(Def);
Matthias Braun15abf372014-12-18 19:58:52 +0000484 assert(I != LI.end() && "Missing segment for VNI");
Matthias Braunc1988f32015-01-21 22:55:13 +0000485
486 // Is the register live before? Otherwise we may have to add a read-undef
487 // flag for subregister defs.
Matthias Braun73e42212015-09-22 22:37:44 +0000488 bool DeadBeforeDef = false;
489 unsigned VReg = LI.reg;
490 if (MRI->shouldTrackSubRegLiveness(VReg)) {
Matthias Braunc1988f32015-01-21 22:55:13 +0000491 if ((I == LI.begin() || std::prev(I)->end < Def) && !VNI->isPHIDef()) {
492 MachineInstr *MI = getInstructionFromIndex(Def);
Matthias Braun2c98d0f2015-11-11 00:41:58 +0000493 MI->setRegisterDefReadUndef(VReg);
Matthias Braun73e42212015-09-22 22:37:44 +0000494 DeadBeforeDef = true;
Matthias Braunc1988f32015-01-21 22:55:13 +0000495 }
496 }
497
498 if (I->end != Def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000499 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000500 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000501 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000502 VNI->markUnused();
Matthias Braun15abf372014-12-18 19:58:52 +0000503 LI.removeSegment(I);
Matthias Braunc1988f32015-01-21 22:55:13 +0000504 DEBUG(dbgs() << "Dead PHI at " << Def << " may separate interval\n");
Matthias Braun73e42212015-09-22 22:37:44 +0000505 MayHaveSplitComponents = true;
Matthias Braun15abf372014-12-18 19:58:52 +0000506 } else {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000507 // This is a dead def. Make sure the instruction knows.
Matthias Braunc1988f32015-01-21 22:55:13 +0000508 MachineInstr *MI = getInstructionFromIndex(Def);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000509 assert(MI && "No instruction defining live value");
Matthias Braun73e42212015-09-22 22:37:44 +0000510 MI->addRegisterDead(VReg, TRI);
511
512 // If we have a dead def that is completely separate from the rest of
513 // the liverange then we rewrite it to use a different VReg to not violate
514 // the rule that the liveness of a virtual register forms a connected
515 // component. This should only happen if subregister liveness is tracked.
516 if (DeadBeforeDef)
517 MayHaveSplitComponents = true;
518
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000519 if (dead && MI->allDefsAreDead()) {
Matthias Braunc1988f32015-01-21 22:55:13 +0000520 DEBUG(dbgs() << "All defs dead: " << Def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000521 dead->push_back(MI);
522 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000523 }
524 }
Matthias Braun73e42212015-09-22 22:37:44 +0000525 return MayHaveSplitComponents;
Matthias Braun20e1f382014-12-10 01:12:18 +0000526}
527
Matthias Braun15abf372014-12-18 19:58:52 +0000528void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg)
Matthias Braun20e1f382014-12-10 01:12:18 +0000529{
530 DEBUG(dbgs() << "Shrink: " << SR << '\n');
531 assert(TargetRegisterInfo::isVirtualRegister(Reg)
532 && "Can only shrink virtual registers");
533 // Find all the values used, including PHI kills.
534 ShrinkToUsesWorkList WorkList;
535
536 // Visit all instructions reading Reg.
537 SlotIndex LastIdx;
538 for (MachineOperand &MO : MRI->reg_operands(Reg)) {
539 MachineInstr *UseMI = MO.getParent();
540 if (UseMI->isDebugValue())
541 continue;
542 // Maybe the operand is for a subregister we don't care about.
543 unsigned SubReg = MO.getSubReg();
544 if (SubReg != 0) {
Matthias Braune6a24852015-09-25 21:51:14 +0000545 LaneBitmask LaneMask = TRI->getSubRegIndexLaneMask(SubReg);
546 if ((LaneMask & SR.LaneMask) == 0)
Matthias Braun20e1f382014-12-10 01:12:18 +0000547 continue;
548 }
549 // We only need to visit each instruction once.
550 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
551 if (Idx == LastIdx)
552 continue;
553 LastIdx = Idx;
554
555 LiveQueryResult LRQ = SR.Query(Idx);
556 VNInfo *VNI = LRQ.valueIn();
557 // For Subranges it is possible that only undef values are left in that
558 // part of the subregister, so there is no real liverange at the use
559 if (!VNI)
560 continue;
561
562 // Special case: An early-clobber tied operand reads and writes the
563 // register one slot early.
564 if (VNInfo *DefVNI = LRQ.valueDefined())
565 Idx = DefVNI->def;
566
567 WorkList.push_back(std::make_pair(Idx, VNI));
568 }
569
570 // Create a new live ranges with only minimal live segments per def.
571 LiveRange NewLR;
572 createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end()));
573 extendSegmentsToUses(NewLR, *Indexes, WorkList, SR);
574
Matthias Braun20e1f382014-12-10 01:12:18 +0000575 // Move the trimmed ranges back.
576 SR.segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000577
578 // Remove dead PHI value numbers
579 for (auto VNI : SR.valnos) {
580 if (VNI->isUnused())
581 continue;
582 const LiveRange::Segment *Segment = SR.getSegmentContaining(VNI->def);
583 assert(Segment != nullptr && "Missing segment for VNI");
584 if (Segment->end != VNI->def.getDeadSlot())
585 continue;
586 if (VNI->isPHIDef()) {
587 // This is a dead PHI. Remove it.
588 VNI->markUnused();
589 SR.removeSegment(*Segment);
590 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
591 }
592 }
593
Matthias Braun20e1f382014-12-10 01:12:18 +0000594 DEBUG(dbgs() << "Shrunk: " << SR << '\n');
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000595}
596
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000597void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000598 ArrayRef<SlotIndex> Indices) {
599 assert(LRCalc && "LRCalc not initialized.");
600 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
601 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000602 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000603}
604
Matthias Braun8970d842014-12-10 01:12:36 +0000605void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000606 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun8970d842014-12-10 01:12:36 +0000607 LiveQueryResult LRQ = LR.Query(Kill);
608 VNInfo *VNI = LRQ.valueOutOrDead();
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000609 if (!VNI)
610 return;
611
612 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
Matthias Braun8970d842014-12-10 01:12:36 +0000613 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000614
615 // If VNI isn't live out from KillMBB, the value is trivially pruned.
616 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000617 LR.removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000618 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
619 return;
620 }
621
622 // VNI is live out of KillMBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000623 LR.removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000624 if (EndPoints) EndPoints->push_back(MBBEnd);
625
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000626 // Find all blocks that are reachable from KillMBB without leaving VNI's live
627 // range. It is possible that KillMBB itself is reachable, so start a DFS
628 // from each successor.
629 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
630 VisitedTy Visited;
631 for (MachineBasicBlock::succ_iterator
632 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
633 SuccI != SuccE; ++SuccI) {
634 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
635 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
636 I != E;) {
637 MachineBasicBlock *MBB = *I;
638
639 // Check if VNI is live in to MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000640 SlotIndex MBBStart, MBBEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000641 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun8970d842014-12-10 01:12:36 +0000642 LiveQueryResult LRQ = LR.Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000643 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000644 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000645 I.skipChildren();
646 continue;
647 }
648
649 // Prune the search if VNI is killed in MBB.
650 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000651 LR.removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000652 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
653 I.skipChildren();
654 continue;
655 }
656
657 // VNI is live through MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000658 LR.removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000659 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000660 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000661 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000662 }
663}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000664
Evan Chengbe51f282007-11-12 06:35:08 +0000665//===----------------------------------------------------------------------===//
666// Register allocator hooks.
667//
668
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000669void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
670 // Keep track of regunit ranges.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000671 SmallVector<std::pair<const LiveRange*, LiveRange::const_iterator>, 8> RU;
Matthias Braun714c4942014-12-20 01:54:50 +0000672 // Keep track of subregister ranges.
673 SmallVector<std::pair<const LiveInterval::SubRange*,
674 LiveRange::const_iterator>, 4> SRs;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000675
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000676 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
677 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000678 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000679 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000680 const LiveInterval &LI = getInterval(Reg);
681 if (LI.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000682 continue;
683
684 // Find the regunit intervals for the assigned register. They may overlap
685 // the virtual register live range, cancelling any kills.
686 RU.clear();
687 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
688 ++Units) {
Matthias Braun7f8dece2014-12-20 01:54:48 +0000689 const LiveRange &RURange = getRegUnit(*Units);
690 if (RURange.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000691 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000692 RU.push_back(std::make_pair(&RURange, RURange.find(LI.begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000693 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000694
Matthias Brauna25e13a2015-03-19 00:21:58 +0000695 if (MRI->subRegLivenessEnabled()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000696 SRs.clear();
697 for (const LiveInterval::SubRange &SR : LI.subranges()) {
698 SRs.push_back(std::make_pair(&SR, SR.find(LI.begin()->end)));
699 }
700 }
701
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000702 // Every instruction that kills Reg corresponds to a segment range end
703 // point.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000704 for (LiveInterval::const_iterator RI = LI.begin(), RE = LI.end(); RI != RE;
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000705 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000706 // A block index indicates an MBB edge.
707 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000708 continue;
709 MachineInstr *MI = getInstructionFromIndex(RI->end);
710 if (!MI)
711 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000712
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000713 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000714 // happen when a physreg is defined as a copy of a virtreg:
715 //
716 // %EAX = COPY %vreg5
717 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
718 // BAR %EAX<kill>
719 //
720 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000721 for (auto &RUP : RU) {
722 const LiveRange &RURange = *RUP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000723 LiveRange::const_iterator &I = RUP.second;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000724 if (I == RURange.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000725 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000726 I = RURange.advanceTo(I, RI->end);
727 if (I == RURange.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000728 continue;
729 // I is overlapping RI.
Matthias Braun714c4942014-12-20 01:54:50 +0000730 goto CancelKill;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000731 }
Matthias Braund70caaf2014-12-10 01:13:04 +0000732
Matthias Brauna25e13a2015-03-19 00:21:58 +0000733 if (MRI->subRegLivenessEnabled()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000734 // When reading a partial undefined value we must not add a kill flag.
735 // The regalloc might have used the undef lane for something else.
736 // Example:
737 // %vreg1 = ... ; R32: %vreg1
738 // %vreg2:high16 = ... ; R64: %vreg2
739 // = read %vreg2<kill> ; R64: %vreg2
740 // = read %vreg1 ; R32: %vreg1
741 // The <kill> flag is correct for %vreg2, but the register allocator may
742 // assign R0L to %vreg1, and R0 to %vreg2 because the low 32bits of R0
743 // are actually never written by %vreg2. After assignment the <kill>
744 // flag at the read instruction is invalid.
Matthias Braune6a24852015-09-25 21:51:14 +0000745 LaneBitmask DefinedLanesMask;
Matthias Braun714c4942014-12-20 01:54:50 +0000746 if (!SRs.empty()) {
747 // Compute a mask of lanes that are defined.
748 DefinedLanesMask = 0;
749 for (auto &SRP : SRs) {
750 const LiveInterval::SubRange &SR = *SRP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000751 LiveRange::const_iterator &I = SRP.second;
Matthias Braun714c4942014-12-20 01:54:50 +0000752 if (I == SR.end())
753 continue;
754 I = SR.advanceTo(I, RI->end);
755 if (I == SR.end() || I->start >= RI->end)
756 continue;
757 // I is overlapping RI
758 DefinedLanesMask |= SR.LaneMask;
Matthias Braund70caaf2014-12-10 01:13:04 +0000759 }
Matthias Braun714c4942014-12-20 01:54:50 +0000760 } else
761 DefinedLanesMask = ~0u;
762
763 bool IsFullWrite = false;
764 for (const MachineOperand &MO : MI->operands()) {
765 if (!MO.isReg() || MO.getReg() != Reg)
766 continue;
767 if (MO.isUse()) {
768 // Reading any undefined lanes?
Matthias Braune6a24852015-09-25 21:51:14 +0000769 LaneBitmask UseMask = TRI->getSubRegIndexLaneMask(MO.getSubReg());
Matthias Braun714c4942014-12-20 01:54:50 +0000770 if ((UseMask & ~DefinedLanesMask) != 0)
771 goto CancelKill;
772 } else if (MO.getSubReg() == 0) {
773 // Writing to the full register?
774 assert(MO.isDef());
775 IsFullWrite = true;
776 }
777 }
778
779 // If an instruction writes to a subregister, a new segment starts in
780 // the LiveInterval. But as this is only overriding part of the register
781 // adding kill-flags is not correct here after registers have been
782 // assigned.
783 if (!IsFullWrite) {
784 // Next segment has to be adjacent in the subregister write case.
785 LiveRange::const_iterator N = std::next(RI);
786 if (N != LI.end() && N->start == RI->end)
787 goto CancelKill;
Matthias Braund70caaf2014-12-10 01:13:04 +0000788 }
789 }
790
Matthias Braun714c4942014-12-20 01:54:50 +0000791 MI->addRegisterKilled(Reg, nullptr);
792 continue;
793CancelKill:
794 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000795 }
796 }
797}
798
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000799MachineBasicBlock*
800LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
801 // A local live range must be fully contained inside the block, meaning it is
802 // defined and killed at instructions, not at block boundaries. It is not
803 // live in or or out of any block.
804 //
805 // It is technically possible to have a PHI-defined live range identical to a
806 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000807
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000808 SlotIndex Start = LI.beginIndex();
809 if (Start.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000810 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000811
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000812 SlotIndex Stop = LI.endIndex();
813 if (Stop.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000814 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000815
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000816 // getMBBFromIndex doesn't need to search the MBB table when both indexes
817 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000818 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
819 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Craig Topperc0196b12014-04-14 00:51:57 +0000820 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng8e223792007-11-17 00:40:40 +0000821}
822
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000823bool
824LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
Matthias Braun96761952014-12-10 23:07:54 +0000825 for (const VNInfo *PHI : LI.valnos) {
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000826 if (PHI->isUnused() || !PHI->isPHIDef())
827 continue;
828 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
829 // Conservatively return true instead of scanning huge predecessor lists.
830 if (PHIMBB->pred_size() > 100)
831 return true;
832 for (MachineBasicBlock::const_pred_iterator
833 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
834 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
835 return true;
836 }
837 return false;
838}
839
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000840float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000841LiveIntervals::getSpillWeight(bool isDef, bool isUse,
842 const MachineBlockFrequencyInfo *MBFI,
843 const MachineInstr *MI) {
844 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
Michael Gottesman5e985ee2013-12-14 02:37:38 +0000845 const float Scale = 1.0f / MBFI->getEntryFreq();
Michael Gottesman9f49d742013-12-14 00:53:32 +0000846 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000847}
848
Matthias Braund7df9352013-10-10 21:28:47 +0000849LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000850LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000851 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000852 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000853 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000854 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000855 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000856 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000857 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000858 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000859
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000860 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000861}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000862
863
864//===----------------------------------------------------------------------===//
865// Register mask functions
866//===----------------------------------------------------------------------===//
867
868bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
869 BitVector &UsableRegs) {
870 if (LI.empty())
871 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000872 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
873
874 // Use a smaller arrays for local live ranges.
875 ArrayRef<SlotIndex> Slots;
876 ArrayRef<const uint32_t*> Bits;
877 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
878 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
879 Bits = getRegMaskBitsInBlock(MBB->getNumber());
880 } else {
881 Slots = getRegMaskSlots();
882 Bits = getRegMaskBits();
883 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000884
885 // We are going to enumerate all the register mask slots contained in LI.
886 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000887 ArrayRef<SlotIndex>::iterator SlotI =
888 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
889 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
890
891 // No slots in range, LI begins after the last call.
892 if (SlotI == SlotE)
893 return false;
894
895 bool Found = false;
896 for (;;) {
897 assert(*SlotI >= LiveI->start);
898 // Loop over all slots overlapping this segment.
899 while (*SlotI < LiveI->end) {
900 // *SlotI overlaps LI. Collect mask bits.
901 if (!Found) {
902 // This is the first overlap. Initialize UsableRegs to all ones.
903 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000904 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000905 Found = true;
906 }
907 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000908 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000909 if (++SlotI == SlotE)
910 return Found;
911 }
912 // *SlotI is beyond the current LI segment.
913 LiveI = LI.advanceTo(LiveI, *SlotI);
914 if (LiveI == LiveE)
915 return Found;
916 // Advance SlotI until it overlaps.
917 while (*SlotI < LiveI->start)
918 if (++SlotI == SlotE)
919 return Found;
920 }
921}
Lang Hamesb9057d52012-02-17 18:44:18 +0000922
923//===----------------------------------------------------------------------===//
924// IntervalUpdate class.
925//===----------------------------------------------------------------------===//
926
Lang Hames7e2ce882012-02-21 00:00:36 +0000927// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000928class LiveIntervals::HMEditor {
929private:
Lang Hames59761982012-02-17 23:43:40 +0000930 LiveIntervals& LIS;
931 const MachineRegisterInfo& MRI;
932 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000933 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000934 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000935 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000936 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000937
Lang Hamesb9057d52012-02-17 18:44:18 +0000938public:
Lang Hames59761982012-02-17 23:43:40 +0000939 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000940 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000941 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
942 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
943 UpdateFlags(UpdateFlags) {}
944
945 // FIXME: UpdateFlags is a workaround that creates live intervals for all
946 // physregs, even those that aren't needed for regalloc, in order to update
947 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
948 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000949 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000950 if (UpdateFlags)
951 return &LIS.getRegUnit(Unit);
952 return LIS.getCachedRegUnit(Unit);
953 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000954
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000955 /// Update all live ranges touched by MI, assuming a move from OldIdx to
956 /// NewIdx.
957 void updateAllRanges(MachineInstr *MI) {
958 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
959 bool hasRegMask = false;
Matthias Braune41e1462015-05-29 02:56:46 +0000960 for (MachineOperand &MO : MI->operands()) {
961 if (MO.isRegMask())
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000962 hasRegMask = true;
Matthias Braune41e1462015-05-29 02:56:46 +0000963 if (!MO.isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000964 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000965 // Aggressively clear all kill flags.
966 // They are reinserted by VirtRegRewriter.
Matthias Braune41e1462015-05-29 02:56:46 +0000967 if (MO.isUse())
968 MO.setIsKill(false);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000969
Matthias Braune41e1462015-05-29 02:56:46 +0000970 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000971 if (!Reg)
972 continue;
973 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000974 LiveInterval &LI = LIS.getInterval(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000975 if (LI.hasSubRanges()) {
Matthias Braune41e1462015-05-29 02:56:46 +0000976 unsigned SubReg = MO.getSubReg();
Matthias Braune6a24852015-09-25 21:51:14 +0000977 LaneBitmask LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
Matthias Braun09afa1e2014-12-11 00:59:06 +0000978 for (LiveInterval::SubRange &S : LI.subranges()) {
979 if ((S.LaneMask & LaneMask) == 0)
Matthias Braun7044d692014-12-10 01:12:20 +0000980 continue;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000981 updateRange(S, Reg, S.LaneMask);
Matthias Braun7044d692014-12-10 01:12:20 +0000982 }
983 }
984 updateRange(LI, Reg, 0);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000985 continue;
986 }
987
988 // For physregs, only update the regunits that actually have a
989 // precomputed live range.
990 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000991 if (LiveRange *LR = getRegUnitLI(*Units))
Matthias Braun7044d692014-12-10 01:12:20 +0000992 updateRange(*LR, *Units, 0);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000993 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000994 if (hasRegMask)
995 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000996 }
997
Lang Hames4645a722012-02-19 03:00:30 +0000998private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000999 /// Update a single live range, assuming an instruction has been moved from
1000 /// OldIdx to NewIdx.
Matthias Braune6a24852015-09-25 21:51:14 +00001001 void updateRange(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask) {
David Blaikie70573dc2014-11-19 07:49:26 +00001002 if (!Updated.insert(&LR).second)
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001003 return;
1004 DEBUG({
1005 dbgs() << " ";
Matthias Braun7044d692014-12-10 01:12:20 +00001006 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +00001007 dbgs() << PrintReg(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +00001008 if (LaneMask != 0)
Matthias Braunc804cdb2015-09-25 21:51:24 +00001009 dbgs() << " L" << PrintLaneMask(LaneMask);
Matthias Braun7044d692014-12-10 01:12:20 +00001010 } else {
Matthias Braun34e1be92013-10-10 21:29:02 +00001011 dbgs() << PrintRegUnit(Reg, &TRI);
Matthias Braun7044d692014-12-10 01:12:20 +00001012 }
Matthias Braun34e1be92013-10-10 21:29:02 +00001013 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001014 });
1015 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +00001016 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001017 else
Matthias Braun7044d692014-12-10 01:12:20 +00001018 handleMoveUp(LR, Reg, LaneMask);
Matthias Braun34e1be92013-10-10 21:29:02 +00001019 DEBUG(dbgs() << " -->\t" << LR << '\n');
1020 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +00001021 }
1022
Matthias Braun34e1be92013-10-10 21:29:02 +00001023 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001024 /// to NewIdx.
1025 ///
1026 /// 1. Live def at OldIdx:
1027 /// Move def to NewIdx, assert endpoint after NewIdx.
1028 ///
1029 /// 2. Live def at OldIdx, killed at NewIdx:
1030 /// Change to dead def at NewIdx.
1031 /// (Happens when bundling def+kill together).
1032 ///
1033 /// 3. Dead def at OldIdx:
1034 /// Move def to NewIdx, possibly across another live value.
1035 ///
1036 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001037 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001038 /// (Happens when bundling multiple defs together).
1039 ///
1040 /// 5. Value read at OldIdx, killed before NewIdx:
1041 /// Extend kill to NewIdx.
1042 ///
Matthias Braun34e1be92013-10-10 21:29:02 +00001043 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001044 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001045 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1046 LiveRange::iterator E = LR.end();
1047 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001048 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1049 return;
Lang Hames13b11522012-02-19 07:13:05 +00001050
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001051 // Handle a live-in value.
1052 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1053 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
1054 // If the live-in value already extends to NewIdx, there is nothing to do.
1055 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
1056 return;
1057 // Aggressively remove all kill flags from the old kill point.
1058 // Kill flags shouldn't be used while live intervals exist, they will be
1059 // reinserted by VirtRegRewriter.
1060 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
1061 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
1062 if (MO->isReg() && MO->isUse())
1063 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +00001064 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001065 // overlapping ranges. Case 5 above.
1066 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1067 // If this was a kill, there may also be a def. Otherwise we're done.
1068 if (!isKill)
1069 return;
1070 ++I;
Lang Hames13b11522012-02-19 07:13:05 +00001071 }
1072
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001073 // Check for a def at OldIdx.
1074 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
1075 return;
1076 // We have a def at OldIdx.
1077 VNInfo *DefVNI = I->valno;
1078 assert(DefVNI->def == I->start && "Inconsistent def");
1079 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1080 // If the defined value extends beyond NewIdx, just move the def down.
1081 // This is case 1 above.
1082 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
1083 I->start = DefVNI->def;
1084 return;
1085 }
1086 // The remaining possibilities are now:
1087 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
1088 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
1089 // In either case, it is possible that there is an existing def at NewIdx.
1090 assert((I->end == OldIdx.getDeadSlot() ||
1091 SlotIndex::isSameInstr(I->end, NewIdx)) &&
1092 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +00001093 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001094 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1095 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
1096 // coalesced into that value.
1097 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +00001098 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001099 return;
1100 }
1101 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001102 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001103 // values. The new range should be placed immediately before NewI, move any
1104 // intermediate ranges up.
1105 assert(NewI != I && "Inconsistent iterators");
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001106 std::copy(std::next(I), NewI, I);
1107 *std::prev(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +00001108 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001109 }
1110
Matthias Braun34e1be92013-10-10 21:29:02 +00001111 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001112 /// to NewIdx.
1113 ///
1114 /// 1. Live def at OldIdx:
1115 /// Hoist def to NewIdx.
1116 ///
1117 /// 2. Dead def at OldIdx:
1118 /// Hoist def+end to NewIdx, possibly move across other values.
1119 ///
1120 /// 3. Dead def at OldIdx AND existing def at NewIdx:
1121 /// Remove value defined at OldIdx, coalescing it with existing value.
1122 ///
1123 /// 4. Live def at OldIdx AND existing def at NewIdx:
1124 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
1125 /// (Happens when bundling multiple defs together).
1126 ///
1127 /// 5. Value killed at OldIdx:
1128 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
1129 /// OldIdx.
1130 ///
Matthias Braune6a24852015-09-25 21:51:14 +00001131 void handleMoveUp(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001132 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001133 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1134 LiveRange::iterator E = LR.end();
1135 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001136 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1137 return;
1138
1139 // Handle a live-in value.
1140 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1141 // If the live-in value isn't killed here, there is nothing to do.
1142 if (!SlotIndex::isSameInstr(OldIdx, I->end))
1143 return;
1144 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
1145 // another use, we need to search for that use. Case 5 above.
1146 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1147 ++I;
1148 // If OldIdx also defines a value, there couldn't have been another use.
1149 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
1150 // No def, search for the new kill.
1151 // This can never be an early clobber kill since there is no def.
Matthias Braun7044d692014-12-10 01:12:20 +00001152 std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001153 return;
Lang Hames13b11522012-02-19 07:13:05 +00001154 }
1155 }
1156
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001157 // Now deal with the def at OldIdx.
1158 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
1159 VNInfo *DefVNI = I->valno;
1160 assert(DefVNI->def == I->start && "Inconsistent def");
1161 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1162
1163 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001164 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001165 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1166 assert(NewI->valno != DefVNI && "Same value defined more than once?");
1167 // There is an existing def at NewIdx.
1168 if (I->end.isDead()) {
1169 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001170 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001171 return;
1172 }
1173 // Case 4: Replace def at NewIdx with live def at OldIdx.
1174 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +00001175 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001176 return;
Lang Hames13b11522012-02-19 07:13:05 +00001177 }
1178
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001179 // There is no existing def at NewIdx. Hoist DefVNI.
1180 if (!I->end.isDead()) {
1181 // Leave the end point of a live def.
1182 I->start = DefVNI->def;
1183 return;
1184 }
1185
Matthias Braun34e1be92013-10-10 21:29:02 +00001186 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001187 // so move I up to NewI. Slide [NewI;I) down one position.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001188 std::copy_backward(NewI, I, std::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +00001189 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +00001190 }
1191
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001192 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +00001193 SmallVectorImpl<SlotIndex>::iterator RI =
1194 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
1195 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +00001196 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1197 "No RegMask at OldIdx.");
1198 *RI = NewIdx.getRegSlot();
1199 assert((RI == LIS.RegMaskSlots.begin() ||
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001200 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
1201 "Cannot move regmask instruction above another call");
1202 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1203 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
1204 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +00001205 }
Lang Hames4645a722012-02-19 03:00:30 +00001206
1207 // Return the last use of reg between NewIdx and OldIdx.
Matthias Braune6a24852015-09-25 21:51:14 +00001208 SlotIndex findLastUseBefore(unsigned Reg, LaneBitmask LaneMask) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001209
1210 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001211 SlotIndex LastUse = NewIdx;
Matthias Braun7044d692014-12-10 01:12:20 +00001212 for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) {
1213 unsigned SubReg = MO.getSubReg();
1214 if (SubReg != 0 && LaneMask != 0
1215 && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0)
1216 continue;
1217
1218 const MachineInstr *MI = MO.getParent();
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001219 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1220 if (InstSlot > LastUse && InstSlot < OldIdx)
1221 LastUse = InstSlot;
1222 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001223 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +00001224 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001225
1226 // This is a regunit interval, so scanning the use list could be very
1227 // expensive. Scan upwards from OldIdx instead.
1228 assert(NewIdx < OldIdx && "Expected upwards move");
1229 SlotIndexes *Indexes = LIS.getSlotIndexes();
1230 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1231
1232 // OldIdx may not correspond to an instruction any longer, so set MII to
1233 // point to the next instruction after OldIdx, or MBB->end().
1234 MachineBasicBlock::iterator MII = MBB->end();
1235 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1236 Indexes->getNextNonNullIndex(OldIdx)))
1237 if (MI->getParent() == MBB)
1238 MII = MI;
1239
1240 MachineBasicBlock::iterator Begin = MBB->begin();
1241 while (MII != Begin) {
1242 if ((--MII)->isDebugValue())
1243 continue;
1244 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1245
1246 // Stop searching when NewIdx is reached.
1247 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1248 return NewIdx;
1249
1250 // Check if MII uses Reg.
1251 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1252 if (MO->isReg() &&
1253 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1254 TRI.hasRegUnit(MO->getReg(), Reg))
1255 return Idx;
1256 }
1257 // Didn't reach NewIdx. It must be the first instruction in the block.
1258 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001259 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001260};
1261
Andrew Trickd9d4be02012-10-16 00:22:51 +00001262void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001263 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001264 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1265 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001266 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001267 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1268 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001269 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001270
Andrew Trickd9d4be02012-10-16 00:22:51 +00001271 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001272 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001273}
1274
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001275void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001276 MachineInstr* BundleStart,
1277 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001278 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001279 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001280 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001281 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001282}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001283
Matthias Braune5f861b2014-12-10 01:12:26 +00001284void LiveIntervals::repairOldRegInRange(const MachineBasicBlock::iterator Begin,
1285 const MachineBasicBlock::iterator End,
1286 const SlotIndex endIdx,
1287 LiveRange &LR, const unsigned Reg,
Matthias Braune6a24852015-09-25 21:51:14 +00001288 LaneBitmask LaneMask) {
Matthias Braune5f861b2014-12-10 01:12:26 +00001289 LiveInterval::iterator LII = LR.find(endIdx);
1290 SlotIndex lastUseIdx;
1291 if (LII != LR.end() && LII->start < endIdx)
1292 lastUseIdx = LII->end;
1293 else
1294 --LII;
1295
1296 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1297 --I;
1298 MachineInstr *MI = I;
1299 if (MI->isDebugValue())
1300 continue;
1301
1302 SlotIndex instrIdx = getInstructionIndex(MI);
1303 bool isStartValid = getInstructionFromIndex(LII->start);
1304 bool isEndValid = getInstructionFromIndex(LII->end);
1305
1306 // FIXME: This doesn't currently handle early-clobber or multiple removed
1307 // defs inside of the region to repair.
1308 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1309 OE = MI->operands_end(); OI != OE; ++OI) {
1310 const MachineOperand &MO = *OI;
1311 if (!MO.isReg() || MO.getReg() != Reg)
1312 continue;
1313
1314 unsigned SubReg = MO.getSubReg();
Matthias Braune6a24852015-09-25 21:51:14 +00001315 LaneBitmask Mask = TRI->getSubRegIndexLaneMask(SubReg);
Matthias Braune5f861b2014-12-10 01:12:26 +00001316 if ((Mask & LaneMask) == 0)
1317 continue;
1318
1319 if (MO.isDef()) {
1320 if (!isStartValid) {
1321 if (LII->end.isDead()) {
1322 SlotIndex prevStart;
1323 if (LII != LR.begin())
1324 prevStart = std::prev(LII)->start;
1325
1326 // FIXME: This could be more efficient if there was a
1327 // removeSegment method that returned an iterator.
1328 LR.removeSegment(*LII, true);
1329 if (prevStart.isValid())
1330 LII = LR.find(prevStart);
1331 else
1332 LII = LR.begin();
1333 } else {
1334 LII->start = instrIdx.getRegSlot();
1335 LII->valno->def = instrIdx.getRegSlot();
1336 if (MO.getSubReg() && !MO.isUndef())
1337 lastUseIdx = instrIdx.getRegSlot();
1338 else
1339 lastUseIdx = SlotIndex();
1340 continue;
1341 }
1342 }
1343
1344 if (!lastUseIdx.isValid()) {
1345 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1346 LiveRange::Segment S(instrIdx.getRegSlot(),
1347 instrIdx.getDeadSlot(), VNI);
1348 LII = LR.addSegment(S);
1349 } else if (LII->start != instrIdx.getRegSlot()) {
1350 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1351 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
1352 LII = LR.addSegment(S);
1353 }
1354
1355 if (MO.getSubReg() && !MO.isUndef())
1356 lastUseIdx = instrIdx.getRegSlot();
1357 else
1358 lastUseIdx = SlotIndex();
1359 } else if (MO.isUse()) {
1360 // FIXME: This should probably be handled outside of this branch,
1361 // either as part of the def case (for defs inside of the region) or
1362 // after the loop over the region.
1363 if (!isEndValid && !LII->end.isBlock())
1364 LII->end = instrIdx.getRegSlot();
1365 if (!lastUseIdx.isValid())
1366 lastUseIdx = instrIdx.getRegSlot();
1367 }
1368 }
1369 }
1370}
1371
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001372void
1373LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001374 MachineBasicBlock::iterator Begin,
1375 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001376 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001377 // Find anchor points, which are at the beginning/end of blocks or at
1378 // instructions that already have indexes.
1379 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1380 --Begin;
1381 while (End != MBB->end() && !Indexes->hasIndex(End))
1382 ++End;
1383
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001384 SlotIndex endIdx;
1385 if (End == MBB->end())
1386 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001387 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001388 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001389
Cameron Zwarich29414822013-02-20 06:46:41 +00001390 Indexes->repairIndexesInRange(MBB, Begin, End);
1391
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001392 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1393 --I;
1394 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001395 if (MI->isDebugValue())
1396 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001397 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1398 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1399 if (MOI->isReg() &&
1400 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1401 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001402 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001403 }
1404 }
1405 }
1406
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001407 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1408 unsigned Reg = OrigRegs[i];
1409 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1410 continue;
1411
1412 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001413 // FIXME: Should we support undefs that gain defs?
1414 if (!LI.hasAtLeastOneValue())
1415 continue;
1416
Matthias Braun09afa1e2014-12-11 00:59:06 +00001417 for (LiveInterval::SubRange &S : LI.subranges()) {
1418 repairOldRegInRange(Begin, End, endIdx, S, Reg, S.LaneMask);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001419 }
Matthias Braune5f861b2014-12-10 01:12:26 +00001420 repairOldRegInRange(Begin, End, endIdx, LI, Reg);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001421 }
1422}
Matthias Brauncfb8ad22015-01-21 18:50:21 +00001423
1424void LiveIntervals::removePhysRegDefAt(unsigned Reg, SlotIndex Pos) {
1425 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1426 if (LiveRange *LR = getCachedRegUnit(*Units))
1427 if (VNInfo *VNI = LR->getVNInfoAt(Pos))
1428 LR->removeValNo(VNI);
1429 }
1430}
Matthias Braun311730a2015-01-21 19:02:30 +00001431
1432void LiveIntervals::removeVRegDefAt(LiveInterval &LI, SlotIndex Pos) {
1433 VNInfo *VNI = LI.getVNInfoAt(Pos);
1434 if (VNI == nullptr)
1435 return;
1436 LI.removeValNo(VNI);
1437
1438 // Also remove the value in subranges.
1439 for (LiveInterval::SubRange &S : LI.subranges()) {
1440 if (VNInfo *SVNI = S.getVNInfoAt(Pos))
1441 S.removeValNo(SVNI);
1442 }
1443 LI.removeEmptySubRanges();
1444}
Matthias Braund3dd1352015-09-22 03:44:41 +00001445
1446void LiveIntervals::splitSeparateComponents(LiveInterval &LI,
1447 SmallVectorImpl<LiveInterval*> &SplitLIs) {
1448 ConnectedVNInfoEqClasses ConEQ(*this);
1449 unsigned NumComp = ConEQ.Classify(&LI);
1450 if (NumComp <= 1)
1451 return;
1452 DEBUG(dbgs() << " Split " << NumComp << " components: " << LI << '\n');
1453 unsigned Reg = LI.reg;
1454 const TargetRegisterClass *RegClass = MRI->getRegClass(Reg);
1455 for (unsigned I = 1; I < NumComp; ++I) {
1456 unsigned NewVReg = MRI->createVirtualRegister(RegClass);
1457 LiveInterval &NewLI = createEmptyInterval(NewVReg);
1458 SplitLIs.push_back(&NewLI);
1459 }
1460 ConEQ.Distribute(LI, SplitLIs.data(), *MRI);
1461}