blob: 48daf2ccd06939d1d251f83d933599562c532a81 [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());
Matthias Braun1aed6ff2014-12-16 04:03:38 +0000195 LRCalc->calculate(LI);
Matthias Braun15abf372014-12-18 19:58:52 +0000196 computeDeadValues(LI, nullptr);
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000197}
198
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000199void LiveIntervals::computeVirtRegs() {
200 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
201 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
202 if (MRI->reg_nodbg_empty(Reg))
203 continue;
Mark Lacey9d8103d2013-08-14 23:50:16 +0000204 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000205 }
206}
207
208void LiveIntervals::computeRegMasks() {
209 RegMaskBlocks.resize(MF->getNumBlockIDs());
210
211 // Find all instructions with regmask operands.
212 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
213 MBBI != E; ++MBBI) {
214 MachineBasicBlock *MBB = MBBI;
215 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
216 RMB.first = RegMaskSlots.size();
217 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
218 MI != ME; ++MI)
219 for (MIOperands MO(MI); MO.isValid(); ++MO) {
220 if (!MO->isRegMask())
221 continue;
222 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
223 RegMaskBits.push_back(MO->getRegMask());
224 }
225 // Compute the number of register mask instructions in this block.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000226 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesen7dfe7ab2012-07-27 21:56:39 +0000227 }
228}
Jakob Stoklund Olesen4021a7b2012-07-27 20:58:46 +0000229
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000230//===----------------------------------------------------------------------===//
231// Register Unit Liveness
232//===----------------------------------------------------------------------===//
233//
234// Fixed interference typically comes from ABI boundaries: Function arguments
235// and return values are passed in fixed registers, and so are exception
236// pointers entering landing pads. Certain instructions require values to be
237// present in specific registers. That is also represented through fixed
238// interference.
239//
240
Matthias Braun34e1be92013-10-10 21:29:02 +0000241/// computeRegUnitInterval - Compute the live range of a register unit, based
242/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000243/// or contain only dead phi-defs from ABI blocks.
Matthias Braun34e1be92013-10-10 21:29:02 +0000244void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000245 assert(LRCalc && "LRCalc not initialized.");
246 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
247
248 // The physregs aliasing Unit are the roots and their super-registers.
249 // Create all values as dead defs before extending to uses. Note that roots
250 // may share super-registers. That's OK because createDeadDefs() is
251 // idempotent. It is very rare for a register unit to have multiple roots, so
252 // uniquing super-registers is probably not worthwhile.
253 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosier682ae152013-05-22 22:36:55 +0000254 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
255 Supers.isValid(); ++Supers) {
Matthias Braunc3a72c22014-12-15 21:36:35 +0000256 if (!MRI->reg_empty(*Supers))
257 LRCalc->createDeadDefs(LR, *Supers);
258 }
259 }
260
261 // Now extend LR to reach all uses.
262 // Ignore uses of reserved registers. We only track defs of those.
263 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
264 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
265 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000266 unsigned Reg = *Supers;
Matthias Braunc3a72c22014-12-15 21:36:35 +0000267 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
268 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000269 }
270 }
271}
272
273
274/// computeLiveInRegUnits - Precompute the live ranges of any register units
275/// that are live-in to an ABI block somewhere. Register values can appear
276/// without a corresponding def when entering the entry block or a landing pad.
277///
278void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun34e1be92013-10-10 21:29:02 +0000279 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000280 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
281
Matthias Braun34e1be92013-10-10 21:29:02 +0000282 // Keep track of the live range sets allocated.
283 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000284
285 // Check all basic blocks for live-ins.
286 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
287 MFI != MFE; ++MFI) {
288 const MachineBasicBlock *MBB = MFI;
289
290 // We only care about ABI blocks: Entry + landing pads.
291 if ((MFI != MF->begin() && !MBB->isLandingPad()) || MBB->livein_empty())
292 continue;
293
294 // Create phi-defs at Begin for all live-in registers.
295 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
296 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
297 for (MachineBasicBlock::livein_iterator LII = MBB->livein_begin(),
298 LIE = MBB->livein_end(); LII != LIE; ++LII) {
299 for (MCRegUnitIterator Units(*LII, TRI); Units.isValid(); ++Units) {
300 unsigned Unit = *Units;
Matthias Braun34e1be92013-10-10 21:29:02 +0000301 LiveRange *LR = RegUnitRanges[Unit];
302 if (!LR) {
303 LR = RegUnitRanges[Unit] = new LiveRange();
304 NewRanges.push_back(Unit);
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000305 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000306 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay7ba769b2012-06-05 23:00:03 +0000307 (void)VNI;
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000308 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
309 }
310 }
311 DEBUG(dbgs() << '\n');
312 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000313 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000314
Matthias Braun34e1be92013-10-10 21:29:02 +0000315 // Compute the 'normal' part of the ranges.
316 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
317 unsigned Unit = NewRanges[i];
318 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
319 }
Jakob Stoklund Olesen12e03da2012-06-05 22:02:15 +0000320}
321
322
Matthias Braun20e1f382014-12-10 01:12:18 +0000323static void createSegmentsForValues(LiveRange &LR,
324 iterator_range<LiveInterval::vni_iterator> VNIs) {
325 for (auto VNI : VNIs) {
326 if (VNI->isUnused())
327 continue;
328 SlotIndex Def = VNI->def;
329 LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI));
330 }
331}
332
333typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList;
334
335static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes,
336 ShrinkToUsesWorkList &WorkList,
337 const LiveRange &OldRange) {
338 // Keep track of the PHIs that are in use.
339 SmallPtrSet<VNInfo*, 8> UsedPHIs;
340 // Blocks that have already been added to WorkList as live-out.
341 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
342
343 // Extend intervals to reach all uses in WorkList.
344 while (!WorkList.empty()) {
345 SlotIndex Idx = WorkList.back().first;
346 VNInfo *VNI = WorkList.back().second;
347 WorkList.pop_back();
348 const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot());
349 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
350
351 // Extend the live range for VNI to be live at Idx.
352 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
353 assert(ExtVNI == VNI && "Unexpected existing value number");
354 (void)ExtVNI;
355 // Is this a PHIDef we haven't seen before?
356 if (!VNI->isPHIDef() || VNI->def != BlockStart ||
357 !UsedPHIs.insert(VNI).second)
358 continue;
359 // The PHI is live, make sure the predecessors are live-out.
360 for (auto &Pred : MBB->predecessors()) {
361 if (!LiveOut.insert(Pred).second)
362 continue;
363 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
364 // A predecessor is not required to have a live-out value for a PHI.
365 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
366 WorkList.push_back(std::make_pair(Stop, PVNI));
367 }
368 continue;
369 }
370
371 // VNI is live-in to MBB.
372 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
373 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
374
375 // Make sure VNI is live-out from the predecessors.
376 for (auto &Pred : MBB->predecessors()) {
377 if (!LiveOut.insert(Pred).second)
378 continue;
379 SlotIndex Stop = Indexes.getMBBEndIdx(Pred);
380 assert(OldRange.getVNInfoBefore(Stop) == VNI &&
381 "Wrong value out of predecessor");
382 WorkList.push_back(std::make_pair(Stop, VNI));
383 }
384 }
385}
386
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000387/// shrinkToUses - After removing some uses of a register, shrink its live
388/// range to just the remaining uses. This method does not compute reaching
389/// defs for new uses, and it doesn't remove dead defs.
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000390bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000391 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000392 DEBUG(dbgs() << "Shrink: " << *li << '\n');
393 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hamesc405ac42012-01-03 20:05:57 +0000394 && "Can only shrink virtual registers");
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000395
Matthias Braun20e1f382014-12-10 01:12:18 +0000396 // Shrink subregister live ranges.
Matthias Braun09afa1e2014-12-11 00:59:06 +0000397 for (LiveInterval::SubRange &S : li->subranges()) {
398 shrinkToUses(S, li->reg);
Matthias Braun20e1f382014-12-10 01:12:18 +0000399 }
400
401 // Find all the values used, including PHI kills.
402 ShrinkToUsesWorkList WorkList;
Jakob Stoklund Olesenb8b1d4c2011-09-15 15:24:16 +0000403
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000404 // Visit all instructions reading li->reg.
Owen Andersonabb90c92014-03-13 06:02:25 +0000405 for (MachineRegisterInfo::reg_instr_iterator
406 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
407 I != E; ) {
408 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000409 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
410 continue;
Jakob Stoklund Olesen69797902011-11-13 23:53:25 +0000411 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000412 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000413 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesenfdc09942011-03-18 03:06:04 +0000414 if (!VNI) {
415 // This shouldn't happen: readsVirtualRegister returns true, but there is
416 // no live value. It is likely caused by a target getting <undef> flags
417 // wrong.
418 DEBUG(dbgs() << Idx << '\t' << *UseMI
419 << "Warning: Instr claims to read non-existent value in "
420 << *li << '\n');
421 continue;
422 }
Jakob Stoklund Olesen7e6004a2011-11-14 18:45:38 +0000423 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen02d83e32012-05-20 02:54:52 +0000424 // register one slot early.
425 if (VNInfo *DefVNI = LRQ.valueDefined())
426 Idx = DefVNI->def;
427
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000428 WorkList.push_back(std::make_pair(Idx, VNI));
429 }
430
Matthias Braund7df9352013-10-10 21:28:47 +0000431 // Create new live ranges with only minimal live segments per def.
432 LiveRange NewLR;
Matthias Braun20e1f382014-12-10 01:12:18 +0000433 createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end()));
434 extendSegmentsToUses(NewLR, *Indexes, WorkList, *li);
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000435
Pete Cooper72235572014-06-03 22:42:10 +0000436 // Move the trimmed segments back.
437 li->segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000438
439 // Handle dead values.
440 bool CanSeparate = computeDeadValues(*li, dead);
Pete Cooper72235572014-06-03 22:42:10 +0000441 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
442 return CanSeparate;
443}
444
Matthias Braun15abf372014-12-18 19:58:52 +0000445bool LiveIntervals::computeDeadValues(LiveInterval &LI,
Pete Cooper72235572014-06-03 22:42:10 +0000446 SmallVectorImpl<MachineInstr*> *dead) {
Matthias Braun15abf372014-12-18 19:58:52 +0000447 bool PHIRemoved = false;
448 for (auto VNI : LI.valnos) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000449 if (VNI->isUnused())
450 continue;
Matthias Braun15abf372014-12-18 19:58:52 +0000451 LiveRange::iterator I = LI.FindSegmentContaining(VNI->def);
452 assert(I != LI.end() && "Missing segment for VNI");
453 if (I->end != VNI->def.getDeadSlot())
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000454 continue;
Jakob Stoklund Olesen81eb18d2011-03-02 00:33:01 +0000455 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000456 // This is a dead PHI. Remove it.
Jakob Stoklund Olesendaae19f2012-08-03 20:59:32 +0000457 VNI->markUnused();
Matthias Braun15abf372014-12-18 19:58:52 +0000458 LI.removeSegment(I);
Jakob Stoklund Olesen86308402011-03-17 20:37:07 +0000459 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
Matthias Braun15abf372014-12-18 19:58:52 +0000460 PHIRemoved = true;
461 } else {
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000462 // This is a dead def. Make sure the instruction knows.
463 MachineInstr *MI = getInstructionFromIndex(VNI->def);
464 assert(MI && "No instruction defining live value");
Matthias Braun15abf372014-12-18 19:58:52 +0000465 MI->addRegisterDead(LI.reg, TRI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000466 if (dead && MI->allDefsAreDead()) {
Jakob Stoklund Olesen557a82c2011-03-16 22:56:08 +0000467 DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI);
Jakob Stoklund Olesen71c380f2011-03-07 23:29:10 +0000468 dead->push_back(MI);
469 }
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000470 }
471 }
Matthias Braun15abf372014-12-18 19:58:52 +0000472 return PHIRemoved;
Matthias Braun20e1f382014-12-10 01:12:18 +0000473}
474
Matthias Braun15abf372014-12-18 19:58:52 +0000475void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg)
Matthias Braun20e1f382014-12-10 01:12:18 +0000476{
477 DEBUG(dbgs() << "Shrink: " << SR << '\n');
478 assert(TargetRegisterInfo::isVirtualRegister(Reg)
479 && "Can only shrink virtual registers");
480 // Find all the values used, including PHI kills.
481 ShrinkToUsesWorkList WorkList;
482
483 // Visit all instructions reading Reg.
484 SlotIndex LastIdx;
485 for (MachineOperand &MO : MRI->reg_operands(Reg)) {
486 MachineInstr *UseMI = MO.getParent();
487 if (UseMI->isDebugValue())
488 continue;
489 // Maybe the operand is for a subregister we don't care about.
490 unsigned SubReg = MO.getSubReg();
491 if (SubReg != 0) {
492 unsigned SubRegMask = TRI->getSubRegIndexLaneMask(SubReg);
493 if ((SubRegMask & SR.LaneMask) == 0)
494 continue;
495 }
496 // We only need to visit each instruction once.
497 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
498 if (Idx == LastIdx)
499 continue;
500 LastIdx = Idx;
501
502 LiveQueryResult LRQ = SR.Query(Idx);
503 VNInfo *VNI = LRQ.valueIn();
504 // For Subranges it is possible that only undef values are left in that
505 // part of the subregister, so there is no real liverange at the use
506 if (!VNI)
507 continue;
508
509 // Special case: An early-clobber tied operand reads and writes the
510 // register one slot early.
511 if (VNInfo *DefVNI = LRQ.valueDefined())
512 Idx = DefVNI->def;
513
514 WorkList.push_back(std::make_pair(Idx, VNI));
515 }
516
517 // Create a new live ranges with only minimal live segments per def.
518 LiveRange NewLR;
519 createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end()));
520 extendSegmentsToUses(NewLR, *Indexes, WorkList, SR);
521
Matthias Braun20e1f382014-12-10 01:12:18 +0000522 // Move the trimmed ranges back.
523 SR.segments.swap(NewLR.segments);
Matthias Braun15abf372014-12-18 19:58:52 +0000524
525 // Remove dead PHI value numbers
526 for (auto VNI : SR.valnos) {
527 if (VNI->isUnused())
528 continue;
529 const LiveRange::Segment *Segment = SR.getSegmentContaining(VNI->def);
530 assert(Segment != nullptr && "Missing segment for VNI");
531 if (Segment->end != VNI->def.getDeadSlot())
532 continue;
533 if (VNI->isPHIDef()) {
534 // This is a dead PHI. Remove it.
535 VNI->markUnused();
536 SR.removeSegment(*Segment);
537 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
538 }
539 }
540
Matthias Braun20e1f382014-12-10 01:12:18 +0000541 DEBUG(dbgs() << "Shrunk: " << SR << '\n');
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000542}
543
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000544void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000545 ArrayRef<SlotIndex> Indices) {
546 assert(LRCalc && "LRCalc not initialized.");
547 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
548 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braun2d5c32b2013-10-10 21:28:57 +0000549 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000550}
551
Matthias Braun8970d842014-12-10 01:12:36 +0000552void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill,
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000553 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun8970d842014-12-10 01:12:36 +0000554 LiveQueryResult LRQ = LR.Query(Kill);
555 VNInfo *VNI = LRQ.valueOutOrDead();
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000556 if (!VNI)
557 return;
558
559 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
Matthias Braun8970d842014-12-10 01:12:36 +0000560 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000561
562 // If VNI isn't live out from KillMBB, the value is trivially pruned.
563 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000564 LR.removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000565 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
566 return;
567 }
568
569 // VNI is live out of KillMBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000570 LR.removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000571 if (EndPoints) EndPoints->push_back(MBBEnd);
572
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000573 // Find all blocks that are reachable from KillMBB without leaving VNI's live
574 // range. It is possible that KillMBB itself is reachable, so start a DFS
575 // from each successor.
576 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
577 VisitedTy Visited;
578 for (MachineBasicBlock::succ_iterator
579 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
580 SuccI != SuccE; ++SuccI) {
581 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
582 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
583 I != E;) {
584 MachineBasicBlock *MBB = *I;
585
586 // Check if VNI is live in to MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000587 SlotIndex MBBStart, MBBEnd;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000588 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun8970d842014-12-10 01:12:36 +0000589 LiveQueryResult LRQ = LR.Query(MBBStart);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000590 if (LRQ.valueIn() != VNI) {
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000591 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000592 I.skipChildren();
593 continue;
594 }
595
596 // Prune the search if VNI is killed in MBB.
597 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun8970d842014-12-10 01:12:36 +0000598 LR.removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000599 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
600 I.skipChildren();
601 continue;
602 }
603
604 // VNI is live through MBB.
Matthias Braun8970d842014-12-10 01:12:36 +0000605 LR.removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesen2f6dfc72012-10-13 16:15:31 +0000606 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000607 ++I;
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000608 }
Jakob Stoklund Olesen0bb3dd72012-09-17 23:03:25 +0000609 }
610}
Jakob Stoklund Olesen55fc1d02011-02-08 00:03:05 +0000611
Evan Chengbe51f282007-11-12 06:35:08 +0000612//===----------------------------------------------------------------------===//
613// Register allocator hooks.
614//
615
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000616void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
617 // Keep track of regunit ranges.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000618 SmallVector<std::pair<const LiveRange*, LiveRange::const_iterator>, 8> RU;
Matthias Braun714c4942014-12-20 01:54:50 +0000619 // Keep track of subregister ranges.
620 SmallVector<std::pair<const LiveInterval::SubRange*,
621 LiveRange::const_iterator>, 4> SRs;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000622
Jakob Stoklund Olesen781e0b92012-06-20 23:23:59 +0000623 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
624 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000625 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000626 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000627 const LiveInterval &LI = getInterval(Reg);
628 if (LI.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000629 continue;
630
631 // Find the regunit intervals for the assigned register. They may overlap
632 // the virtual register live range, cancelling any kills.
633 RU.clear();
634 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
635 ++Units) {
Matthias Braun7f8dece2014-12-20 01:54:48 +0000636 const LiveRange &RURange = getRegUnit(*Units);
637 if (RURange.empty())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000638 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000639 RU.push_back(std::make_pair(&RURange, RURange.find(LI.begin()->end)));
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000640 }
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000641
Matthias Braun714c4942014-12-20 01:54:50 +0000642 if (MRI->tracksSubRegLiveness()) {
643 SRs.clear();
644 for (const LiveInterval::SubRange &SR : LI.subranges()) {
645 SRs.push_back(std::make_pair(&SR, SR.find(LI.begin()->end)));
646 }
647 }
648
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000649 // Every instruction that kills Reg corresponds to a segment range end
650 // point.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000651 for (LiveInterval::const_iterator RI = LI.begin(), RE = LI.end(); RI != RE;
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000652 ++RI) {
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000653 // A block index indicates an MBB edge.
654 if (RI->end.isBlock())
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000655 continue;
656 MachineInstr *MI = getInstructionFromIndex(RI->end);
657 if (!MI)
658 continue;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000659
Matthias Braunc9d5c0f2013-10-04 16:52:58 +0000660 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000661 // happen when a physreg is defined as a copy of a virtreg:
662 //
663 // %EAX = COPY %vreg5
664 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
665 // BAR %EAX<kill>
666 //
667 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
Matthias Braun7f8dece2014-12-20 01:54:48 +0000668 for (auto &RUP : RU) {
669 const LiveRange &RURange = *RUP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000670 LiveRange::const_iterator &I = RUP.second;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000671 if (I == RURange.end())
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000672 continue;
Matthias Braun7f8dece2014-12-20 01:54:48 +0000673 I = RURange.advanceTo(I, RI->end);
674 if (I == RURange.end() || I->start >= RI->end)
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000675 continue;
676 // I is overlapping RI.
Matthias Braun714c4942014-12-20 01:54:50 +0000677 goto CancelKill;
Jakob Stoklund Olesenbb4bdd82012-09-06 18:15:18 +0000678 }
Matthias Braund70caaf2014-12-10 01:13:04 +0000679
Matthias Braund70caaf2014-12-10 01:13:04 +0000680 if (MRI->tracksSubRegLiveness()) {
Matthias Braun714c4942014-12-20 01:54:50 +0000681 // When reading a partial undefined value we must not add a kill flag.
682 // The regalloc might have used the undef lane for something else.
683 // Example:
684 // %vreg1 = ... ; R32: %vreg1
685 // %vreg2:high16 = ... ; R64: %vreg2
686 // = read %vreg2<kill> ; R64: %vreg2
687 // = read %vreg1 ; R32: %vreg1
688 // The <kill> flag is correct for %vreg2, but the register allocator may
689 // assign R0L to %vreg1, and R0 to %vreg2 because the low 32bits of R0
690 // are actually never written by %vreg2. After assignment the <kill>
691 // flag at the read instruction is invalid.
692 unsigned DefinedLanesMask;
693 if (!SRs.empty()) {
694 // Compute a mask of lanes that are defined.
695 DefinedLanesMask = 0;
696 for (auto &SRP : SRs) {
697 const LiveInterval::SubRange &SR = *SRP.first;
Matthias Braunf603c882014-12-24 02:11:43 +0000698 LiveRange::const_iterator &I = SRP.second;
Matthias Braun714c4942014-12-20 01:54:50 +0000699 if (I == SR.end())
700 continue;
701 I = SR.advanceTo(I, RI->end);
702 if (I == SR.end() || I->start >= RI->end)
703 continue;
704 // I is overlapping RI
705 DefinedLanesMask |= SR.LaneMask;
Matthias Braund70caaf2014-12-10 01:13:04 +0000706 }
Matthias Braun714c4942014-12-20 01:54:50 +0000707 } else
708 DefinedLanesMask = ~0u;
709
710 bool IsFullWrite = false;
711 for (const MachineOperand &MO : MI->operands()) {
712 if (!MO.isReg() || MO.getReg() != Reg)
713 continue;
714 if (MO.isUse()) {
715 // Reading any undefined lanes?
716 unsigned UseMask = TRI->getSubRegIndexLaneMask(MO.getSubReg());
717 if ((UseMask & ~DefinedLanesMask) != 0)
718 goto CancelKill;
719 } else if (MO.getSubReg() == 0) {
720 // Writing to the full register?
721 assert(MO.isDef());
722 IsFullWrite = true;
723 }
724 }
725
726 // If an instruction writes to a subregister, a new segment starts in
727 // the LiveInterval. But as this is only overriding part of the register
728 // adding kill-flags is not correct here after registers have been
729 // assigned.
730 if (!IsFullWrite) {
731 // Next segment has to be adjacent in the subregister write case.
732 LiveRange::const_iterator N = std::next(RI);
733 if (N != LI.end() && N->start == RI->end)
734 goto CancelKill;
Matthias Braund70caaf2014-12-10 01:13:04 +0000735 }
736 }
737
Matthias Braun714c4942014-12-20 01:54:50 +0000738 MI->addRegisterKilled(Reg, nullptr);
739 continue;
740CancelKill:
741 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesenf2b16dc2011-02-08 21:13:03 +0000742 }
743 }
744}
745
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000746MachineBasicBlock*
747LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
748 // A local live range must be fully contained inside the block, meaning it is
749 // defined and killed at instructions, not at block boundaries. It is not
750 // live in or or out of any block.
751 //
752 // It is technically possible to have a PHI-defined live range identical to a
753 // single block, but we are going to return false in that case.
Lang Hames05fb9632009-11-03 23:52:08 +0000754
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000755 SlotIndex Start = LI.beginIndex();
756 if (Start.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000757 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000758
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000759 SlotIndex Stop = LI.endIndex();
760 if (Stop.isBlock())
Craig Topperc0196b12014-04-14 00:51:57 +0000761 return nullptr;
Lang Hames05fb9632009-11-03 23:52:08 +0000762
Jakob Stoklund Olesenaa06de22012-02-10 01:23:55 +0000763 // getMBBFromIndex doesn't need to search the MBB table when both indexes
764 // belong to proper instructions.
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000765 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
766 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Craig Topperc0196b12014-04-14 00:51:57 +0000767 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng8e223792007-11-17 00:40:40 +0000768}
769
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000770bool
771LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
Matthias Braun96761952014-12-10 23:07:54 +0000772 for (const VNInfo *PHI : LI.valnos) {
Jakob Stoklund Olesen06d6a532012-08-03 20:10:24 +0000773 if (PHI->isUnused() || !PHI->isPHIDef())
774 continue;
775 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
776 // Conservatively return true instead of scanning huge predecessor lists.
777 if (PHIMBB->pred_size() > 100)
778 return true;
779 for (MachineBasicBlock::const_pred_iterator
780 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
781 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
782 return true;
783 }
784 return false;
785}
786
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000787float
Michael Gottesman9f49d742013-12-14 00:53:32 +0000788LiveIntervals::getSpillWeight(bool isDef, bool isUse,
789 const MachineBlockFrequencyInfo *MBFI,
790 const MachineInstr *MI) {
791 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
Michael Gottesman5e985ee2013-12-14 02:37:38 +0000792 const float Scale = 1.0f / MBFI->getEntryFreq();
Michael Gottesman9f49d742013-12-14 00:53:32 +0000793 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesen115da882010-03-01 20:59:38 +0000794}
795
Matthias Braund7df9352013-10-10 21:28:47 +0000796LiveRange::Segment
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000797LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Lacey9d8103d2013-08-14 23:50:16 +0000798 LiveInterval& Interval = createEmptyInterval(reg);
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000799 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000800 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesenad6b22e2012-02-04 05:20:49 +0000801 getVNInfoAllocator());
Matthias Braund7df9352013-10-10 21:28:47 +0000802 LiveRange::Segment S(
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000803 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames4c052262009-12-22 00:11:50 +0000804 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000805 Interval.addSegment(S);
Jakob Stoklund Olesen073cd802010-08-12 20:01:23 +0000806
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000807 return S;
Owen Anderson35e2dfe2008-06-05 17:15:43 +0000808}
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000809
810
811//===----------------------------------------------------------------------===//
812// Register mask functions
813//===----------------------------------------------------------------------===//
814
815bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
816 BitVector &UsableRegs) {
817 if (LI.empty())
818 return false;
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000819 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
820
821 // Use a smaller arrays for local live ranges.
822 ArrayRef<SlotIndex> Slots;
823 ArrayRef<const uint32_t*> Bits;
824 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
825 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
826 Bits = getRegMaskBitsInBlock(MBB->getNumber());
827 } else {
828 Slots = getRegMaskSlots();
829 Bits = getRegMaskBits();
830 }
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000831
832 // We are going to enumerate all the register mask slots contained in LI.
833 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000834 ArrayRef<SlotIndex>::iterator SlotI =
835 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
836 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
837
838 // No slots in range, LI begins after the last call.
839 if (SlotI == SlotE)
840 return false;
841
842 bool Found = false;
843 for (;;) {
844 assert(*SlotI >= LiveI->start);
845 // Loop over all slots overlapping this segment.
846 while (*SlotI < LiveI->end) {
847 // *SlotI overlaps LI. Collect mask bits.
848 if (!Found) {
849 // This is the first overlap. Initialize UsableRegs to all ones.
850 UsableRegs.clear();
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +0000851 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000852 Found = true;
853 }
854 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9ef50bd2012-02-10 01:31:31 +0000855 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3ff74d82012-02-08 17:33:45 +0000856 if (++SlotI == SlotE)
857 return Found;
858 }
859 // *SlotI is beyond the current LI segment.
860 LiveI = LI.advanceTo(LiveI, *SlotI);
861 if (LiveI == LiveE)
862 return Found;
863 // Advance SlotI until it overlaps.
864 while (*SlotI < LiveI->start)
865 if (++SlotI == SlotE)
866 return Found;
867 }
868}
Lang Hamesb9057d52012-02-17 18:44:18 +0000869
870//===----------------------------------------------------------------------===//
871// IntervalUpdate class.
872//===----------------------------------------------------------------------===//
873
Lang Hames7e2ce882012-02-21 00:00:36 +0000874// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hamesb9057d52012-02-17 18:44:18 +0000875class LiveIntervals::HMEditor {
876private:
Lang Hames59761982012-02-17 23:43:40 +0000877 LiveIntervals& LIS;
878 const MachineRegisterInfo& MRI;
879 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000880 SlotIndex OldIdx;
Lang Hames59761982012-02-17 23:43:40 +0000881 SlotIndex NewIdx;
Matthias Braun34e1be92013-10-10 21:29:02 +0000882 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trickd9d4be02012-10-16 00:22:51 +0000883 bool UpdateFlags;
Lang Hames13b11522012-02-19 07:13:05 +0000884
Lang Hamesb9057d52012-02-17 18:44:18 +0000885public:
Lang Hames59761982012-02-17 23:43:40 +0000886 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000887 const TargetRegisterInfo& TRI,
Andrew Trickd9d4be02012-10-16 00:22:51 +0000888 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
889 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
890 UpdateFlags(UpdateFlags) {}
891
892 // FIXME: UpdateFlags is a workaround that creates live intervals for all
893 // physregs, even those that aren't needed for regalloc, in order to update
894 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
895 // flags, and postRA passes will use a live register utility instead.
Matthias Braun34e1be92013-10-10 21:29:02 +0000896 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trickd9d4be02012-10-16 00:22:51 +0000897 if (UpdateFlags)
898 return &LIS.getRegUnit(Unit);
899 return LIS.getCachedRegUnit(Unit);
900 }
Lang Hamesb9057d52012-02-17 18:44:18 +0000901
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000902 /// Update all live ranges touched by MI, assuming a move from OldIdx to
903 /// NewIdx.
904 void updateAllRanges(MachineInstr *MI) {
905 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
906 bool hasRegMask = false;
907 for (MIOperands MO(MI); MO.isValid(); ++MO) {
908 if (MO->isRegMask())
909 hasRegMask = true;
910 if (!MO->isReg())
Lang Hamesd6e765c2012-02-21 22:29:38 +0000911 continue;
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000912 // Aggressively clear all kill flags.
913 // They are reinserted by VirtRegRewriter.
914 if (MO->isUse())
915 MO->setIsKill(false);
916
917 unsigned Reg = MO->getReg();
918 if (!Reg)
919 continue;
920 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000921 LiveInterval &LI = LIS.getInterval(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000922 if (LI.hasSubRanges()) {
923 unsigned SubReg = MO->getSubReg();
924 unsigned LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
Matthias Braun09afa1e2014-12-11 00:59:06 +0000925 for (LiveInterval::SubRange &S : LI.subranges()) {
926 if ((S.LaneMask & LaneMask) == 0)
Matthias Braun7044d692014-12-10 01:12:20 +0000927 continue;
Matthias Braun09afa1e2014-12-11 00:59:06 +0000928 updateRange(S, Reg, S.LaneMask);
Matthias Braun7044d692014-12-10 01:12:20 +0000929 }
930 }
931 updateRange(LI, Reg, 0);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000932 continue;
933 }
934
935 // For physregs, only update the regunits that actually have a
936 // precomputed live range.
937 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun34e1be92013-10-10 21:29:02 +0000938 if (LiveRange *LR = getRegUnitLI(*Units))
Matthias Braun7044d692014-12-10 01:12:20 +0000939 updateRange(*LR, *Units, 0);
Lang Hamesd6e765c2012-02-21 22:29:38 +0000940 }
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000941 if (hasRegMask)
942 updateRegMaskSlots();
Lang Hames13b11522012-02-19 07:13:05 +0000943 }
944
Lang Hames4645a722012-02-19 03:00:30 +0000945private:
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000946 /// Update a single live range, assuming an instruction has been moved from
947 /// OldIdx to NewIdx.
Matthias Braun7044d692014-12-10 01:12:20 +0000948 void updateRange(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
David Blaikie70573dc2014-11-19 07:49:26 +0000949 if (!Updated.insert(&LR).second)
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000950 return;
951 DEBUG({
952 dbgs() << " ";
Matthias Braun7044d692014-12-10 01:12:20 +0000953 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun34e1be92013-10-10 21:29:02 +0000954 dbgs() << PrintReg(Reg);
Matthias Braun7044d692014-12-10 01:12:20 +0000955 if (LaneMask != 0)
956 dbgs() << format(" L%04X", LaneMask);
957 } else {
Matthias Braun34e1be92013-10-10 21:29:02 +0000958 dbgs() << PrintRegUnit(Reg, &TRI);
Matthias Braun7044d692014-12-10 01:12:20 +0000959 }
Matthias Braun34e1be92013-10-10 21:29:02 +0000960 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000961 });
962 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun34e1be92013-10-10 21:29:02 +0000963 handleMoveDown(LR);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000964 else
Matthias Braun7044d692014-12-10 01:12:20 +0000965 handleMoveUp(LR, Reg, LaneMask);
Matthias Braun34e1be92013-10-10 21:29:02 +0000966 DEBUG(dbgs() << " -->\t" << LR << '\n');
967 LR.verify();
Lang Hamesb9057d52012-02-17 18:44:18 +0000968 }
969
Matthias Braun34e1be92013-10-10 21:29:02 +0000970 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000971 /// to NewIdx.
972 ///
973 /// 1. Live def at OldIdx:
974 /// Move def to NewIdx, assert endpoint after NewIdx.
975 ///
976 /// 2. Live def at OldIdx, killed at NewIdx:
977 /// Change to dead def at NewIdx.
978 /// (Happens when bundling def+kill together).
979 ///
980 /// 3. Dead def at OldIdx:
981 /// Move def to NewIdx, possibly across another live value.
982 ///
983 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000984 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000985 /// (Happens when bundling multiple defs together).
986 ///
987 /// 5. Value read at OldIdx, killed before NewIdx:
988 /// Extend kill to NewIdx.
989 ///
Matthias Braun34e1be92013-10-10 21:29:02 +0000990 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000991 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +0000992 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
993 LiveRange::iterator E = LR.end();
994 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000995 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
996 return;
Lang Hames13b11522012-02-19 07:13:05 +0000997
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +0000998 // Handle a live-in value.
999 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1000 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
1001 // If the live-in value already extends to NewIdx, there is nothing to do.
1002 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
1003 return;
1004 // Aggressively remove all kill flags from the old kill point.
1005 // Kill flags shouldn't be used while live intervals exist, they will be
1006 // reinserted by VirtRegRewriter.
1007 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
1008 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
1009 if (MO->isReg() && MO->isUse())
1010 MO->setIsKill(false);
Matthias Braun34e1be92013-10-10 21:29:02 +00001011 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001012 // overlapping ranges. Case 5 above.
1013 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1014 // If this was a kill, there may also be a def. Otherwise we're done.
1015 if (!isKill)
1016 return;
1017 ++I;
Lang Hames13b11522012-02-19 07:13:05 +00001018 }
1019
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001020 // Check for a def at OldIdx.
1021 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
1022 return;
1023 // We have a def at OldIdx.
1024 VNInfo *DefVNI = I->valno;
1025 assert(DefVNI->def == I->start && "Inconsistent def");
1026 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1027 // If the defined value extends beyond NewIdx, just move the def down.
1028 // This is case 1 above.
1029 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
1030 I->start = DefVNI->def;
1031 return;
1032 }
1033 // The remaining possibilities are now:
1034 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
1035 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
1036 // In either case, it is possible that there is an existing def at NewIdx.
1037 assert((I->end == OldIdx.getDeadSlot() ||
1038 SlotIndex::isSameInstr(I->end, NewIdx)) &&
1039 "Cannot move def below kill");
Matthias Braun34e1be92013-10-10 21:29:02 +00001040 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001041 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1042 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
1043 // coalesced into that value.
1044 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun34e1be92013-10-10 21:29:02 +00001045 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001046 return;
1047 }
1048 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001049 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001050 // values. The new range should be placed immediately before NewI, move any
1051 // intermediate ranges up.
1052 assert(NewI != I && "Inconsistent iterators");
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001053 std::copy(std::next(I), NewI, I);
1054 *std::prev(NewI)
Matthias Braund7df9352013-10-10 21:28:47 +00001055 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001056 }
1057
Matthias Braun34e1be92013-10-10 21:29:02 +00001058 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001059 /// to NewIdx.
1060 ///
1061 /// 1. Live def at OldIdx:
1062 /// Hoist def to NewIdx.
1063 ///
1064 /// 2. Dead def at OldIdx:
1065 /// Hoist def+end to NewIdx, possibly move across other values.
1066 ///
1067 /// 3. Dead def at OldIdx AND existing def at NewIdx:
1068 /// Remove value defined at OldIdx, coalescing it with existing value.
1069 ///
1070 /// 4. Live def at OldIdx AND existing def at NewIdx:
1071 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
1072 /// (Happens when bundling multiple defs together).
1073 ///
1074 /// 5. Value killed at OldIdx:
1075 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
1076 /// OldIdx.
1077 ///
Matthias Braun7044d692014-12-10 01:12:20 +00001078 void handleMoveUp(LiveRange &LR, unsigned Reg, unsigned LaneMask) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001079 // First look for a kill at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001080 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
1081 LiveRange::iterator E = LR.end();
1082 // Is LR even live at OldIdx?
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001083 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
1084 return;
1085
1086 // Handle a live-in value.
1087 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
1088 // If the live-in value isn't killed here, there is nothing to do.
1089 if (!SlotIndex::isSameInstr(OldIdx, I->end))
1090 return;
1091 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
1092 // another use, we need to search for that use. Case 5 above.
1093 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
1094 ++I;
1095 // If OldIdx also defines a value, there couldn't have been another use.
1096 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
1097 // No def, search for the new kill.
1098 // This can never be an early clobber kill since there is no def.
Matthias Braun7044d692014-12-10 01:12:20 +00001099 std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot();
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001100 return;
Lang Hames13b11522012-02-19 07:13:05 +00001101 }
1102 }
1103
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001104 // Now deal with the def at OldIdx.
1105 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
1106 VNInfo *DefVNI = I->valno;
1107 assert(DefVNI->def == I->start && "Inconsistent def");
1108 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
1109
1110 // Check for an existing def at NewIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001111 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001112 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
1113 assert(NewI->valno != DefVNI && "Same value defined more than once?");
1114 // There is an existing def at NewIdx.
1115 if (I->end.isDead()) {
1116 // Case 3: Remove the dead def at OldIdx.
Matthias Braun34e1be92013-10-10 21:29:02 +00001117 LR.removeValNo(DefVNI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001118 return;
1119 }
1120 // Case 4: Replace def at NewIdx with live def at OldIdx.
1121 I->start = DefVNI->def;
Matthias Braun34e1be92013-10-10 21:29:02 +00001122 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001123 return;
Lang Hames13b11522012-02-19 07:13:05 +00001124 }
1125
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001126 // There is no existing def at NewIdx. Hoist DefVNI.
1127 if (!I->end.isDead()) {
1128 // Leave the end point of a live def.
1129 I->start = DefVNI->def;
1130 return;
1131 }
1132
Matthias Braun34e1be92013-10-10 21:29:02 +00001133 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001134 // so move I up to NewI. Slide [NewI;I) down one position.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001135 std::copy_backward(NewI, I, std::next(I));
Matthias Braund7df9352013-10-10 21:28:47 +00001136 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames13b11522012-02-19 07:13:05 +00001137 }
1138
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001139 void updateRegMaskSlots() {
Lang Hames59761982012-02-17 23:43:40 +00001140 SmallVectorImpl<SlotIndex>::iterator RI =
1141 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
1142 OldIdx);
Jakob Stoklund Olesen13d55622012-11-09 19:18:49 +00001143 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1144 "No RegMask at OldIdx.");
1145 *RI = NewIdx.getRegSlot();
1146 assert((RI == LIS.RegMaskSlots.begin() ||
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001147 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
1148 "Cannot move regmask instruction above another call");
1149 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1150 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
1151 "Cannot move regmask instruction below another call");
Lang Hamesa9afc6a2012-02-17 21:29:41 +00001152 }
Lang Hames4645a722012-02-19 03:00:30 +00001153
1154 // Return the last use of reg between NewIdx and OldIdx.
Matthias Braun7044d692014-12-10 01:12:20 +00001155 SlotIndex findLastUseBefore(unsigned Reg, unsigned LaneMask) {
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001156
1157 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001158 SlotIndex LastUse = NewIdx;
Matthias Braun7044d692014-12-10 01:12:20 +00001159 for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) {
1160 unsigned SubReg = MO.getSubReg();
1161 if (SubReg != 0 && LaneMask != 0
1162 && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0)
1163 continue;
1164
1165 const MachineInstr *MI = MO.getParent();
Lang Hamesc3d9a3d2012-09-12 06:56:16 +00001166 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
1167 if (InstSlot > LastUse && InstSlot < OldIdx)
1168 LastUse = InstSlot;
1169 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001170 return LastUse;
Lang Hames4645a722012-02-19 03:00:30 +00001171 }
Jakob Stoklund Olesen8d1aaf22013-03-08 18:08:57 +00001172
1173 // This is a regunit interval, so scanning the use list could be very
1174 // expensive. Scan upwards from OldIdx instead.
1175 assert(NewIdx < OldIdx && "Expected upwards move");
1176 SlotIndexes *Indexes = LIS.getSlotIndexes();
1177 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1178
1179 // OldIdx may not correspond to an instruction any longer, so set MII to
1180 // point to the next instruction after OldIdx, or MBB->end().
1181 MachineBasicBlock::iterator MII = MBB->end();
1182 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1183 Indexes->getNextNonNullIndex(OldIdx)))
1184 if (MI->getParent() == MBB)
1185 MII = MI;
1186
1187 MachineBasicBlock::iterator Begin = MBB->begin();
1188 while (MII != Begin) {
1189 if ((--MII)->isDebugValue())
1190 continue;
1191 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1192
1193 // Stop searching when NewIdx is reached.
1194 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1195 return NewIdx;
1196
1197 // Check if MII uses Reg.
1198 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1199 if (MO->isReg() &&
1200 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1201 TRI.hasRegUnit(MO->getReg(), Reg))
1202 return Idx;
1203 }
1204 // Didn't reach NewIdx. It must be the first instruction in the block.
1205 return NewIdx;
Lang Hames4645a722012-02-19 03:00:30 +00001206 }
Lang Hamesb9057d52012-02-17 18:44:18 +00001207};
1208
Andrew Trickd9d4be02012-10-16 00:22:51 +00001209void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001210 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001211 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1212 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001213 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hames59761982012-02-17 23:43:40 +00001214 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1215 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hamesb9057d52012-02-17 18:44:18 +00001216 "Cannot handle moves across basic block boundaries.");
Lang Hamesb9057d52012-02-17 18:44:18 +00001217
Andrew Trickd9d4be02012-10-16 00:22:51 +00001218 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001219 HME.updateAllRanges(MI);
Lang Hamesd6e765c2012-02-21 22:29:38 +00001220}
1221
Jakob Stoklund Olesen2db11252012-06-19 22:50:53 +00001222void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trickd9d4be02012-10-16 00:22:51 +00001223 MachineInstr* BundleStart,
1224 bool UpdateFlags) {
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001225 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen11fb2482012-06-04 22:39:14 +00001226 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trickd9d4be02012-10-16 00:22:51 +00001227 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesen1a87a292012-10-12 21:31:57 +00001228 HME.updateAllRanges(MI);
Lang Hamesb9057d52012-02-17 18:44:18 +00001229}
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001230
Matthias Braune5f861b2014-12-10 01:12:26 +00001231void LiveIntervals::repairOldRegInRange(const MachineBasicBlock::iterator Begin,
1232 const MachineBasicBlock::iterator End,
1233 const SlotIndex endIdx,
1234 LiveRange &LR, const unsigned Reg,
1235 const unsigned LaneMask) {
1236 LiveInterval::iterator LII = LR.find(endIdx);
1237 SlotIndex lastUseIdx;
1238 if (LII != LR.end() && LII->start < endIdx)
1239 lastUseIdx = LII->end;
1240 else
1241 --LII;
1242
1243 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1244 --I;
1245 MachineInstr *MI = I;
1246 if (MI->isDebugValue())
1247 continue;
1248
1249 SlotIndex instrIdx = getInstructionIndex(MI);
1250 bool isStartValid = getInstructionFromIndex(LII->start);
1251 bool isEndValid = getInstructionFromIndex(LII->end);
1252
1253 // FIXME: This doesn't currently handle early-clobber or multiple removed
1254 // defs inside of the region to repair.
1255 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1256 OE = MI->operands_end(); OI != OE; ++OI) {
1257 const MachineOperand &MO = *OI;
1258 if (!MO.isReg() || MO.getReg() != Reg)
1259 continue;
1260
1261 unsigned SubReg = MO.getSubReg();
1262 unsigned Mask = TRI->getSubRegIndexLaneMask(SubReg);
1263 if ((Mask & LaneMask) == 0)
1264 continue;
1265
1266 if (MO.isDef()) {
1267 if (!isStartValid) {
1268 if (LII->end.isDead()) {
1269 SlotIndex prevStart;
1270 if (LII != LR.begin())
1271 prevStart = std::prev(LII)->start;
1272
1273 // FIXME: This could be more efficient if there was a
1274 // removeSegment method that returned an iterator.
1275 LR.removeSegment(*LII, true);
1276 if (prevStart.isValid())
1277 LII = LR.find(prevStart);
1278 else
1279 LII = LR.begin();
1280 } else {
1281 LII->start = instrIdx.getRegSlot();
1282 LII->valno->def = instrIdx.getRegSlot();
1283 if (MO.getSubReg() && !MO.isUndef())
1284 lastUseIdx = instrIdx.getRegSlot();
1285 else
1286 lastUseIdx = SlotIndex();
1287 continue;
1288 }
1289 }
1290
1291 if (!lastUseIdx.isValid()) {
1292 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1293 LiveRange::Segment S(instrIdx.getRegSlot(),
1294 instrIdx.getDeadSlot(), VNI);
1295 LII = LR.addSegment(S);
1296 } else if (LII->start != instrIdx.getRegSlot()) {
1297 VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator);
1298 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
1299 LII = LR.addSegment(S);
1300 }
1301
1302 if (MO.getSubReg() && !MO.isUndef())
1303 lastUseIdx = instrIdx.getRegSlot();
1304 else
1305 lastUseIdx = SlotIndex();
1306 } else if (MO.isUse()) {
1307 // FIXME: This should probably be handled outside of this branch,
1308 // either as part of the def case (for defs inside of the region) or
1309 // after the loop over the region.
1310 if (!isEndValid && !LII->end.isBlock())
1311 LII->end = instrIdx.getRegSlot();
1312 if (!lastUseIdx.isValid())
1313 lastUseIdx = instrIdx.getRegSlot();
1314 }
1315 }
1316 }
1317}
1318
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001319void
1320LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich24955962013-02-17 11:09:00 +00001321 MachineBasicBlock::iterator Begin,
1322 MachineBasicBlock::iterator End,
Cameron Zwarich1286ef92013-02-17 03:48:23 +00001323 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001324 // Find anchor points, which are at the beginning/end of blocks or at
1325 // instructions that already have indexes.
1326 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1327 --Begin;
1328 while (End != MBB->end() && !Indexes->hasIndex(End))
1329 ++End;
1330
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001331 SlotIndex endIdx;
1332 if (End == MBB->end())
1333 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich24955962013-02-17 11:09:00 +00001334 else
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001335 endIdx = getInstructionIndex(End);
Cameron Zwarich24955962013-02-17 11:09:00 +00001336
Cameron Zwarich29414822013-02-20 06:46:41 +00001337 Indexes->repairIndexesInRange(MBB, Begin, End);
1338
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001339 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1340 --I;
1341 MachineInstr *MI = I;
Cameron Zwarich63acc732013-02-23 10:25:25 +00001342 if (MI->isDebugValue())
1343 continue;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001344 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1345 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1346 if (MOI->isReg() &&
1347 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1348 !hasInterval(MOI->getReg())) {
Mark Lacey9d8103d2013-08-14 23:50:16 +00001349 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001350 }
1351 }
1352 }
1353
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001354 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1355 unsigned Reg = OrigRegs[i];
1356 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1357 continue;
1358
1359 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich8e7dc062013-02-20 22:09:57 +00001360 // FIXME: Should we support undefs that gain defs?
1361 if (!LI.hasAtLeastOneValue())
1362 continue;
1363
Matthias Braun09afa1e2014-12-11 00:59:06 +00001364 for (LiveInterval::SubRange &S : LI.subranges()) {
1365 repairOldRegInRange(Begin, End, endIdx, S, Reg, S.LaneMask);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001366 }
Matthias Braune5f861b2014-12-10 01:12:26 +00001367 repairOldRegInRange(Begin, End, endIdx, LI, Reg);
Cameron Zwarichbfebb412013-02-17 00:10:44 +00001368 }
1369}
Matthias Brauncfb8ad22015-01-21 18:50:21 +00001370
1371void LiveIntervals::removePhysRegDefAt(unsigned Reg, SlotIndex Pos) {
1372 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) {
1373 if (LiveRange *LR = getCachedRegUnit(*Units))
1374 if (VNInfo *VNI = LR->getVNInfoAt(Pos))
1375 LR->removeValNo(VNI);
1376 }
1377}