blob: 3563f8eab0237005ae23edbaffd93bbf0d7c6285 [file] [log] [blame]
Chris Lattnera3b8b5c2004-07-23 17:56:30 +00001//===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Evlogimenosff0cbe12003-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 Lattner3c3fe462005-09-21 04:19:09 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000019#include "LiveRangeCalc.h"
20#include "llvm/ADT/DenseSet.h"
21#include "llvm/ADT/STLExtras.h"
Dan Gohman6d69ba82008-07-25 00:02:30 +000022#include "llvm/Analysis/AliasAnalysis.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000023#include "llvm/CodeGen/LiveVariables.h"
Stephen Hines36b56882014-04-23 16:57:46 -070024#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +000025#include "llvm/CodeGen/MachineDominators.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000026#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000028#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen1ead68d2012-11-28 19:13:06 +000029#include "llvm/CodeGen/VirtRegMap.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000030#include "llvm/IR/Value.h"
Benjamin Kramer4eed7562013-06-17 19:00:36 +000031#include "llvm/Support/BlockFrequency.h"
Jakob Stoklund Olesen3dfa38a2012-07-27 20:58:46 +000032#include "llvm/Support/CommandLine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000034#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000036#include "llvm/Target/TargetInstrInfo.h"
37#include "llvm/Target/TargetMachine.h"
38#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000039#include <algorithm>
Jeff Cohen97af7512006-12-02 02:22:01 +000040#include <cmath>
Chandler Carruthd04a8d42012-12-03 16:50:05 +000041#include <limits>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000042using namespace llvm;
43
Stephen Hinesdce4a402014-05-29 02:49:00 -070044#define DEBUG_TYPE "regalloc"
45
Devang Patel19974732007-05-03 01:11:54 +000046char LiveIntervals::ID = 0;
Jakob Stoklund Olesendcc44362012-08-03 22:12:54 +000047char &llvm::LiveIntervalsID = LiveIntervals::ID;
Owen Anderson2ab36d32010-10-12 19:48:12 +000048INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
49 "Live Interval Analysis", false, false)
Andrew Trick8dd26252012-02-10 04:10:36 +000050INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
Owen Anderson2ab36d32010-10-12 19:48:12 +000051INITIALIZE_PASS_DEPENDENCY(LiveVariables)
Andrew Trick8dd26252012-02-10 04:10:36 +000052INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Owen Anderson2ab36d32010-10-12 19:48:12 +000053INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
Owen Anderson2ab36d32010-10-12 19:48:12 +000054INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
Owen Andersonce665bd2010-10-07 22:25:06 +000055 "Live Interval Analysis", false, false)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000056
Andrew Trickc6bae792013-06-21 18:33:23 +000057#ifndef NDEBUG
58static cl::opt<bool> EnablePrecomputePhysRegs(
59 "precompute-phys-liveness", cl::Hidden,
60 cl::desc("Eagerly compute live intervals for all physreg units."));
61#else
62static bool EnablePrecomputePhysRegs = false;
63#endif // NDEBUG
64
Chris Lattnerf7da2c72006-08-24 22:43:55 +000065void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000066 AU.setPreservesCFG();
Dan Gohman6d69ba82008-07-25 00:02:30 +000067 AU.addRequired<AliasAnalysis>();
68 AU.addPreserved<AliasAnalysis>();
Jakob Stoklund Olesenec7b25d2013-02-09 00:04:07 +000069 // LiveVariables isn't really required by this analysis, it is only required
70 // here to make sure it is live during TwoAddressInstructionPass and
71 // PHIElimination. This is temporary.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000072 AU.addRequired<LiveVariables>();
Evan Cheng148341c2010-08-17 21:00:37 +000073 AU.addPreserved<LiveVariables>();
Andrew Trickd35576b2012-02-13 20:44:42 +000074 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesenc4118452012-06-20 23:31:34 +000075 AU.addRequiredTransitiveID(MachineDominatorsID);
Bill Wendling67d65bb2008-01-04 20:54:55 +000076 AU.addPreservedID(MachineDominatorsID);
Lang Hames233a60e2009-11-03 23:52:08 +000077 AU.addPreserved<SlotIndexes>();
78 AU.addRequiredTransitive<SlotIndexes>();
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000079 MachineFunctionPass::getAnalysisUsage(AU);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000080}
81
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +000082LiveIntervals::LiveIntervals() : MachineFunctionPass(ID),
Stephen Hinesdce4a402014-05-29 02:49:00 -070083 DomTree(nullptr), LRCalc(nullptr) {
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +000084 initializeLiveIntervalsPass(*PassRegistry::getPassRegistry());
85}
86
87LiveIntervals::~LiveIntervals() {
88 delete LRCalc;
89}
90
Chris Lattnerf7da2c72006-08-24 22:43:55 +000091void LiveIntervals::releaseMemory() {
Owen Anderson03857b22008-08-13 21:49:13 +000092 // Free the live intervals themselves.
Jakob Stoklund Olesen7fa67842012-06-22 20:37:52 +000093 for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
94 delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)];
95 VirtRegIntervals.clear();
Jakob Stoklund Olesen3fd3a842012-02-08 17:33:45 +000096 RegMaskSlots.clear();
97 RegMaskBits.clear();
Jakob Stoklund Olesen34e85d02012-02-10 01:26:29 +000098 RegMaskBlocks.clear();
Lang Hamesffd13262009-07-09 03:57:02 +000099
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000100 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
101 delete RegUnitRanges[i];
102 RegUnitRanges.clear();
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000103
Benjamin Kramerce9a20b2010-06-26 11:30:59 +0000104 // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
105 VNInfoAllocator.Reset();
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000106}
107
Jakob Stoklund Olesen2aeef002013-08-14 17:28:46 +0000108/// runOnMachineFunction - calculates LiveIntervals
Owen Anderson80b3ce62008-05-28 20:54:50 +0000109///
110bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000111 MF = &fn;
112 MRI = &MF->getRegInfo();
113 TM = &fn.getTarget();
114 TRI = TM->getRegisterInfo();
115 TII = TM->getInstrInfo();
116 AA = &getAnalysis<AliasAnalysis>();
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000117 Indexes = &getAnalysis<SlotIndexes>();
Jakob Stoklund Olesenc4118452012-06-20 23:31:34 +0000118 DomTree = &getAnalysis<MachineDominatorTree>();
119 if (!LRCalc)
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000120 LRCalc = new LiveRangeCalc();
Owen Anderson80b3ce62008-05-28 20:54:50 +0000121
Jakob Stoklund Olesen3dfa38a2012-07-27 20:58:46 +0000122 // Allocate space for all virtual registers.
123 VirtRegIntervals.resize(MRI->getNumVirtRegs());
124
Jakob Stoklund Olesenec7b25d2013-02-09 00:04:07 +0000125 computeVirtRegs();
126 computeRegMasks();
Jakob Stoklund Olesenc4118452012-06-20 23:31:34 +0000127 computeLiveInRegUnits();
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000128
Andrew Trickc6bae792013-06-21 18:33:23 +0000129 if (EnablePrecomputePhysRegs) {
130 // For stress testing, precompute live ranges of all physical register
131 // units, including reserved registers.
132 for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i)
133 getRegUnit(i);
134 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000135 DEBUG(dump());
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000136 return true;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000137}
138
Chris Lattner70ca3582004-09-30 15:59:17 +0000139/// print - Implement the dump method.
Chris Lattner45cfe542009-08-23 06:03:38 +0000140void LiveIntervals::print(raw_ostream &OS, const Module* ) const {
Chris Lattner705e07f2009-08-23 03:41:05 +0000141 OS << "********** INTERVALS **********\n";
Jakob Stoklund Olesenf658af52012-02-14 23:46:21 +0000142
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000143 // Dump the regunits.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000144 for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i)
145 if (LiveRange *LR = RegUnitRanges[i])
Matthias Braun03d96092013-10-10 21:29:05 +0000146 OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n';
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000147
Jakob Stoklund Olesenf658af52012-02-14 23:46:21 +0000148 // Dump the virtregs.
Jakob Stoklund Olesen7fa67842012-06-22 20:37:52 +0000149 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
150 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
151 if (hasInterval(Reg))
Matthias Braun03d96092013-10-10 21:29:05 +0000152 OS << getInterval(Reg) << '\n';
Jakob Stoklund Olesen7fa67842012-06-22 20:37:52 +0000153 }
Chris Lattner70ca3582004-09-30 15:59:17 +0000154
Jakob Stoklund Olesen722c9a72012-11-09 19:18:49 +0000155 OS << "RegMasks:";
156 for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i)
157 OS << ' ' << RegMaskSlots[i];
158 OS << '\n';
159
Evan Cheng752195e2009-09-14 21:33:42 +0000160 printInstrs(OS);
161}
162
163void LiveIntervals::printInstrs(raw_ostream &OS) const {
Chris Lattner705e07f2009-08-23 03:41:05 +0000164 OS << "********** MACHINEINSTRS **********\n";
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000165 MF->print(OS, Indexes);
Chris Lattner70ca3582004-09-30 15:59:17 +0000166}
167
Manman Renb720be62012-09-11 22:23:19 +0000168#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Evan Cheng752195e2009-09-14 21:33:42 +0000169void LiveIntervals::dumpInstrs() const {
David Greene8a342292010-01-04 22:49:02 +0000170 printInstrs(dbgs());
Evan Cheng752195e2009-09-14 21:33:42 +0000171}
Manman Ren77e300e2012-09-06 19:06:06 +0000172#endif
Evan Cheng752195e2009-09-14 21:33:42 +0000173
Owen Anderson03857b22008-08-13 21:49:13 +0000174LiveInterval* LiveIntervals::createInterval(unsigned reg) {
Aaron Ballmaneb360242013-11-13 00:15:44 +0000175 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
176 llvm::huge_valf : 0.0F;
Owen Anderson03857b22008-08-13 21:49:13 +0000177 return new LiveInterval(reg, Weight);
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000178}
Evan Chengf2fbca62007-11-12 06:35:08 +0000179
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000180
Jakob Stoklund Olesen3dfa38a2012-07-27 20:58:46 +0000181/// computeVirtRegInterval - Compute the live interval of a virtual register,
182/// based on defs and uses.
Matthias Braune25dde52013-10-10 21:28:57 +0000183void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) {
Jakob Stoklund Olesen3dfa38a2012-07-27 20:58:46 +0000184 assert(LRCalc && "LRCalc not initialized.");
Matthias Braune25dde52013-10-10 21:28:57 +0000185 assert(LI.empty() && "Should only compute empty intervals.");
Jakob Stoklund Olesen3dfa38a2012-07-27 20:58:46 +0000186 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
187 LRCalc->createDeadDefs(LI);
188 LRCalc->extendToUses(LI);
189}
190
Jakob Stoklund Olesenc16bf792012-07-27 21:56:39 +0000191void LiveIntervals::computeVirtRegs() {
192 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
193 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
194 if (MRI->reg_nodbg_empty(Reg))
195 continue;
Mark Laceye742d682013-08-14 23:50:16 +0000196 createAndComputeVirtRegInterval(Reg);
Jakob Stoklund Olesenc16bf792012-07-27 21:56:39 +0000197 }
198}
199
200void LiveIntervals::computeRegMasks() {
201 RegMaskBlocks.resize(MF->getNumBlockIDs());
202
203 // Find all instructions with regmask operands.
204 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
205 MBBI != E; ++MBBI) {
206 MachineBasicBlock *MBB = MBBI;
207 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB->getNumber()];
208 RMB.first = RegMaskSlots.size();
209 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end();
210 MI != ME; ++MI)
211 for (MIOperands MO(MI); MO.isValid(); ++MO) {
212 if (!MO->isRegMask())
213 continue;
214 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
215 RegMaskBits.push_back(MO->getRegMask());
216 }
217 // Compute the number of register mask instructions in this block.
Dmitri Gribenko2de05722012-09-10 21:26:47 +0000218 RMB.second = RegMaskSlots.size() - RMB.first;
Jakob Stoklund Olesenc16bf792012-07-27 21:56:39 +0000219 }
220}
Jakob Stoklund Olesen3dfa38a2012-07-27 20:58:46 +0000221
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000222//===----------------------------------------------------------------------===//
223// Register Unit Liveness
224//===----------------------------------------------------------------------===//
225//
226// Fixed interference typically comes from ABI boundaries: Function arguments
227// and return values are passed in fixed registers, and so are exception
228// pointers entering landing pads. Certain instructions require values to be
229// present in specific registers. That is also represented through fixed
230// interference.
231//
232
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000233/// computeRegUnitInterval - Compute the live range of a register unit, based
234/// on the uses and defs of aliasing registers. The range should be empty,
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000235/// or contain only dead phi-defs from ABI blocks.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000236void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000237 assert(LRCalc && "LRCalc not initialized.");
238 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
239
240 // The physregs aliasing Unit are the roots and their super-registers.
241 // Create all values as dead defs before extending to uses. Note that roots
242 // may share super-registers. That's OK because createDeadDefs() is
243 // idempotent. It is very rare for a register unit to have multiple roots, so
244 // uniquing super-registers is probably not worthwhile.
245 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosierb018bab2013-05-22 22:36:55 +0000246 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
247 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000248 if (!MRI->reg_empty(*Supers))
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000249 LRCalc->createDeadDefs(LR, *Supers);
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000250 }
251 }
252
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000253 // Now extend LR to reach all uses.
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000254 // Ignore uses of reserved registers. We only track defs of those.
255 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
Chad Rosierb018bab2013-05-22 22:36:55 +0000256 for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true);
257 Supers.isValid(); ++Supers) {
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000258 unsigned Reg = *Supers;
Jakob Stoklund Olesen79004762012-10-15 22:14:34 +0000259 if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg))
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000260 LRCalc->extendToUses(LR, Reg);
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000261 }
262 }
263}
264
265
266/// computeLiveInRegUnits - Precompute the live ranges of any register units
267/// that are live-in to an ABI block somewhere. Register values can appear
268/// without a corresponding def when entering the entry block or a landing pad.
269///
270void LiveIntervals::computeLiveInRegUnits() {
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000271 RegUnitRanges.resize(TRI->getNumRegUnits());
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000272 DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n");
273
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000274 // Keep track of the live range sets allocated.
275 SmallVector<unsigned, 8> NewRanges;
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000276
277 // Check all basic blocks for live-ins.
278 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end();
279 MFI != MFE; ++MFI) {
280 const MachineBasicBlock *MBB = MFI;
281
282 // We only care about ABI blocks: Entry + landing pads.
283 if ((MFI != MF->begin() && !MBB->isLandingPad()) || MBB->livein_empty())
284 continue;
285
286 // Create phi-defs at Begin for all live-in registers.
287 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
288 DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber());
289 for (MachineBasicBlock::livein_iterator LII = MBB->livein_begin(),
290 LIE = MBB->livein_end(); LII != LIE; ++LII) {
291 for (MCRegUnitIterator Units(*LII, TRI); Units.isValid(); ++Units) {
292 unsigned Unit = *Units;
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000293 LiveRange *LR = RegUnitRanges[Unit];
294 if (!LR) {
295 LR = RegUnitRanges[Unit] = new LiveRange();
296 NewRanges.push_back(Unit);
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000297 }
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000298 VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator());
Matt Beaumont-Gay05b46f02012-06-05 23:00:03 +0000299 (void)VNI;
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000300 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id);
301 }
302 }
303 DEBUG(dbgs() << '\n');
304 }
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000305 DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n");
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000306
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000307 // Compute the 'normal' part of the ranges.
308 for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) {
309 unsigned Unit = NewRanges[i];
310 computeRegUnitRange(*RegUnitRanges[Unit], Unit);
311 }
Jakob Stoklund Olesen34c6f982012-06-05 22:02:15 +0000312}
313
314
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000315/// shrinkToUses - After removing some uses of a register, shrink its live
316/// range to just the remaining uses. This method does not compute reaching
317/// defs for new uses, and it doesn't remove dead defs.
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000318bool LiveIntervals::shrinkToUses(LiveInterval *li,
Jakob Stoklund Olesen0d8ccaa2011-03-07 23:29:10 +0000319 SmallVectorImpl<MachineInstr*> *dead) {
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000320 DEBUG(dbgs() << "Shrink: " << *li << '\n');
321 assert(TargetRegisterInfo::isVirtualRegister(li->reg)
Lang Hames567cdba2012-01-03 20:05:57 +0000322 && "Can only shrink virtual registers");
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000323 // Find all the values used, including PHI kills.
324 SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList;
325
Jakob Stoklund Olesen031432f2011-09-15 15:24:16 +0000326 // Blocks that have already been added to WorkList as live-out.
327 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
328
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000329 // Visit all instructions reading li->reg.
Stephen Hines36b56882014-04-23 16:57:46 -0700330 for (MachineRegisterInfo::reg_instr_iterator
331 I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end();
332 I != E; ) {
333 MachineInstr *UseMI = &*(I++);
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000334 if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg))
335 continue;
Jakob Stoklund Olesen6c9cc212011-11-13 23:53:25 +0000336 SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot();
Matthias Braun5649e252013-10-10 21:28:52 +0000337 LiveQueryResult LRQ = li->Query(Idx);
Jakob Stoklund Olesen97769fc2012-05-20 02:54:52 +0000338 VNInfo *VNI = LRQ.valueIn();
Jakob Stoklund Olesen9ef931e2011-03-18 03:06:04 +0000339 if (!VNI) {
340 // This shouldn't happen: readsVirtualRegister returns true, but there is
341 // no live value. It is likely caused by a target getting <undef> flags
342 // wrong.
343 DEBUG(dbgs() << Idx << '\t' << *UseMI
344 << "Warning: Instr claims to read non-existent value in "
345 << *li << '\n');
346 continue;
347 }
Jakob Stoklund Olesenf054e192011-11-14 18:45:38 +0000348 // Special case: An early-clobber tied operand reads and writes the
Jakob Stoklund Olesen97769fc2012-05-20 02:54:52 +0000349 // register one slot early.
350 if (VNInfo *DefVNI = LRQ.valueDefined())
351 Idx = DefVNI->def;
352
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000353 WorkList.push_back(std::make_pair(Idx, VNI));
354 }
355
Matthias Braun87a86052013-10-10 21:28:47 +0000356 // Create new live ranges with only minimal live segments per def.
357 LiveRange NewLR;
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000358 for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end();
359 I != E; ++I) {
360 VNInfo *VNI = *I;
361 if (VNI->isUnused())
362 continue;
Matthias Braun87a86052013-10-10 21:28:47 +0000363 NewLR.addSegment(LiveRange::Segment(VNI->def, VNI->def.getDeadSlot(), VNI));
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000364 }
365
Jakob Stoklund Olesene0ab2452011-03-02 00:33:03 +0000366 // Keep track of the PHIs that are in use.
367 SmallPtrSet<VNInfo*, 8> UsedPHIs;
368
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000369 // Extend intervals to reach all uses in WorkList.
370 while (!WorkList.empty()) {
371 SlotIndex Idx = WorkList.back().first;
372 VNInfo *VNI = WorkList.back().second;
373 WorkList.pop_back();
Jakob Stoklund Olesen6c9cc212011-11-13 23:53:25 +0000374 const MachineBasicBlock *MBB = getMBBFromIndex(Idx.getPrevSlot());
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000375 SlotIndex BlockStart = getMBBStartIdx(MBB);
Jakob Stoklund Olesene0ab2452011-03-02 00:33:03 +0000376
377 // Extend the live range for VNI to be live at Idx.
Matthias Braun87a86052013-10-10 21:28:47 +0000378 if (VNInfo *ExtVNI = NewLR.extendInBlock(BlockStart, Idx)) {
Nick Lewycky4b11a702011-03-02 01:43:30 +0000379 (void)ExtVNI;
Jakob Stoklund Olesene0ab2452011-03-02 00:33:03 +0000380 assert(ExtVNI == VNI && "Unexpected existing value number");
381 // Is this a PHIDef we haven't seen before?
Jakob Stoklund Olesenc29d9b32011-03-03 00:20:51 +0000382 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI))
Jakob Stoklund Olesene0ab2452011-03-02 00:33:03 +0000383 continue;
384 // The PHI is live, make sure the predecessors are live-out.
385 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
386 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen031432f2011-09-15 15:24:16 +0000387 if (!LiveOut.insert(*PI))
388 continue;
Jakob Stoklund Olesen6c9cc212011-11-13 23:53:25 +0000389 SlotIndex Stop = getMBBEndIdx(*PI);
Jakob Stoklund Olesene0ab2452011-03-02 00:33:03 +0000390 // A predecessor is not required to have a live-out value for a PHI.
Jakob Stoklund Olesen6c9cc212011-11-13 23:53:25 +0000391 if (VNInfo *PVNI = li->getVNInfoBefore(Stop))
Jakob Stoklund Olesene0ab2452011-03-02 00:33:03 +0000392 WorkList.push_back(std::make_pair(Stop, PVNI));
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000393 }
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000394 continue;
395 }
396
397 // VNI is live-in to MBB.
398 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
Matthias Braun87a86052013-10-10 21:28:47 +0000399 NewLR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000400
401 // Make sure VNI is live-out from the predecessors.
402 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
403 PE = MBB->pred_end(); PI != PE; ++PI) {
Jakob Stoklund Olesen031432f2011-09-15 15:24:16 +0000404 if (!LiveOut.insert(*PI))
405 continue;
Jakob Stoklund Olesen6c9cc212011-11-13 23:53:25 +0000406 SlotIndex Stop = getMBBEndIdx(*PI);
407 assert(li->getVNInfoBefore(Stop) == VNI &&
408 "Wrong value out of predecessor");
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000409 WorkList.push_back(std::make_pair(Stop, VNI));
410 }
411 }
412
413 // Handle dead values.
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000414 bool CanSeparate = false;
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000415 for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end();
416 I != E; ++I) {
417 VNInfo *VNI = *I;
418 if (VNI->isUnused())
419 continue;
Matthias Braun87a86052013-10-10 21:28:47 +0000420 LiveRange::iterator LRI = NewLR.FindSegmentContaining(VNI->def);
421 assert(LRI != NewLR.end() && "Missing segment for PHI");
422 if (LRI->end != VNI->def.getDeadSlot())
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000423 continue;
Jakob Stoklund Olesena4d34732011-03-02 00:33:01 +0000424 if (VNI->isPHIDef()) {
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000425 // This is a dead PHI. Remove it.
Jakob Stoklund Olesenb2beac22012-08-03 20:59:32 +0000426 VNI->markUnused();
Matthias Braun87a86052013-10-10 21:28:47 +0000427 NewLR.removeSegment(LRI->start, LRI->end);
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000428 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
429 CanSeparate = true;
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000430 } else {
431 // This is a dead def. Make sure the instruction knows.
432 MachineInstr *MI = getInstructionFromIndex(VNI->def);
433 assert(MI && "No instruction defining live value");
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000434 MI->addRegisterDead(li->reg, TRI);
Jakob Stoklund Olesen0d8ccaa2011-03-07 23:29:10 +0000435 if (dead && MI->allDefsAreDead()) {
Jakob Stoklund Olesenc46570d2011-03-16 22:56:08 +0000436 DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI);
Jakob Stoklund Olesen0d8ccaa2011-03-07 23:29:10 +0000437 dead->push_back(MI);
438 }
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000439 }
440 }
441
Matthias Braun331de112013-10-10 21:28:43 +0000442 // Move the trimmed segments back.
Matthias Braun87a86052013-10-10 21:28:47 +0000443 li->segments.swap(NewLR.segments);
Jakob Stoklund Olesenc46570d2011-03-16 22:56:08 +0000444 DEBUG(dbgs() << "Shrunk: " << *li << '\n');
Jakob Stoklund Olesen6a3dbd32011-03-17 20:37:07 +0000445 return CanSeparate;
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000446}
447
Matthias Braune25dde52013-10-10 21:28:57 +0000448void LiveIntervals::extendToIndices(LiveRange &LR,
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000449 ArrayRef<SlotIndex> Indices) {
450 assert(LRCalc && "LRCalc not initialized.");
451 LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator());
452 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
Matthias Braune25dde52013-10-10 21:28:57 +0000453 LRCalc->extend(LR, Indices[i]);
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000454}
455
456void LiveIntervals::pruneValue(LiveInterval *LI, SlotIndex Kill,
457 SmallVectorImpl<SlotIndex> *EndPoints) {
Matthias Braun5649e252013-10-10 21:28:52 +0000458 LiveQueryResult LRQ = LI->Query(Kill);
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000459 VNInfo *VNI = LRQ.valueOut();
460 if (!VNI)
461 return;
462
463 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
464 SlotIndex MBBStart, MBBEnd;
Stephen Hines36b56882014-04-23 16:57:46 -0700465 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB);
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000466
467 // If VNI isn't live out from KillMBB, the value is trivially pruned.
468 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun331de112013-10-10 21:28:43 +0000469 LI->removeSegment(Kill, LRQ.endPoint());
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000470 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
471 return;
472 }
473
474 // VNI is live out of KillMBB.
Matthias Braun331de112013-10-10 21:28:43 +0000475 LI->removeSegment(Kill, MBBEnd);
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000476 if (EndPoints) EndPoints->push_back(MBBEnd);
477
Jakob Stoklund Olesenaf896902012-10-13 16:15:31 +0000478 // Find all blocks that are reachable from KillMBB without leaving VNI's live
479 // range. It is possible that KillMBB itself is reachable, so start a DFS
480 // from each successor.
481 typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy;
482 VisitedTy Visited;
483 for (MachineBasicBlock::succ_iterator
484 SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end();
485 SuccI != SuccE; ++SuccI) {
486 for (df_ext_iterator<MachineBasicBlock*, VisitedTy>
487 I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited);
488 I != E;) {
489 MachineBasicBlock *MBB = *I;
490
491 // Check if VNI is live in to MBB.
Stephen Hines36b56882014-04-23 16:57:46 -0700492 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
Matthias Braun5649e252013-10-10 21:28:52 +0000493 LiveQueryResult LRQ = LI->Query(MBBStart);
Jakob Stoklund Olesenaf896902012-10-13 16:15:31 +0000494 if (LRQ.valueIn() != VNI) {
Matthias Braun331de112013-10-10 21:28:43 +0000495 // This block isn't part of the VNI segment. Prune the search.
Jakob Stoklund Olesenaf896902012-10-13 16:15:31 +0000496 I.skipChildren();
497 continue;
498 }
499
500 // Prune the search if VNI is killed in MBB.
501 if (LRQ.endPoint() < MBBEnd) {
Matthias Braun331de112013-10-10 21:28:43 +0000502 LI->removeSegment(MBBStart, LRQ.endPoint());
Jakob Stoklund Olesenaf896902012-10-13 16:15:31 +0000503 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
504 I.skipChildren();
505 continue;
506 }
507
508 // VNI is live through MBB.
Matthias Braun331de112013-10-10 21:28:43 +0000509 LI->removeSegment(MBBStart, MBBEnd);
Jakob Stoklund Olesenaf896902012-10-13 16:15:31 +0000510 if (EndPoints) EndPoints->push_back(MBBEnd);
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000511 ++I;
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000512 }
Jakob Stoklund Olesen87f78642012-09-17 23:03:25 +0000513 }
514}
Jakob Stoklund Olesen11513e52011-02-08 00:03:05 +0000515
Evan Chengf2fbca62007-11-12 06:35:08 +0000516//===----------------------------------------------------------------------===//
517// Register allocator hooks.
518//
519
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000520void LiveIntervals::addKillFlags(const VirtRegMap *VRM) {
521 // Keep track of regunit ranges.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000522 SmallVector<std::pair<LiveRange*, LiveRange::iterator>, 8> RU;
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000523
Jakob Stoklund Olesen12a7be92012-06-20 23:23:59 +0000524 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
525 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000526 if (MRI->reg_nodbg_empty(Reg))
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +0000527 continue;
Jakob Stoklund Olesen12a7be92012-06-20 23:23:59 +0000528 LiveInterval *LI = &getInterval(Reg);
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000529 if (LI->empty())
530 continue;
531
532 // Find the regunit intervals for the assigned register. They may overlap
533 // the virtual register live range, cancelling any kills.
534 RU.clear();
535 for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid();
536 ++Units) {
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000537 LiveRange &RURanges = getRegUnit(*Units);
538 if (RURanges.empty())
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000539 continue;
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000540 RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end)));
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000541 }
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +0000542
Matthias Braun331de112013-10-10 21:28:43 +0000543 // Every instruction that kills Reg corresponds to a segment range end
544 // point.
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +0000545 for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE;
546 ++RI) {
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000547 // A block index indicates an MBB edge.
548 if (RI->end.isBlock())
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +0000549 continue;
550 MachineInstr *MI = getInstructionFromIndex(RI->end);
551 if (!MI)
552 continue;
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000553
Matthias Braunb1aa5e42013-10-04 16:52:58 +0000554 // Check if any of the regunits are live beyond the end of RI. That could
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000555 // happen when a physreg is defined as a copy of a virtreg:
556 //
557 // %EAX = COPY %vreg5
558 // FOO %vreg5 <--- MI, cancel kill because %EAX is live.
559 // BAR %EAX<kill>
560 //
561 // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX.
562 bool CancelKill = false;
563 for (unsigned u = 0, e = RU.size(); u != e; ++u) {
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000564 LiveRange &RRanges = *RU[u].first;
565 LiveRange::iterator &I = RU[u].second;
566 if (I == RRanges.end())
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000567 continue;
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000568 I = RRanges.advanceTo(I, RI->end);
569 if (I == RRanges.end() || I->start >= RI->end)
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000570 continue;
571 // I is overlapping RI.
572 CancelKill = true;
573 break;
574 }
575 if (CancelKill)
Stephen Hinesdce4a402014-05-29 02:49:00 -0700576 MI->clearRegisterKills(Reg, nullptr);
Jakob Stoklund Olesene617ccb2012-09-06 18:15:18 +0000577 else
Stephen Hinesdce4a402014-05-29 02:49:00 -0700578 MI->addRegisterKilled(Reg, nullptr);
Jakob Stoklund Olesen8a61da82011-02-08 21:13:03 +0000579 }
580 }
581}
582
Jakob Stoklund Olesenebf27502012-02-10 01:23:55 +0000583MachineBasicBlock*
584LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const {
585 // A local live range must be fully contained inside the block, meaning it is
586 // defined and killed at instructions, not at block boundaries. It is not
587 // live in or or out of any block.
588 //
589 // It is technically possible to have a PHI-defined live range identical to a
590 // single block, but we are going to return false in that case.
Lang Hames233a60e2009-11-03 23:52:08 +0000591
Jakob Stoklund Olesenebf27502012-02-10 01:23:55 +0000592 SlotIndex Start = LI.beginIndex();
593 if (Start.isBlock())
Stephen Hinesdce4a402014-05-29 02:49:00 -0700594 return nullptr;
Lang Hames233a60e2009-11-03 23:52:08 +0000595
Jakob Stoklund Olesenebf27502012-02-10 01:23:55 +0000596 SlotIndex Stop = LI.endIndex();
597 if (Stop.isBlock())
Stephen Hinesdce4a402014-05-29 02:49:00 -0700598 return nullptr;
Lang Hames233a60e2009-11-03 23:52:08 +0000599
Jakob Stoklund Olesenebf27502012-02-10 01:23:55 +0000600 // getMBBFromIndex doesn't need to search the MBB table when both indexes
601 // belong to proper instructions.
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000602 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
603 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
Stephen Hinesdce4a402014-05-29 02:49:00 -0700604 return MBB1 == MBB2 ? MBB1 : nullptr;
Evan Cheng81a03822007-11-17 00:40:40 +0000605}
606
Jakob Stoklund Olesen0ab71032012-08-03 20:10:24 +0000607bool
608LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const {
609 for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end();
610 I != E; ++I) {
611 const VNInfo *PHI = *I;
612 if (PHI->isUnused() || !PHI->isPHIDef())
613 continue;
614 const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def);
615 // Conservatively return true instead of scanning huge predecessor lists.
616 if (PHIMBB->pred_size() > 100)
617 return true;
618 for (MachineBasicBlock::const_pred_iterator
619 PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI)
620 if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI)))
621 return true;
622 }
623 return false;
624}
625
Jakob Stoklund Olesene5d90412010-03-01 20:59:38 +0000626float
Stephen Hines36b56882014-04-23 16:57:46 -0700627LiveIntervals::getSpillWeight(bool isDef, bool isUse,
628 const MachineBlockFrequencyInfo *MBFI,
629 const MachineInstr *MI) {
630 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
631 const float Scale = 1.0f / MBFI->getEntryFreq();
632 return (isDef + isUse) * (Freq.getFrequency() * Scale);
Jakob Stoklund Olesene5d90412010-03-01 20:59:38 +0000633}
634
Matthias Braun87a86052013-10-10 21:28:47 +0000635LiveRange::Segment
Matthias Braun331de112013-10-10 21:28:43 +0000636LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) {
Mark Laceye742d682013-08-14 23:50:16 +0000637 LiveInterval& Interval = createEmptyInterval(reg);
Owen Andersonc4dc1322008-06-05 17:15:43 +0000638 VNInfo* VN = Interval.getNextValue(
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000639 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Jakob Stoklund Olesen3b1088a2012-02-04 05:20:49 +0000640 getVNInfoAllocator());
Matthias Braun87a86052013-10-10 21:28:47 +0000641 LiveRange::Segment S(
Jakob Stoklund Olesen2debd482011-11-13 20:45:27 +0000642 SlotIndex(getInstructionIndex(startInst).getRegSlot()),
Lang Hames74ab5ee2009-12-22 00:11:50 +0000643 getMBBEndIdx(startInst->getParent()), VN);
Matthias Braun331de112013-10-10 21:28:43 +0000644 Interval.addSegment(S);
Jakob Stoklund Olesen1b293202010-08-12 20:01:23 +0000645
Matthias Braun331de112013-10-10 21:28:43 +0000646 return S;
Owen Andersonc4dc1322008-06-05 17:15:43 +0000647}
Jakob Stoklund Olesen3fd3a842012-02-08 17:33:45 +0000648
649
650//===----------------------------------------------------------------------===//
651// Register mask functions
652//===----------------------------------------------------------------------===//
653
654bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI,
655 BitVector &UsableRegs) {
656 if (LI.empty())
657 return false;
Jakob Stoklund Olesen9f10ac62012-02-10 01:31:31 +0000658 LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end();
659
660 // Use a smaller arrays for local live ranges.
661 ArrayRef<SlotIndex> Slots;
662 ArrayRef<const uint32_t*> Bits;
663 if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) {
664 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
665 Bits = getRegMaskBitsInBlock(MBB->getNumber());
666 } else {
667 Slots = getRegMaskSlots();
668 Bits = getRegMaskBits();
669 }
Jakob Stoklund Olesen3fd3a842012-02-08 17:33:45 +0000670
671 // We are going to enumerate all the register mask slots contained in LI.
672 // Start with a binary search of RegMaskSlots to find a starting point.
Jakob Stoklund Olesen3fd3a842012-02-08 17:33:45 +0000673 ArrayRef<SlotIndex>::iterator SlotI =
674 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
675 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
676
677 // No slots in range, LI begins after the last call.
678 if (SlotI == SlotE)
679 return false;
680
681 bool Found = false;
682 for (;;) {
683 assert(*SlotI >= LiveI->start);
684 // Loop over all slots overlapping this segment.
685 while (*SlotI < LiveI->end) {
686 // *SlotI overlaps LI. Collect mask bits.
687 if (!Found) {
688 // This is the first overlap. Initialize UsableRegs to all ones.
689 UsableRegs.clear();
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +0000690 UsableRegs.resize(TRI->getNumRegs(), true);
Jakob Stoklund Olesen3fd3a842012-02-08 17:33:45 +0000691 Found = true;
692 }
693 // Remove usable registers clobbered by this mask.
Jakob Stoklund Olesen9f10ac62012-02-10 01:31:31 +0000694 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]);
Jakob Stoklund Olesen3fd3a842012-02-08 17:33:45 +0000695 if (++SlotI == SlotE)
696 return Found;
697 }
698 // *SlotI is beyond the current LI segment.
699 LiveI = LI.advanceTo(LiveI, *SlotI);
700 if (LiveI == LiveE)
701 return Found;
702 // Advance SlotI until it overlaps.
703 while (*SlotI < LiveI->start)
704 if (++SlotI == SlotE)
705 return Found;
706 }
707}
Lang Hames3dc7c512012-02-17 18:44:18 +0000708
709//===----------------------------------------------------------------------===//
710// IntervalUpdate class.
711//===----------------------------------------------------------------------===//
712
Lang Hamesfd6d3212012-02-21 00:00:36 +0000713// HMEditor is a toolkit used by handleMove to trim or extend live intervals.
Lang Hames3dc7c512012-02-17 18:44:18 +0000714class LiveIntervals::HMEditor {
715private:
Lang Hamesecb50622012-02-17 23:43:40 +0000716 LiveIntervals& LIS;
717 const MachineRegisterInfo& MRI;
718 const TargetRegisterInfo& TRI;
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000719 SlotIndex OldIdx;
Lang Hamesecb50622012-02-17 23:43:40 +0000720 SlotIndex NewIdx;
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000721 SmallPtrSet<LiveRange*, 8> Updated;
Andrew Trick27c28ce2012-10-16 00:22:51 +0000722 bool UpdateFlags;
Lang Hames6aceab12012-02-19 07:13:05 +0000723
Lang Hames3dc7c512012-02-17 18:44:18 +0000724public:
Lang Hamesecb50622012-02-17 23:43:40 +0000725 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI,
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000726 const TargetRegisterInfo& TRI,
Andrew Trick27c28ce2012-10-16 00:22:51 +0000727 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
728 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
729 UpdateFlags(UpdateFlags) {}
730
731 // FIXME: UpdateFlags is a workaround that creates live intervals for all
732 // physregs, even those that aren't needed for regalloc, in order to update
733 // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill
734 // flags, and postRA passes will use a live register utility instead.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000735 LiveRange *getRegUnitLI(unsigned Unit) {
Andrew Trick27c28ce2012-10-16 00:22:51 +0000736 if (UpdateFlags)
737 return &LIS.getRegUnit(Unit);
738 return LIS.getCachedRegUnit(Unit);
739 }
Lang Hames3dc7c512012-02-17 18:44:18 +0000740
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000741 /// Update all live ranges touched by MI, assuming a move from OldIdx to
742 /// NewIdx.
743 void updateAllRanges(MachineInstr *MI) {
744 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI);
745 bool hasRegMask = false;
746 for (MIOperands MO(MI); MO.isValid(); ++MO) {
747 if (MO->isRegMask())
748 hasRegMask = true;
749 if (!MO->isReg())
Lang Hames4586d252012-02-21 22:29:38 +0000750 continue;
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000751 // Aggressively clear all kill flags.
752 // They are reinserted by VirtRegRewriter.
753 if (MO->isUse())
754 MO->setIsKill(false);
755
756 unsigned Reg = MO->getReg();
757 if (!Reg)
758 continue;
759 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000760 LiveInterval &LI = LIS.getInterval(Reg);
761 updateRange(LI, Reg);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000762 continue;
763 }
764
765 // For physregs, only update the regunits that actually have a
766 // precomputed live range.
767 for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units)
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000768 if (LiveRange *LR = getRegUnitLI(*Units))
769 updateRange(*LR, *Units);
Lang Hames4586d252012-02-21 22:29:38 +0000770 }
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000771 if (hasRegMask)
772 updateRegMaskSlots();
Lang Hames6aceab12012-02-19 07:13:05 +0000773 }
774
Lang Hames55fed622012-02-19 03:00:30 +0000775private:
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000776 /// Update a single live range, assuming an instruction has been moved from
777 /// OldIdx to NewIdx.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000778 void updateRange(LiveRange &LR, unsigned Reg) {
779 if (!Updated.insert(&LR))
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000780 return;
781 DEBUG({
782 dbgs() << " ";
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000783 if (TargetRegisterInfo::isVirtualRegister(Reg))
784 dbgs() << PrintReg(Reg);
Jakob Stoklund Olesenbf833f02012-06-19 23:50:18 +0000785 else
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000786 dbgs() << PrintRegUnit(Reg, &TRI);
787 dbgs() << ":\t" << LR << '\n';
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000788 });
789 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx))
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000790 handleMoveDown(LR);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000791 else
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000792 handleMoveUp(LR, Reg);
793 DEBUG(dbgs() << " -->\t" << LR << '\n');
794 LR.verify();
Lang Hames3dc7c512012-02-17 18:44:18 +0000795 }
796
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000797 /// Update LR to reflect an instruction has been moved downwards from OldIdx
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000798 /// to NewIdx.
799 ///
800 /// 1. Live def at OldIdx:
801 /// Move def to NewIdx, assert endpoint after NewIdx.
802 ///
803 /// 2. Live def at OldIdx, killed at NewIdx:
804 /// Change to dead def at NewIdx.
805 /// (Happens when bundling def+kill together).
806 ///
807 /// 3. Dead def at OldIdx:
808 /// Move def to NewIdx, possibly across another live value.
809 ///
810 /// 4. Def at OldIdx AND at NewIdx:
Matthias Braun331de112013-10-10 21:28:43 +0000811 /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx.
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000812 /// (Happens when bundling multiple defs together).
813 ///
814 /// 5. Value read at OldIdx, killed before NewIdx:
815 /// Extend kill to NewIdx.
816 ///
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000817 void handleMoveDown(LiveRange &LR) {
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000818 // First look for a kill at OldIdx.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000819 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
820 LiveRange::iterator E = LR.end();
821 // Is LR even live at OldIdx?
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000822 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
823 return;
Lang Hames6aceab12012-02-19 07:13:05 +0000824
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000825 // Handle a live-in value.
826 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
827 bool isKill = SlotIndex::isSameInstr(OldIdx, I->end);
828 // If the live-in value already extends to NewIdx, there is nothing to do.
829 if (!SlotIndex::isEarlierInstr(I->end, NewIdx))
830 return;
831 // Aggressively remove all kill flags from the old kill point.
832 // Kill flags shouldn't be used while live intervals exist, they will be
833 // reinserted by VirtRegRewriter.
834 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end))
835 for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO)
836 if (MO->isReg() && MO->isUse())
837 MO->setIsKill(false);
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000838 // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000839 // overlapping ranges. Case 5 above.
840 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
841 // If this was a kill, there may also be a def. Otherwise we're done.
842 if (!isKill)
843 return;
844 ++I;
Lang Hames6aceab12012-02-19 07:13:05 +0000845 }
846
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000847 // Check for a def at OldIdx.
848 if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start))
849 return;
850 // We have a def at OldIdx.
851 VNInfo *DefVNI = I->valno;
852 assert(DefVNI->def == I->start && "Inconsistent def");
853 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
854 // If the defined value extends beyond NewIdx, just move the def down.
855 // This is case 1 above.
856 if (SlotIndex::isEarlierInstr(NewIdx, I->end)) {
857 I->start = DefVNI->def;
858 return;
859 }
860 // The remaining possibilities are now:
861 // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx).
862 // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot().
863 // In either case, it is possible that there is an existing def at NewIdx.
864 assert((I->end == OldIdx.getDeadSlot() ||
865 SlotIndex::isSameInstr(I->end, NewIdx)) &&
866 "Cannot move def below kill");
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000867 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000868 if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) {
869 // There is an existing def at NewIdx, case 4 above. The def at OldIdx is
870 // coalesced into that value.
871 assert(NewI->valno != DefVNI && "Multiple defs of value?");
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000872 LR.removeValNo(DefVNI);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000873 return;
874 }
875 // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000876 // If the def at OldIdx was dead, we allow it to be moved across other LR
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000877 // values. The new range should be placed immediately before NewI, move any
878 // intermediate ranges up.
879 assert(NewI != I && "Inconsistent iterators");
Stephen Hines36b56882014-04-23 16:57:46 -0700880 std::copy(std::next(I), NewI, I);
881 *std::prev(NewI)
Matthias Braun87a86052013-10-10 21:28:47 +0000882 = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000883 }
884
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000885 /// Update LR to reflect an instruction has been moved upwards from OldIdx
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000886 /// to NewIdx.
887 ///
888 /// 1. Live def at OldIdx:
889 /// Hoist def to NewIdx.
890 ///
891 /// 2. Dead def at OldIdx:
892 /// Hoist def+end to NewIdx, possibly move across other values.
893 ///
894 /// 3. Dead def at OldIdx AND existing def at NewIdx:
895 /// Remove value defined at OldIdx, coalescing it with existing value.
896 ///
897 /// 4. Live def at OldIdx AND existing def at NewIdx:
898 /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx.
899 /// (Happens when bundling multiple defs together).
900 ///
901 /// 5. Value killed at OldIdx:
902 /// Hoist kill to NewIdx, then scan for last kill between NewIdx and
903 /// OldIdx.
904 ///
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000905 void handleMoveUp(LiveRange &LR, unsigned Reg) {
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000906 // First look for a kill at OldIdx.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000907 LiveRange::iterator I = LR.find(OldIdx.getBaseIndex());
908 LiveRange::iterator E = LR.end();
909 // Is LR even live at OldIdx?
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000910 if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start))
911 return;
912
913 // Handle a live-in value.
914 if (!SlotIndex::isSameInstr(I->start, OldIdx)) {
915 // If the live-in value isn't killed here, there is nothing to do.
916 if (!SlotIndex::isSameInstr(OldIdx, I->end))
917 return;
918 // Adjust I->end to end at NewIdx. If we are hoisting a kill above
919 // another use, we need to search for that use. Case 5 above.
920 I->end = NewIdx.getRegSlot(I->end.isEarlyClobber());
921 ++I;
922 // If OldIdx also defines a value, there couldn't have been another use.
923 if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) {
924 // No def, search for the new kill.
925 // This can never be an early clobber kill since there is no def.
Stephen Hines36b56882014-04-23 16:57:46 -0700926 std::prev(I)->end = findLastUseBefore(Reg).getRegSlot();
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000927 return;
Lang Hames6aceab12012-02-19 07:13:05 +0000928 }
929 }
930
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000931 // Now deal with the def at OldIdx.
932 assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?");
933 VNInfo *DefVNI = I->valno;
934 assert(DefVNI->def == I->start && "Inconsistent def");
935 DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber());
936
937 // Check for an existing def at NewIdx.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000938 LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot());
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000939 if (SlotIndex::isSameInstr(NewI->start, NewIdx)) {
940 assert(NewI->valno != DefVNI && "Same value defined more than once?");
941 // There is an existing def at NewIdx.
942 if (I->end.isDead()) {
943 // Case 3: Remove the dead def at OldIdx.
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000944 LR.removeValNo(DefVNI);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000945 return;
946 }
947 // Case 4: Replace def at NewIdx with live def at OldIdx.
948 I->start = DefVNI->def;
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000949 LR.removeValNo(NewI->valno);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000950 return;
Lang Hames6aceab12012-02-19 07:13:05 +0000951 }
952
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000953 // There is no existing def at NewIdx. Hoist DefVNI.
954 if (!I->end.isDead()) {
955 // Leave the end point of a live def.
956 I->start = DefVNI->def;
957 return;
958 }
959
Matthias Braun4f3b5e82013-10-10 21:29:02 +0000960 // DefVNI is a dead def. It may have been moved across other values in LR,
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000961 // so move I up to NewI. Slide [NewI;I) down one position.
Stephen Hines36b56882014-04-23 16:57:46 -0700962 std::copy_backward(NewI, I, std::next(I));
Matthias Braun87a86052013-10-10 21:28:47 +0000963 *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI);
Lang Hames6aceab12012-02-19 07:13:05 +0000964 }
965
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000966 void updateRegMaskSlots() {
Lang Hamesecb50622012-02-17 23:43:40 +0000967 SmallVectorImpl<SlotIndex>::iterator RI =
968 std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(),
969 OldIdx);
Jakob Stoklund Olesen722c9a72012-11-09 19:18:49 +0000970 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
971 "No RegMask at OldIdx.");
972 *RI = NewIdx.getRegSlot();
973 assert((RI == LIS.RegMaskSlots.begin() ||
Stephen Hines36b56882014-04-23 16:57:46 -0700974 SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) &&
975 "Cannot move regmask instruction above another call");
976 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
977 SlotIndex::isEarlierInstr(*RI, *std::next(RI))) &&
978 "Cannot move regmask instruction below another call");
Lang Hamesfbc8dd32012-02-17 21:29:41 +0000979 }
Lang Hames55fed622012-02-19 03:00:30 +0000980
981 // Return the last use of reg between NewIdx and OldIdx.
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +0000982 SlotIndex findLastUseBefore(unsigned Reg) {
Lang Hames6d742cc2012-09-12 06:56:16 +0000983
984 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Jakob Stoklund Olesen778ef972013-03-08 18:08:57 +0000985 SlotIndex LastUse = NewIdx;
Stephen Hines36b56882014-04-23 16:57:46 -0700986 for (MachineRegisterInfo::use_instr_nodbg_iterator
987 UI = MRI.use_instr_nodbg_begin(Reg),
988 UE = MRI.use_instr_nodbg_end();
989 UI != UE; ++UI) {
Lang Hames6d742cc2012-09-12 06:56:16 +0000990 const MachineInstr* MI = &*UI;
991 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI);
992 if (InstSlot > LastUse && InstSlot < OldIdx)
993 LastUse = InstSlot;
994 }
Jakob Stoklund Olesen778ef972013-03-08 18:08:57 +0000995 return LastUse;
Lang Hames55fed622012-02-19 03:00:30 +0000996 }
Jakob Stoklund Olesen778ef972013-03-08 18:08:57 +0000997
998 // This is a regunit interval, so scanning the use list could be very
999 // expensive. Scan upwards from OldIdx instead.
1000 assert(NewIdx < OldIdx && "Expected upwards move");
1001 SlotIndexes *Indexes = LIS.getSlotIndexes();
1002 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx);
1003
1004 // OldIdx may not correspond to an instruction any longer, so set MII to
1005 // point to the next instruction after OldIdx, or MBB->end().
1006 MachineBasicBlock::iterator MII = MBB->end();
1007 if (MachineInstr *MI = Indexes->getInstructionFromIndex(
1008 Indexes->getNextNonNullIndex(OldIdx)))
1009 if (MI->getParent() == MBB)
1010 MII = MI;
1011
1012 MachineBasicBlock::iterator Begin = MBB->begin();
1013 while (MII != Begin) {
1014 if ((--MII)->isDebugValue())
1015 continue;
1016 SlotIndex Idx = Indexes->getInstructionIndex(MII);
1017
1018 // Stop searching when NewIdx is reached.
1019 if (!SlotIndex::isEarlierInstr(NewIdx, Idx))
1020 return NewIdx;
1021
1022 // Check if MII uses Reg.
1023 for (MIBundleOperands MO(MII); MO.isValid(); ++MO)
1024 if (MO->isReg() &&
1025 TargetRegisterInfo::isPhysicalRegister(MO->getReg()) &&
1026 TRI.hasRegUnit(MO->getReg(), Reg))
1027 return Idx;
1028 }
1029 // Didn't reach NewIdx. It must be the first instruction in the block.
1030 return NewIdx;
Lang Hames55fed622012-02-19 03:00:30 +00001031 }
Lang Hames3dc7c512012-02-17 18:44:18 +00001032};
1033
Andrew Trick27c28ce2012-10-16 00:22:51 +00001034void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) {
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +00001035 assert(!MI->isBundled() && "Can't handle bundled instructions yet.");
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +00001036 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
1037 Indexes->removeMachineInstrFromMaps(MI);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +00001038 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI);
Lang Hamesecb50622012-02-17 23:43:40 +00001039 assert(getMBBStartIdx(MI->getParent()) <= OldIndex &&
1040 OldIndex < getMBBEndIdx(MI->getParent()) &&
Lang Hames3dc7c512012-02-17 18:44:18 +00001041 "Cannot handle moves across basic block boundaries.");
Lang Hames3dc7c512012-02-17 18:44:18 +00001042
Andrew Trick27c28ce2012-10-16 00:22:51 +00001043 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +00001044 HME.updateAllRanges(MI);
Lang Hames4586d252012-02-21 22:29:38 +00001045}
1046
Jakob Stoklund Olesenfa8becb2012-06-19 22:50:53 +00001047void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI,
Andrew Trick27c28ce2012-10-16 00:22:51 +00001048 MachineInstr* BundleStart,
1049 bool UpdateFlags) {
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +00001050 SlotIndex OldIndex = Indexes->getInstructionIndex(MI);
Jakob Stoklund Olesen15f1d8c2012-06-04 22:39:14 +00001051 SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart);
Andrew Trick27c28ce2012-10-16 00:22:51 +00001052 HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
Jakob Stoklund Olesenad5e9692012-10-12 21:31:57 +00001053 HME.updateAllRanges(MI);
Lang Hames3dc7c512012-02-17 18:44:18 +00001054}
Cameron Zwarichf0b25352013-02-17 00:10:44 +00001055
1056void
1057LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB,
Cameron Zwarich680c98f2013-02-17 11:09:00 +00001058 MachineBasicBlock::iterator Begin,
1059 MachineBasicBlock::iterator End,
Cameron Zwarich7324d4e2013-02-17 03:48:23 +00001060 ArrayRef<unsigned> OrigRegs) {
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001061 // Find anchor points, which are at the beginning/end of blocks or at
1062 // instructions that already have indexes.
1063 while (Begin != MBB->begin() && !Indexes->hasIndex(Begin))
1064 --Begin;
1065 while (End != MBB->end() && !Indexes->hasIndex(End))
1066 ++End;
1067
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001068 SlotIndex endIdx;
1069 if (End == MBB->end())
1070 endIdx = getMBBEndIdx(MBB).getPrevSlot();
Cameron Zwarich680c98f2013-02-17 11:09:00 +00001071 else
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001072 endIdx = getInstructionIndex(End);
Cameron Zwarich680c98f2013-02-17 11:09:00 +00001073
Cameron Zwarich349cf342013-02-20 06:46:41 +00001074 Indexes->repairIndexesInRange(MBB, Begin, End);
1075
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001076 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1077 --I;
1078 MachineInstr *MI = I;
Cameron Zwarich79f5ab12013-02-23 10:25:25 +00001079 if (MI->isDebugValue())
1080 continue;
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001081 for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(),
1082 MOE = MI->operands_end(); MOI != MOE; ++MOI) {
1083 if (MOI->isReg() &&
1084 TargetRegisterInfo::isVirtualRegister(MOI->getReg()) &&
1085 !hasInterval(MOI->getReg())) {
Mark Laceye742d682013-08-14 23:50:16 +00001086 createAndComputeVirtRegInterval(MOI->getReg());
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001087 }
1088 }
1089 }
1090
Cameron Zwarichf0b25352013-02-17 00:10:44 +00001091 for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) {
1092 unsigned Reg = OrigRegs[i];
1093 if (!TargetRegisterInfo::isVirtualRegister(Reg))
1094 continue;
1095
1096 LiveInterval &LI = getInterval(Reg);
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001097 // FIXME: Should we support undefs that gain defs?
1098 if (!LI.hasAtLeastOneValue())
1099 continue;
1100
1101 LiveInterval::iterator LII = LI.find(endIdx);
1102 SlotIndex lastUseIdx;
1103 if (LII != LI.end() && LII->start < endIdx)
1104 lastUseIdx = LII->end;
1105 else
1106 --LII;
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001107
Cameron Zwarich680c98f2013-02-17 11:09:00 +00001108 for (MachineBasicBlock::iterator I = End; I != Begin;) {
1109 --I;
1110 MachineInstr *MI = I;
Cameron Zwarich79f5ab12013-02-23 10:25:25 +00001111 if (MI->isDebugValue())
1112 continue;
Cameron Zwarichf0b25352013-02-17 00:10:44 +00001113
Cameron Zwarich79f5ab12013-02-23 10:25:25 +00001114 SlotIndex instrIdx = getInstructionIndex(MI);
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001115 bool isStartValid = getInstructionFromIndex(LII->start);
1116 bool isEndValid = getInstructionFromIndex(LII->end);
1117
1118 // FIXME: This doesn't currently handle early-clobber or multiple removed
1119 // defs inside of the region to repair.
Cameron Zwarichf0b25352013-02-17 00:10:44 +00001120 for (MachineInstr::mop_iterator OI = MI->operands_begin(),
1121 OE = MI->operands_end(); OI != OE; ++OI) {
1122 const MachineOperand &MO = *OI;
1123 if (!MO.isReg() || MO.getReg() != Reg)
1124 continue;
1125
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001126 if (MO.isDef()) {
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001127 if (!isStartValid) {
1128 if (LII->end.isDead()) {
1129 SlotIndex prevStart;
1130 if (LII != LI.begin())
Stephen Hines36b56882014-04-23 16:57:46 -07001131 prevStart = std::prev(LII)->start;
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001132
Matthias Braun331de112013-10-10 21:28:43 +00001133 // FIXME: This could be more efficient if there was a
1134 // removeSegment method that returned an iterator.
1135 LI.removeSegment(*LII, true);
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001136 if (prevStart.isValid())
1137 LII = LI.find(prevStart);
1138 else
1139 LII = LI.begin();
1140 } else {
1141 LII->start = instrIdx.getRegSlot();
1142 LII->valno->def = instrIdx.getRegSlot();
1143 if (MO.getSubReg() && !MO.isUndef())
1144 lastUseIdx = instrIdx.getRegSlot();
1145 else
1146 lastUseIdx = SlotIndex();
1147 continue;
1148 }
1149 }
1150
1151 if (!lastUseIdx.isValid()) {
1152 VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1153 VNInfoAllocator);
Matthias Braun87a86052013-10-10 21:28:47 +00001154 LiveRange::Segment S(instrIdx.getRegSlot(),
1155 instrIdx.getDeadSlot(), VNI);
Matthias Braun331de112013-10-10 21:28:43 +00001156 LII = LI.addSegment(S);
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001157 } else if (LII->start != instrIdx.getRegSlot()) {
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001158 VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(),
1159 VNInfoAllocator);
Matthias Braun87a86052013-10-10 21:28:47 +00001160 LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI);
Matthias Braun331de112013-10-10 21:28:43 +00001161 LII = LI.addSegment(S);
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001162 }
Cameron Zwarichf0b25352013-02-17 00:10:44 +00001163
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001164 if (MO.getSubReg() && !MO.isUndef())
1165 lastUseIdx = instrIdx.getRegSlot();
1166 else
1167 lastUseIdx = SlotIndex();
1168 } else if (MO.isUse()) {
1169 // FIXME: This should probably be handled outside of this branch,
1170 // either as part of the def case (for defs inside of the region) or
1171 // after the loop over the region.
1172 if (!isEndValid && !LII->end.isBlock())
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001173 LII->end = instrIdx.getRegSlot();
Cameron Zwarich0e827eb2013-02-20 22:09:57 +00001174 if (!lastUseIdx.isValid())
1175 lastUseIdx = instrIdx.getRegSlot();
Cameron Zwarichf0b25352013-02-17 00:10:44 +00001176 }
1177 }
1178 }
1179 }
1180}