blob: 53a241203fde3374a3c2d96d9c8ea31963a259b2 [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.");
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000201 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
Matthias Brauna25e13a2015-03-19 00:21:58 +0000202 LRCalc->calculate(LI, MRI->shouldTrackSubRegLiveness(LI.reg));
Matthias Braun15abf372014-12-18 19:58:52 +0000203 computeDeadValues(LI, nullptr);
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000204}
205
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000206void LiveIntervals::computeVirtRegs() {
207 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
208 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
209 if (MRI->reg_nodbg_empty(Reg))
210 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000211 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000212 }
213}
214
215void LiveIntervals::computeRegMasks() {
216 RegMaskBlocks.resize(MF->getNumBlockIDs());
217
218 // Find all instructions with regmask operands.
219 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
220 MBBI != E; ++MBBI) {
221 MachineBasicBlock *MBB = MBBI;
222 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
223 RMB.first = RegMaskSlots.size();
224 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
225 MI != ME; ++MI)
Matthias Braune41e1462015-05-29 02:56:46 +0000226 for (const MachineOperand &MO : MI->operands()) {
227 if (!MO.isRegMask())
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000228 continue;
229 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
Matthias Braune41e1462015-05-29 02:56:46 +0000230 RegMaskBits.push_back(MO.getRegMask());
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000231 }
232 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000233 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000234 }
235}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000236
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000237//===----------------------------------------------------------------------===//
238// Register Unit Liveness
239//===----------------------------------------------------------------------===//
240//
241// Fixed interference typically comes from ABI boundaries: Function arguments
242// and return values are passed in fixed registers, and so are exception
243// pointers entering landing pads. Certain instructions require values to be
244// present in specific registers. That is also represented through fixed
245// interference.
246//
247
Matthias Braun34e1be92013-10-10 21:29:02 +0000248/// computeRegUnitInterval - Compute the live range of a register unit, based
249/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000250/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000251void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000252 assert(LRCalc && "LRCalc not initialized.");
253 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
254
255 // The physregs aliasing Unit are the roots and their super-registers.
256 // Create all values as dead defs before extending to uses. Note that roots
257 // may share super-registers. That's OK because createDeadDefs() is
258 // idempotent. It is very rare for a register unit to have multiple roots, so
259 // uniquing super-registers is probably not worthwhile.
260 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000261 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
262 Supers.isValid(); ++Supers) {
Matthias Braunc3a72c22014-12-15 21:36:35 +0000263 if (!MRI->reg_empty(*Supers))
264 LRCalc->createDeadDefs(LR, *Supers);
265 }
266 }
267
268 // Now extend LR to reach all uses.
269 // Ignore uses of reserved registers. We only track defs of those.
270 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
271 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
272 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000273 unsigned Reg = *Supers;
Matthias Braunc3a72c22014-12-15 21:36:35 +0000274 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
275 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000276 }
277 }
Quentin Colombeta8cb36e2015-02-06 18:42:41 +0000278
279 // Flush the segment set to the segment vector.
280 if (UseSegmentSetForPhysRegs)
281 LR.flushSegmentSet();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000282}
283
284
285/// computeLiveInRegUnits - Precompute the live ranges of any register units
286/// that are live-in to an ABI block somewhere. Register values can appear
287/// without a corresponding def when entering the entry block or a landing pad.
288///
289void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000290 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000291 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
292
Matthias Braun34e1be92013-10-10 21:29:02 +0000293 // Keep track of the live range sets allocated.
294 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000295
296 // Check all basic blocks for live-ins.
297 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
298 MFI != MFE; ++MFI) {
299 const MachineBasicBlock *MBB = MFI;
300
301 // We only care about ABI blocks: Entry + landing pads.
Reid Kleckner0e288232015-08-27 23:27:47 +0000302 if ((MFI != MF->begin() && !MBB->isEHPad()) || MBB->livein_empty())
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000303 continue;
304
305 // Create phi-defs at Begin for all live-in registers.
306 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
307 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
Matthias Braund9da1622015-09-09 18:08:03 +0000308 for (const auto &LI : MBB->liveins()) {
309 for (MCRegUnitIterator Units(LI.PhysReg, TRI); Units.isValid(); ++Units) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000310 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000311 LiveRange *LR = RegUnitRanges[Unit];
312 if (!LR) {
Quentin Colombeta8cb36e2015-02-06 18:42:41 +0000313 // Use segment set to speed-up initial computation of the live range.
314 LR = RegUnitRanges[Unit] = new LiveRange(UseSegmentSetForPhysRegs);
Matthias Braun34e1be92013-10-10 21:29:02 +0000315 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000316 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000317 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000318 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000319 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
320 }
321 }
322 DEBUG(dbgs() << '\n');
323 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000324 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000325
Matthias Braun34e1be92013-10-10 21:29:02 +0000326 // Compute the 'normal' part of the ranges.
327 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
328 unsigned Unit = NewRanges[i];
329 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
330 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000331}
332
333
Matthias Braun20e1f382014-12-10 01:12:18 +0000334static void createSegmentsForValues(LiveRange &LR,
335 iterator_range<LiveInterval::vni_iterator> VNIs) {
336 for (auto VNI : VNIs) {
337 if (VNI->isUnused())
338 continue;
339 SlotIndex Def = VNI->def;
340 LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI));
341 }
342}
343
344typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList;
345
346static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes,
347 ShrinkToUsesWorkList &WorkList,
348 const LiveRange &OldRange) {
349 // Keep track of the PHIs that are in use.
350 SmallPtrSet<VNInfo*, 8> UsedPHIs;
351 // Blocks that have already been added to WorkList as live-out.
352 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
353
354 // Extend intervals to reach all uses in WorkList.
355 while (!WorkList.empty()) {
356 SlotIndex Idx = WorkList.back().first;
357 VNInfo *VNI = WorkList.back().second;
358 WorkList.pop_back();
359 const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot());
360 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
361
362 // Extend the live range for VNI to be live at Idx.
363 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
364 assert(ExtVNI == VNI && "Unexpected existing value number");
365 (void)ExtVNI;
366 // Is this a PHIDef we haven't seen before?
367 if (!VNI->isPHIDef() || VNI->def != BlockStart ||
368 !UsedPHIs.insert(VNI).second)
369 continue;
370 // The PHI is live, make sure the predecessors are live-out.
371 for (auto &Pred : MBB->predecessors()) {
372 if (!LiveOut.insert(Pred).second)
373 continue;
374 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
375 // A predecessor is not required to have a live-out value for a PHI.
376 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
377 WorkList.push_back(std::make_pair(Stop, PVNI));
378 }
379 continue;
380 }
381
382 // VNI is live-in to MBB.
383 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
384 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
385
386 // Make sure VNI is live-out from the predecessors.
387 for (auto &Pred : MBB->predecessors()) {
388 if (!LiveOut.insert(Pred).second)
389 continue;
390 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
391 assert(OldRange.getVNInfoBefore(Stop) == VNI &&
392 "Wrong value out of predecessor");
393 WorkList.push_back(std::make_pair(Stop, VNI));
394 }
395 }
396}
397
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000398bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000399 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000400 DEBUG(dbgs() << "Shrink: " << *li << '\n');
401 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000402 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000403
Matthias Braun20e1f382014-12-10 01:12:18 +0000404 // Shrink subregister live ranges.
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000405 bool NeedsCleanup = false;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000406 for (LiveInterval::SubRange &S : li->subranges()) {
407 shrinkToUses(S, li->reg);
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000408 if (S.empty())
409 NeedsCleanup = true;
Matthias Braun20e1f382014-12-10 01:12:18 +0000410 }
Matthias Braun0d4cebd2015-07-16 18:55:35 +0000411 if (NeedsCleanup)
412 li->removeEmptySubRanges();
Matthias Braun20e1f382014-12-10 01:12:18 +0000413
414 // Find all the values used, including PHI kills.
415 ShrinkToUsesWorkList WorkList;
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000416
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000417 // Visit all instructions reading li->reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000418 for (MachineRegisterInfo::reg_instr_iterator
419 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
420 I != E; ) {
421 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000422 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
423 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000424 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000425 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000426 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000427 if (!VNI) {
428 // This shouldn't happen: readsVirtualRegister returns true, but there is
429 // no live value. It is likely caused by a target getting <undef> flags
430 // wrong.
431 DEBUG(dbgs() << Idx << '\t' << *UseMI
432 << "Warning: Instr claims to read non-existent value in "
433 << *li << '\n');
434 continue;
435 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000436 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000437 // register one slot early.
438 if (VNInfo *DefVNI = LRQ.valueDefined())
439 Idx = DefVNI->def;
440
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000441 WorkList.push_back(std::make_pair(Idx, VNI));
442 }
443
Matthias Braund7df9352013-10-10 21:28:47 +0000444 // Create new live ranges with only minimal live segments per def.
445 LiveRange NewLR;
Matthias Braun20e1f382014-12-10 01:12:18 +0000446 createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end()));
447 extendSegmentsToUses(NewLR, *Indexes, WorkList, *li);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000448
Pete Cooper72235572014-06-03 22:42:10 +0000449 // Move the trimmed segments back.
450 li->segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000451
452 // Handle dead values.
453 bool CanSeparate = computeDeadValues(*li, dead);
Pete Cooper72235572014-06-03 22:42:10 +0000454 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
455 return CanSeparate;
456}
457
Matthias Braun15abf372014-12-18 19:58:52 +0000458bool LiveIntervals::computeDeadValues(LiveInterval &LI,
Pete Cooper72235572014-06-03 22:42:10 +0000459 SmallVectorImpl<MachineInstr*> *dead) {
Matthias Braun15abf372014-12-18 19:58:52 +0000460 bool PHIRemoved = false;
461 for (auto VNI : LI.valnos) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000462 if (VNI->isUnused())
463 continue;
Matthias Braunc1988f32015-01-21 22:55:13 +0000464 SlotIndex Def = VNI->def;
465 LiveRange::iterator I = LI.FindSegmentContaining(Def);
Matthias Braun15abf372014-12-18 19:58:52 +0000466 assert(I != LI.end() && "Missing segment for VNI");
Matthias Braunc1988f32015-01-21 22:55:13 +0000467
468 // Is the register live before? Otherwise we may have to add a read-undef
469 // flag for subregister defs.
Matthias Brauna25e13a2015-03-19 00:21:58 +0000470 if (MRI->shouldTrackSubRegLiveness(LI.reg)) {
Matthias Braunc1988f32015-01-21 22:55:13 +0000471 if ((I == LI.begin() || std::prev(I)->end < Def) && !VNI->isPHIDef()) {
472 MachineInstr *MI = getInstructionFromIndex(Def);
473 MI->addRegisterDefReadUndef(LI.reg);
474 }
475 }
476
477 if (I->end != Def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000478 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000479 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000480 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000481 VNI->markUnused();
Matthias Braun15abf372014-12-18 19:58:52 +0000482 LI.removeSegment(I);
Matthias Braunc1988f32015-01-21 22:55:13 +0000483 DEBUG(dbgs() << "Dead PHI at " << Def << " may separate interval\n");
Matthias Braun15abf372014-12-18 19:58:52 +0000484 PHIRemoved = true;
485 } else {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000486 // This is a dead def. Make sure the instruction knows.
Matthias Braunc1988f32015-01-21 22:55:13 +0000487 MachineInstr *MI = getInstructionFromIndex(Def);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000488 assert(MI && "No instruction defining live value");
Matthias Braun15abf372014-12-18 19:58:52 +0000489 MI->addRegisterDead(LI.reg, TRI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000490 if (dead && MI->allDefsAreDead()) {
Matthias Braunc1988f32015-01-21 22:55:13 +0000491 DEBUG(dbgs() << "All defs dead: " << Def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000492 dead->push_back(MI);
493 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000494 }
495 }
Matthias Braun15abf372014-12-18 19:58:52 +0000496 return PHIRemoved;
Matthias Braun20e1f382014-12-10 01:12:18 +0000497}
498
Matthias Braun15abf372014-12-18 19:58:52 +0000499void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg)
Matthias Braun20e1f382014-12-10 01:12:18 +0000500{
501 DEBUG(dbgs() << "Shrink: " << SR << '\n');
502 assert(TargetRegisterInfo::isVirtualRegister(Reg)
503 && "Can only shrink virtual registers");
504 // Find all the values used, including PHI kills.
505 ShrinkToUsesWorkList WorkList;
506
507 // Visit all instructions reading Reg.
508 SlotIndex LastIdx;
509 for (MachineOperand &MO : MRI->reg_operands(Reg)) {
510 MachineInstr *UseMI = MO.getParent();
511 if (UseMI->isDebugValue())
512 continue;
513 // Maybe the operand is for a subregister we don't care about.
514 unsigned SubReg = MO.getSubReg();
515 if (SubReg != 0) {
516 unsigned SubRegMask = TRI->getSubRegIndexLaneMask(SubReg);
517 if ((SubRegMask & SR.LaneMask) == 0)
518 continue;
519 }
520 // We only need to visit each instruction once.
521 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
522 if (Idx == LastIdx)
523 continue;
524 LastIdx = Idx;
525
526 LiveQueryResult LRQ = SR.Query(Idx);
527 VNInfo *VNI = LRQ.valueIn();
528 // For Subranges it is possible that only undef values are left in that
529 // part of the subregister, so there is no real liverange at the use
530 if (!VNI)
531 continue;
532
533 // Special case: An early-clobber tied operand reads and writes the
534 // register one slot early.
535 if (VNInfo *DefVNI = LRQ.valueDefined())
536 Idx = DefVNI->def;
537
538 WorkList.push_back(std::make_pair(Idx, VNI));
539 }
540
541 // Create a new live ranges with only minimal live segments per def.
542 LiveRange NewLR;
543 createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end()));
544 extendSegmentsToUses(NewLR, *Indexes, WorkList, SR);
545
Matthias Braun20e1f382014-12-10 01:12:18 +0000546 // Move the trimmed ranges back.
547 SR.segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000548
549 // Remove dead PHI value numbers
550 for (auto VNI : SR.valnos) {
551 if (VNI->isUnused())
552 continue;
553 const LiveRange::Segment *Segment = SR.getSegmentContaining(VNI->def);
554 assert(Segment != nullptr && "Missing segment for VNI");
555 if (Segment->end != VNI->def.getDeadSlot())
556 continue;
557 if (VNI->isPHIDef()) {
558 // This is a dead PHI. Remove it.
559 VNI->markUnused();
560 SR.removeSegment(*Segment);
561 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
562 }
563 }
564
Matthias Braun20e1f382014-12-10 01:12:18 +0000565 DEBUG(dbgs() << "Shrunk: " << SR << '\n');
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000566}
567
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000568void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000569 ArrayRef<SlotIndex> Indices) {
570 assert(LRCalc && "LRCalc not initialized.");
571 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
572 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000573 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000574}
575
Matthias Braun8970d842014-12-10 01:12:36 +0000576void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000577 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun8970d842014-12-10 01:12:36 +0000578 LiveQueryResult LRQ = LR.Query(Kill);
579 VNInfo *VNI = LRQ.valueOutOrDead();
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000580 if (!VNI)
581 return;
582
583 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
Matthias Braun8970d842014-12-10 01:12:36 +0000584 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000585
586 // If VNI isn't live out from KillMBB, the value is trivially pruned.
587 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000588 LR.removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000589 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
590 return;
591 }
592
593 // VNI is live out of KillMBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000594 LR.removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000595 if (EndPoints) EndPoints->push_back(MBBEnd);
596
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000597 // Find all blocks that are reachable from KillMBB without leaving VNI's live
598 // range. It is possible that KillMBB itself is reachable, so start a DFS
599 // from each successor.
600 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
601 VisitedTy Visited;
602 for (MachineBasicBlock::succ_iterator
603 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
604 SuccI != SuccE; ++SuccI) {
605 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
606 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
607 I != E;) {
608 MachineBasicBlock *MBB = *I;
609
610 // Check if VNI is live in to MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000611 SlotIndex MBBStart, MBBEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000612 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun8970d842014-12-10 01:12:36 +0000613 LiveQueryResult LRQ = LR.Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000614 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000615 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000616 I.skipChildren();
617 continue;
618 }
619
620 // Prune the search if VNI is killed in MBB.
621 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000622 LR.removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000623 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
624 I.skipChildren();
625 continue;
626 }
627
628 // VNI is live through MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000629 LR.removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000630 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000631 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000632 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000633 }
634}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000635
Evan Chengbe51f282007-11-12 06:35:08 +0000636//===----------------------------------------------------------------------===//
637// Register allocator hooks.
638//
639
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000640void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
641 // Keep track of regunit ranges.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000642 SmallVector<std::pair<const LiveRange*, LiveRange::const_iterator>, 8> RU;
Matthias Braun714c4942014-12-20 01:54:50 +0000643 // Keep track of subregister ranges.
644 SmallVector<std::pair<const LiveInterval::SubRange*,
645 LiveRange::const_iterator>, 4> SRs;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000646
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000647 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
648 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000649 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000650 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000651 const LiveInterval &LI = getInterval(Reg);
652 if (LI.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000653 continue;
654
655 // Find the regunit intervals for the assigned register. They may overlap
656 // the virtual register live range, cancelling any kills.
657 RU.clear();
658 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
659 ++Units) {
Matthias Braun7f8dece2014-12-20 01:54:48 +0000660 const LiveRange &RURange = getRegUnit(*Units);
661 if (RURange.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000662 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000663 RU.push_back(std::make_pair(&RURange, RURange.find(LI.begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000664 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000665
Matthias Brauna25e13a2015-03-19 00:21:58 +0000666 if (MRI->subRegLivenessEnabled()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000667 SRs.clear();
668 for (const LiveInterval::SubRange &SR : LI.subranges()) {
669 SRs.push_back(std::make_pair(&SR, SR.find(LI.begin()->end)));
670 }
671 }
672
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000673 // Every instruction that kills Reg corresponds to a segment range end
674 // point.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000675 for (LiveInterval::const_iterator RI = LI.begin(), RE = LI.end(); RI != RE;
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000676 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000677 // A block index indicates an MBB edge.
678 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000679 continue;
680 MachineInstr *MI = getInstructionFromIndex(RI->end);
681 if (!MI)
682 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000683
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000684 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000685 // happen when a physreg is defined as a copy of a virtreg:
686 //
687 // %EAX = COPY %vreg5
688 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
689 // BAR %EAX<kill>
690 //
691 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000692 for (auto &RUP : RU) {
693 const LiveRange &RURange = *RUP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000694 LiveRange::const_iterator &I = RUP.second;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000695 if (I == RURange.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000696 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000697 I = RURange.advanceTo(I, RI->end);
698 if (I == RURange.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000699 continue;
700 // I is overlapping RI.
Matthias Braun714c4942014-12-20 01:54:50 +0000701 goto CancelKill;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000702 }
Matthias Braund70caaf2014-12-10 01:13:04 +0000703
Matthias Brauna25e13a2015-03-19 00:21:58 +0000704 if (MRI->subRegLivenessEnabled()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000705 // When reading a partial undefined value we must not add a kill flag.
706 // The regalloc might have used the undef lane for something else.
707 // Example:
708 // %vreg1 = ... ; R32: %vreg1
709 // %vreg2:high16 = ... ; R64: %vreg2
710 // = read %vreg2<kill> ; R64: %vreg2
711 // = read %vreg1 ; R32: %vreg1
712 // The <kill> flag is correct for %vreg2, but the register allocator may
713 // assign R0L to %vreg1, and R0 to %vreg2 because the low 32bits of R0
714 // are actually never written by %vreg2. After assignment the <kill>
715 // flag at the read instruction is invalid.
716 unsigned DefinedLanesMask;
717 if (!SRs.empty()) {
718 // Compute a mask of lanes that are defined.
719 DefinedLanesMask = 0;
720 for (auto &SRP : SRs) {
721 const LiveInterval::SubRange &SR = *SRP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000722 LiveRange::const_iterator &I = SRP.second;
Matthias Braun714c4942014-12-20 01:54:50 +0000723 if (I == SR.end())
724 continue;
725 I = SR.advanceTo(I, RI->end);
726 if (I == SR.end() || I->start >= RI->end)
727 continue;
728 // I is overlapping RI
729 DefinedLanesMask |= SR.LaneMask;
Matthias Braund70caaf2014-12-10 01:13:04 +0000730 }
Matthias Braun714c4942014-12-20 01:54:50 +0000731 } else
732 DefinedLanesMask = ~0u;
733
734 bool IsFullWrite = false;
735 for (const MachineOperand &MO : MI->operands()) {
736 if (!MO.isReg() || MO.getReg() != Reg)
737 continue;
738 if (MO.isUse()) {
739 // Reading any undefined lanes?
740 unsigned UseMask = TRI->getSubRegIndexLaneMask(MO.getSubReg());
741 if ((UseMask & ~DefinedLanesMask) != 0)
742 goto CancelKill;
743 } else if (MO.getSubReg() == 0) {
744 // Writing to the full register?
745 assert(MO.isDef());
746 IsFullWrite = true;
747 }
748 }
749
750 // If an instruction writes to a subregister, a new segment starts in
751 // the LiveInterval. But as this is only overriding part of the register
752 // adding kill-flags is not correct here after registers have been
753 // assigned.
754 if (!IsFullWrite) {
755 // Next segment has to be adjacent in the subregister write case.
756 LiveRange::const_iterator N = std::next(RI);
757 if (N != LI.end() && N->start == RI->end)
758 goto CancelKill;
Matthias Braund70caaf2014-12-10 01:13:04 +0000759 }
760 }
761
Matthias Braun714c4942014-12-20 01:54:50 +0000762 MI->addRegisterKilled(Reg, nullptr);
763 continue;
764CancelKill:
765 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000766 }
767 }
768}
769
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000770MachineBasicBlock*
771LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
772 // A local live range must be fully contained inside the block, meaning it is
773 // defined and killed at instructions, not at block boundaries. It is not
774 // live in or or out of any block.
775 //
776 // It is technically possible to have a PHI-defined live range identical to a
777 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000778
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000779 SlotIndex Start = LI.beginIndex();
780 if (Start.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000781 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000782
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000783 SlotIndex Stop = LI.endIndex();
784 if (Stop.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000785 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000786
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000787 // getMBBFromIndex doesn't need to search the MBB table when both indexes
788 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000789 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
790 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Craig Topperc0196b12014-04-14 00:51:57 +0000791 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng8e223792007-11-17 00:40:40 +0000792}
793
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000794bool
795LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
Matthias Braun96761952014-12-10 23:07:54 +0000796 for (const VNInfo *PHI : LI.valnos) {
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000797 if (PHI->isUnused() || !PHI->isPHIDef())
798 continue;
799 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
800 // Conservatively return true instead of scanning huge predecessor lists.
801 if (PHIMBB->pred_size() > 100)
802 return true;
803 for (MachineBasicBlock::const_pred_iterator
804 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
805 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
806 return true;
807 }
808 return false;
809}
810
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000811float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000812LiveIntervals::getSpillWeight(bool isDef, bool isUse,
813 const MachineBlockFrequencyInfo *MBFI,
814 const MachineInstr *MI) {
815 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
Michael Gottesman5e985ee2013-12-14 02:37:38 +0000816 const float Scale = 1.0f / MBFI->getEntryFreq();
Michael Gottesman9f49d742013-12-14 00:53:32 +0000817 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000818}
819
Matthias Braund7df9352013-10-10 21:28:47 +0000820LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000821LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000822 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000823 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000824 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000825 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000826 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000827 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000828 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000829 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000830
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000831 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000832}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000833
834
835//===----------------------------------------------------------------------===//
836// Register mask functions
837//===----------------------------------------------------------------------===//
838
839bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
840 BitVector &UsableRegs) {
841 if (LI.empty())
842 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000843 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
844
845 // Use a smaller arrays for local live ranges.
846 ArrayRef<SlotIndex> Slots;
847 ArrayRef<const uint32_t*> Bits;
848 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
849 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
850 Bits = getRegMaskBitsInBlock(MBB->getNumber());
851 } else {
852 Slots = getRegMaskSlots();
853 Bits = getRegMaskBits();
854 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000855
856 // We are going to enumerate all the register mask slots contained in LI.
857 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000858 ArrayRef<SlotIndex>::iterator SlotI =
859 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
860 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
861
862 // No slots in range, LI begins after the last call.
863 if (SlotI == SlotE)
864 return false;
865
866 bool Found = false;
867 for (;;) {
868 assert(*SlotI >= LiveI->start);
869 // Loop over all slots overlapping this segment.
870 while (*SlotI < LiveI->end) {
871 // *SlotI overlaps LI. Collect mask bits.
872 if (!Found) {
873 // This is the first overlap. Initialize UsableRegs to all ones.
874 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000875 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000876 Found = true;
877 }
878 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000879 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000880 if (++SlotI == SlotE)
881 return Found;
882 }
883 // *SlotI is beyond the current LI segment.
884 LiveI = LI.advanceTo(LiveI, *SlotI);
885 if (LiveI == LiveE)
886 return Found;
887 // Advance SlotI until it overlaps.
888 while (*SlotI < LiveI->start)
889 if (++SlotI == SlotE)
890 return Found;
891 }
892}
Lang Hamesb9057d52012-02-17 18:44:18 +0000893
894//===----------------------------------------------------------------------===//
895// IntervalUpdate class.
896//===----------------------------------------------------------------------===//
897
Lang Hames7e2ce882012-02-21 00:00:36 +0000898// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000899class LiveIntervals::HMEditor {
900private:
Lang Hames59761982012-02-17 23:43:40 +0000901 LiveIntervals& LIS;
902 const MachineRegisterInfo& MRI;
903 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000904 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000905 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000906 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000907 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000908
Lang Hamesb9057d52012-02-17 18:44:18 +0000909public:
Lang Hames59761982012-02-17 23:43:40 +0000910 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000911 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000912 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
913 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
914 UpdateFlags(UpdateFlags) {}
915
916 // FIXME: UpdateFlags is a workaround that creates live intervals for all
917 // physregs, even those that aren't needed for regalloc, in order to update
918 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
919 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000920 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000921 if (UpdateFlags)
922 return &LIS.getRegUnit(Unit);
923 return LIS.getCachedRegUnit(Unit);
924 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000925
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000926 /// Update all live ranges touched by MI, assuming a move from OldIdx to
927 /// NewIdx.
928 void updateAllRanges(MachineInstr *MI) {
929 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
930 bool hasRegMask = false;
Matthias Braune41e1462015-05-29 02:56:46 +0000931 for (MachineOperand &MO : MI->operands()) {
932 if (MO.isRegMask())
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000933 hasRegMask = true;
Matthias Braune41e1462015-05-29 02:56:46 +0000934 if (!MO.isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000935 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000936 // Aggressively clear all kill flags.
937 // They are reinserted by VirtRegRewriter.
Matthias Braune41e1462015-05-29 02:56:46 +0000938 if (MO.isUse())
939 MO.setIsKill(false);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000940
Matthias Braune41e1462015-05-29 02:56:46 +0000941 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000942 if (!Reg)
943 continue;
944 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000945 LiveInterval &LI = LIS.getInterval(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000946 if (LI.hasSubRanges()) {
Matthias Braune41e1462015-05-29 02:56:46 +0000947 unsigned SubReg = MO.getSubReg();
Matthias Braun7044d692014-12-10 01:12:20 +0000948 unsigned LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
Matthias Braun09afa1e2014-12-11 00:59:06 +0000949 for (LiveInterval::SubRange &S : LI.subranges()) {
950 if ((S.LaneMask & LaneMask) == 0)
Matthias Braun7044d692014-12-10 01:12:20 +0000951 continue;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000952 updateRange(S, Reg, S.LaneMask);
Matthias Braun7044d692014-12-10 01:12:20 +0000953 }
954 }
955 updateRange(LI, Reg, 0);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000956 continue;
957 }
958
959 // For physregs, only update the regunits that actually have a
960 // precomputed live range.
961 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000962 if (LiveRange *LR = getRegUnitLI(*Units))
Matthias Braun7044d692014-12-10 01:12:20 +0000963 updateRange(*LR, *Units, 0);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000964 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000965 if (hasRegMask)
966 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000967 }
968
Lang Hames4645a722012-02-19 03:00:30 +0000969private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000970 /// Update a single live range, assuming an instruction has been moved from
971 /// OldIdx to NewIdx.
Matthias Braun7044d692014-12-10 01:12:20 +0000972 void updateRange(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
David Blaikie70573dc2014-11-19 07:49:26 +0000973 if (!Updated.insert(&LR).second)
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000974 return;
975 DEBUG({
976 dbgs() << " ";
Matthias Braun7044d692014-12-10 01:12:20 +0000977 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000978 dbgs() << PrintReg(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000979 if (LaneMask != 0)
980 dbgs() << format(" L%04X", LaneMask);
981 } else {
Matthias Braun34e1be92013-10-10 21:29:02 +0000982 dbgs() << PrintRegUnit(Reg, &TRI);
Matthias Braun7044d692014-12-10 01:12:20 +0000983 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000984 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000985 });
986 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +0000987 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000988 else
Matthias Braun7044d692014-12-10 01:12:20 +0000989 handleMoveUp(LR, Reg, LaneMask);
Matthias Braun34e1be92013-10-10 21:29:02 +0000990 DEBUG(dbgs() << " -->\t" << LR << '\n');
991 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +0000992 }
993
Matthias Braun34e1be92013-10-10 21:29:02 +0000994 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000995 /// to NewIdx.
996 ///
997 /// 1. Live def at OldIdx:
998 /// Move def to NewIdx, assert endpoint after NewIdx.
999 ///
1000 /// 2. Live def at OldIdx, killed at NewIdx:
1001 /// Change to dead def at NewIdx.
1002 /// (Happens when bundling def+kill together).
1003 ///
1004 /// 3. Dead def at OldIdx:
1005 /// Move def to NewIdx, possibly across another live value.
1006 ///
1007 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001008 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001009 /// (Happens when bundling multiple defs together).
1010 ///
1011 /// 5. Value read at OldIdx, killed before NewIdx:
1012 /// Extend kill to NewIdx.
1013 ///
Matthias Braun34e1be92013-10-10 21:29:02 +00001014 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001015 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001016 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1017 LiveRange::iterator E = LR.end();
1018 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001019 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1020 return;
Lang Hames13b11522012-02-19 07:13:05 +00001021
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001022 // Handle a live-in value.
1023 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1024 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
1025 // If the live-in value already extends to NewIdx, there is nothing to do.
1026 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
1027 return;
1028 // Aggressively remove all kill flags from the old kill point.
1029 // Kill flags shouldn't be used while live intervals exist, they will be
1030 // reinserted by VirtRegRewriter.
1031 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
1032 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
1033 if (MO->isReg() && MO->isUse())
1034 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +00001035 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001036 // overlapping ranges. Case 5 above.
1037 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1038 // If this was a kill, there may also be a def. Otherwise we're done.
1039 if (!isKill)
1040 return;
1041 ++I;
Lang Hames13b11522012-02-19 07:13:05 +00001042 }
1043
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001044 // Check for a def at OldIdx.
1045 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
1046 return;
1047 // We have a def at OldIdx.
1048 VNInfo *DefVNI = I->valno;
1049 assert(DefVNI->def == I->start && "Inconsistent def");
1050 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1051 // If the defined value extends beyond NewIdx, just move the def down.
1052 // This is case 1 above.
1053 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
1054 I->start = DefVNI->def;
1055 return;
1056 }
1057 // The remaining possibilities are now:
1058 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
1059 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
1060 // In either case, it is possible that there is an existing def at NewIdx.
1061 assert((I->end == OldIdx.getDeadSlot() ||
1062 SlotIndex::isSameInstr(I->end, NewIdx)) &&
1063 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +00001064 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001065 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1066 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
1067 // coalesced into that value.
1068 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +00001069 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001070 return;
1071 }
1072 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001073 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001074 // values. The new range should be placed immediately before NewI, move any
1075 // intermediate ranges up.
1076 assert(NewI != I && "Inconsistent iterators");
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001077 std::copy(std::next(I), NewI, I);
1078 *std::prev(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +00001079 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001080 }
1081
Matthias Braun34e1be92013-10-10 21:29:02 +00001082 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001083 /// to NewIdx.
1084 ///
1085 /// 1. Live def at OldIdx:
1086 /// Hoist def to NewIdx.
1087 ///
1088 /// 2. Dead def at OldIdx:
1089 /// Hoist def+end to NewIdx, possibly move across other values.
1090 ///
1091 /// 3. Dead def at OldIdx AND existing def at NewIdx:
1092 /// Remove value defined at OldIdx, coalescing it with existing value.
1093 ///
1094 /// 4. Live def at OldIdx AND existing def at NewIdx:
1095 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
1096 /// (Happens when bundling multiple defs together).
1097 ///
1098 /// 5. Value killed at OldIdx:
1099 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
1100 /// OldIdx.
1101 ///
Matthias Braun7044d692014-12-10 01:12:20 +00001102 void handleMoveUp(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001103 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001104 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1105 LiveRange::iterator E = LR.end();
1106 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001107 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1108 return;
1109
1110 // Handle a live-in value.
1111 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1112 // If the live-in value isn't killed here, there is nothing to do.
1113 if (!SlotIndex::isSameInstr(OldIdx, I->end))
1114 return;
1115 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
1116 // another use, we need to search for that use. Case 5 above.
1117 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1118 ++I;
1119 // If OldIdx also defines a value, there couldn't have been another use.
1120 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
1121 // No def, search for the new kill.
1122 // This can never be an early clobber kill since there is no def.
Matthias Braun7044d692014-12-10 01:12:20 +00001123 std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001124 return;
Lang Hames13b11522012-02-19 07:13:05 +00001125 }
1126 }
1127
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001128 // Now deal with the def at OldIdx.
1129 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
1130 VNInfo *DefVNI = I->valno;
1131 assert(DefVNI->def == I->start && "Inconsistent def");
1132 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1133
1134 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001135 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001136 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1137 assert(NewI->valno != DefVNI && "Same value defined more than once?");
1138 // There is an existing def at NewIdx.
1139 if (I->end.isDead()) {
1140 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001141 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001142 return;
1143 }
1144 // Case 4: Replace def at NewIdx with live def at OldIdx.
1145 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +00001146 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001147 return;
Lang Hames13b11522012-02-19 07:13:05 +00001148 }
1149
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001150 // There is no existing def at NewIdx. Hoist DefVNI.
1151 if (!I->end.isDead()) {
1152 // Leave the end point of a live def.
1153 I->start = DefVNI->def;
1154 return;
1155 }
1156
Matthias Braun34e1be92013-10-10 21:29:02 +00001157 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001158 // so move I up to NewI. Slide [NewI;I) down one position.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001159 std::copy_backward(NewI, I, std::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +00001160 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +00001161 }
1162
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001163 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +00001164 SmallVectorImpl<SlotIndex>::iterator RI =
1165 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
1166 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +00001167 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1168 "No RegMask at OldIdx.");
1169 *RI = NewIdx.getRegSlot();
1170 assert((RI == LIS.RegMaskSlots.begin() ||
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001171 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
1172 "Cannot move regmask instruction above another call");
1173 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1174 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
1175 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +00001176 }
Lang Hames4645a722012-02-19 03:00:30 +00001177
1178 // Return the last use of reg between NewIdx and OldIdx.
Matthias Braun7044d692014-12-10 01:12:20 +00001179 SlotIndex findLastUseBefore(unsigned Reg, unsigned LaneMask) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001180
1181 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001182 SlotIndex LastUse = NewIdx;
Matthias Braun7044d692014-12-10 01:12:20 +00001183 for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) {
1184 unsigned SubReg = MO.getSubReg();
1185 if (SubReg != 0 && LaneMask != 0
1186 && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0)
1187 continue;
1188
1189 const MachineInstr *MI = MO.getParent();
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001190 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1191 if (InstSlot > LastUse && InstSlot < OldIdx)
1192 LastUse = InstSlot;
1193 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001194 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +00001195 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001196
1197 // This is a regunit interval, so scanning the use list could be very
1198 // expensive. Scan upwards from OldIdx instead.
1199 assert(NewIdx < OldIdx && "Expected upwards move");
1200 SlotIndexes *Indexes = LIS.getSlotIndexes();
1201 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1202
1203 // OldIdx may not correspond to an instruction any longer, so set MII to
1204 // point to the next instruction after OldIdx, or MBB->end().
1205 MachineBasicBlock::iterator MII = MBB->end();
1206 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1207 Indexes->getNextNonNullIndex(OldIdx)))
1208 if (MI->getParent() == MBB)
1209 MII = MI;
1210
1211 MachineBasicBlock::iterator Begin = MBB->begin();
1212 while (MII != Begin) {
1213 if ((--MII)->isDebugValue())
1214 continue;
1215 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1216
1217 // Stop searching when NewIdx is reached.
1218 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1219 return NewIdx;
1220
1221 // Check if MII uses Reg.
1222 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1223 if (MO->isReg() &&
1224 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1225 TRI.hasRegUnit(MO->getReg(), Reg))
1226 return Idx;
1227 }
1228 // Didn't reach NewIdx. It must be the first instruction in the block.
1229 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001230 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001231};
1232
Andrew Trickd9d4be02012-10-16 00:22:51 +00001233void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001234 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001235 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1236 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001237 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001238 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1239 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001240 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001241
Andrew Trickd9d4be02012-10-16 00:22:51 +00001242 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001243 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001244}
1245
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001246void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001247 MachineInstr* BundleStart,
1248 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001249 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001250 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001251 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001252 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001253}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001254
Matthias Braune5f861b2014-12-10 01:12:26 +00001255void LiveIntervals::repairOldRegInRange(const MachineBasicBlock::iterator Begin,
1256 const MachineBasicBlock::iterator End,
1257 const SlotIndex endIdx,
1258 LiveRange &LR, const unsigned Reg,
1259 const unsigned LaneMask) {
1260 LiveInterval::iterator LII = LR.find(endIdx);
1261 SlotIndex lastUseIdx;
1262 if (LII != LR.end() && LII->start < endIdx)
1263 lastUseIdx = LII->end;
1264 else
1265 --LII;
1266
1267 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1268 --I;
1269 MachineInstr *MI = I;
1270 if (MI->isDebugValue())
1271 continue;
1272
1273 SlotIndex instrIdx = getInstructionIndex(MI);
1274 bool isStartValid = getInstructionFromIndex(LII->start);
1275 bool isEndValid = getInstructionFromIndex(LII->end);
1276
1277 // FIXME: This doesn't currently handle early-clobber or multiple removed
1278 // defs inside of the region to repair.
1279 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1280 OE = MI->operands_end(); OI != OE; ++OI) {
1281 const MachineOperand &MO = *OI;
1282 if (!MO.isReg() || MO.getReg() != Reg)
1283 continue;
1284
1285 unsigned SubReg = MO.getSubReg();
1286 unsigned Mask = TRI->getSubRegIndexLaneMask(SubReg);
1287 if ((Mask & LaneMask) == 0)
1288 continue;
1289
1290 if (MO.isDef()) {
1291 if (!isStartValid) {
1292 if (LII->end.isDead()) {
1293 SlotIndex prevStart;
1294 if (LII != LR.begin())
1295 prevStart = std::prev(LII)->start;
1296
1297 // FIXME: This could be more efficient if there was a
1298 // removeSegment method that returned an iterator.
1299 LR.removeSegment(*LII, true);
1300 if (prevStart.isValid())
1301 LII = LR.find(prevStart);
1302 else
1303 LII = LR.begin();
1304 } else {
1305 LII->start = instrIdx.getRegSlot();
1306 LII->valno->def = instrIdx.getRegSlot();
1307 if (MO.getSubReg() && !MO.isUndef())
1308 lastUseIdx = instrIdx.getRegSlot();
1309 else
1310 lastUseIdx = SlotIndex();
1311 continue;
1312 }
1313 }
1314
1315 if (!lastUseIdx.isValid()) {
1316 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1317 LiveRange::Segment S(instrIdx.getRegSlot(),
1318 instrIdx.getDeadSlot(), VNI);
1319 LII = LR.addSegment(S);
1320 } else if (LII->start != instrIdx.getRegSlot()) {
1321 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1322 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
1323 LII = LR.addSegment(S);
1324 }
1325
1326 if (MO.getSubReg() && !MO.isUndef())
1327 lastUseIdx = instrIdx.getRegSlot();
1328 else
1329 lastUseIdx = SlotIndex();
1330 } else if (MO.isUse()) {
1331 // FIXME: This should probably be handled outside of this branch,
1332 // either as part of the def case (for defs inside of the region) or
1333 // after the loop over the region.
1334 if (!isEndValid && !LII->end.isBlock())
1335 LII->end = instrIdx.getRegSlot();
1336 if (!lastUseIdx.isValid())
1337 lastUseIdx = instrIdx.getRegSlot();
1338 }
1339 }
1340 }
1341}
1342
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001343void
1344LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001345 MachineBasicBlock::iterator Begin,
1346 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001347 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001348 // Find anchor points, which are at the beginning/end of blocks or at
1349 // instructions that already have indexes.
1350 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1351 --Begin;
1352 while (End != MBB->end() && !Indexes->hasIndex(End))
1353 ++End;
1354
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001355 SlotIndex endIdx;
1356 if (End == MBB->end())
1357 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001358 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001359 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001360
Cameron Zwarich29414822013-02-20 06:46:41 +00001361 Indexes->repairIndexesInRange(MBB, Begin, End);
1362
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001363 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1364 --I;
1365 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001366 if (MI->isDebugValue())
1367 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001368 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1369 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1370 if (MOI->isReg() &&
1371 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1372 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001373 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001374 }
1375 }
1376 }
1377
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001378 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1379 unsigned Reg = OrigRegs[i];
1380 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1381 continue;
1382
1383 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001384 // FIXME: Should we support undefs that gain defs?
1385 if (!LI.hasAtLeastOneValue())
1386 continue;
1387
Matthias Braun09afa1e2014-12-11 00:59:06 +00001388 for (LiveInterval::SubRange &S : LI.subranges()) {
1389 repairOldRegInRange(Begin, End, endIdx, S, Reg, S.LaneMask);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001390 }
Matthias Braune5f861b2014-12-10 01:12:26 +00001391 repairOldRegInRange(Begin, End, endIdx, LI, Reg);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001392 }
1393}
Matthias Brauncfb8ad22015-01-21 18:50:21 +00001394
1395void LiveIntervals::removePhysRegDefAt(unsigned Reg, SlotIndex Pos) {
1396 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1397 if (LiveRange *LR = getCachedRegUnit(*Units))
1398 if (VNInfo *VNI = LR->getVNInfoAt(Pos))
1399 LR->removeValNo(VNI);
1400 }
1401}
Matthias Braun311730a2015-01-21 19:02:30 +00001402
1403void LiveIntervals::removeVRegDefAt(LiveInterval &LI, SlotIndex Pos) {
1404 VNInfo *VNI = LI.getVNInfoAt(Pos);
1405 if (VNI == nullptr)
1406 return;
1407 LI.removeValNo(VNI);
1408
1409 // Also remove the value in subranges.
1410 for (LiveInterval::SubRange &S : LI.subranges()) {
1411 if (VNInfo *SVNI = S.getVNInfoAt(Pos))
1412 S.removeValNo(SVNI);
1413 }
1414 LI.removeEmptySubRanges();
1415}