blob: 77e7149c71343807a0ef092c34dc55ef030ab735 [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)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000051INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
Owen Anderson8ac477f2010-10-12 19:48:12 +000052INITIALIZE_PASS_DEPENDENCY(LiveVariables)
Andrew Trickd3f8fe82012-02-10 04:10:36 +000053INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Owen Anderson8ac477f2010-10-12 19:48:12 +000054INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
Owen Anderson8ac477f2010-10-12 19:48:12 +000055INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
Owen Andersondf7a4f22010-10-07 22:25:06 +000056 "Live Interval Analysis", false, false)
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000057
Andrew Trick8d02e912013-06-21 18:33:23 +000058#ifndef NDEBUG
59static cl::opt<bool> EnablePrecomputePhysRegs(
60 "precompute-phys-liveness", cl::Hidden,
61 cl::desc("Eagerly compute live intervals for all physreg units."));
62#else
63static bool EnablePrecomputePhysRegs = false;
64#endif // NDEBUG
65
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
Chris Lattnerbdf12102006-08-24 22:43:55 +000070void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman04023152009-07-31 23:37:33 +000071 AU.setPreservesCFG();
Dan Gohman09b04482008-07-25 00:02:30 +000072 AU.addRequired<AliasAnalysis>();
73 AU.addPreserved<AliasAnalysis>();
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +000074 // LiveVariables isn't really required by this analysis, it is only required
75 // here to make sure it is live during TwoAddressInstructionPass and
76 // PHIElimination. This is temporary.
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000077 AU.addRequired<LiveVariables>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +000078 AU.addPreserved<LiveVariables>();
Andrew Trick5188c002012-02-13 20:44:42 +000079 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +000080 AU.addRequiredTransitiveID(MachineDominatorsID);
Bill Wendling0c209432008-01-04 20:54:55 +000081 AU.addPreservedID(MachineDominatorsID);
Lang Hames05fb9632009-11-03 23:52:08 +000082 AU.addPreserved<SlotIndexes>();
83 AU.addRequiredTransitive<SlotIndexes>();
Alkis Evlogimenosa6983082004-08-04 09:46:26 +000084 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +000085}
86
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000087LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
Craig Topperc0196b12014-04-14 00:51:57 +000088 DomTree(nullptr), LRCalc(nullptr) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +000089 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
90}
91
92LiveIntervals::~LiveIntervals() {
93 delete LRCalc;
94}
95
Chris Lattnerbdf12102006-08-24 22:43:55 +000096void LiveIntervals::releaseMemory() {
Owen Anderson51f689a2008-08-13 21:49:13 +000097 // Free the live intervals themselves.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +000098 for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
99 delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
100 VirtRegIntervals.clear();
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000101 RegMaskSlots.clear();
102 RegMaskBits.clear();
Jakob Stoklund Olesen25c41952012-02-10 01:26:29 +0000103 RegMaskBlocks.clear();
Lang Hamesdab7b062009-07-09 03:57:02 +0000104
Matthias Braun34e1be92013-10-10 21:29:02 +0000105 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
106 delete RegUnitRanges[i];
107 RegUnitRanges.clear();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000108
Benjamin Kramera0000022010-06-26 11:30:59 +0000109 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
110 VNInfoAllocator.Reset();
Alkis Evlogimenos50d97e32004-01-31 19:59:32 +0000111}
112
Jakob Stoklund Olesen6d13b8f2013-08-14 17:28:46 +0000113/// runOnMachineFunction - calculates LiveIntervals
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000114///
115bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000116 MF = &fn;
117 MRI = &MF->getRegInfo();
Eric Christopherd3fa4402014-10-14 06:26:53 +0000118 TRI = MF->getSubtarget().getRegisterInfo();
119 TII = MF->getSubtarget().getInstrInfo();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000120 AA = &getAnalysis<AliasAnalysis>();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000121 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000122 DomTree = &getAnalysis<MachineDominatorTree>();
Matthias Braune3d3b882014-12-10 01:12:30 +0000123
124 if (EnableSubRegLiveness && MF->getSubtarget().enableSubRegLiveness())
125 MRI->enableSubRegLiveness(true);
126
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000127 if (!LRCalc)
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000128 LRCalc = new LiveRangeCalc();
Owen Anderson4f8e1ad2008-05-28 20:54:50 +0000129
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000130 // Allocate space for all virtual registers.
131 VirtRegIntervals.resize(MRI->getNumVirtRegs());
132
Jakob Stoklund Olesenfac770b2013-02-09 00:04:07 +0000133 computeVirtRegs();
134 computeRegMasks();
Jakob Stoklund Olesen51c63e62012-06-20 23:31:34 +0000135 computeLiveInRegUnits();
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000136
Andrew Trick8d02e912013-06-21 18:33:23 +0000137 if (EnablePrecomputePhysRegs) {
138 // For stress testing, precompute live ranges of all physical register
139 // units, including reserved registers.
140 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
141 getRegUnit(i);
142 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000143 DEBUG(dump());
Alkis Evlogimenosa6983082004-08-04 09:46:26 +0000144 return true;
Alkis Evlogimenos0e9ded72003-11-20 03:32:25 +0000145}
146
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000147/// print - Implement the dump method.
Chris Lattner13626022009-08-23 06:03:38 +0000148void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000149 OS << "********** INTERVALS **********\n";
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000150
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000151 // Dump the regunits.
Matthias Braun34e1be92013-10-10 21:29:02 +0000152 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
153 if (LiveRange *LR = RegUnitRanges[i])
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000154 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000155
Jakob Stoklund Olesen20d25a72012-02-14 23:46:21 +0000156 // Dump the virtregs.
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000157 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
158 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
159 if (hasInterval(Reg))
Matthias Braunf6fe6bf2013-10-10 21:29:05 +0000160 OS << getInterval(Reg) << '\n';
Jakob Stoklund Olesenc61edda2012-06-22 20:37:52 +0000161 }
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000162
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +0000163 OS << "RegMasks:";
164 for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
165 OS << ' ' << RegMaskSlots[i];
166 OS << '\n';
167
Evan Cheng7f789592009-09-14 21:33:42 +0000168 printInstrs(OS);
169}
170
171void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattnera6f074f2009-08-23 03:41:05 +0000172 OS << "********** MACHINEINSTRS **********\n";
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000173 MF->print(OS, Indexes);
Chris Lattnerb0b707f2004-09-30 15:59:17 +0000174}
175
Manman Ren19f49ac2012-09-11 22:23:19 +0000176#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Evan Cheng7f789592009-09-14 21:33:42 +0000177void LiveIntervals::dumpInstrs() const {
David Greene1a51a212010-01-04 22:49:02 +0000178 printInstrs(dbgs());
Evan Cheng7f789592009-09-14 21:33:42 +0000179}
Manman Ren742534c2012-09-06 19:06:06 +0000180#endif
Evan Cheng7f789592009-09-14 21:33:42 +0000181
Owen Anderson51f689a2008-08-13 21:49:13 +0000182LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Aaron Ballman04999042013-11-13 00:15:44 +0000183 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
184 llvm::huge_valf : 0.0F;
Owen Anderson51f689a2008-08-13 21:49:13 +0000185 return new LiveInterval(reg, Weight);
Alkis Evlogimenos237f2032004-04-09 18:07:57 +0000186}
Evan Chengbe51f282007-11-12 06:35:08 +0000187
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000188
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000189/// computeVirtRegInterval - Compute the live interval of a virtual register,
190/// based on defs and uses.
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000191void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000192 assert(LRCalc && "LRCalc not initialized.");
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000193 assert(LI.empty() && "Should only compute empty intervals.");
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000194 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
195 LRCalc->createDeadDefs(LI);
196 LRCalc->extendToUses(LI);
Matthias Braun20e1f382014-12-10 01:12:18 +0000197 computeDeadValues(LI, LI);
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000198}
199
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000200void LiveIntervals::computeVirtRegs() {
201 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
202 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
203 if (MRI->reg_nodbg_empty(Reg))
204 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000205 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000206 }
207}
208
209void LiveIntervals::computeRegMasks() {
210 RegMaskBlocks.resize(MF->getNumBlockIDs());
211
212 // Find all instructions with regmask operands.
213 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
214 MBBI != E; ++MBBI) {
215 MachineBasicBlock *MBB = MBBI;
216 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
217 RMB.first = RegMaskSlots.size();
218 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
219 MI != ME; ++MI)
220 for (MIOperands MO(MI); MO.isValid(); ++MO) {
221 if (!MO->isRegMask())
222 continue;
223 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
224 RegMaskBits.push_back(MO->getRegMask());
225 }
226 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000227 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000228 }
229}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000230
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000231//===----------------------------------------------------------------------===//
232// Register Unit Liveness
233//===----------------------------------------------------------------------===//
234//
235// Fixed interference typically comes from ABI boundaries: Function arguments
236// and return values are passed in fixed registers, and so are exception
237// pointers entering landing pads. Certain instructions require values to be
238// present in specific registers. That is also represented through fixed
239// interference.
240//
241
Matthias Braun34e1be92013-10-10 21:29:02 +0000242/// computeRegUnitInterval - Compute the live range of a register unit, based
243/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000244/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000245void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000246 assert(LRCalc && "LRCalc not initialized.");
247 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
248
249 // The physregs aliasing Unit are the roots and their super-registers.
250 // Create all values as dead defs before extending to uses. Note that roots
251 // may share super-registers. That's OK because createDeadDefs() is
252 // idempotent. It is very rare for a register unit to have multiple roots, so
253 // uniquing super-registers is probably not worthwhile.
254 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000255 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
256 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000257 if (!MRI->reg_empty(*Supers))
Matthias Braun34e1be92013-10-10 21:29:02 +0000258 LRCalc->createDeadDefs(LR, *Supers);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000259 }
260 }
261
Matthias Braun34e1be92013-10-10 21:29:02 +0000262 // Now extend LR to reach all uses.
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000263 // Ignore uses of reserved registers. We only track defs of those.
264 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000265 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
266 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000267 unsigned Reg = *Supers;
Jakob Stoklund Olesencea596a2012-10-15 22:14:34 +0000268 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
Matthias Braun34e1be92013-10-10 21:29:02 +0000269 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000270 }
271 }
272}
273
274
275/// computeLiveInRegUnits - Precompute the live ranges of any register units
276/// that are live-in to an ABI block somewhere. Register values can appear
277/// without a corresponding def when entering the entry block or a landing pad.
278///
279void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000280 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000281 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
282
Matthias Braun34e1be92013-10-10 21:29:02 +0000283 // Keep track of the live range sets allocated.
284 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000285
286 // Check all basic blocks for live-ins.
287 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
288 MFI != MFE; ++MFI) {
289 const MachineBasicBlock *MBB = MFI;
290
291 // We only care about ABI blocks: Entry + landing pads.
292 if ((MFI != MF->begin() && !MBB->isLandingPad()) || MBB->livein_empty())
293 continue;
294
295 // Create phi-defs at Begin for all live-in registers.
296 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
297 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
298 for (MachineBasicBlock::livein_iterator LII = MBB->livein_begin(),
299 LIE = MBB->livein_end(); LII != LIE; ++LII) {
300 for (MCRegUnitIterator Units(*LII, TRI); Units.isValid(); ++Units) {
301 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000302 LiveRange *LR = RegUnitRanges[Unit];
303 if (!LR) {
304 LR = RegUnitRanges[Unit] = new LiveRange();
305 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000306 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000307 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000308 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000309 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
310 }
311 }
312 DEBUG(dbgs() << '\n');
313 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000314 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000315
Matthias Braun34e1be92013-10-10 21:29:02 +0000316 // Compute the 'normal' part of the ranges.
317 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
318 unsigned Unit = NewRanges[i];
319 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
320 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000321}
322
323
Matthias Braun20e1f382014-12-10 01:12:18 +0000324static void createSegmentsForValues(LiveRange &LR,
325 iterator_range<LiveInterval::vni_iterator> VNIs) {
326 for (auto VNI : VNIs) {
327 if (VNI->isUnused())
328 continue;
329 SlotIndex Def = VNI->def;
330 LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI));
331 }
332}
333
334typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList;
335
336static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes,
337 ShrinkToUsesWorkList &WorkList,
338 const LiveRange &OldRange) {
339 // Keep track of the PHIs that are in use.
340 SmallPtrSet<VNInfo*, 8> UsedPHIs;
341 // Blocks that have already been added to WorkList as live-out.
342 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
343
344 // Extend intervals to reach all uses in WorkList.
345 while (!WorkList.empty()) {
346 SlotIndex Idx = WorkList.back().first;
347 VNInfo *VNI = WorkList.back().second;
348 WorkList.pop_back();
349 const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot());
350 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
351
352 // Extend the live range for VNI to be live at Idx.
353 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
354 assert(ExtVNI == VNI && "Unexpected existing value number");
355 (void)ExtVNI;
356 // Is this a PHIDef we haven't seen before?
357 if (!VNI->isPHIDef() || VNI->def != BlockStart ||
358 !UsedPHIs.insert(VNI).second)
359 continue;
360 // The PHI is live, make sure the predecessors are live-out.
361 for (auto &Pred : MBB->predecessors()) {
362 if (!LiveOut.insert(Pred).second)
363 continue;
364 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
365 // A predecessor is not required to have a live-out value for a PHI.
366 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
367 WorkList.push_back(std::make_pair(Stop, PVNI));
368 }
369 continue;
370 }
371
372 // VNI is live-in to MBB.
373 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
374 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
375
376 // Make sure VNI is live-out from the predecessors.
377 for (auto &Pred : MBB->predecessors()) {
378 if (!LiveOut.insert(Pred).second)
379 continue;
380 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
381 assert(OldRange.getVNInfoBefore(Stop) == VNI &&
382 "Wrong value out of predecessor");
383 WorkList.push_back(std::make_pair(Stop, VNI));
384 }
385 }
386}
387
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000388/// shrinkToUses - After removing some uses of a register, shrink its live
389/// range to just the remaining uses. This method does not compute reaching
390/// defs for new uses, and it doesn't remove dead defs.
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000391bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000392 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000393 DEBUG(dbgs() << "Shrink: " << *li << '\n');
394 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000395 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000396
Matthias Braun20e1f382014-12-10 01:12:18 +0000397 // Shrink subregister live ranges.
398 for (LiveInterval::subrange_iterator I = li->subrange_begin(),
399 E = li->subrange_end(); I != E; ++I) {
400 shrinkToUses(*I, li->reg);
401 }
402
403 // Find all the values used, including PHI kills.
404 ShrinkToUsesWorkList WorkList;
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000405
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000406 // Visit all instructions reading li->reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000407 for (MachineRegisterInfo::reg_instr_iterator
408 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
409 I != E; ) {
410 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000411 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
412 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000413 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000414 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000415 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000416 if (!VNI) {
417 // This shouldn't happen: readsVirtualRegister returns true, but there is
418 // no live value. It is likely caused by a target getting <undef> flags
419 // wrong.
420 DEBUG(dbgs() << Idx << '\t' << *UseMI
421 << "Warning: Instr claims to read non-existent value in "
422 << *li << '\n');
423 continue;
424 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000425 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000426 // register one slot early.
427 if (VNInfo *DefVNI = LRQ.valueDefined())
428 Idx = DefVNI->def;
429
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000430 WorkList.push_back(std::make_pair(Idx, VNI));
431 }
432
Matthias Braund7df9352013-10-10 21:28:47 +0000433 // Create new live ranges with only minimal live segments per def.
434 LiveRange NewLR;
Matthias Braun20e1f382014-12-10 01:12:18 +0000435 createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end()));
436 extendSegmentsToUses(NewLR, *Indexes, WorkList, *li);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000437
438 // Handle dead values.
Matthias Braun20e1f382014-12-10 01:12:18 +0000439 bool CanSeparate;
440 computeDeadValues(NewLR, *li, &CanSeparate, li->reg, dead);
Pete Cooper72235572014-06-03 22:42:10 +0000441
442 // Move the trimmed segments back.
443 li->segments.swap(NewLR.segments);
444 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
445 return CanSeparate;
446}
447
Matthias Braun20e1f382014-12-10 01:12:18 +0000448void LiveIntervals::computeDeadValues(LiveRange &Segments, LiveRange &LR,
449 bool *CanSeparateRes, unsigned Reg,
Pete Cooper72235572014-06-03 22:42:10 +0000450 SmallVectorImpl<MachineInstr*> *dead) {
Matthias Braun20e1f382014-12-10 01:12:18 +0000451 bool CanSeparate = false;
452 for (auto VNI : make_range(LR.vni_begin(), LR.vni_end())) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000453 if (VNI->isUnused())
454 continue;
Matthias Braun20e1f382014-12-10 01:12:18 +0000455 LiveRange::iterator LRI = Segments.FindSegmentContaining(VNI->def);
456 assert(LRI != Segments.end() && "Missing segment for PHI");
Matthias Braund7df9352013-10-10 21:28:47 +0000457 if (LRI->end != VNI->def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000458 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000459 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000460 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000461 VNI->markUnused();
Matthias Braun20e1f382014-12-10 01:12:18 +0000462 Segments.removeSegment(LRI->start, LRI->end);
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000463 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
Matthias Braun20e1f382014-12-10 01:12:18 +0000464 CanSeparate = true;
465 } else if (dead != nullptr) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000466 // This is a dead def. Make sure the instruction knows.
467 MachineInstr *MI = getInstructionFromIndex(VNI->def);
468 assert(MI && "No instruction defining live value");
Matthias Braun20e1f382014-12-10 01:12:18 +0000469 MI->addRegisterDead(Reg, TRI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000470 if (dead && MI->allDefsAreDead()) {
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +0000471 DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000472 dead->push_back(MI);
473 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000474 }
475 }
Matthias Braun20e1f382014-12-10 01:12:18 +0000476 if (CanSeparateRes != nullptr)
477 *CanSeparateRes = CanSeparate;
478}
479
480bool LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg)
481{
482 DEBUG(dbgs() << "Shrink: " << SR << '\n');
483 assert(TargetRegisterInfo::isVirtualRegister(Reg)
484 && "Can only shrink virtual registers");
485 // Find all the values used, including PHI kills.
486 ShrinkToUsesWorkList WorkList;
487
488 // Visit all instructions reading Reg.
489 SlotIndex LastIdx;
490 for (MachineOperand &MO : MRI->reg_operands(Reg)) {
491 MachineInstr *UseMI = MO.getParent();
492 if (UseMI->isDebugValue())
493 continue;
494 // Maybe the operand is for a subregister we don't care about.
495 unsigned SubReg = MO.getSubReg();
496 if (SubReg != 0) {
497 unsigned SubRegMask = TRI->getSubRegIndexLaneMask(SubReg);
498 if ((SubRegMask & SR.LaneMask) == 0)
499 continue;
500 }
501 // We only need to visit each instruction once.
502 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
503 if (Idx == LastIdx)
504 continue;
505 LastIdx = Idx;
506
507 LiveQueryResult LRQ = SR.Query(Idx);
508 VNInfo *VNI = LRQ.valueIn();
509 // For Subranges it is possible that only undef values are left in that
510 // part of the subregister, so there is no real liverange at the use
511 if (!VNI)
512 continue;
513
514 // Special case: An early-clobber tied operand reads and writes the
515 // register one slot early.
516 if (VNInfo *DefVNI = LRQ.valueDefined())
517 Idx = DefVNI->def;
518
519 WorkList.push_back(std::make_pair(Idx, VNI));
520 }
521
522 // Create a new live ranges with only minimal live segments per def.
523 LiveRange NewLR;
524 createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end()));
525 extendSegmentsToUses(NewLR, *Indexes, WorkList, SR);
526
527 // Handle dead values.
528 bool CanSeparate;
529 computeDeadValues(NewLR, SR, &CanSeparate);
530
531 // Move the trimmed ranges back.
532 SR.segments.swap(NewLR.segments);
533 DEBUG(dbgs() << "Shrunk: " << SR << '\n');
534 return CanSeparate;
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000535}
536
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000537void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000538 ArrayRef<SlotIndex> Indices) {
539 assert(LRCalc && "LRCalc not initialized.");
540 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
541 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000542 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000543}
544
545void LiveIntervals::pruneValue(LiveInterval *LI, SlotIndex Kill,
546 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000547 LiveQueryResult LRQ = LI->Query(Kill);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000548 VNInfo *VNI = LRQ.valueOut();
549 if (!VNI)
550 return;
551
552 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
553 SlotIndex MBBStart, MBBEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000554 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000555
556 // If VNI isn't live out from KillMBB, the value is trivially pruned.
557 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000558 LI->removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000559 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
560 return;
561 }
562
563 // VNI is live out of KillMBB.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000564 LI->removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000565 if (EndPoints) EndPoints->push_back(MBBEnd);
566
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000567 // Find all blocks that are reachable from KillMBB without leaving VNI's live
568 // range. It is possible that KillMBB itself is reachable, so start a DFS
569 // from each successor.
570 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
571 VisitedTy Visited;
572 for (MachineBasicBlock::succ_iterator
573 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
574 SuccI != SuccE; ++SuccI) {
575 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
576 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
577 I != E;) {
578 MachineBasicBlock *MBB = *I;
579
580 // Check if VNI is live in to MBB.
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000581 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000582 LiveQueryResult LRQ = LI->Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000583 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000584 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000585 I.skipChildren();
586 continue;
587 }
588
589 // Prune the search if VNI is killed in MBB.
590 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000591 LI->removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000592 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
593 I.skipChildren();
594 continue;
595 }
596
597 // VNI is live through MBB.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000598 LI->removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000599 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000600 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000601 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000602 }
603}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000604
Evan Chengbe51f282007-11-12 06:35:08 +0000605//===----------------------------------------------------------------------===//
606// Register allocator hooks.
607//
608
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000609void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
610 // Keep track of regunit ranges.
Matthias Braun34e1be92013-10-10 21:29:02 +0000611 SmallVector<std::pair<LiveRange*, LiveRange::iterator>, 8> RU;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000612
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000613 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
614 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000615 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000616 continue;
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000617 LiveInterval *LI = &getInterval(Reg);
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000618 if (LI->empty())
619 continue;
620
621 // Find the regunit intervals for the assigned register. They may overlap
622 // the virtual register live range, cancelling any kills.
623 RU.clear();
624 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
625 ++Units) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000626 LiveRange &RURanges = getRegUnit(*Units);
627 if (RURanges.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000628 continue;
Matthias Braun34e1be92013-10-10 21:29:02 +0000629 RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000630 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000631
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000632 // Every instruction that kills Reg corresponds to a segment range end
633 // point.
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000634 for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE;
635 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000636 // A block index indicates an MBB edge.
637 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000638 continue;
639 MachineInstr *MI = getInstructionFromIndex(RI->end);
640 if (!MI)
641 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000642
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000643 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000644 // happen when a physreg is defined as a copy of a virtreg:
645 //
646 // %EAX = COPY %vreg5
647 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
648 // BAR %EAX<kill>
649 //
650 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
651 bool CancelKill = false;
652 for (unsigned u = 0, e = RU.size(); u != e; ++u) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000653 LiveRange &RRanges = *RU[u].first;
654 LiveRange::iterator &I = RU[u].second;
655 if (I == RRanges.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000656 continue;
Matthias Braun34e1be92013-10-10 21:29:02 +0000657 I = RRanges.advanceTo(I, RI->end);
658 if (I == RRanges.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000659 continue;
660 // I is overlapping RI.
661 CancelKill = true;
662 break;
663 }
664 if (CancelKill)
Craig Topperc0196b12014-04-14 00:51:57 +0000665 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000666 else
Craig Topperc0196b12014-04-14 00:51:57 +0000667 MI->addRegisterKilled(Reg, nullptr);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000668 }
669 }
670}
671
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000672MachineBasicBlock*
673LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
674 // A local live range must be fully contained inside the block, meaning it is
675 // defined and killed at instructions, not at block boundaries. It is not
676 // live in or or out of any block.
677 //
678 // It is technically possible to have a PHI-defined live range identical to a
679 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000680
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000681 SlotIndex Start = LI.beginIndex();
682 if (Start.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000683 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000684
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000685 SlotIndex Stop = LI.endIndex();
686 if (Stop.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000687 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000688
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000689 // getMBBFromIndex doesn't need to search the MBB table when both indexes
690 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000691 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
692 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Craig Topperc0196b12014-04-14 00:51:57 +0000693 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng8e223792007-11-17 00:40:40 +0000694}
695
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000696bool
697LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
698 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
699 I != E; ++I) {
700 const VNInfo *PHI = *I;
701 if (PHI->isUnused() || !PHI->isPHIDef())
702 continue;
703 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
704 // Conservatively return true instead of scanning huge predecessor lists.
705 if (PHIMBB->pred_size() > 100)
706 return true;
707 for (MachineBasicBlock::const_pred_iterator
708 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
709 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
710 return true;
711 }
712 return false;
713}
714
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000715float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000716LiveIntervals::getSpillWeight(bool isDef, bool isUse,
717 const MachineBlockFrequencyInfo *MBFI,
718 const MachineInstr *MI) {
719 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
Michael Gottesman5e985ee2013-12-14 02:37:38 +0000720 const float Scale = 1.0f / MBFI->getEntryFreq();
Michael Gottesman9f49d742013-12-14 00:53:32 +0000721 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000722}
723
Matthias Braund7df9352013-10-10 21:28:47 +0000724LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000725LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000726 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000727 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000728 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000729 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000730 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000731 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000732 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000733 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000734
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000735 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000736}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000737
738
739//===----------------------------------------------------------------------===//
740// Register mask functions
741//===----------------------------------------------------------------------===//
742
743bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
744 BitVector &UsableRegs) {
745 if (LI.empty())
746 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000747 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
748
749 // Use a smaller arrays for local live ranges.
750 ArrayRef<SlotIndex> Slots;
751 ArrayRef<const uint32_t*> Bits;
752 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
753 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
754 Bits = getRegMaskBitsInBlock(MBB->getNumber());
755 } else {
756 Slots = getRegMaskSlots();
757 Bits = getRegMaskBits();
758 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000759
760 // We are going to enumerate all the register mask slots contained in LI.
761 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000762 ArrayRef<SlotIndex>::iterator SlotI =
763 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
764 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
765
766 // No slots in range, LI begins after the last call.
767 if (SlotI == SlotE)
768 return false;
769
770 bool Found = false;
771 for (;;) {
772 assert(*SlotI >= LiveI->start);
773 // Loop over all slots overlapping this segment.
774 while (*SlotI < LiveI->end) {
775 // *SlotI overlaps LI. Collect mask bits.
776 if (!Found) {
777 // This is the first overlap. Initialize UsableRegs to all ones.
778 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000779 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000780 Found = true;
781 }
782 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000783 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000784 if (++SlotI == SlotE)
785 return Found;
786 }
787 // *SlotI is beyond the current LI segment.
788 LiveI = LI.advanceTo(LiveI, *SlotI);
789 if (LiveI == LiveE)
790 return Found;
791 // Advance SlotI until it overlaps.
792 while (*SlotI < LiveI->start)
793 if (++SlotI == SlotE)
794 return Found;
795 }
796}
Lang Hamesb9057d52012-02-17 18:44:18 +0000797
798//===----------------------------------------------------------------------===//
799// IntervalUpdate class.
800//===----------------------------------------------------------------------===//
801
Lang Hames7e2ce882012-02-21 00:00:36 +0000802// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000803class LiveIntervals::HMEditor {
804private:
Lang Hames59761982012-02-17 23:43:40 +0000805 LiveIntervals& LIS;
806 const MachineRegisterInfo& MRI;
807 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000808 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000809 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000810 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000811 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000812
Lang Hamesb9057d52012-02-17 18:44:18 +0000813public:
Lang Hames59761982012-02-17 23:43:40 +0000814 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000815 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000816 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
817 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
818 UpdateFlags(UpdateFlags) {}
819
820 // FIXME: UpdateFlags is a workaround that creates live intervals for all
821 // physregs, even those that aren't needed for regalloc, in order to update
822 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
823 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000824 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000825 if (UpdateFlags)
826 return &LIS.getRegUnit(Unit);
827 return LIS.getCachedRegUnit(Unit);
828 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000829
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000830 /// Update all live ranges touched by MI, assuming a move from OldIdx to
831 /// NewIdx.
832 void updateAllRanges(MachineInstr *MI) {
833 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
834 bool hasRegMask = false;
835 for (MIOperands MO(MI); MO.isValid(); ++MO) {
836 if (MO->isRegMask())
837 hasRegMask = true;
838 if (!MO->isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000839 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000840 // Aggressively clear all kill flags.
841 // They are reinserted by VirtRegRewriter.
842 if (MO->isUse())
843 MO->setIsKill(false);
844
845 unsigned Reg = MO->getReg();
846 if (!Reg)
847 continue;
848 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000849 LiveInterval &LI = LIS.getInterval(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000850 if (LI.hasSubRanges()) {
851 unsigned SubReg = MO->getSubReg();
852 unsigned LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
853 for (LiveInterval::subrange_iterator S = LI.subrange_begin(),
854 SE = LI.subrange_end(); S != SE; ++S) {
855 if ((S->LaneMask & LaneMask) == 0)
856 continue;
857 updateRange(*S, Reg, S->LaneMask);
858 }
859 }
860 updateRange(LI, Reg, 0);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000861 continue;
862 }
863
864 // For physregs, only update the regunits that actually have a
865 // precomputed live range.
866 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000867 if (LiveRange *LR = getRegUnitLI(*Units))
Matthias Braun7044d692014-12-10 01:12:20 +0000868 updateRange(*LR, *Units, 0);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000869 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000870 if (hasRegMask)
871 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000872 }
873
Lang Hames4645a722012-02-19 03:00:30 +0000874private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000875 /// Update a single live range, assuming an instruction has been moved from
876 /// OldIdx to NewIdx.
Matthias Braun7044d692014-12-10 01:12:20 +0000877 void updateRange(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
David Blaikie70573dc2014-11-19 07:49:26 +0000878 if (!Updated.insert(&LR).second)
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000879 return;
880 DEBUG({
881 dbgs() << " ";
Matthias Braun7044d692014-12-10 01:12:20 +0000882 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000883 dbgs() << PrintReg(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000884 if (LaneMask != 0)
885 dbgs() << format(" L%04X", LaneMask);
886 } else {
Matthias Braun34e1be92013-10-10 21:29:02 +0000887 dbgs() << PrintRegUnit(Reg, &TRI);
Matthias Braun7044d692014-12-10 01:12:20 +0000888 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000889 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000890 });
891 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +0000892 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000893 else
Matthias Braun7044d692014-12-10 01:12:20 +0000894 handleMoveUp(LR, Reg, LaneMask);
Matthias Braun34e1be92013-10-10 21:29:02 +0000895 DEBUG(dbgs() << " -->\t" << LR << '\n');
896 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +0000897 }
898
Matthias Braun34e1be92013-10-10 21:29:02 +0000899 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000900 /// to NewIdx.
901 ///
902 /// 1. Live def at OldIdx:
903 /// Move def to NewIdx, assert endpoint after NewIdx.
904 ///
905 /// 2. Live def at OldIdx, killed at NewIdx:
906 /// Change to dead def at NewIdx.
907 /// (Happens when bundling def+kill together).
908 ///
909 /// 3. Dead def at OldIdx:
910 /// Move def to NewIdx, possibly across another live value.
911 ///
912 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000913 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000914 /// (Happens when bundling multiple defs together).
915 ///
916 /// 5. Value read at OldIdx, killed before NewIdx:
917 /// Extend kill to NewIdx.
918 ///
Matthias Braun34e1be92013-10-10 21:29:02 +0000919 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000920 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000921 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
922 LiveRange::iterator E = LR.end();
923 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000924 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
925 return;
Lang Hames13b11522012-02-19 07:13:05 +0000926
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000927 // Handle a live-in value.
928 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
929 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
930 // If the live-in value already extends to NewIdx, there is nothing to do.
931 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
932 return;
933 // Aggressively remove all kill flags from the old kill point.
934 // Kill flags shouldn't be used while live intervals exist, they will be
935 // reinserted by VirtRegRewriter.
936 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
937 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
938 if (MO->isReg() && MO->isUse())
939 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +0000940 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000941 // overlapping ranges. Case 5 above.
942 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
943 // If this was a kill, there may also be a def. Otherwise we're done.
944 if (!isKill)
945 return;
946 ++I;
Lang Hames13b11522012-02-19 07:13:05 +0000947 }
948
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000949 // Check for a def at OldIdx.
950 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
951 return;
952 // We have a def at OldIdx.
953 VNInfo *DefVNI = I->valno;
954 assert(DefVNI->def == I->start && "Inconsistent def");
955 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
956 // If the defined value extends beyond NewIdx, just move the def down.
957 // This is case 1 above.
958 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
959 I->start = DefVNI->def;
960 return;
961 }
962 // The remaining possibilities are now:
963 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
964 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
965 // In either case, it is possible that there is an existing def at NewIdx.
966 assert((I->end == OldIdx.getDeadSlot() ||
967 SlotIndex::isSameInstr(I->end, NewIdx)) &&
968 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +0000969 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000970 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
971 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
972 // coalesced into that value.
973 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +0000974 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000975 return;
976 }
977 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000978 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000979 // values. The new range should be placed immediately before NewI, move any
980 // intermediate ranges up.
981 assert(NewI != I && "Inconsistent iterators");
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000982 std::copy(std::next(I), NewI, I);
983 *std::prev(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +0000984 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000985 }
986
Matthias Braun34e1be92013-10-10 21:29:02 +0000987 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000988 /// to NewIdx.
989 ///
990 /// 1. Live def at OldIdx:
991 /// Hoist def to NewIdx.
992 ///
993 /// 2. Dead def at OldIdx:
994 /// Hoist def+end to NewIdx, possibly move across other values.
995 ///
996 /// 3. Dead def at OldIdx AND existing def at NewIdx:
997 /// Remove value defined at OldIdx, coalescing it with existing value.
998 ///
999 /// 4. Live def at OldIdx AND existing def at NewIdx:
1000 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
1001 /// (Happens when bundling multiple defs together).
1002 ///
1003 /// 5. Value killed at OldIdx:
1004 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
1005 /// OldIdx.
1006 ///
Matthias Braun7044d692014-12-10 01:12:20 +00001007 void handleMoveUp(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001008 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001009 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1010 LiveRange::iterator E = LR.end();
1011 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001012 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1013 return;
1014
1015 // Handle a live-in value.
1016 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1017 // If the live-in value isn't killed here, there is nothing to do.
1018 if (!SlotIndex::isSameInstr(OldIdx, I->end))
1019 return;
1020 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
1021 // another use, we need to search for that use. Case 5 above.
1022 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1023 ++I;
1024 // If OldIdx also defines a value, there couldn't have been another use.
1025 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
1026 // No def, search for the new kill.
1027 // This can never be an early clobber kill since there is no def.
Matthias Braun7044d692014-12-10 01:12:20 +00001028 std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001029 return;
Lang Hames13b11522012-02-19 07:13:05 +00001030 }
1031 }
1032
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001033 // Now deal with the def at OldIdx.
1034 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
1035 VNInfo *DefVNI = I->valno;
1036 assert(DefVNI->def == I->start && "Inconsistent def");
1037 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1038
1039 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001040 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001041 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1042 assert(NewI->valno != DefVNI && "Same value defined more than once?");
1043 // There is an existing def at NewIdx.
1044 if (I->end.isDead()) {
1045 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001046 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001047 return;
1048 }
1049 // Case 4: Replace def at NewIdx with live def at OldIdx.
1050 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +00001051 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001052 return;
Lang Hames13b11522012-02-19 07:13:05 +00001053 }
1054
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001055 // There is no existing def at NewIdx. Hoist DefVNI.
1056 if (!I->end.isDead()) {
1057 // Leave the end point of a live def.
1058 I->start = DefVNI->def;
1059 return;
1060 }
1061
Matthias Braun34e1be92013-10-10 21:29:02 +00001062 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001063 // so move I up to NewI. Slide [NewI;I) down one position.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001064 std::copy_backward(NewI, I, std::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +00001065 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +00001066 }
1067
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001068 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +00001069 SmallVectorImpl<SlotIndex>::iterator RI =
1070 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
1071 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +00001072 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1073 "No RegMask at OldIdx.");
1074 *RI = NewIdx.getRegSlot();
1075 assert((RI == LIS.RegMaskSlots.begin() ||
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001076 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
1077 "Cannot move regmask instruction above another call");
1078 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1079 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
1080 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +00001081 }
Lang Hames4645a722012-02-19 03:00:30 +00001082
1083 // Return the last use of reg between NewIdx and OldIdx.
Matthias Braun7044d692014-12-10 01:12:20 +00001084 SlotIndex findLastUseBefore(unsigned Reg, unsigned LaneMask) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001085
1086 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001087 SlotIndex LastUse = NewIdx;
Matthias Braun7044d692014-12-10 01:12:20 +00001088 for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) {
1089 unsigned SubReg = MO.getSubReg();
1090 if (SubReg != 0 && LaneMask != 0
1091 && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0)
1092 continue;
1093
1094 const MachineInstr *MI = MO.getParent();
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001095 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1096 if (InstSlot > LastUse && InstSlot < OldIdx)
1097 LastUse = InstSlot;
1098 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001099 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +00001100 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001101
1102 // This is a regunit interval, so scanning the use list could be very
1103 // expensive. Scan upwards from OldIdx instead.
1104 assert(NewIdx < OldIdx && "Expected upwards move");
1105 SlotIndexes *Indexes = LIS.getSlotIndexes();
1106 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1107
1108 // OldIdx may not correspond to an instruction any longer, so set MII to
1109 // point to the next instruction after OldIdx, or MBB->end().
1110 MachineBasicBlock::iterator MII = MBB->end();
1111 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1112 Indexes->getNextNonNullIndex(OldIdx)))
1113 if (MI->getParent() == MBB)
1114 MII = MI;
1115
1116 MachineBasicBlock::iterator Begin = MBB->begin();
1117 while (MII != Begin) {
1118 if ((--MII)->isDebugValue())
1119 continue;
1120 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1121
1122 // Stop searching when NewIdx is reached.
1123 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1124 return NewIdx;
1125
1126 // Check if MII uses Reg.
1127 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1128 if (MO->isReg() &&
1129 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1130 TRI.hasRegUnit(MO->getReg(), Reg))
1131 return Idx;
1132 }
1133 // Didn't reach NewIdx. It must be the first instruction in the block.
1134 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001135 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001136};
1137
Andrew Trickd9d4be02012-10-16 00:22:51 +00001138void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001139 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001140 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1141 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001142 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001143 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1144 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001145 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001146
Andrew Trickd9d4be02012-10-16 00:22:51 +00001147 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001148 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001149}
1150
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001151void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001152 MachineInstr* BundleStart,
1153 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001154 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001155 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001156 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001157 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001158}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001159
Matthias Braune5f861b2014-12-10 01:12:26 +00001160void LiveIntervals::repairOldRegInRange(const MachineBasicBlock::iterator Begin,
1161 const MachineBasicBlock::iterator End,
1162 const SlotIndex endIdx,
1163 LiveRange &LR, const unsigned Reg,
1164 const unsigned LaneMask) {
1165 LiveInterval::iterator LII = LR.find(endIdx);
1166 SlotIndex lastUseIdx;
1167 if (LII != LR.end() && LII->start < endIdx)
1168 lastUseIdx = LII->end;
1169 else
1170 --LII;
1171
1172 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1173 --I;
1174 MachineInstr *MI = I;
1175 if (MI->isDebugValue())
1176 continue;
1177
1178 SlotIndex instrIdx = getInstructionIndex(MI);
1179 bool isStartValid = getInstructionFromIndex(LII->start);
1180 bool isEndValid = getInstructionFromIndex(LII->end);
1181
1182 // FIXME: This doesn't currently handle early-clobber or multiple removed
1183 // defs inside of the region to repair.
1184 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1185 OE = MI->operands_end(); OI != OE; ++OI) {
1186 const MachineOperand &MO = *OI;
1187 if (!MO.isReg() || MO.getReg() != Reg)
1188 continue;
1189
1190 unsigned SubReg = MO.getSubReg();
1191 unsigned Mask = TRI->getSubRegIndexLaneMask(SubReg);
1192 if ((Mask & LaneMask) == 0)
1193 continue;
1194
1195 if (MO.isDef()) {
1196 if (!isStartValid) {
1197 if (LII->end.isDead()) {
1198 SlotIndex prevStart;
1199 if (LII != LR.begin())
1200 prevStart = std::prev(LII)->start;
1201
1202 // FIXME: This could be more efficient if there was a
1203 // removeSegment method that returned an iterator.
1204 LR.removeSegment(*LII, true);
1205 if (prevStart.isValid())
1206 LII = LR.find(prevStart);
1207 else
1208 LII = LR.begin();
1209 } else {
1210 LII->start = instrIdx.getRegSlot();
1211 LII->valno->def = instrIdx.getRegSlot();
1212 if (MO.getSubReg() && !MO.isUndef())
1213 lastUseIdx = instrIdx.getRegSlot();
1214 else
1215 lastUseIdx = SlotIndex();
1216 continue;
1217 }
1218 }
1219
1220 if (!lastUseIdx.isValid()) {
1221 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1222 LiveRange::Segment S(instrIdx.getRegSlot(),
1223 instrIdx.getDeadSlot(), VNI);
1224 LII = LR.addSegment(S);
1225 } else if (LII->start != instrIdx.getRegSlot()) {
1226 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1227 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
1228 LII = LR.addSegment(S);
1229 }
1230
1231 if (MO.getSubReg() && !MO.isUndef())
1232 lastUseIdx = instrIdx.getRegSlot();
1233 else
1234 lastUseIdx = SlotIndex();
1235 } else if (MO.isUse()) {
1236 // FIXME: This should probably be handled outside of this branch,
1237 // either as part of the def case (for defs inside of the region) or
1238 // after the loop over the region.
1239 if (!isEndValid && !LII->end.isBlock())
1240 LII->end = instrIdx.getRegSlot();
1241 if (!lastUseIdx.isValid())
1242 lastUseIdx = instrIdx.getRegSlot();
1243 }
1244 }
1245 }
1246}
1247
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001248void
1249LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001250 MachineBasicBlock::iterator Begin,
1251 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001252 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001253 // Find anchor points, which are at the beginning/end of blocks or at
1254 // instructions that already have indexes.
1255 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1256 --Begin;
1257 while (End != MBB->end() && !Indexes->hasIndex(End))
1258 ++End;
1259
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001260 SlotIndex endIdx;
1261 if (End == MBB->end())
1262 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001263 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001264 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001265
Cameron Zwarich29414822013-02-20 06:46:41 +00001266 Indexes->repairIndexesInRange(MBB, Begin, End);
1267
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001268 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1269 --I;
1270 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001271 if (MI->isDebugValue())
1272 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001273 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1274 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1275 if (MOI->isReg() &&
1276 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1277 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001278 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001279 }
1280 }
1281 }
1282
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001283 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1284 unsigned Reg = OrigRegs[i];
1285 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1286 continue;
1287
1288 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001289 // FIXME: Should we support undefs that gain defs?
1290 if (!LI.hasAtLeastOneValue())
1291 continue;
1292
Matthias Braune5f861b2014-12-10 01:12:26 +00001293 for (LiveInterval::subrange_iterator S = LI.subrange_begin(),
1294 SE = LI.subrange_end(); S != SE; ++S) {
1295 repairOldRegInRange(Begin, End, endIdx, *S, Reg, S->LaneMask);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001296 }
Matthias Braune5f861b2014-12-10 01:12:26 +00001297 repairOldRegInRange(Begin, End, endIdx, LI, Reg);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001298 }
1299}