Chris Lattner | 8563833 | 2004-07-23 17:56:30 +0000 | [diff] [blame] | 1 | //===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===// |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 7 | // |
| 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 Lattner | b1f8982 | 2005-09-21 04:19:09 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "LiveRangeCalc.h" |
| 20 | #include "llvm/ADT/DenseSet.h" |
| 21 | #include "llvm/ADT/STLExtras.h" |
Dan Gohman | 09b0448 | 2008-07-25 00:02:30 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/AliasAnalysis.h" |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/LiveVariables.h" |
Michael Gottesman | 9f49d74 | 2013-12-14 00:53:32 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineDominators.h" |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/Passes.h" |
Jakob Stoklund Olesen | 26c9d70 | 2012-11-28 19:13:06 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/VirtRegMap.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Value.h" |
Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 31 | #include "llvm/Support/BlockFrequency.h" |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CommandLine.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Debug.h" |
Torok Edwin | ccb29cd | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 34 | #include "llvm/Support/ErrorHandling.h" |
| 35 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 36 | #include "llvm/Target/TargetInstrInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 37 | #include "llvm/Target/TargetRegisterInfo.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 38 | #include "llvm/Target/TargetSubtargetInfo.h" |
Alkis Evlogimenos | a5c04ee | 2004-09-03 18:19:51 +0000 | [diff] [blame] | 39 | #include <algorithm> |
Jeff Cohen | cc08c83 | 2006-12-02 02:22:01 +0000 | [diff] [blame] | 40 | #include <cmath> |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 41 | #include <limits> |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 42 | using namespace llvm; |
| 43 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 44 | #define DEBUG_TYPE "regalloc" |
| 45 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 46 | char LiveIntervals::ID = 0; |
Jakob Stoklund Olesen | 1c46589 | 2012-08-03 22:12:54 +0000 | [diff] [blame] | 47 | char &llvm::LiveIntervalsID = LiveIntervals::ID; |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 48 | INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals", |
| 49 | "Live Interval Analysis", false, false) |
Andrew Trick | d3f8fe8 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 50 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 51 | INITIALIZE_PASS_DEPENDENCY(LiveVariables) |
Andrew Trick | d3f8fe8 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 52 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 53 | INITIALIZE_PASS_DEPENDENCY(SlotIndexes) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 54 | INITIALIZE_PASS_END(LiveIntervals, "liveintervals", |
Owen Anderson | df7a4f2 | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 55 | "Live Interval Analysis", false, false) |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 56 | |
Andrew Trick | 8d02e91 | 2013-06-21 18:33:23 +0000 | [diff] [blame] | 57 | #ifndef NDEBUG |
| 58 | static cl::opt<bool> EnablePrecomputePhysRegs( |
| 59 | "precompute-phys-liveness", cl::Hidden, |
| 60 | cl::desc("Eagerly compute live intervals for all physreg units.")); |
| 61 | #else |
| 62 | static bool EnablePrecomputePhysRegs = false; |
| 63 | #endif // NDEBUG |
| 64 | |
Chris Lattner | bdf1210 | 2006-08-24 22:43:55 +0000 | [diff] [blame] | 65 | void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const { |
Dan Gohman | 0402315 | 2009-07-31 23:37:33 +0000 | [diff] [blame] | 66 | AU.setPreservesCFG(); |
Dan Gohman | 09b0448 | 2008-07-25 00:02:30 +0000 | [diff] [blame] | 67 | AU.addRequired<AliasAnalysis>(); |
| 68 | AU.addPreserved<AliasAnalysis>(); |
Jakob Stoklund Olesen | fac770b | 2013-02-09 00:04:07 +0000 | [diff] [blame] | 69 | // 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 Evlogimenos | a698308 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 72 | AU.addRequired<LiveVariables>(); |
Evan Cheng | 16bfe5b | 2010-08-17 21:00:37 +0000 | [diff] [blame] | 73 | AU.addPreserved<LiveVariables>(); |
Andrew Trick | 5188c00 | 2012-02-13 20:44:42 +0000 | [diff] [blame] | 74 | AU.addPreservedID(MachineLoopInfoID); |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 75 | AU.addRequiredTransitiveID(MachineDominatorsID); |
Bill Wendling | 0c20943 | 2008-01-04 20:54:55 +0000 | [diff] [blame] | 76 | AU.addPreservedID(MachineDominatorsID); |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 77 | AU.addPreserved<SlotIndexes>(); |
| 78 | AU.addRequiredTransitive<SlotIndexes>(); |
Alkis Evlogimenos | a698308 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 79 | MachineFunctionPass::getAnalysisUsage(AU); |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 82 | LiveIntervals::LiveIntervals() : MachineFunctionPass(ID), |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 83 | DomTree(nullptr), LRCalc(nullptr) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 84 | initializeLiveIntervalsPass(*PassRegistry::getPassRegistry()); |
| 85 | } |
| 86 | |
| 87 | LiveIntervals::~LiveIntervals() { |
| 88 | delete LRCalc; |
| 89 | } |
| 90 | |
Chris Lattner | bdf1210 | 2006-08-24 22:43:55 +0000 | [diff] [blame] | 91 | void LiveIntervals::releaseMemory() { |
Owen Anderson | 51f689a | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 92 | // Free the live intervals themselves. |
Jakob Stoklund Olesen | c61edda | 2012-06-22 20:37:52 +0000 | [diff] [blame] | 93 | for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i) |
| 94 | delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)]; |
| 95 | VirtRegIntervals.clear(); |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 96 | RegMaskSlots.clear(); |
| 97 | RegMaskBits.clear(); |
Jakob Stoklund Olesen | 25c4195 | 2012-02-10 01:26:29 +0000 | [diff] [blame] | 98 | RegMaskBlocks.clear(); |
Lang Hames | dab7b06 | 2009-07-09 03:57:02 +0000 | [diff] [blame] | 99 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 100 | for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i) |
| 101 | delete RegUnitRanges[i]; |
| 102 | RegUnitRanges.clear(); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 103 | |
Benjamin Kramer | a000002 | 2010-06-26 11:30:59 +0000 | [diff] [blame] | 104 | // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd. |
| 105 | VNInfoAllocator.Reset(); |
Alkis Evlogimenos | 50d97e3 | 2004-01-31 19:59:32 +0000 | [diff] [blame] | 106 | } |
| 107 | |
Jakob Stoklund Olesen | 6d13b8f | 2013-08-14 17:28:46 +0000 | [diff] [blame] | 108 | /// runOnMachineFunction - calculates LiveIntervals |
Owen Anderson | 4f8e1ad | 2008-05-28 20:54:50 +0000 | [diff] [blame] | 109 | /// |
| 110 | bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 111 | MF = &fn; |
| 112 | MRI = &MF->getRegInfo(); |
Eric Christopher | d3fa440 | 2014-10-14 06:26:53 +0000 | [diff] [blame] | 113 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 114 | TII = MF->getSubtarget().getInstrInfo(); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 115 | AA = &getAnalysis<AliasAnalysis>(); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 116 | Indexes = &getAnalysis<SlotIndexes>(); |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 117 | DomTree = &getAnalysis<MachineDominatorTree>(); |
| 118 | if (!LRCalc) |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 119 | LRCalc = new LiveRangeCalc(); |
Owen Anderson | 4f8e1ad | 2008-05-28 20:54:50 +0000 | [diff] [blame] | 120 | |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 121 | // Allocate space for all virtual registers. |
| 122 | VirtRegIntervals.resize(MRI->getNumVirtRegs()); |
| 123 | |
Jakob Stoklund Olesen | fac770b | 2013-02-09 00:04:07 +0000 | [diff] [blame] | 124 | computeVirtRegs(); |
| 125 | computeRegMasks(); |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 126 | computeLiveInRegUnits(); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 127 | |
Andrew Trick | 8d02e91 | 2013-06-21 18:33:23 +0000 | [diff] [blame] | 128 | if (EnablePrecomputePhysRegs) { |
| 129 | // For stress testing, precompute live ranges of all physical register |
| 130 | // units, including reserved registers. |
| 131 | for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i) |
| 132 | getRegUnit(i); |
| 133 | } |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 134 | DEBUG(dump()); |
Alkis Evlogimenos | a698308 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 135 | return true; |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 138 | /// print - Implement the dump method. |
Chris Lattner | 1362602 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 139 | void LiveIntervals::print(raw_ostream &OS, const Module* ) const { |
Chris Lattner | a6f074f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 140 | OS << "********** INTERVALS **********\n"; |
Jakob Stoklund Olesen | 20d25a7 | 2012-02-14 23:46:21 +0000 | [diff] [blame] | 141 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 142 | // Dump the regunits. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 143 | for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i) |
| 144 | if (LiveRange *LR = RegUnitRanges[i]) |
Matthias Braun | f6fe6bf | 2013-10-10 21:29:05 +0000 | [diff] [blame] | 145 | OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n'; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 146 | |
Jakob Stoklund Olesen | 20d25a7 | 2012-02-14 23:46:21 +0000 | [diff] [blame] | 147 | // Dump the virtregs. |
Jakob Stoklund Olesen | c61edda | 2012-06-22 20:37:52 +0000 | [diff] [blame] | 148 | for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { |
| 149 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
| 150 | if (hasInterval(Reg)) |
Matthias Braun | f6fe6bf | 2013-10-10 21:29:05 +0000 | [diff] [blame] | 151 | OS << getInterval(Reg) << '\n'; |
Jakob Stoklund Olesen | c61edda | 2012-06-22 20:37:52 +0000 | [diff] [blame] | 152 | } |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 153 | |
Jakob Stoklund Olesen | 13d5562 | 2012-11-09 19:18:49 +0000 | [diff] [blame] | 154 | OS << "RegMasks:"; |
| 155 | for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i) |
| 156 | OS << ' ' << RegMaskSlots[i]; |
| 157 | OS << '\n'; |
| 158 | |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 159 | printInstrs(OS); |
| 160 | } |
| 161 | |
| 162 | void LiveIntervals::printInstrs(raw_ostream &OS) const { |
Chris Lattner | a6f074f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 163 | OS << "********** MACHINEINSTRS **********\n"; |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 164 | MF->print(OS, Indexes); |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 167 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 168 | void LiveIntervals::dumpInstrs() const { |
David Greene | 1a51a21 | 2010-01-04 22:49:02 +0000 | [diff] [blame] | 169 | printInstrs(dbgs()); |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 170 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 171 | #endif |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 172 | |
Owen Anderson | 51f689a | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 173 | LiveInterval* LiveIntervals::createInterval(unsigned reg) { |
Aaron Ballman | 0499904 | 2013-11-13 00:15:44 +0000 | [diff] [blame] | 174 | float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ? |
| 175 | llvm::huge_valf : 0.0F; |
Owen Anderson | 51f689a | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 176 | return new LiveInterval(reg, Weight); |
Alkis Evlogimenos | 237f203 | 2004-04-09 18:07:57 +0000 | [diff] [blame] | 177 | } |
Evan Cheng | be51f28 | 2007-11-12 06:35:08 +0000 | [diff] [blame] | 178 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 179 | |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 180 | /// computeVirtRegInterval - Compute the live interval of a virtual register, |
| 181 | /// based on defs and uses. |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 182 | void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) { |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 183 | assert(LRCalc && "LRCalc not initialized."); |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 184 | assert(LI.empty() && "Should only compute empty intervals."); |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 185 | LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator()); |
| 186 | LRCalc->createDeadDefs(LI); |
| 187 | LRCalc->extendToUses(LI); |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 188 | computeDeadValues(&LI, LI, nullptr, nullptr); |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 191 | void 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 Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 196 | createAndComputeVirtRegInterval(Reg); |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
| 199 | |
| 200 | void 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 Gribenko | ca1e27b | 2012-09-10 21:26:47 +0000 | [diff] [blame] | 218 | RMB.second = RegMaskSlots.size() - RMB.first; |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 219 | } |
| 220 | } |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 221 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 222 | //===----------------------------------------------------------------------===// |
| 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 Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 233 | /// 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 Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 235 | /// or contain only dead phi-defs from ABI blocks. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 236 | void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 237 | 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 Rosier | 682ae15 | 2013-05-22 22:36:55 +0000 | [diff] [blame] | 246 | for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true); |
| 247 | Supers.isValid(); ++Supers) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 248 | if (!MRI->reg_empty(*Supers)) |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 249 | LRCalc->createDeadDefs(LR, *Supers); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 253 | // Now extend LR to reach all uses. |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 254 | // Ignore uses of reserved registers. We only track defs of those. |
| 255 | for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) { |
Chad Rosier | 682ae15 | 2013-05-22 22:36:55 +0000 | [diff] [blame] | 256 | for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true); |
| 257 | Supers.isValid(); ++Supers) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 258 | unsigned Reg = *Supers; |
Jakob Stoklund Olesen | cea596a | 2012-10-15 22:14:34 +0000 | [diff] [blame] | 259 | if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg)) |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 260 | LRCalc->extendToUses(LR, Reg); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 261 | } |
| 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 | /// |
| 270 | void LiveIntervals::computeLiveInRegUnits() { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 271 | RegUnitRanges.resize(TRI->getNumRegUnits()); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 272 | DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n"); |
| 273 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 274 | // Keep track of the live range sets allocated. |
| 275 | SmallVector<unsigned, 8> NewRanges; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 276 | |
| 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 Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 293 | LiveRange *LR = RegUnitRanges[Unit]; |
| 294 | if (!LR) { |
| 295 | LR = RegUnitRanges[Unit] = new LiveRange(); |
| 296 | NewRanges.push_back(Unit); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 297 | } |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 298 | VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator()); |
Matt Beaumont-Gay | 7ba769b | 2012-06-05 23:00:03 +0000 | [diff] [blame] | 299 | (void)VNI; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 300 | DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id); |
| 301 | } |
| 302 | } |
| 303 | DEBUG(dbgs() << '\n'); |
| 304 | } |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 305 | DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n"); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 306 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 307 | // 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 Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 315 | /// 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 Olesen | 8630840 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 318 | bool LiveIntervals::shrinkToUses(LiveInterval *li, |
Jakob Stoklund Olesen | 71c380f | 2011-03-07 23:29:10 +0000 | [diff] [blame] | 319 | SmallVectorImpl<MachineInstr*> *dead) { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 320 | DEBUG(dbgs() << "Shrink: " << *li << '\n'); |
| 321 | assert(TargetRegisterInfo::isVirtualRegister(li->reg) |
Lang Hames | c405ac4 | 2012-01-03 20:05:57 +0000 | [diff] [blame] | 322 | && "Can only shrink virtual registers"); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 323 | // Find all the values used, including PHI kills. |
| 324 | SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList; |
| 325 | |
Jakob Stoklund Olesen | b8b1d4c | 2011-09-15 15:24:16 +0000 | [diff] [blame] | 326 | // Blocks that have already been added to WorkList as live-out. |
| 327 | SmallPtrSet<MachineBasicBlock*, 16> LiveOut; |
| 328 | |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 329 | // Visit all instructions reading li->reg. |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 330 | 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 Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 334 | if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg)) |
| 335 | continue; |
Jakob Stoklund Olesen | 6979790 | 2011-11-13 23:53:25 +0000 | [diff] [blame] | 336 | SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot(); |
Matthias Braun | 88dd0ab | 2013-10-10 21:28:52 +0000 | [diff] [blame] | 337 | LiveQueryResult LRQ = li->Query(Idx); |
Jakob Stoklund Olesen | 02d83e3 | 2012-05-20 02:54:52 +0000 | [diff] [blame] | 338 | VNInfo *VNI = LRQ.valueIn(); |
Jakob Stoklund Olesen | fdc0994 | 2011-03-18 03:06:04 +0000 | [diff] [blame] | 339 | 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 Olesen | 7e6004a | 2011-11-14 18:45:38 +0000 | [diff] [blame] | 348 | // Special case: An early-clobber tied operand reads and writes the |
Jakob Stoklund Olesen | 02d83e3 | 2012-05-20 02:54:52 +0000 | [diff] [blame] | 349 | // register one slot early. |
| 350 | if (VNInfo *DefVNI = LRQ.valueDefined()) |
| 351 | Idx = DefVNI->def; |
| 352 | |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 353 | WorkList.push_back(std::make_pair(Idx, VNI)); |
| 354 | } |
| 355 | |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 356 | // Create new live ranges with only minimal live segments per def. |
| 357 | LiveRange NewLR; |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 358 | 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 Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 363 | NewLR.addSegment(LiveRange::Segment(VNI->def, VNI->def.getDeadSlot(), VNI)); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Jakob Stoklund Olesen | f3c6e92 | 2011-03-02 00:33:03 +0000 | [diff] [blame] | 366 | // Keep track of the PHIs that are in use. |
| 367 | SmallPtrSet<VNInfo*, 8> UsedPHIs; |
| 368 | |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 369 | // 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 Olesen | 6979790 | 2011-11-13 23:53:25 +0000 | [diff] [blame] | 374 | const MachineBasicBlock *MBB = getMBBFromIndex(Idx.getPrevSlot()); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 375 | SlotIndex BlockStart = getMBBStartIdx(MBB); |
Jakob Stoklund Olesen | f3c6e92 | 2011-03-02 00:33:03 +0000 | [diff] [blame] | 376 | |
| 377 | // Extend the live range for VNI to be live at Idx. |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 378 | if (VNInfo *ExtVNI = NewLR.extendInBlock(BlockStart, Idx)) { |
Nick Lewycky | 68faa2d | 2011-03-02 01:43:30 +0000 | [diff] [blame] | 379 | (void)ExtVNI; |
Jakob Stoklund Olesen | f3c6e92 | 2011-03-02 00:33:03 +0000 | [diff] [blame] | 380 | assert(ExtVNI == VNI && "Unexpected existing value number"); |
| 381 | // Is this a PHIDef we haven't seen before? |
Jakob Stoklund Olesen | d58c8d1 | 2011-03-03 00:20:51 +0000 | [diff] [blame] | 382 | if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI)) |
Jakob Stoklund Olesen | f3c6e92 | 2011-03-02 00:33:03 +0000 | [diff] [blame] | 383 | 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 Olesen | b8b1d4c | 2011-09-15 15:24:16 +0000 | [diff] [blame] | 387 | if (!LiveOut.insert(*PI)) |
| 388 | continue; |
Jakob Stoklund Olesen | 6979790 | 2011-11-13 23:53:25 +0000 | [diff] [blame] | 389 | SlotIndex Stop = getMBBEndIdx(*PI); |
Jakob Stoklund Olesen | f3c6e92 | 2011-03-02 00:33:03 +0000 | [diff] [blame] | 390 | // A predecessor is not required to have a live-out value for a PHI. |
Jakob Stoklund Olesen | 6979790 | 2011-11-13 23:53:25 +0000 | [diff] [blame] | 391 | if (VNInfo *PVNI = li->getVNInfoBefore(Stop)) |
Jakob Stoklund Olesen | f3c6e92 | 2011-03-02 00:33:03 +0000 | [diff] [blame] | 392 | WorkList.push_back(std::make_pair(Stop, PVNI)); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 393 | } |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 394 | continue; |
| 395 | } |
| 396 | |
| 397 | // VNI is live-in to MBB. |
| 398 | DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 399 | NewLR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 400 | |
| 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 Olesen | b8b1d4c | 2011-09-15 15:24:16 +0000 | [diff] [blame] | 404 | if (!LiveOut.insert(*PI)) |
| 405 | continue; |
Jakob Stoklund Olesen | 6979790 | 2011-11-13 23:53:25 +0000 | [diff] [blame] | 406 | SlotIndex Stop = getMBBEndIdx(*PI); |
| 407 | assert(li->getVNInfoBefore(Stop) == VNI && |
| 408 | "Wrong value out of predecessor"); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 409 | WorkList.push_back(std::make_pair(Stop, VNI)); |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | // Handle dead values. |
Jakob Stoklund Olesen | 8630840 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 414 | bool CanSeparate = false; |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 415 | computeDeadValues(li, NewLR, &CanSeparate, dead); |
| 416 | |
| 417 | // Move the trimmed segments back. |
| 418 | li->segments.swap(NewLR.segments); |
| 419 | DEBUG(dbgs() << "Shrunk: " << *li << '\n'); |
| 420 | return CanSeparate; |
| 421 | } |
| 422 | |
| 423 | void LiveIntervals::computeDeadValues(LiveInterval *li, |
| 424 | LiveRange &LR, |
| 425 | bool *CanSeparate, |
| 426 | SmallVectorImpl<MachineInstr*> *dead) { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 427 | for (LiveInterval::vni_iterator I = li->vni_begin(), E = li->vni_end(); |
| 428 | I != E; ++I) { |
| 429 | VNInfo *VNI = *I; |
| 430 | if (VNI->isUnused()) |
| 431 | continue; |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 432 | LiveRange::iterator LRI = LR.FindSegmentContaining(VNI->def); |
| 433 | assert(LRI != LR.end() && "Missing segment for PHI"); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 434 | if (LRI->end != VNI->def.getDeadSlot()) |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 435 | continue; |
Jakob Stoklund Olesen | 81eb18d | 2011-03-02 00:33:01 +0000 | [diff] [blame] | 436 | if (VNI->isPHIDef()) { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 437 | // This is a dead PHI. Remove it. |
Jakob Stoklund Olesen | daae19f | 2012-08-03 20:59:32 +0000 | [diff] [blame] | 438 | VNI->markUnused(); |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 439 | LR.removeSegment(LRI->start, LRI->end); |
Jakob Stoklund Olesen | 8630840 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 440 | DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n"); |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 441 | if (CanSeparate) |
| 442 | *CanSeparate = true; |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 443 | } else { |
| 444 | // This is a dead def. Make sure the instruction knows. |
| 445 | MachineInstr *MI = getInstructionFromIndex(VNI->def); |
| 446 | assert(MI && "No instruction defining live value"); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 447 | MI->addRegisterDead(li->reg, TRI); |
Jakob Stoklund Olesen | 71c380f | 2011-03-07 23:29:10 +0000 | [diff] [blame] | 448 | if (dead && MI->allDefsAreDead()) { |
Jakob Stoklund Olesen | 557a82c | 2011-03-16 22:56:08 +0000 | [diff] [blame] | 449 | DEBUG(dbgs() << "All defs dead: " << VNI->def << '\t' << *MI); |
Jakob Stoklund Olesen | 71c380f | 2011-03-07 23:29:10 +0000 | [diff] [blame] | 450 | dead->push_back(MI); |
| 451 | } |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 452 | } |
| 453 | } |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 454 | } |
| 455 | |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 456 | void LiveIntervals::extendToIndices(LiveRange &LR, |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 457 | ArrayRef<SlotIndex> Indices) { |
| 458 | assert(LRCalc && "LRCalc not initialized."); |
| 459 | LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator()); |
| 460 | for (unsigned i = 0, e = Indices.size(); i != e; ++i) |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 461 | LRCalc->extend(LR, Indices[i]); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | void LiveIntervals::pruneValue(LiveInterval *LI, SlotIndex Kill, |
| 465 | SmallVectorImpl<SlotIndex> *EndPoints) { |
Matthias Braun | 88dd0ab | 2013-10-10 21:28:52 +0000 | [diff] [blame] | 466 | LiveQueryResult LRQ = LI->Query(Kill); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 467 | VNInfo *VNI = LRQ.valueOut(); |
| 468 | if (!VNI) |
| 469 | return; |
| 470 | |
| 471 | MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill); |
| 472 | SlotIndex MBBStart, MBBEnd; |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 473 | std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 474 | |
| 475 | // If VNI isn't live out from KillMBB, the value is trivially pruned. |
| 476 | if (LRQ.endPoint() < MBBEnd) { |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 477 | LI->removeSegment(Kill, LRQ.endPoint()); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 478 | if (EndPoints) EndPoints->push_back(LRQ.endPoint()); |
| 479 | return; |
| 480 | } |
| 481 | |
| 482 | // VNI is live out of KillMBB. |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 483 | LI->removeSegment(Kill, MBBEnd); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 484 | if (EndPoints) EndPoints->push_back(MBBEnd); |
| 485 | |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 486 | // Find all blocks that are reachable from KillMBB without leaving VNI's live |
| 487 | // range. It is possible that KillMBB itself is reachable, so start a DFS |
| 488 | // from each successor. |
| 489 | typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy; |
| 490 | VisitedTy Visited; |
| 491 | for (MachineBasicBlock::succ_iterator |
| 492 | SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end(); |
| 493 | SuccI != SuccE; ++SuccI) { |
| 494 | for (df_ext_iterator<MachineBasicBlock*, VisitedTy> |
| 495 | I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited); |
| 496 | I != E;) { |
| 497 | MachineBasicBlock *MBB = *I; |
| 498 | |
| 499 | // Check if VNI is live in to MBB. |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 500 | std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB); |
Matthias Braun | 88dd0ab | 2013-10-10 21:28:52 +0000 | [diff] [blame] | 501 | LiveQueryResult LRQ = LI->Query(MBBStart); |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 502 | if (LRQ.valueIn() != VNI) { |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 503 | // This block isn't part of the VNI segment. Prune the search. |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 504 | I.skipChildren(); |
| 505 | continue; |
| 506 | } |
| 507 | |
| 508 | // Prune the search if VNI is killed in MBB. |
| 509 | if (LRQ.endPoint() < MBBEnd) { |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 510 | LI->removeSegment(MBBStart, LRQ.endPoint()); |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 511 | if (EndPoints) EndPoints->push_back(LRQ.endPoint()); |
| 512 | I.skipChildren(); |
| 513 | continue; |
| 514 | } |
| 515 | |
| 516 | // VNI is live through MBB. |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 517 | LI->removeSegment(MBBStart, MBBEnd); |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 518 | if (EndPoints) EndPoints->push_back(MBBEnd); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 519 | ++I; |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 520 | } |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 521 | } |
| 522 | } |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 523 | |
Evan Cheng | be51f28 | 2007-11-12 06:35:08 +0000 | [diff] [blame] | 524 | //===----------------------------------------------------------------------===// |
| 525 | // Register allocator hooks. |
| 526 | // |
| 527 | |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 528 | void LiveIntervals::addKillFlags(const VirtRegMap *VRM) { |
| 529 | // Keep track of regunit ranges. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 530 | SmallVector<std::pair<LiveRange*, LiveRange::iterator>, 8> RU; |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 531 | |
Jakob Stoklund Olesen | 781e0b9 | 2012-06-20 23:23:59 +0000 | [diff] [blame] | 532 | for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { |
| 533 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 534 | if (MRI->reg_nodbg_empty(Reg)) |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 535 | continue; |
Jakob Stoklund Olesen | 781e0b9 | 2012-06-20 23:23:59 +0000 | [diff] [blame] | 536 | LiveInterval *LI = &getInterval(Reg); |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 537 | if (LI->empty()) |
| 538 | continue; |
| 539 | |
| 540 | // Find the regunit intervals for the assigned register. They may overlap |
| 541 | // the virtual register live range, cancelling any kills. |
| 542 | RU.clear(); |
| 543 | for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid(); |
| 544 | ++Units) { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 545 | LiveRange &RURanges = getRegUnit(*Units); |
| 546 | if (RURanges.empty()) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 547 | continue; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 548 | RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end))); |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 549 | } |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 550 | |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 551 | // Every instruction that kills Reg corresponds to a segment range end |
| 552 | // point. |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 553 | for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE; |
| 554 | ++RI) { |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 555 | // A block index indicates an MBB edge. |
| 556 | if (RI->end.isBlock()) |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 557 | continue; |
| 558 | MachineInstr *MI = getInstructionFromIndex(RI->end); |
| 559 | if (!MI) |
| 560 | continue; |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 561 | |
Matthias Braun | c9d5c0f | 2013-10-04 16:52:58 +0000 | [diff] [blame] | 562 | // Check if any of the regunits are live beyond the end of RI. That could |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 563 | // happen when a physreg is defined as a copy of a virtreg: |
| 564 | // |
| 565 | // %EAX = COPY %vreg5 |
| 566 | // FOO %vreg5 <--- MI, cancel kill because %EAX is live. |
| 567 | // BAR %EAX<kill> |
| 568 | // |
| 569 | // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX. |
| 570 | bool CancelKill = false; |
| 571 | for (unsigned u = 0, e = RU.size(); u != e; ++u) { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 572 | LiveRange &RRanges = *RU[u].first; |
| 573 | LiveRange::iterator &I = RU[u].second; |
| 574 | if (I == RRanges.end()) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 575 | continue; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 576 | I = RRanges.advanceTo(I, RI->end); |
| 577 | if (I == RRanges.end() || I->start >= RI->end) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 578 | continue; |
| 579 | // I is overlapping RI. |
| 580 | CancelKill = true; |
| 581 | break; |
| 582 | } |
| 583 | if (CancelKill) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 584 | MI->clearRegisterKills(Reg, nullptr); |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 585 | else |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 586 | MI->addRegisterKilled(Reg, nullptr); |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | } |
| 590 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 591 | MachineBasicBlock* |
| 592 | LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const { |
| 593 | // A local live range must be fully contained inside the block, meaning it is |
| 594 | // defined and killed at instructions, not at block boundaries. It is not |
| 595 | // live in or or out of any block. |
| 596 | // |
| 597 | // It is technically possible to have a PHI-defined live range identical to a |
| 598 | // single block, but we are going to return false in that case. |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 599 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 600 | SlotIndex Start = LI.beginIndex(); |
| 601 | if (Start.isBlock()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 602 | return nullptr; |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 603 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 604 | SlotIndex Stop = LI.endIndex(); |
| 605 | if (Stop.isBlock()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 606 | return nullptr; |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 607 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 608 | // getMBBFromIndex doesn't need to search the MBB table when both indexes |
| 609 | // belong to proper instructions. |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 610 | MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start); |
| 611 | MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 612 | return MBB1 == MBB2 ? MBB1 : nullptr; |
Evan Cheng | 8e22379 | 2007-11-17 00:40:40 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Jakob Stoklund Olesen | 06d6a53 | 2012-08-03 20:10:24 +0000 | [diff] [blame] | 615 | bool |
| 616 | LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const { |
| 617 | for (LiveInterval::const_vni_iterator I = LI.vni_begin(), E = LI.vni_end(); |
| 618 | I != E; ++I) { |
| 619 | const VNInfo *PHI = *I; |
| 620 | if (PHI->isUnused() || !PHI->isPHIDef()) |
| 621 | continue; |
| 622 | const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def); |
| 623 | // Conservatively return true instead of scanning huge predecessor lists. |
| 624 | if (PHIMBB->pred_size() > 100) |
| 625 | return true; |
| 626 | for (MachineBasicBlock::const_pred_iterator |
| 627 | PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI) |
| 628 | if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI))) |
| 629 | return true; |
| 630 | } |
| 631 | return false; |
| 632 | } |
| 633 | |
Jakob Stoklund Olesen | 115da88 | 2010-03-01 20:59:38 +0000 | [diff] [blame] | 634 | float |
Michael Gottesman | 9f49d74 | 2013-12-14 00:53:32 +0000 | [diff] [blame] | 635 | LiveIntervals::getSpillWeight(bool isDef, bool isUse, |
| 636 | const MachineBlockFrequencyInfo *MBFI, |
| 637 | const MachineInstr *MI) { |
| 638 | BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent()); |
Michael Gottesman | 5e985ee | 2013-12-14 02:37:38 +0000 | [diff] [blame] | 639 | const float Scale = 1.0f / MBFI->getEntryFreq(); |
Michael Gottesman | 9f49d74 | 2013-12-14 00:53:32 +0000 | [diff] [blame] | 640 | return (isDef + isUse) * (Freq.getFrequency() * Scale); |
Jakob Stoklund Olesen | 115da88 | 2010-03-01 20:59:38 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 643 | LiveRange::Segment |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 644 | LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) { |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 645 | LiveInterval& Interval = createEmptyInterval(reg); |
Owen Anderson | 35e2dfe | 2008-06-05 17:15:43 +0000 | [diff] [blame] | 646 | VNInfo* VN = Interval.getNextValue( |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 647 | SlotIndex(getInstructionIndex(startInst).getRegSlot()), |
Jakob Stoklund Olesen | ad6b22e | 2012-02-04 05:20:49 +0000 | [diff] [blame] | 648 | getVNInfoAllocator()); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 649 | LiveRange::Segment S( |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 650 | SlotIndex(getInstructionIndex(startInst).getRegSlot()), |
Lang Hames | 4c05226 | 2009-12-22 00:11:50 +0000 | [diff] [blame] | 651 | getMBBEndIdx(startInst->getParent()), VN); |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 652 | Interval.addSegment(S); |
Jakob Stoklund Olesen | 073cd80 | 2010-08-12 20:01:23 +0000 | [diff] [blame] | 653 | |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 654 | return S; |
Owen Anderson | 35e2dfe | 2008-06-05 17:15:43 +0000 | [diff] [blame] | 655 | } |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 656 | |
| 657 | |
| 658 | //===----------------------------------------------------------------------===// |
| 659 | // Register mask functions |
| 660 | //===----------------------------------------------------------------------===// |
| 661 | |
| 662 | bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI, |
| 663 | BitVector &UsableRegs) { |
| 664 | if (LI.empty()) |
| 665 | return false; |
Jakob Stoklund Olesen | 9ef50bd | 2012-02-10 01:31:31 +0000 | [diff] [blame] | 666 | LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end(); |
| 667 | |
| 668 | // Use a smaller arrays for local live ranges. |
| 669 | ArrayRef<SlotIndex> Slots; |
| 670 | ArrayRef<const uint32_t*> Bits; |
| 671 | if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) { |
| 672 | Slots = getRegMaskSlotsInBlock(MBB->getNumber()); |
| 673 | Bits = getRegMaskBitsInBlock(MBB->getNumber()); |
| 674 | } else { |
| 675 | Slots = getRegMaskSlots(); |
| 676 | Bits = getRegMaskBits(); |
| 677 | } |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 678 | |
| 679 | // We are going to enumerate all the register mask slots contained in LI. |
| 680 | // Start with a binary search of RegMaskSlots to find a starting point. |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 681 | ArrayRef<SlotIndex>::iterator SlotI = |
| 682 | std::lower_bound(Slots.begin(), Slots.end(), LiveI->start); |
| 683 | ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); |
| 684 | |
| 685 | // No slots in range, LI begins after the last call. |
| 686 | if (SlotI == SlotE) |
| 687 | return false; |
| 688 | |
| 689 | bool Found = false; |
| 690 | for (;;) { |
| 691 | assert(*SlotI >= LiveI->start); |
| 692 | // Loop over all slots overlapping this segment. |
| 693 | while (*SlotI < LiveI->end) { |
| 694 | // *SlotI overlaps LI. Collect mask bits. |
| 695 | if (!Found) { |
| 696 | // This is the first overlap. Initialize UsableRegs to all ones. |
| 697 | UsableRegs.clear(); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 698 | UsableRegs.resize(TRI->getNumRegs(), true); |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 699 | Found = true; |
| 700 | } |
| 701 | // Remove usable registers clobbered by this mask. |
Jakob Stoklund Olesen | 9ef50bd | 2012-02-10 01:31:31 +0000 | [diff] [blame] | 702 | UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]); |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 703 | if (++SlotI == SlotE) |
| 704 | return Found; |
| 705 | } |
| 706 | // *SlotI is beyond the current LI segment. |
| 707 | LiveI = LI.advanceTo(LiveI, *SlotI); |
| 708 | if (LiveI == LiveE) |
| 709 | return Found; |
| 710 | // Advance SlotI until it overlaps. |
| 711 | while (*SlotI < LiveI->start) |
| 712 | if (++SlotI == SlotE) |
| 713 | return Found; |
| 714 | } |
| 715 | } |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 716 | |
| 717 | //===----------------------------------------------------------------------===// |
| 718 | // IntervalUpdate class. |
| 719 | //===----------------------------------------------------------------------===// |
| 720 | |
Lang Hames | 7e2ce88 | 2012-02-21 00:00:36 +0000 | [diff] [blame] | 721 | // HMEditor is a toolkit used by handleMove to trim or extend live intervals. |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 722 | class LiveIntervals::HMEditor { |
| 723 | private: |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 724 | LiveIntervals& LIS; |
| 725 | const MachineRegisterInfo& MRI; |
| 726 | const TargetRegisterInfo& TRI; |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 727 | SlotIndex OldIdx; |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 728 | SlotIndex NewIdx; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 729 | SmallPtrSet<LiveRange*, 8> Updated; |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 730 | bool UpdateFlags; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 731 | |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 732 | public: |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 733 | HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI, |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 734 | const TargetRegisterInfo& TRI, |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 735 | SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags) |
| 736 | : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx), |
| 737 | UpdateFlags(UpdateFlags) {} |
| 738 | |
| 739 | // FIXME: UpdateFlags is a workaround that creates live intervals for all |
| 740 | // physregs, even those that aren't needed for regalloc, in order to update |
| 741 | // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill |
| 742 | // flags, and postRA passes will use a live register utility instead. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 743 | LiveRange *getRegUnitLI(unsigned Unit) { |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 744 | if (UpdateFlags) |
| 745 | return &LIS.getRegUnit(Unit); |
| 746 | return LIS.getCachedRegUnit(Unit); |
| 747 | } |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 748 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 749 | /// Update all live ranges touched by MI, assuming a move from OldIdx to |
| 750 | /// NewIdx. |
| 751 | void updateAllRanges(MachineInstr *MI) { |
| 752 | DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI); |
| 753 | bool hasRegMask = false; |
| 754 | for (MIOperands MO(MI); MO.isValid(); ++MO) { |
| 755 | if (MO->isRegMask()) |
| 756 | hasRegMask = true; |
| 757 | if (!MO->isReg()) |
Lang Hames | d6e765c | 2012-02-21 22:29:38 +0000 | [diff] [blame] | 758 | continue; |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 759 | // Aggressively clear all kill flags. |
| 760 | // They are reinserted by VirtRegRewriter. |
| 761 | if (MO->isUse()) |
| 762 | MO->setIsKill(false); |
| 763 | |
| 764 | unsigned Reg = MO->getReg(); |
| 765 | if (!Reg) |
| 766 | continue; |
| 767 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 768 | LiveInterval &LI = LIS.getInterval(Reg); |
| 769 | updateRange(LI, Reg); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 770 | continue; |
| 771 | } |
| 772 | |
| 773 | // For physregs, only update the regunits that actually have a |
| 774 | // precomputed live range. |
| 775 | for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units) |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 776 | if (LiveRange *LR = getRegUnitLI(*Units)) |
| 777 | updateRange(*LR, *Units); |
Lang Hames | d6e765c | 2012-02-21 22:29:38 +0000 | [diff] [blame] | 778 | } |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 779 | if (hasRegMask) |
| 780 | updateRegMaskSlots(); |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 781 | } |
| 782 | |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 783 | private: |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 784 | /// Update a single live range, assuming an instruction has been moved from |
| 785 | /// OldIdx to NewIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 786 | void updateRange(LiveRange &LR, unsigned Reg) { |
| 787 | if (!Updated.insert(&LR)) |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 788 | return; |
| 789 | DEBUG({ |
| 790 | dbgs() << " "; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 791 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 792 | dbgs() << PrintReg(Reg); |
Jakob Stoklund Olesen | 3802bbf | 2012-06-19 23:50:18 +0000 | [diff] [blame] | 793 | else |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 794 | dbgs() << PrintRegUnit(Reg, &TRI); |
| 795 | dbgs() << ":\t" << LR << '\n'; |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 796 | }); |
| 797 | if (SlotIndex::isEarlierInstr(OldIdx, NewIdx)) |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 798 | handleMoveDown(LR); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 799 | else |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 800 | handleMoveUp(LR, Reg); |
| 801 | DEBUG(dbgs() << " -->\t" << LR << '\n'); |
| 802 | LR.verify(); |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 805 | /// Update LR to reflect an instruction has been moved downwards from OldIdx |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 806 | /// to NewIdx. |
| 807 | /// |
| 808 | /// 1. Live def at OldIdx: |
| 809 | /// Move def to NewIdx, assert endpoint after NewIdx. |
| 810 | /// |
| 811 | /// 2. Live def at OldIdx, killed at NewIdx: |
| 812 | /// Change to dead def at NewIdx. |
| 813 | /// (Happens when bundling def+kill together). |
| 814 | /// |
| 815 | /// 3. Dead def at OldIdx: |
| 816 | /// Move def to NewIdx, possibly across another live value. |
| 817 | /// |
| 818 | /// 4. Def at OldIdx AND at NewIdx: |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 819 | /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx. |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 820 | /// (Happens when bundling multiple defs together). |
| 821 | /// |
| 822 | /// 5. Value read at OldIdx, killed before NewIdx: |
| 823 | /// Extend kill to NewIdx. |
| 824 | /// |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 825 | void handleMoveDown(LiveRange &LR) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 826 | // First look for a kill at OldIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 827 | LiveRange::iterator I = LR.find(OldIdx.getBaseIndex()); |
| 828 | LiveRange::iterator E = LR.end(); |
| 829 | // Is LR even live at OldIdx? |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 830 | if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start)) |
| 831 | return; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 832 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 833 | // Handle a live-in value. |
| 834 | if (!SlotIndex::isSameInstr(I->start, OldIdx)) { |
| 835 | bool isKill = SlotIndex::isSameInstr(OldIdx, I->end); |
| 836 | // If the live-in value already extends to NewIdx, there is nothing to do. |
| 837 | if (!SlotIndex::isEarlierInstr(I->end, NewIdx)) |
| 838 | return; |
| 839 | // Aggressively remove all kill flags from the old kill point. |
| 840 | // Kill flags shouldn't be used while live intervals exist, they will be |
| 841 | // reinserted by VirtRegRewriter. |
| 842 | if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end)) |
| 843 | for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO) |
| 844 | if (MO->isReg() && MO->isUse()) |
| 845 | MO->setIsKill(false); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 846 | // Adjust I->end to reach NewIdx. This may temporarily make LR invalid by |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 847 | // overlapping ranges. Case 5 above. |
| 848 | I->end = NewIdx.getRegSlot(I->end.isEarlyClobber()); |
| 849 | // If this was a kill, there may also be a def. Otherwise we're done. |
| 850 | if (!isKill) |
| 851 | return; |
| 852 | ++I; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 853 | } |
| 854 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 855 | // Check for a def at OldIdx. |
| 856 | if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start)) |
| 857 | return; |
| 858 | // We have a def at OldIdx. |
| 859 | VNInfo *DefVNI = I->valno; |
| 860 | assert(DefVNI->def == I->start && "Inconsistent def"); |
| 861 | DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber()); |
| 862 | // If the defined value extends beyond NewIdx, just move the def down. |
| 863 | // This is case 1 above. |
| 864 | if (SlotIndex::isEarlierInstr(NewIdx, I->end)) { |
| 865 | I->start = DefVNI->def; |
| 866 | return; |
| 867 | } |
| 868 | // The remaining possibilities are now: |
| 869 | // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx). |
| 870 | // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot(). |
| 871 | // In either case, it is possible that there is an existing def at NewIdx. |
| 872 | assert((I->end == OldIdx.getDeadSlot() || |
| 873 | SlotIndex::isSameInstr(I->end, NewIdx)) && |
| 874 | "Cannot move def below kill"); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 875 | LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot()); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 876 | if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) { |
| 877 | // There is an existing def at NewIdx, case 4 above. The def at OldIdx is |
| 878 | // coalesced into that value. |
| 879 | assert(NewI->valno != DefVNI && "Multiple defs of value?"); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 880 | LR.removeValNo(DefVNI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 881 | return; |
| 882 | } |
| 883 | // There was no existing def at NewIdx. Turn *I into a dead def at NewIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 884 | // If the def at OldIdx was dead, we allow it to be moved across other LR |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 885 | // values. The new range should be placed immediately before NewI, move any |
| 886 | // intermediate ranges up. |
| 887 | assert(NewI != I && "Inconsistent iterators"); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 888 | std::copy(std::next(I), NewI, I); |
| 889 | *std::prev(NewI) |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 890 | = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 891 | } |
| 892 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 893 | /// Update LR to reflect an instruction has been moved upwards from OldIdx |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 894 | /// to NewIdx. |
| 895 | /// |
| 896 | /// 1. Live def at OldIdx: |
| 897 | /// Hoist def to NewIdx. |
| 898 | /// |
| 899 | /// 2. Dead def at OldIdx: |
| 900 | /// Hoist def+end to NewIdx, possibly move across other values. |
| 901 | /// |
| 902 | /// 3. Dead def at OldIdx AND existing def at NewIdx: |
| 903 | /// Remove value defined at OldIdx, coalescing it with existing value. |
| 904 | /// |
| 905 | /// 4. Live def at OldIdx AND existing def at NewIdx: |
| 906 | /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx. |
| 907 | /// (Happens when bundling multiple defs together). |
| 908 | /// |
| 909 | /// 5. Value killed at OldIdx: |
| 910 | /// Hoist kill to NewIdx, then scan for last kill between NewIdx and |
| 911 | /// OldIdx. |
| 912 | /// |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 913 | void handleMoveUp(LiveRange &LR, unsigned Reg) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 914 | // First look for a kill at OldIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 915 | LiveRange::iterator I = LR.find(OldIdx.getBaseIndex()); |
| 916 | LiveRange::iterator E = LR.end(); |
| 917 | // Is LR even live at OldIdx? |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 918 | if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start)) |
| 919 | return; |
| 920 | |
| 921 | // Handle a live-in value. |
| 922 | if (!SlotIndex::isSameInstr(I->start, OldIdx)) { |
| 923 | // If the live-in value isn't killed here, there is nothing to do. |
| 924 | if (!SlotIndex::isSameInstr(OldIdx, I->end)) |
| 925 | return; |
| 926 | // Adjust I->end to end at NewIdx. If we are hoisting a kill above |
| 927 | // another use, we need to search for that use. Case 5 above. |
| 928 | I->end = NewIdx.getRegSlot(I->end.isEarlyClobber()); |
| 929 | ++I; |
| 930 | // If OldIdx also defines a value, there couldn't have been another use. |
| 931 | if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) { |
| 932 | // No def, search for the new kill. |
| 933 | // This can never be an early clobber kill since there is no def. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 934 | std::prev(I)->end = findLastUseBefore(Reg).getRegSlot(); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 935 | return; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 939 | // Now deal with the def at OldIdx. |
| 940 | assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?"); |
| 941 | VNInfo *DefVNI = I->valno; |
| 942 | assert(DefVNI->def == I->start && "Inconsistent def"); |
| 943 | DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber()); |
| 944 | |
| 945 | // Check for an existing def at NewIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 946 | LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot()); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 947 | if (SlotIndex::isSameInstr(NewI->start, NewIdx)) { |
| 948 | assert(NewI->valno != DefVNI && "Same value defined more than once?"); |
| 949 | // There is an existing def at NewIdx. |
| 950 | if (I->end.isDead()) { |
| 951 | // Case 3: Remove the dead def at OldIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 952 | LR.removeValNo(DefVNI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 953 | return; |
| 954 | } |
| 955 | // Case 4: Replace def at NewIdx with live def at OldIdx. |
| 956 | I->start = DefVNI->def; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 957 | LR.removeValNo(NewI->valno); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 958 | return; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 959 | } |
| 960 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 961 | // There is no existing def at NewIdx. Hoist DefVNI. |
| 962 | if (!I->end.isDead()) { |
| 963 | // Leave the end point of a live def. |
| 964 | I->start = DefVNI->def; |
| 965 | return; |
| 966 | } |
| 967 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 968 | // DefVNI is a dead def. It may have been moved across other values in LR, |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 969 | // so move I up to NewI. Slide [NewI;I) down one position. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 970 | std::copy_backward(NewI, I, std::next(I)); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 971 | *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI); |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 972 | } |
| 973 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 974 | void updateRegMaskSlots() { |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 975 | SmallVectorImpl<SlotIndex>::iterator RI = |
| 976 | std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(), |
| 977 | OldIdx); |
Jakob Stoklund Olesen | 13d5562 | 2012-11-09 19:18:49 +0000 | [diff] [blame] | 978 | assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() && |
| 979 | "No RegMask at OldIdx."); |
| 980 | *RI = NewIdx.getRegSlot(); |
| 981 | assert((RI == LIS.RegMaskSlots.begin() || |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 982 | SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) && |
| 983 | "Cannot move regmask instruction above another call"); |
| 984 | assert((std::next(RI) == LIS.RegMaskSlots.end() || |
| 985 | SlotIndex::isEarlierInstr(*RI, *std::next(RI))) && |
| 986 | "Cannot move regmask instruction below another call"); |
Lang Hames | a9afc6a | 2012-02-17 21:29:41 +0000 | [diff] [blame] | 987 | } |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 988 | |
| 989 | // Return the last use of reg between NewIdx and OldIdx. |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 990 | SlotIndex findLastUseBefore(unsigned Reg) { |
Lang Hames | c3d9a3d | 2012-09-12 06:56:16 +0000 | [diff] [blame] | 991 | |
| 992 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Jakob Stoklund Olesen | 8d1aaf2 | 2013-03-08 18:08:57 +0000 | [diff] [blame] | 993 | SlotIndex LastUse = NewIdx; |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 994 | for (MachineRegisterInfo::use_instr_nodbg_iterator |
| 995 | UI = MRI.use_instr_nodbg_begin(Reg), |
| 996 | UE = MRI.use_instr_nodbg_end(); |
| 997 | UI != UE; ++UI) { |
Lang Hames | c3d9a3d | 2012-09-12 06:56:16 +0000 | [diff] [blame] | 998 | const MachineInstr* MI = &*UI; |
| 999 | SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI); |
| 1000 | if (InstSlot > LastUse && InstSlot < OldIdx) |
| 1001 | LastUse = InstSlot; |
| 1002 | } |
Jakob Stoklund Olesen | 8d1aaf2 | 2013-03-08 18:08:57 +0000 | [diff] [blame] | 1003 | return LastUse; |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 1004 | } |
Jakob Stoklund Olesen | 8d1aaf2 | 2013-03-08 18:08:57 +0000 | [diff] [blame] | 1005 | |
| 1006 | // This is a regunit interval, so scanning the use list could be very |
| 1007 | // expensive. Scan upwards from OldIdx instead. |
| 1008 | assert(NewIdx < OldIdx && "Expected upwards move"); |
| 1009 | SlotIndexes *Indexes = LIS.getSlotIndexes(); |
| 1010 | MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx); |
| 1011 | |
| 1012 | // OldIdx may not correspond to an instruction any longer, so set MII to |
| 1013 | // point to the next instruction after OldIdx, or MBB->end(). |
| 1014 | MachineBasicBlock::iterator MII = MBB->end(); |
| 1015 | if (MachineInstr *MI = Indexes->getInstructionFromIndex( |
| 1016 | Indexes->getNextNonNullIndex(OldIdx))) |
| 1017 | if (MI->getParent() == MBB) |
| 1018 | MII = MI; |
| 1019 | |
| 1020 | MachineBasicBlock::iterator Begin = MBB->begin(); |
| 1021 | while (MII != Begin) { |
| 1022 | if ((--MII)->isDebugValue()) |
| 1023 | continue; |
| 1024 | SlotIndex Idx = Indexes->getInstructionIndex(MII); |
| 1025 | |
| 1026 | // Stop searching when NewIdx is reached. |
| 1027 | if (!SlotIndex::isEarlierInstr(NewIdx, Idx)) |
| 1028 | return NewIdx; |
| 1029 | |
| 1030 | // Check if MII uses Reg. |
| 1031 | for (MIBundleOperands MO(MII); MO.isValid(); ++MO) |
| 1032 | if (MO->isReg() && |
| 1033 | TargetRegisterInfo::isPhysicalRegister(MO->getReg()) && |
| 1034 | TRI.hasRegUnit(MO->getReg(), Reg)) |
| 1035 | return Idx; |
| 1036 | } |
| 1037 | // Didn't reach NewIdx. It must be the first instruction in the block. |
| 1038 | return NewIdx; |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 1039 | } |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1040 | }; |
| 1041 | |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1042 | void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1043 | assert(!MI->isBundled() && "Can't handle bundled instructions yet."); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 1044 | SlotIndex OldIndex = Indexes->getInstructionIndex(MI); |
| 1045 | Indexes->removeMachineInstrFromMaps(MI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1046 | SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI); |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 1047 | assert(getMBBStartIdx(MI->getParent()) <= OldIndex && |
| 1048 | OldIndex < getMBBEndIdx(MI->getParent()) && |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1049 | "Cannot handle moves across basic block boundaries."); |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1050 | |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1051 | HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1052 | HME.updateAllRanges(MI); |
Lang Hames | d6e765c | 2012-02-21 22:29:38 +0000 | [diff] [blame] | 1053 | } |
| 1054 | |
Jakob Stoklund Olesen | 2db1125 | 2012-06-19 22:50:53 +0000 | [diff] [blame] | 1055 | void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI, |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1056 | MachineInstr* BundleStart, |
| 1057 | bool UpdateFlags) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1058 | SlotIndex OldIndex = Indexes->getInstructionIndex(MI); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 1059 | SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart); |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1060 | HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1061 | HME.updateAllRanges(MI); |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1062 | } |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1063 | |
| 1064 | void |
| 1065 | LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB, |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1066 | MachineBasicBlock::iterator Begin, |
| 1067 | MachineBasicBlock::iterator End, |
Cameron Zwarich | 1286ef9 | 2013-02-17 03:48:23 +0000 | [diff] [blame] | 1068 | ArrayRef<unsigned> OrigRegs) { |
Cameron Zwarich | caad7e1 | 2013-02-20 22:10:00 +0000 | [diff] [blame] | 1069 | // Find anchor points, which are at the beginning/end of blocks or at |
| 1070 | // instructions that already have indexes. |
| 1071 | while (Begin != MBB->begin() && !Indexes->hasIndex(Begin)) |
| 1072 | --Begin; |
| 1073 | while (End != MBB->end() && !Indexes->hasIndex(End)) |
| 1074 | ++End; |
| 1075 | |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1076 | SlotIndex endIdx; |
| 1077 | if (End == MBB->end()) |
| 1078 | endIdx = getMBBEndIdx(MBB).getPrevSlot(); |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1079 | else |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1080 | endIdx = getInstructionIndex(End); |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1081 | |
Cameron Zwarich | 2941482 | 2013-02-20 06:46:41 +0000 | [diff] [blame] | 1082 | Indexes->repairIndexesInRange(MBB, Begin, End); |
| 1083 | |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1084 | for (MachineBasicBlock::iterator I = End; I != Begin;) { |
| 1085 | --I; |
| 1086 | MachineInstr *MI = I; |
Cameron Zwarich | 63acc73 | 2013-02-23 10:25:25 +0000 | [diff] [blame] | 1087 | if (MI->isDebugValue()) |
| 1088 | continue; |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1089 | for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(), |
| 1090 | MOE = MI->operands_end(); MOI != MOE; ++MOI) { |
| 1091 | if (MOI->isReg() && |
| 1092 | TargetRegisterInfo::isVirtualRegister(MOI->getReg()) && |
| 1093 | !hasInterval(MOI->getReg())) { |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 1094 | createAndComputeVirtRegInterval(MOI->getReg()); |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1095 | } |
| 1096 | } |
| 1097 | } |
| 1098 | |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1099 | for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) { |
| 1100 | unsigned Reg = OrigRegs[i]; |
| 1101 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 1102 | continue; |
| 1103 | |
| 1104 | LiveInterval &LI = getInterval(Reg); |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1105 | // FIXME: Should we support undefs that gain defs? |
| 1106 | if (!LI.hasAtLeastOneValue()) |
| 1107 | continue; |
| 1108 | |
| 1109 | LiveInterval::iterator LII = LI.find(endIdx); |
| 1110 | SlotIndex lastUseIdx; |
| 1111 | if (LII != LI.end() && LII->start < endIdx) |
| 1112 | lastUseIdx = LII->end; |
| 1113 | else |
| 1114 | --LII; |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1115 | |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1116 | for (MachineBasicBlock::iterator I = End; I != Begin;) { |
| 1117 | --I; |
| 1118 | MachineInstr *MI = I; |
Cameron Zwarich | 63acc73 | 2013-02-23 10:25:25 +0000 | [diff] [blame] | 1119 | if (MI->isDebugValue()) |
| 1120 | continue; |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1121 | |
Cameron Zwarich | 63acc73 | 2013-02-23 10:25:25 +0000 | [diff] [blame] | 1122 | SlotIndex instrIdx = getInstructionIndex(MI); |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1123 | bool isStartValid = getInstructionFromIndex(LII->start); |
| 1124 | bool isEndValid = getInstructionFromIndex(LII->end); |
| 1125 | |
| 1126 | // FIXME: This doesn't currently handle early-clobber or multiple removed |
| 1127 | // defs inside of the region to repair. |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1128 | for (MachineInstr::mop_iterator OI = MI->operands_begin(), |
| 1129 | OE = MI->operands_end(); OI != OE; ++OI) { |
| 1130 | const MachineOperand &MO = *OI; |
| 1131 | if (!MO.isReg() || MO.getReg() != Reg) |
| 1132 | continue; |
| 1133 | |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1134 | if (MO.isDef()) { |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1135 | if (!isStartValid) { |
| 1136 | if (LII->end.isDead()) { |
| 1137 | SlotIndex prevStart; |
| 1138 | if (LII != LI.begin()) |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1139 | prevStart = std::prev(LII)->start; |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1140 | |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1141 | // FIXME: This could be more efficient if there was a |
| 1142 | // removeSegment method that returned an iterator. |
| 1143 | LI.removeSegment(*LII, true); |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1144 | if (prevStart.isValid()) |
| 1145 | LII = LI.find(prevStart); |
| 1146 | else |
| 1147 | LII = LI.begin(); |
| 1148 | } else { |
| 1149 | LII->start = instrIdx.getRegSlot(); |
| 1150 | LII->valno->def = instrIdx.getRegSlot(); |
| 1151 | if (MO.getSubReg() && !MO.isUndef()) |
| 1152 | lastUseIdx = instrIdx.getRegSlot(); |
| 1153 | else |
| 1154 | lastUseIdx = SlotIndex(); |
| 1155 | continue; |
| 1156 | } |
| 1157 | } |
| 1158 | |
| 1159 | if (!lastUseIdx.isValid()) { |
| 1160 | VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(), |
| 1161 | VNInfoAllocator); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 1162 | LiveRange::Segment S(instrIdx.getRegSlot(), |
| 1163 | instrIdx.getDeadSlot(), VNI); |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1164 | LII = LI.addSegment(S); |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1165 | } else if (LII->start != instrIdx.getRegSlot()) { |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1166 | VNInfo *VNI = LI.getNextValue(instrIdx.getRegSlot(), |
| 1167 | VNInfoAllocator); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 1168 | LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI); |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1169 | LII = LI.addSegment(S); |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1170 | } |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1171 | |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1172 | if (MO.getSubReg() && !MO.isUndef()) |
| 1173 | lastUseIdx = instrIdx.getRegSlot(); |
| 1174 | else |
| 1175 | lastUseIdx = SlotIndex(); |
| 1176 | } else if (MO.isUse()) { |
| 1177 | // FIXME: This should probably be handled outside of this branch, |
| 1178 | // either as part of the def case (for defs inside of the region) or |
| 1179 | // after the loop over the region. |
| 1180 | if (!isEndValid && !LII->end.isBlock()) |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1181 | LII->end = instrIdx.getRegSlot(); |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1182 | if (!lastUseIdx.isValid()) |
| 1183 | lastUseIdx = instrIdx.getRegSlot(); |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1184 | } |
| 1185 | } |
| 1186 | } |
| 1187 | } |
| 1188 | } |