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) |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 50 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) |
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 | |
Matthias Braun | e3d3b88 | 2014-12-10 01:12:30 +0000 | [diff] [blame] | 65 | static cl::opt<bool> EnableSubRegLiveness( |
| 66 | "enable-subreg-liveness", cl::Hidden, cl::init(true), |
| 67 | cl::desc("Enable subregister liveness tracking.")); |
| 68 | |
Quentin Colombet | a8cb36e | 2015-02-06 18:42:41 +0000 | [diff] [blame] | 69 | namespace llvm { |
| 70 | cl::opt<bool> UseSegmentSetForPhysRegs( |
| 71 | "use-segment-set-for-physregs", cl::Hidden, cl::init(true), |
| 72 | cl::desc( |
| 73 | "Use segment set for the computation of the live ranges of physregs.")); |
| 74 | } |
| 75 | |
Chris Lattner | bdf1210 | 2006-08-24 22:43:55 +0000 | [diff] [blame] | 76 | void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const { |
Dan Gohman | 0402315 | 2009-07-31 23:37:33 +0000 | [diff] [blame] | 77 | AU.setPreservesCFG(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 78 | AU.addRequired<AAResultsWrapperPass>(); |
| 79 | AU.addPreserved<AAResultsWrapperPass>(); |
Jakob Stoklund Olesen | fac770b | 2013-02-09 00:04:07 +0000 | [diff] [blame] | 80 | // LiveVariables isn't really required by this analysis, it is only required |
| 81 | // here to make sure it is live during TwoAddressInstructionPass and |
| 82 | // PHIElimination. This is temporary. |
Alkis Evlogimenos | a698308 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 83 | AU.addRequired<LiveVariables>(); |
Evan Cheng | 16bfe5b | 2010-08-17 21:00:37 +0000 | [diff] [blame] | 84 | AU.addPreserved<LiveVariables>(); |
Andrew Trick | 5188c00 | 2012-02-13 20:44:42 +0000 | [diff] [blame] | 85 | AU.addPreservedID(MachineLoopInfoID); |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 86 | AU.addRequiredTransitiveID(MachineDominatorsID); |
Bill Wendling | 0c20943 | 2008-01-04 20:54:55 +0000 | [diff] [blame] | 87 | AU.addPreservedID(MachineDominatorsID); |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 88 | AU.addPreserved<SlotIndexes>(); |
| 89 | AU.addRequiredTransitive<SlotIndexes>(); |
Alkis Evlogimenos | a698308 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 90 | MachineFunctionPass::getAnalysisUsage(AU); |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 93 | LiveIntervals::LiveIntervals() : MachineFunctionPass(ID), |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 94 | DomTree(nullptr), LRCalc(nullptr) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 95 | initializeLiveIntervalsPass(*PassRegistry::getPassRegistry()); |
| 96 | } |
| 97 | |
| 98 | LiveIntervals::~LiveIntervals() { |
| 99 | delete LRCalc; |
| 100 | } |
| 101 | |
Chris Lattner | bdf1210 | 2006-08-24 22:43:55 +0000 | [diff] [blame] | 102 | void LiveIntervals::releaseMemory() { |
Owen Anderson | 51f689a | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 103 | // Free the live intervals themselves. |
Jakob Stoklund Olesen | c61edda | 2012-06-22 20:37:52 +0000 | [diff] [blame] | 104 | for (unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i) |
| 105 | delete VirtRegIntervals[TargetRegisterInfo::index2VirtReg(i)]; |
| 106 | VirtRegIntervals.clear(); |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 107 | RegMaskSlots.clear(); |
| 108 | RegMaskBits.clear(); |
Jakob Stoklund Olesen | 25c4195 | 2012-02-10 01:26:29 +0000 | [diff] [blame] | 109 | RegMaskBlocks.clear(); |
Lang Hames | dab7b06 | 2009-07-09 03:57:02 +0000 | [diff] [blame] | 110 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 111 | for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i) |
| 112 | delete RegUnitRanges[i]; |
| 113 | RegUnitRanges.clear(); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 114 | |
Benjamin Kramer | a000002 | 2010-06-26 11:30:59 +0000 | [diff] [blame] | 115 | // Release VNInfo memory regions, VNInfo objects don't need to be dtor'd. |
| 116 | VNInfoAllocator.Reset(); |
Alkis Evlogimenos | 50d97e3 | 2004-01-31 19:59:32 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Jakob Stoklund Olesen | 6d13b8f | 2013-08-14 17:28:46 +0000 | [diff] [blame] | 119 | /// runOnMachineFunction - calculates LiveIntervals |
Owen Anderson | 4f8e1ad | 2008-05-28 20:54:50 +0000 | [diff] [blame] | 120 | /// |
| 121 | bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 122 | MF = &fn; |
| 123 | MRI = &MF->getRegInfo(); |
Eric Christopher | d3fa440 | 2014-10-14 06:26:53 +0000 | [diff] [blame] | 124 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 125 | TII = MF->getSubtarget().getInstrInfo(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 126 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 127 | Indexes = &getAnalysis<SlotIndexes>(); |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 128 | DomTree = &getAnalysis<MachineDominatorTree>(); |
Matthias Braun | e3d3b88 | 2014-12-10 01:12:30 +0000 | [diff] [blame] | 129 | |
| 130 | if (EnableSubRegLiveness && MF->getSubtarget().enableSubRegLiveness()) |
| 131 | MRI->enableSubRegLiveness(true); |
| 132 | |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 133 | if (!LRCalc) |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 134 | LRCalc = new LiveRangeCalc(); |
Owen Anderson | 4f8e1ad | 2008-05-28 20:54:50 +0000 | [diff] [blame] | 135 | |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 136 | // Allocate space for all virtual registers. |
| 137 | VirtRegIntervals.resize(MRI->getNumVirtRegs()); |
| 138 | |
Jakob Stoklund Olesen | fac770b | 2013-02-09 00:04:07 +0000 | [diff] [blame] | 139 | computeVirtRegs(); |
| 140 | computeRegMasks(); |
Jakob Stoklund Olesen | 51c63e6 | 2012-06-20 23:31:34 +0000 | [diff] [blame] | 141 | computeLiveInRegUnits(); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 142 | |
Andrew Trick | 8d02e91 | 2013-06-21 18:33:23 +0000 | [diff] [blame] | 143 | if (EnablePrecomputePhysRegs) { |
| 144 | // For stress testing, precompute live ranges of all physical register |
| 145 | // units, including reserved registers. |
| 146 | for (unsigned i = 0, e = TRI->getNumRegUnits(); i != e; ++i) |
| 147 | getRegUnit(i); |
| 148 | } |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 149 | DEBUG(dump()); |
Alkis Evlogimenos | a698308 | 2004-08-04 09:46:26 +0000 | [diff] [blame] | 150 | return true; |
Alkis Evlogimenos | 0e9ded7 | 2003-11-20 03:32:25 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 153 | /// print - Implement the dump method. |
Chris Lattner | 1362602 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 154 | void LiveIntervals::print(raw_ostream &OS, const Module* ) const { |
Chris Lattner | a6f074f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 155 | OS << "********** INTERVALS **********\n"; |
Jakob Stoklund Olesen | 20d25a7 | 2012-02-14 23:46:21 +0000 | [diff] [blame] | 156 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 157 | // Dump the regunits. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 158 | for (unsigned i = 0, e = RegUnitRanges.size(); i != e; ++i) |
| 159 | if (LiveRange *LR = RegUnitRanges[i]) |
Matthias Braun | f6fe6bf | 2013-10-10 21:29:05 +0000 | [diff] [blame] | 160 | OS << PrintRegUnit(i, TRI) << ' ' << *LR << '\n'; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 161 | |
Jakob Stoklund Olesen | 20d25a7 | 2012-02-14 23:46:21 +0000 | [diff] [blame] | 162 | // Dump the virtregs. |
Jakob Stoklund Olesen | c61edda | 2012-06-22 20:37:52 +0000 | [diff] [blame] | 163 | for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { |
| 164 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
| 165 | if (hasInterval(Reg)) |
Matthias Braun | f6fe6bf | 2013-10-10 21:29:05 +0000 | [diff] [blame] | 166 | OS << getInterval(Reg) << '\n'; |
Jakob Stoklund Olesen | c61edda | 2012-06-22 20:37:52 +0000 | [diff] [blame] | 167 | } |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 168 | |
Jakob Stoklund Olesen | 13d5562 | 2012-11-09 19:18:49 +0000 | [diff] [blame] | 169 | OS << "RegMasks:"; |
| 170 | for (unsigned i = 0, e = RegMaskSlots.size(); i != e; ++i) |
| 171 | OS << ' ' << RegMaskSlots[i]; |
| 172 | OS << '\n'; |
| 173 | |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 174 | printInstrs(OS); |
| 175 | } |
| 176 | |
| 177 | void LiveIntervals::printInstrs(raw_ostream &OS) const { |
Chris Lattner | a6f074f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 178 | OS << "********** MACHINEINSTRS **********\n"; |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 179 | MF->print(OS, Indexes); |
Chris Lattner | b0b707f | 2004-09-30 15:59:17 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 182 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 183 | void LiveIntervals::dumpInstrs() const { |
David Greene | 1a51a21 | 2010-01-04 22:49:02 +0000 | [diff] [blame] | 184 | printInstrs(dbgs()); |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 185 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 186 | #endif |
Evan Cheng | 7f78959 | 2009-09-14 21:33:42 +0000 | [diff] [blame] | 187 | |
Owen Anderson | 51f689a | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 188 | LiveInterval* LiveIntervals::createInterval(unsigned reg) { |
Aaron Ballman | 0499904 | 2013-11-13 00:15:44 +0000 | [diff] [blame] | 189 | float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ? |
| 190 | llvm::huge_valf : 0.0F; |
Owen Anderson | 51f689a | 2008-08-13 21:49:13 +0000 | [diff] [blame] | 191 | return new LiveInterval(reg, Weight); |
Alkis Evlogimenos | 237f203 | 2004-04-09 18:07:57 +0000 | [diff] [blame] | 192 | } |
Evan Cheng | be51f28 | 2007-11-12 06:35:08 +0000 | [diff] [blame] | 193 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 194 | |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 195 | /// computeVirtRegInterval - Compute the live interval of a virtual register, |
| 196 | /// based on defs and uses. |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 197 | void LiveIntervals::computeVirtRegInterval(LiveInterval &LI) { |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 198 | assert(LRCalc && "LRCalc not initialized."); |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 199 | assert(LI.empty() && "Should only compute empty intervals."); |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 200 | bool ShouldTrackSubRegLiveness = MRI->shouldTrackSubRegLiveness(LI.reg); |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 201 | LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator()); |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 202 | LRCalc->calculate(LI, ShouldTrackSubRegLiveness); |
| 203 | bool SeparatedComponents = computeDeadValues(LI, nullptr); |
| 204 | if (SeparatedComponents) { |
| 205 | assert(ShouldTrackSubRegLiveness |
| 206 | && "Separated components should only occur for unused subreg defs"); |
| 207 | SmallVector<LiveInterval*, 8> SplitLIs; |
| 208 | splitSeparateComponents(LI, SplitLIs); |
| 209 | } |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 212 | void LiveIntervals::computeVirtRegs() { |
| 213 | for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { |
| 214 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
| 215 | if (MRI->reg_nodbg_empty(Reg)) |
| 216 | continue; |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 217 | createAndComputeVirtRegInterval(Reg); |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 218 | } |
| 219 | } |
| 220 | |
| 221 | void LiveIntervals::computeRegMasks() { |
| 222 | RegMaskBlocks.resize(MF->getNumBlockIDs()); |
| 223 | |
| 224 | // Find all instructions with regmask operands. |
Reid Kleckner | e535c1f | 2015-11-06 02:01:02 +0000 | [diff] [blame^] | 225 | for (MachineBasicBlock &MBB : *MF) { |
| 226 | std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[MBB.getNumber()]; |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 227 | RMB.first = RegMaskSlots.size(); |
Reid Kleckner | e535c1f | 2015-11-06 02:01:02 +0000 | [diff] [blame^] | 228 | for (MachineInstr &MI : MBB) { |
| 229 | for (const MachineOperand &MO : MI.operands()) { |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 230 | if (!MO.isRegMask()) |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 231 | continue; |
Reid Kleckner | e535c1f | 2015-11-06 02:01:02 +0000 | [diff] [blame^] | 232 | RegMaskSlots.push_back(Indexes->getInstructionIndex(&MI).getRegSlot()); |
| 233 | RegMaskBits.push_back(MO.getRegMask()); |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 234 | } |
Reid Kleckner | e535c1f | 2015-11-06 02:01:02 +0000 | [diff] [blame^] | 235 | } |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 236 | // Compute the number of register mask instructions in this block. |
Dmitri Gribenko | ca1e27b | 2012-09-10 21:26:47 +0000 | [diff] [blame] | 237 | RMB.second = RegMaskSlots.size() - RMB.first; |
Jakob Stoklund Olesen | 7dfe7ab | 2012-07-27 21:56:39 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
Jakob Stoklund Olesen | 4021a7b | 2012-07-27 20:58:46 +0000 | [diff] [blame] | 240 | |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 241 | //===----------------------------------------------------------------------===// |
| 242 | // Register Unit Liveness |
| 243 | //===----------------------------------------------------------------------===// |
| 244 | // |
| 245 | // Fixed interference typically comes from ABI boundaries: Function arguments |
| 246 | // and return values are passed in fixed registers, and so are exception |
| 247 | // pointers entering landing pads. Certain instructions require values to be |
| 248 | // present in specific registers. That is also represented through fixed |
| 249 | // interference. |
| 250 | // |
| 251 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 252 | /// computeRegUnitInterval - Compute the live range of a register unit, based |
| 253 | /// 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] | 254 | /// or contain only dead phi-defs from ABI blocks. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 255 | void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 256 | assert(LRCalc && "LRCalc not initialized."); |
| 257 | LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator()); |
| 258 | |
| 259 | // The physregs aliasing Unit are the roots and their super-registers. |
| 260 | // Create all values as dead defs before extending to uses. Note that roots |
| 261 | // may share super-registers. That's OK because createDeadDefs() is |
| 262 | // idempotent. It is very rare for a register unit to have multiple roots, so |
| 263 | // uniquing super-registers is probably not worthwhile. |
| 264 | for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) { |
Chad Rosier | 682ae15 | 2013-05-22 22:36:55 +0000 | [diff] [blame] | 265 | for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true); |
| 266 | Supers.isValid(); ++Supers) { |
Matthias Braun | c3a72c2 | 2014-12-15 21:36:35 +0000 | [diff] [blame] | 267 | if (!MRI->reg_empty(*Supers)) |
| 268 | LRCalc->createDeadDefs(LR, *Supers); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | // Now extend LR to reach all uses. |
| 273 | // Ignore uses of reserved registers. We only track defs of those. |
| 274 | for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) { |
| 275 | for (MCSuperRegIterator Supers(*Roots, TRI, /*IncludeSelf=*/true); |
| 276 | Supers.isValid(); ++Supers) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 277 | unsigned Reg = *Supers; |
Matthias Braun | c3a72c2 | 2014-12-15 21:36:35 +0000 | [diff] [blame] | 278 | if (!MRI->isReserved(Reg) && !MRI->reg_empty(Reg)) |
| 279 | LRCalc->extendToUses(LR, Reg); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 280 | } |
| 281 | } |
Quentin Colombet | a8cb36e | 2015-02-06 18:42:41 +0000 | [diff] [blame] | 282 | |
| 283 | // Flush the segment set to the segment vector. |
| 284 | if (UseSegmentSetForPhysRegs) |
| 285 | LR.flushSegmentSet(); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | |
| 289 | /// computeLiveInRegUnits - Precompute the live ranges of any register units |
| 290 | /// that are live-in to an ABI block somewhere. Register values can appear |
| 291 | /// without a corresponding def when entering the entry block or a landing pad. |
| 292 | /// |
| 293 | void LiveIntervals::computeLiveInRegUnits() { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 294 | RegUnitRanges.resize(TRI->getNumRegUnits()); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 295 | DEBUG(dbgs() << "Computing live-in reg-units in ABI blocks.\n"); |
| 296 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 297 | // Keep track of the live range sets allocated. |
| 298 | SmallVector<unsigned, 8> NewRanges; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 299 | |
| 300 | // Check all basic blocks for live-ins. |
| 301 | for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end(); |
| 302 | MFI != MFE; ++MFI) { |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 303 | const MachineBasicBlock *MBB = &*MFI; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 304 | |
| 305 | // We only care about ABI blocks: Entry + landing pads. |
Reid Kleckner | 0e28823 | 2015-08-27 23:27:47 +0000 | [diff] [blame] | 306 | if ((MFI != MF->begin() && !MBB->isEHPad()) || MBB->livein_empty()) |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 307 | continue; |
| 308 | |
| 309 | // Create phi-defs at Begin for all live-in registers. |
| 310 | SlotIndex Begin = Indexes->getMBBStartIdx(MBB); |
| 311 | DEBUG(dbgs() << Begin << "\tBB#" << MBB->getNumber()); |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 312 | for (const auto &LI : MBB->liveins()) { |
| 313 | for (MCRegUnitIterator Units(LI.PhysReg, TRI); Units.isValid(); ++Units) { |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 314 | unsigned Unit = *Units; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 315 | LiveRange *LR = RegUnitRanges[Unit]; |
| 316 | if (!LR) { |
Quentin Colombet | a8cb36e | 2015-02-06 18:42:41 +0000 | [diff] [blame] | 317 | // Use segment set to speed-up initial computation of the live range. |
| 318 | LR = RegUnitRanges[Unit] = new LiveRange(UseSegmentSetForPhysRegs); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 319 | NewRanges.push_back(Unit); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 320 | } |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 321 | VNInfo *VNI = LR->createDeadDef(Begin, getVNInfoAllocator()); |
Matt Beaumont-Gay | 7ba769b | 2012-06-05 23:00:03 +0000 | [diff] [blame] | 322 | (void)VNI; |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 323 | DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id); |
| 324 | } |
| 325 | } |
| 326 | DEBUG(dbgs() << '\n'); |
| 327 | } |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 328 | DEBUG(dbgs() << "Created " << NewRanges.size() << " new intervals.\n"); |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 329 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 330 | // Compute the 'normal' part of the ranges. |
| 331 | for (unsigned i = 0, e = NewRanges.size(); i != e; ++i) { |
| 332 | unsigned Unit = NewRanges[i]; |
| 333 | computeRegUnitRange(*RegUnitRanges[Unit], Unit); |
| 334 | } |
Jakob Stoklund Olesen | 12e03da | 2012-06-05 22:02:15 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 338 | static void createSegmentsForValues(LiveRange &LR, |
| 339 | iterator_range<LiveInterval::vni_iterator> VNIs) { |
| 340 | for (auto VNI : VNIs) { |
| 341 | if (VNI->isUnused()) |
| 342 | continue; |
| 343 | SlotIndex Def = VNI->def; |
| 344 | LR.addSegment(LiveRange::Segment(Def, Def.getDeadSlot(), VNI)); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | typedef SmallVector<std::pair<SlotIndex, VNInfo*>, 16> ShrinkToUsesWorkList; |
| 349 | |
| 350 | static void extendSegmentsToUses(LiveRange &LR, const SlotIndexes &Indexes, |
| 351 | ShrinkToUsesWorkList &WorkList, |
| 352 | const LiveRange &OldRange) { |
| 353 | // Keep track of the PHIs that are in use. |
| 354 | SmallPtrSet<VNInfo*, 8> UsedPHIs; |
| 355 | // Blocks that have already been added to WorkList as live-out. |
| 356 | SmallPtrSet<MachineBasicBlock*, 16> LiveOut; |
| 357 | |
| 358 | // Extend intervals to reach all uses in WorkList. |
| 359 | while (!WorkList.empty()) { |
| 360 | SlotIndex Idx = WorkList.back().first; |
| 361 | VNInfo *VNI = WorkList.back().second; |
| 362 | WorkList.pop_back(); |
| 363 | const MachineBasicBlock *MBB = Indexes.getMBBFromIndex(Idx.getPrevSlot()); |
| 364 | SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB); |
| 365 | |
| 366 | // Extend the live range for VNI to be live at Idx. |
| 367 | if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) { |
| 368 | assert(ExtVNI == VNI && "Unexpected existing value number"); |
| 369 | (void)ExtVNI; |
| 370 | // Is this a PHIDef we haven't seen before? |
| 371 | if (!VNI->isPHIDef() || VNI->def != BlockStart || |
| 372 | !UsedPHIs.insert(VNI).second) |
| 373 | continue; |
| 374 | // The PHI is live, make sure the predecessors are live-out. |
| 375 | for (auto &Pred : MBB->predecessors()) { |
| 376 | if (!LiveOut.insert(Pred).second) |
| 377 | continue; |
| 378 | SlotIndex Stop = Indexes.getMBBEndIdx(Pred); |
| 379 | // A predecessor is not required to have a live-out value for a PHI. |
| 380 | if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop)) |
| 381 | WorkList.push_back(std::make_pair(Stop, PVNI)); |
| 382 | } |
| 383 | continue; |
| 384 | } |
| 385 | |
| 386 | // VNI is live-in to MBB. |
| 387 | DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); |
| 388 | LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); |
| 389 | |
| 390 | // Make sure VNI is live-out from the predecessors. |
| 391 | for (auto &Pred : MBB->predecessors()) { |
| 392 | if (!LiveOut.insert(Pred).second) |
| 393 | continue; |
| 394 | SlotIndex Stop = Indexes.getMBBEndIdx(Pred); |
| 395 | assert(OldRange.getVNInfoBefore(Stop) == VNI && |
| 396 | "Wrong value out of predecessor"); |
| 397 | WorkList.push_back(std::make_pair(Stop, VNI)); |
| 398 | } |
| 399 | } |
| 400 | } |
| 401 | |
Jakob Stoklund Olesen | 8630840 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 402 | bool LiveIntervals::shrinkToUses(LiveInterval *li, |
Jakob Stoklund Olesen | 71c380f | 2011-03-07 23:29:10 +0000 | [diff] [blame] | 403 | SmallVectorImpl<MachineInstr*> *dead) { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 404 | DEBUG(dbgs() << "Shrink: " << *li << '\n'); |
| 405 | assert(TargetRegisterInfo::isVirtualRegister(li->reg) |
Lang Hames | c405ac4 | 2012-01-03 20:05:57 +0000 | [diff] [blame] | 406 | && "Can only shrink virtual registers"); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 407 | |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 408 | // Shrink subregister live ranges. |
Matthias Braun | 0d4cebd | 2015-07-16 18:55:35 +0000 | [diff] [blame] | 409 | bool NeedsCleanup = false; |
Matthias Braun | 09afa1e | 2014-12-11 00:59:06 +0000 | [diff] [blame] | 410 | for (LiveInterval::SubRange &S : li->subranges()) { |
| 411 | shrinkToUses(S, li->reg); |
Matthias Braun | 0d4cebd | 2015-07-16 18:55:35 +0000 | [diff] [blame] | 412 | if (S.empty()) |
| 413 | NeedsCleanup = true; |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 414 | } |
Matthias Braun | 0d4cebd | 2015-07-16 18:55:35 +0000 | [diff] [blame] | 415 | if (NeedsCleanup) |
| 416 | li->removeEmptySubRanges(); |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 417 | |
| 418 | // Find all the values used, including PHI kills. |
| 419 | ShrinkToUsesWorkList WorkList; |
Jakob Stoklund Olesen | b8b1d4c | 2011-09-15 15:24:16 +0000 | [diff] [blame] | 420 | |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 421 | // Visit all instructions reading li->reg. |
Owen Anderson | abb90c9 | 2014-03-13 06:02:25 +0000 | [diff] [blame] | 422 | for (MachineRegisterInfo::reg_instr_iterator |
| 423 | I = MRI->reg_instr_begin(li->reg), E = MRI->reg_instr_end(); |
| 424 | I != E; ) { |
| 425 | MachineInstr *UseMI = &*(I++); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 426 | if (UseMI->isDebugValue() || !UseMI->readsVirtualRegister(li->reg)) |
| 427 | continue; |
Jakob Stoklund Olesen | 6979790 | 2011-11-13 23:53:25 +0000 | [diff] [blame] | 428 | SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot(); |
Matthias Braun | 88dd0ab | 2013-10-10 21:28:52 +0000 | [diff] [blame] | 429 | LiveQueryResult LRQ = li->Query(Idx); |
Jakob Stoklund Olesen | 02d83e3 | 2012-05-20 02:54:52 +0000 | [diff] [blame] | 430 | VNInfo *VNI = LRQ.valueIn(); |
Jakob Stoklund Olesen | fdc0994 | 2011-03-18 03:06:04 +0000 | [diff] [blame] | 431 | if (!VNI) { |
| 432 | // This shouldn't happen: readsVirtualRegister returns true, but there is |
| 433 | // no live value. It is likely caused by a target getting <undef> flags |
| 434 | // wrong. |
| 435 | DEBUG(dbgs() << Idx << '\t' << *UseMI |
| 436 | << "Warning: Instr claims to read non-existent value in " |
| 437 | << *li << '\n'); |
| 438 | continue; |
| 439 | } |
Jakob Stoklund Olesen | 7e6004a | 2011-11-14 18:45:38 +0000 | [diff] [blame] | 440 | // Special case: An early-clobber tied operand reads and writes the |
Jakob Stoklund Olesen | 02d83e3 | 2012-05-20 02:54:52 +0000 | [diff] [blame] | 441 | // register one slot early. |
| 442 | if (VNInfo *DefVNI = LRQ.valueDefined()) |
| 443 | Idx = DefVNI->def; |
| 444 | |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 445 | WorkList.push_back(std::make_pair(Idx, VNI)); |
| 446 | } |
| 447 | |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 448 | // Create new live ranges with only minimal live segments per def. |
| 449 | LiveRange NewLR; |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 450 | createSegmentsForValues(NewLR, make_range(li->vni_begin(), li->vni_end())); |
| 451 | extendSegmentsToUses(NewLR, *Indexes, WorkList, *li); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 452 | |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 453 | // Move the trimmed segments back. |
| 454 | li->segments.swap(NewLR.segments); |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 455 | |
| 456 | // Handle dead values. |
| 457 | bool CanSeparate = computeDeadValues(*li, dead); |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 458 | DEBUG(dbgs() << "Shrunk: " << *li << '\n'); |
| 459 | return CanSeparate; |
| 460 | } |
| 461 | |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 462 | bool LiveIntervals::computeDeadValues(LiveInterval &LI, |
Pete Cooper | 7223557 | 2014-06-03 22:42:10 +0000 | [diff] [blame] | 463 | SmallVectorImpl<MachineInstr*> *dead) { |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 464 | bool MayHaveSplitComponents = false; |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 465 | for (auto VNI : LI.valnos) { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 466 | if (VNI->isUnused()) |
| 467 | continue; |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 468 | SlotIndex Def = VNI->def; |
| 469 | LiveRange::iterator I = LI.FindSegmentContaining(Def); |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 470 | assert(I != LI.end() && "Missing segment for VNI"); |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 471 | |
| 472 | // Is the register live before? Otherwise we may have to add a read-undef |
| 473 | // flag for subregister defs. |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 474 | bool DeadBeforeDef = false; |
| 475 | unsigned VReg = LI.reg; |
| 476 | if (MRI->shouldTrackSubRegLiveness(VReg)) { |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 477 | if ((I == LI.begin() || std::prev(I)->end < Def) && !VNI->isPHIDef()) { |
| 478 | MachineInstr *MI = getInstructionFromIndex(Def); |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 479 | MI->addRegisterDefReadUndef(VReg); |
| 480 | DeadBeforeDef = true; |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | |
| 484 | if (I->end != Def.getDeadSlot()) |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 485 | continue; |
Jakob Stoklund Olesen | 81eb18d | 2011-03-02 00:33:01 +0000 | [diff] [blame] | 486 | if (VNI->isPHIDef()) { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 487 | // This is a dead PHI. Remove it. |
Jakob Stoklund Olesen | daae19f | 2012-08-03 20:59:32 +0000 | [diff] [blame] | 488 | VNI->markUnused(); |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 489 | LI.removeSegment(I); |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 490 | DEBUG(dbgs() << "Dead PHI at " << Def << " may separate interval\n"); |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 491 | MayHaveSplitComponents = true; |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 492 | } else { |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 493 | // This is a dead def. Make sure the instruction knows. |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 494 | MachineInstr *MI = getInstructionFromIndex(Def); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 495 | assert(MI && "No instruction defining live value"); |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 496 | MI->addRegisterDead(VReg, TRI); |
| 497 | |
| 498 | // If we have a dead def that is completely separate from the rest of |
| 499 | // the liverange then we rewrite it to use a different VReg to not violate |
| 500 | // the rule that the liveness of a virtual register forms a connected |
| 501 | // component. This should only happen if subregister liveness is tracked. |
| 502 | if (DeadBeforeDef) |
| 503 | MayHaveSplitComponents = true; |
| 504 | |
Jakob Stoklund Olesen | 71c380f | 2011-03-07 23:29:10 +0000 | [diff] [blame] | 505 | if (dead && MI->allDefsAreDead()) { |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 506 | DEBUG(dbgs() << "All defs dead: " << Def << '\t' << *MI); |
Jakob Stoklund Olesen | 71c380f | 2011-03-07 23:29:10 +0000 | [diff] [blame] | 507 | dead->push_back(MI); |
| 508 | } |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 509 | } |
| 510 | } |
Matthias Braun | 73e4221 | 2015-09-22 22:37:44 +0000 | [diff] [blame] | 511 | return MayHaveSplitComponents; |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 512 | } |
| 513 | |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 514 | void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg) |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 515 | { |
| 516 | DEBUG(dbgs() << "Shrink: " << SR << '\n'); |
| 517 | assert(TargetRegisterInfo::isVirtualRegister(Reg) |
| 518 | && "Can only shrink virtual registers"); |
| 519 | // Find all the values used, including PHI kills. |
| 520 | ShrinkToUsesWorkList WorkList; |
| 521 | |
| 522 | // Visit all instructions reading Reg. |
| 523 | SlotIndex LastIdx; |
| 524 | for (MachineOperand &MO : MRI->reg_operands(Reg)) { |
| 525 | MachineInstr *UseMI = MO.getParent(); |
| 526 | if (UseMI->isDebugValue()) |
| 527 | continue; |
| 528 | // Maybe the operand is for a subregister we don't care about. |
| 529 | unsigned SubReg = MO.getSubReg(); |
| 530 | if (SubReg != 0) { |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 531 | LaneBitmask LaneMask = TRI->getSubRegIndexLaneMask(SubReg); |
| 532 | if ((LaneMask & SR.LaneMask) == 0) |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 533 | continue; |
| 534 | } |
| 535 | // We only need to visit each instruction once. |
| 536 | SlotIndex Idx = getInstructionIndex(UseMI).getRegSlot(); |
| 537 | if (Idx == LastIdx) |
| 538 | continue; |
| 539 | LastIdx = Idx; |
| 540 | |
| 541 | LiveQueryResult LRQ = SR.Query(Idx); |
| 542 | VNInfo *VNI = LRQ.valueIn(); |
| 543 | // For Subranges it is possible that only undef values are left in that |
| 544 | // part of the subregister, so there is no real liverange at the use |
| 545 | if (!VNI) |
| 546 | continue; |
| 547 | |
| 548 | // Special case: An early-clobber tied operand reads and writes the |
| 549 | // register one slot early. |
| 550 | if (VNInfo *DefVNI = LRQ.valueDefined()) |
| 551 | Idx = DefVNI->def; |
| 552 | |
| 553 | WorkList.push_back(std::make_pair(Idx, VNI)); |
| 554 | } |
| 555 | |
| 556 | // Create a new live ranges with only minimal live segments per def. |
| 557 | LiveRange NewLR; |
| 558 | createSegmentsForValues(NewLR, make_range(SR.vni_begin(), SR.vni_end())); |
| 559 | extendSegmentsToUses(NewLR, *Indexes, WorkList, SR); |
| 560 | |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 561 | // Move the trimmed ranges back. |
| 562 | SR.segments.swap(NewLR.segments); |
Matthias Braun | 15abf37 | 2014-12-18 19:58:52 +0000 | [diff] [blame] | 563 | |
| 564 | // Remove dead PHI value numbers |
| 565 | for (auto VNI : SR.valnos) { |
| 566 | if (VNI->isUnused()) |
| 567 | continue; |
| 568 | const LiveRange::Segment *Segment = SR.getSegmentContaining(VNI->def); |
| 569 | assert(Segment != nullptr && "Missing segment for VNI"); |
| 570 | if (Segment->end != VNI->def.getDeadSlot()) |
| 571 | continue; |
| 572 | if (VNI->isPHIDef()) { |
| 573 | // This is a dead PHI. Remove it. |
| 574 | VNI->markUnused(); |
| 575 | SR.removeSegment(*Segment); |
| 576 | DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n"); |
| 577 | } |
| 578 | } |
| 579 | |
Matthias Braun | 20e1f38 | 2014-12-10 01:12:18 +0000 | [diff] [blame] | 580 | DEBUG(dbgs() << "Shrunk: " << SR << '\n'); |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 583 | void LiveIntervals::extendToIndices(LiveRange &LR, |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 584 | ArrayRef<SlotIndex> Indices) { |
| 585 | assert(LRCalc && "LRCalc not initialized."); |
| 586 | LRCalc->reset(MF, getSlotIndexes(), DomTree, &getVNInfoAllocator()); |
| 587 | for (unsigned i = 0, e = Indices.size(); i != e; ++i) |
Matthias Braun | 2d5c32b | 2013-10-10 21:28:57 +0000 | [diff] [blame] | 588 | LRCalc->extend(LR, Indices[i]); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 589 | } |
| 590 | |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 591 | void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill, |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 592 | SmallVectorImpl<SlotIndex> *EndPoints) { |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 593 | LiveQueryResult LRQ = LR.Query(Kill); |
| 594 | VNInfo *VNI = LRQ.valueOutOrDead(); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 595 | if (!VNI) |
| 596 | return; |
| 597 | |
| 598 | MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill); |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 599 | SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 600 | |
| 601 | // If VNI isn't live out from KillMBB, the value is trivially pruned. |
| 602 | if (LRQ.endPoint() < MBBEnd) { |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 603 | LR.removeSegment(Kill, LRQ.endPoint()); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 604 | if (EndPoints) EndPoints->push_back(LRQ.endPoint()); |
| 605 | return; |
| 606 | } |
| 607 | |
| 608 | // VNI is live out of KillMBB. |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 609 | LR.removeSegment(Kill, MBBEnd); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 610 | if (EndPoints) EndPoints->push_back(MBBEnd); |
| 611 | |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 612 | // Find all blocks that are reachable from KillMBB without leaving VNI's live |
| 613 | // range. It is possible that KillMBB itself is reachable, so start a DFS |
| 614 | // from each successor. |
| 615 | typedef SmallPtrSet<MachineBasicBlock*, 9> VisitedTy; |
| 616 | VisitedTy Visited; |
| 617 | for (MachineBasicBlock::succ_iterator |
| 618 | SuccI = KillMBB->succ_begin(), SuccE = KillMBB->succ_end(); |
| 619 | SuccI != SuccE; ++SuccI) { |
| 620 | for (df_ext_iterator<MachineBasicBlock*, VisitedTy> |
| 621 | I = df_ext_begin(*SuccI, Visited), E = df_ext_end(*SuccI, Visited); |
| 622 | I != E;) { |
| 623 | MachineBasicBlock *MBB = *I; |
| 624 | |
| 625 | // Check if VNI is live in to MBB. |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 626 | SlotIndex MBBStart, MBBEnd; |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 627 | std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB); |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 628 | LiveQueryResult LRQ = LR.Query(MBBStart); |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 629 | if (LRQ.valueIn() != VNI) { |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 630 | // 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] | 631 | I.skipChildren(); |
| 632 | continue; |
| 633 | } |
| 634 | |
| 635 | // Prune the search if VNI is killed in MBB. |
| 636 | if (LRQ.endPoint() < MBBEnd) { |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 637 | LR.removeSegment(MBBStart, LRQ.endPoint()); |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 638 | if (EndPoints) EndPoints->push_back(LRQ.endPoint()); |
| 639 | I.skipChildren(); |
| 640 | continue; |
| 641 | } |
| 642 | |
| 643 | // VNI is live through MBB. |
Matthias Braun | 8970d84 | 2014-12-10 01:12:36 +0000 | [diff] [blame] | 644 | LR.removeSegment(MBBStart, MBBEnd); |
Jakob Stoklund Olesen | 2f6dfc7 | 2012-10-13 16:15:31 +0000 | [diff] [blame] | 645 | if (EndPoints) EndPoints->push_back(MBBEnd); |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 646 | ++I; |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 647 | } |
Jakob Stoklund Olesen | 0bb3dd7 | 2012-09-17 23:03:25 +0000 | [diff] [blame] | 648 | } |
| 649 | } |
Jakob Stoklund Olesen | 55fc1d0 | 2011-02-08 00:03:05 +0000 | [diff] [blame] | 650 | |
Evan Cheng | be51f28 | 2007-11-12 06:35:08 +0000 | [diff] [blame] | 651 | //===----------------------------------------------------------------------===// |
| 652 | // Register allocator hooks. |
| 653 | // |
| 654 | |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 655 | void LiveIntervals::addKillFlags(const VirtRegMap *VRM) { |
| 656 | // Keep track of regunit ranges. |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 657 | SmallVector<std::pair<const LiveRange*, LiveRange::const_iterator>, 8> RU; |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 658 | // Keep track of subregister ranges. |
| 659 | SmallVector<std::pair<const LiveInterval::SubRange*, |
| 660 | LiveRange::const_iterator>, 4> SRs; |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 661 | |
Jakob Stoklund Olesen | 781e0b9 | 2012-06-20 23:23:59 +0000 | [diff] [blame] | 662 | for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) { |
| 663 | unsigned Reg = TargetRegisterInfo::index2VirtReg(i); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 664 | if (MRI->reg_nodbg_empty(Reg)) |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 665 | continue; |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 666 | const LiveInterval &LI = getInterval(Reg); |
| 667 | if (LI.empty()) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 668 | continue; |
| 669 | |
| 670 | // Find the regunit intervals for the assigned register. They may overlap |
| 671 | // the virtual register live range, cancelling any kills. |
| 672 | RU.clear(); |
| 673 | for (MCRegUnitIterator Units(VRM->getPhys(Reg), TRI); Units.isValid(); |
| 674 | ++Units) { |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 675 | const LiveRange &RURange = getRegUnit(*Units); |
| 676 | if (RURange.empty()) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 677 | continue; |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 678 | RU.push_back(std::make_pair(&RURange, RURange.find(LI.begin()->end))); |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 679 | } |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 680 | |
Matthias Braun | a25e13a | 2015-03-19 00:21:58 +0000 | [diff] [blame] | 681 | if (MRI->subRegLivenessEnabled()) { |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 682 | SRs.clear(); |
| 683 | for (const LiveInterval::SubRange &SR : LI.subranges()) { |
| 684 | SRs.push_back(std::make_pair(&SR, SR.find(LI.begin()->end))); |
| 685 | } |
| 686 | } |
| 687 | |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 688 | // Every instruction that kills Reg corresponds to a segment range end |
| 689 | // point. |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 690 | for (LiveInterval::const_iterator RI = LI.begin(), RE = LI.end(); RI != RE; |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 691 | ++RI) { |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 692 | // A block index indicates an MBB edge. |
| 693 | if (RI->end.isBlock()) |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 694 | continue; |
| 695 | MachineInstr *MI = getInstructionFromIndex(RI->end); |
| 696 | if (!MI) |
| 697 | continue; |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 698 | |
Matthias Braun | c9d5c0f | 2013-10-04 16:52:58 +0000 | [diff] [blame] | 699 | // 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] | 700 | // happen when a physreg is defined as a copy of a virtreg: |
| 701 | // |
| 702 | // %EAX = COPY %vreg5 |
| 703 | // FOO %vreg5 <--- MI, cancel kill because %EAX is live. |
| 704 | // BAR %EAX<kill> |
| 705 | // |
| 706 | // There should be no kill flag on FOO when %vreg5 is rewritten as %EAX. |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 707 | for (auto &RUP : RU) { |
| 708 | const LiveRange &RURange = *RUP.first; |
Matthias Braun | f603c88 | 2014-12-24 02:11:43 +0000 | [diff] [blame] | 709 | LiveRange::const_iterator &I = RUP.second; |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 710 | if (I == RURange.end()) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 711 | continue; |
Matthias Braun | 7f8dece | 2014-12-20 01:54:48 +0000 | [diff] [blame] | 712 | I = RURange.advanceTo(I, RI->end); |
| 713 | if (I == RURange.end() || I->start >= RI->end) |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 714 | continue; |
| 715 | // I is overlapping RI. |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 716 | goto CancelKill; |
Jakob Stoklund Olesen | bb4bdd8 | 2012-09-06 18:15:18 +0000 | [diff] [blame] | 717 | } |
Matthias Braun | d70caaf | 2014-12-10 01:13:04 +0000 | [diff] [blame] | 718 | |
Matthias Braun | a25e13a | 2015-03-19 00:21:58 +0000 | [diff] [blame] | 719 | if (MRI->subRegLivenessEnabled()) { |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 720 | // When reading a partial undefined value we must not add a kill flag. |
| 721 | // The regalloc might have used the undef lane for something else. |
| 722 | // Example: |
| 723 | // %vreg1 = ... ; R32: %vreg1 |
| 724 | // %vreg2:high16 = ... ; R64: %vreg2 |
| 725 | // = read %vreg2<kill> ; R64: %vreg2 |
| 726 | // = read %vreg1 ; R32: %vreg1 |
| 727 | // The <kill> flag is correct for %vreg2, but the register allocator may |
| 728 | // assign R0L to %vreg1, and R0 to %vreg2 because the low 32bits of R0 |
| 729 | // are actually never written by %vreg2. After assignment the <kill> |
| 730 | // flag at the read instruction is invalid. |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 731 | LaneBitmask DefinedLanesMask; |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 732 | if (!SRs.empty()) { |
| 733 | // Compute a mask of lanes that are defined. |
| 734 | DefinedLanesMask = 0; |
| 735 | for (auto &SRP : SRs) { |
| 736 | const LiveInterval::SubRange &SR = *SRP.first; |
Matthias Braun | f603c88 | 2014-12-24 02:11:43 +0000 | [diff] [blame] | 737 | LiveRange::const_iterator &I = SRP.second; |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 738 | if (I == SR.end()) |
| 739 | continue; |
| 740 | I = SR.advanceTo(I, RI->end); |
| 741 | if (I == SR.end() || I->start >= RI->end) |
| 742 | continue; |
| 743 | // I is overlapping RI |
| 744 | DefinedLanesMask |= SR.LaneMask; |
Matthias Braun | d70caaf | 2014-12-10 01:13:04 +0000 | [diff] [blame] | 745 | } |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 746 | } else |
| 747 | DefinedLanesMask = ~0u; |
| 748 | |
| 749 | bool IsFullWrite = false; |
| 750 | for (const MachineOperand &MO : MI->operands()) { |
| 751 | if (!MO.isReg() || MO.getReg() != Reg) |
| 752 | continue; |
| 753 | if (MO.isUse()) { |
| 754 | // Reading any undefined lanes? |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 755 | LaneBitmask UseMask = TRI->getSubRegIndexLaneMask(MO.getSubReg()); |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 756 | if ((UseMask & ~DefinedLanesMask) != 0) |
| 757 | goto CancelKill; |
| 758 | } else if (MO.getSubReg() == 0) { |
| 759 | // Writing to the full register? |
| 760 | assert(MO.isDef()); |
| 761 | IsFullWrite = true; |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | // If an instruction writes to a subregister, a new segment starts in |
| 766 | // the LiveInterval. But as this is only overriding part of the register |
| 767 | // adding kill-flags is not correct here after registers have been |
| 768 | // assigned. |
| 769 | if (!IsFullWrite) { |
| 770 | // Next segment has to be adjacent in the subregister write case. |
| 771 | LiveRange::const_iterator N = std::next(RI); |
| 772 | if (N != LI.end() && N->start == RI->end) |
| 773 | goto CancelKill; |
Matthias Braun | d70caaf | 2014-12-10 01:13:04 +0000 | [diff] [blame] | 774 | } |
| 775 | } |
| 776 | |
Matthias Braun | 714c494 | 2014-12-20 01:54:50 +0000 | [diff] [blame] | 777 | MI->addRegisterKilled(Reg, nullptr); |
| 778 | continue; |
| 779 | CancelKill: |
| 780 | MI->clearRegisterKills(Reg, nullptr); |
Jakob Stoklund Olesen | f2b16dc | 2011-02-08 21:13:03 +0000 | [diff] [blame] | 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 785 | MachineBasicBlock* |
| 786 | LiveIntervals::intervalIsInOneMBB(const LiveInterval &LI) const { |
| 787 | // A local live range must be fully contained inside the block, meaning it is |
| 788 | // defined and killed at instructions, not at block boundaries. It is not |
| 789 | // live in or or out of any block. |
| 790 | // |
| 791 | // It is technically possible to have a PHI-defined live range identical to a |
| 792 | // single block, but we are going to return false in that case. |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 793 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 794 | SlotIndex Start = LI.beginIndex(); |
| 795 | if (Start.isBlock()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 796 | return nullptr; |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 797 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 798 | SlotIndex Stop = LI.endIndex(); |
| 799 | if (Stop.isBlock()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 800 | return nullptr; |
Lang Hames | 05fb963 | 2009-11-03 23:52:08 +0000 | [diff] [blame] | 801 | |
Jakob Stoklund Olesen | aa06de2 | 2012-02-10 01:23:55 +0000 | [diff] [blame] | 802 | // getMBBFromIndex doesn't need to search the MBB table when both indexes |
| 803 | // belong to proper instructions. |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 804 | MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start); |
| 805 | MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 806 | return MBB1 == MBB2 ? MBB1 : nullptr; |
Evan Cheng | 8e22379 | 2007-11-17 00:40:40 +0000 | [diff] [blame] | 807 | } |
| 808 | |
Jakob Stoklund Olesen | 06d6a53 | 2012-08-03 20:10:24 +0000 | [diff] [blame] | 809 | bool |
| 810 | LiveIntervals::hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const { |
Matthias Braun | 9676195 | 2014-12-10 23:07:54 +0000 | [diff] [blame] | 811 | for (const VNInfo *PHI : LI.valnos) { |
Jakob Stoklund Olesen | 06d6a53 | 2012-08-03 20:10:24 +0000 | [diff] [blame] | 812 | if (PHI->isUnused() || !PHI->isPHIDef()) |
| 813 | continue; |
| 814 | const MachineBasicBlock *PHIMBB = getMBBFromIndex(PHI->def); |
| 815 | // Conservatively return true instead of scanning huge predecessor lists. |
| 816 | if (PHIMBB->pred_size() > 100) |
| 817 | return true; |
| 818 | for (MachineBasicBlock::const_pred_iterator |
| 819 | PI = PHIMBB->pred_begin(), PE = PHIMBB->pred_end(); PI != PE; ++PI) |
| 820 | if (VNI == LI.getVNInfoBefore(Indexes->getMBBEndIdx(*PI))) |
| 821 | return true; |
| 822 | } |
| 823 | return false; |
| 824 | } |
| 825 | |
Jakob Stoklund Olesen | 115da88 | 2010-03-01 20:59:38 +0000 | [diff] [blame] | 826 | float |
Michael Gottesman | 9f49d74 | 2013-12-14 00:53:32 +0000 | [diff] [blame] | 827 | LiveIntervals::getSpillWeight(bool isDef, bool isUse, |
| 828 | const MachineBlockFrequencyInfo *MBFI, |
| 829 | const MachineInstr *MI) { |
| 830 | BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent()); |
Michael Gottesman | 5e985ee | 2013-12-14 02:37:38 +0000 | [diff] [blame] | 831 | const float Scale = 1.0f / MBFI->getEntryFreq(); |
Michael Gottesman | 9f49d74 | 2013-12-14 00:53:32 +0000 | [diff] [blame] | 832 | return (isDef + isUse) * (Freq.getFrequency() * Scale); |
Jakob Stoklund Olesen | 115da88 | 2010-03-01 20:59:38 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 835 | LiveRange::Segment |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 836 | LiveIntervals::addSegmentToEndOfBlock(unsigned reg, MachineInstr* startInst) { |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 837 | LiveInterval& Interval = createEmptyInterval(reg); |
Owen Anderson | 35e2dfe | 2008-06-05 17:15:43 +0000 | [diff] [blame] | 838 | VNInfo* VN = Interval.getNextValue( |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 839 | SlotIndex(getInstructionIndex(startInst).getRegSlot()), |
Jakob Stoklund Olesen | ad6b22e | 2012-02-04 05:20:49 +0000 | [diff] [blame] | 840 | getVNInfoAllocator()); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 841 | LiveRange::Segment S( |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 842 | SlotIndex(getInstructionIndex(startInst).getRegSlot()), |
Lang Hames | 4c05226 | 2009-12-22 00:11:50 +0000 | [diff] [blame] | 843 | getMBBEndIdx(startInst->getParent()), VN); |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 844 | Interval.addSegment(S); |
Jakob Stoklund Olesen | 073cd80 | 2010-08-12 20:01:23 +0000 | [diff] [blame] | 845 | |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 846 | return S; |
Owen Anderson | 35e2dfe | 2008-06-05 17:15:43 +0000 | [diff] [blame] | 847 | } |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 848 | |
| 849 | |
| 850 | //===----------------------------------------------------------------------===// |
| 851 | // Register mask functions |
| 852 | //===----------------------------------------------------------------------===// |
| 853 | |
| 854 | bool LiveIntervals::checkRegMaskInterference(LiveInterval &LI, |
| 855 | BitVector &UsableRegs) { |
| 856 | if (LI.empty()) |
| 857 | return false; |
Jakob Stoklund Olesen | 9ef50bd | 2012-02-10 01:31:31 +0000 | [diff] [blame] | 858 | LiveInterval::iterator LiveI = LI.begin(), LiveE = LI.end(); |
| 859 | |
| 860 | // Use a smaller arrays for local live ranges. |
| 861 | ArrayRef<SlotIndex> Slots; |
| 862 | ArrayRef<const uint32_t*> Bits; |
| 863 | if (MachineBasicBlock *MBB = intervalIsInOneMBB(LI)) { |
| 864 | Slots = getRegMaskSlotsInBlock(MBB->getNumber()); |
| 865 | Bits = getRegMaskBitsInBlock(MBB->getNumber()); |
| 866 | } else { |
| 867 | Slots = getRegMaskSlots(); |
| 868 | Bits = getRegMaskBits(); |
| 869 | } |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 870 | |
| 871 | // We are going to enumerate all the register mask slots contained in LI. |
| 872 | // 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] | 873 | ArrayRef<SlotIndex>::iterator SlotI = |
| 874 | std::lower_bound(Slots.begin(), Slots.end(), LiveI->start); |
| 875 | ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); |
| 876 | |
| 877 | // No slots in range, LI begins after the last call. |
| 878 | if (SlotI == SlotE) |
| 879 | return false; |
| 880 | |
| 881 | bool Found = false; |
| 882 | for (;;) { |
| 883 | assert(*SlotI >= LiveI->start); |
| 884 | // Loop over all slots overlapping this segment. |
| 885 | while (*SlotI < LiveI->end) { |
| 886 | // *SlotI overlaps LI. Collect mask bits. |
| 887 | if (!Found) { |
| 888 | // This is the first overlap. Initialize UsableRegs to all ones. |
| 889 | UsableRegs.clear(); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 890 | UsableRegs.resize(TRI->getNumRegs(), true); |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 891 | Found = true; |
| 892 | } |
| 893 | // Remove usable registers clobbered by this mask. |
Jakob Stoklund Olesen | 9ef50bd | 2012-02-10 01:31:31 +0000 | [diff] [blame] | 894 | UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()]); |
Jakob Stoklund Olesen | 3ff74d8 | 2012-02-08 17:33:45 +0000 | [diff] [blame] | 895 | if (++SlotI == SlotE) |
| 896 | return Found; |
| 897 | } |
| 898 | // *SlotI is beyond the current LI segment. |
| 899 | LiveI = LI.advanceTo(LiveI, *SlotI); |
| 900 | if (LiveI == LiveE) |
| 901 | return Found; |
| 902 | // Advance SlotI until it overlaps. |
| 903 | while (*SlotI < LiveI->start) |
| 904 | if (++SlotI == SlotE) |
| 905 | return Found; |
| 906 | } |
| 907 | } |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 908 | |
| 909 | //===----------------------------------------------------------------------===// |
| 910 | // IntervalUpdate class. |
| 911 | //===----------------------------------------------------------------------===// |
| 912 | |
Lang Hames | 7e2ce88 | 2012-02-21 00:00:36 +0000 | [diff] [blame] | 913 | // 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] | 914 | class LiveIntervals::HMEditor { |
| 915 | private: |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 916 | LiveIntervals& LIS; |
| 917 | const MachineRegisterInfo& MRI; |
| 918 | const TargetRegisterInfo& TRI; |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 919 | SlotIndex OldIdx; |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 920 | SlotIndex NewIdx; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 921 | SmallPtrSet<LiveRange*, 8> Updated; |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 922 | bool UpdateFlags; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 923 | |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 924 | public: |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 925 | HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI, |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 926 | const TargetRegisterInfo& TRI, |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 927 | SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags) |
| 928 | : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx), |
| 929 | UpdateFlags(UpdateFlags) {} |
| 930 | |
| 931 | // FIXME: UpdateFlags is a workaround that creates live intervals for all |
| 932 | // physregs, even those that aren't needed for regalloc, in order to update |
| 933 | // kill flags. This is wasteful. Eventually, LiveVariables will strip all kill |
| 934 | // flags, and postRA passes will use a live register utility instead. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 935 | LiveRange *getRegUnitLI(unsigned Unit) { |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 936 | if (UpdateFlags) |
| 937 | return &LIS.getRegUnit(Unit); |
| 938 | return LIS.getCachedRegUnit(Unit); |
| 939 | } |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 940 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 941 | /// Update all live ranges touched by MI, assuming a move from OldIdx to |
| 942 | /// NewIdx. |
| 943 | void updateAllRanges(MachineInstr *MI) { |
| 944 | DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI); |
| 945 | bool hasRegMask = false; |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 946 | for (MachineOperand &MO : MI->operands()) { |
| 947 | if (MO.isRegMask()) |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 948 | hasRegMask = true; |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 949 | if (!MO.isReg()) |
Lang Hames | d6e765c | 2012-02-21 22:29:38 +0000 | [diff] [blame] | 950 | continue; |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 951 | // Aggressively clear all kill flags. |
| 952 | // They are reinserted by VirtRegRewriter. |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 953 | if (MO.isUse()) |
| 954 | MO.setIsKill(false); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 955 | |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 956 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 957 | if (!Reg) |
| 958 | continue; |
| 959 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 960 | LiveInterval &LI = LIS.getInterval(Reg); |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 961 | if (LI.hasSubRanges()) { |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 962 | unsigned SubReg = MO.getSubReg(); |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 963 | LaneBitmask LaneMask = TRI.getSubRegIndexLaneMask(SubReg); |
Matthias Braun | 09afa1e | 2014-12-11 00:59:06 +0000 | [diff] [blame] | 964 | for (LiveInterval::SubRange &S : LI.subranges()) { |
| 965 | if ((S.LaneMask & LaneMask) == 0) |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 966 | continue; |
Matthias Braun | 09afa1e | 2014-12-11 00:59:06 +0000 | [diff] [blame] | 967 | updateRange(S, Reg, S.LaneMask); |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | updateRange(LI, Reg, 0); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 971 | continue; |
| 972 | } |
| 973 | |
| 974 | // For physregs, only update the regunits that actually have a |
| 975 | // precomputed live range. |
| 976 | for (MCRegUnitIterator Units(Reg, &TRI); Units.isValid(); ++Units) |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 977 | if (LiveRange *LR = getRegUnitLI(*Units)) |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 978 | updateRange(*LR, *Units, 0); |
Lang Hames | d6e765c | 2012-02-21 22:29:38 +0000 | [diff] [blame] | 979 | } |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 980 | if (hasRegMask) |
| 981 | updateRegMaskSlots(); |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 982 | } |
| 983 | |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 984 | private: |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 985 | /// Update a single live range, assuming an instruction has been moved from |
| 986 | /// OldIdx to NewIdx. |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 987 | void updateRange(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 988 | if (!Updated.insert(&LR).second) |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 989 | return; |
| 990 | DEBUG({ |
| 991 | dbgs() << " "; |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 992 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 993 | dbgs() << PrintReg(Reg); |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 994 | if (LaneMask != 0) |
Matthias Braun | c804cdb | 2015-09-25 21:51:24 +0000 | [diff] [blame] | 995 | dbgs() << " L" << PrintLaneMask(LaneMask); |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 996 | } else { |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 997 | dbgs() << PrintRegUnit(Reg, &TRI); |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 998 | } |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 999 | dbgs() << ":\t" << LR << '\n'; |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1000 | }); |
| 1001 | if (SlotIndex::isEarlierInstr(OldIdx, NewIdx)) |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1002 | handleMoveDown(LR); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1003 | else |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 1004 | handleMoveUp(LR, Reg, LaneMask); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1005 | DEBUG(dbgs() << " -->\t" << LR << '\n'); |
| 1006 | LR.verify(); |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1009 | /// 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] | 1010 | /// to NewIdx. |
| 1011 | /// |
| 1012 | /// 1. Live def at OldIdx: |
| 1013 | /// Move def to NewIdx, assert endpoint after NewIdx. |
| 1014 | /// |
| 1015 | /// 2. Live def at OldIdx, killed at NewIdx: |
| 1016 | /// Change to dead def at NewIdx. |
| 1017 | /// (Happens when bundling def+kill together). |
| 1018 | /// |
| 1019 | /// 3. Dead def at OldIdx: |
| 1020 | /// Move def to NewIdx, possibly across another live value. |
| 1021 | /// |
| 1022 | /// 4. Def at OldIdx AND at NewIdx: |
Matthias Braun | 13ddb7c | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 1023 | /// Remove segment [OldIdx;NewIdx) and value defined at OldIdx. |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1024 | /// (Happens when bundling multiple defs together). |
| 1025 | /// |
| 1026 | /// 5. Value read at OldIdx, killed before NewIdx: |
| 1027 | /// Extend kill to NewIdx. |
| 1028 | /// |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1029 | void handleMoveDown(LiveRange &LR) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1030 | // First look for a kill at OldIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1031 | LiveRange::iterator I = LR.find(OldIdx.getBaseIndex()); |
| 1032 | LiveRange::iterator E = LR.end(); |
| 1033 | // Is LR even live at OldIdx? |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1034 | if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start)) |
| 1035 | return; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 1036 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1037 | // Handle a live-in value. |
| 1038 | if (!SlotIndex::isSameInstr(I->start, OldIdx)) { |
| 1039 | bool isKill = SlotIndex::isSameInstr(OldIdx, I->end); |
| 1040 | // If the live-in value already extends to NewIdx, there is nothing to do. |
| 1041 | if (!SlotIndex::isEarlierInstr(I->end, NewIdx)) |
| 1042 | return; |
| 1043 | // Aggressively remove all kill flags from the old kill point. |
| 1044 | // Kill flags shouldn't be used while live intervals exist, they will be |
| 1045 | // reinserted by VirtRegRewriter. |
| 1046 | if (MachineInstr *KillMI = LIS.getInstructionFromIndex(I->end)) |
| 1047 | for (MIBundleOperands MO(KillMI); MO.isValid(); ++MO) |
| 1048 | if (MO->isReg() && MO->isUse()) |
| 1049 | MO->setIsKill(false); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1050 | // 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] | 1051 | // overlapping ranges. Case 5 above. |
| 1052 | I->end = NewIdx.getRegSlot(I->end.isEarlyClobber()); |
| 1053 | // If this was a kill, there may also be a def. Otherwise we're done. |
| 1054 | if (!isKill) |
| 1055 | return; |
| 1056 | ++I; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 1057 | } |
| 1058 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1059 | // Check for a def at OldIdx. |
| 1060 | if (I == E || !SlotIndex::isSameInstr(OldIdx, I->start)) |
| 1061 | return; |
| 1062 | // We have a def at OldIdx. |
| 1063 | VNInfo *DefVNI = I->valno; |
| 1064 | assert(DefVNI->def == I->start && "Inconsistent def"); |
| 1065 | DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber()); |
| 1066 | // If the defined value extends beyond NewIdx, just move the def down. |
| 1067 | // This is case 1 above. |
| 1068 | if (SlotIndex::isEarlierInstr(NewIdx, I->end)) { |
| 1069 | I->start = DefVNI->def; |
| 1070 | return; |
| 1071 | } |
| 1072 | // The remaining possibilities are now: |
| 1073 | // 2. Live def at OldIdx, killed at NewIdx: isSameInstr(I->end, NewIdx). |
| 1074 | // 3. Dead def at OldIdx: I->end = OldIdx.getDeadSlot(). |
| 1075 | // In either case, it is possible that there is an existing def at NewIdx. |
| 1076 | assert((I->end == OldIdx.getDeadSlot() || |
| 1077 | SlotIndex::isSameInstr(I->end, NewIdx)) && |
| 1078 | "Cannot move def below kill"); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1079 | LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot()); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1080 | if (NewI != E && SlotIndex::isSameInstr(NewI->start, NewIdx)) { |
| 1081 | // There is an existing def at NewIdx, case 4 above. The def at OldIdx is |
| 1082 | // coalesced into that value. |
| 1083 | assert(NewI->valno != DefVNI && "Multiple defs of value?"); |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1084 | LR.removeValNo(DefVNI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1085 | return; |
| 1086 | } |
| 1087 | // 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] | 1088 | // 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] | 1089 | // values. The new range should be placed immediately before NewI, move any |
| 1090 | // intermediate ranges up. |
| 1091 | assert(NewI != I && "Inconsistent iterators"); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1092 | std::copy(std::next(I), NewI, I); |
| 1093 | *std::prev(NewI) |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 1094 | = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1095 | } |
| 1096 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1097 | /// 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] | 1098 | /// to NewIdx. |
| 1099 | /// |
| 1100 | /// 1. Live def at OldIdx: |
| 1101 | /// Hoist def to NewIdx. |
| 1102 | /// |
| 1103 | /// 2. Dead def at OldIdx: |
| 1104 | /// Hoist def+end to NewIdx, possibly move across other values. |
| 1105 | /// |
| 1106 | /// 3. Dead def at OldIdx AND existing def at NewIdx: |
| 1107 | /// Remove value defined at OldIdx, coalescing it with existing value. |
| 1108 | /// |
| 1109 | /// 4. Live def at OldIdx AND existing def at NewIdx: |
| 1110 | /// Remove value defined at NewIdx, hoist OldIdx def to NewIdx. |
| 1111 | /// (Happens when bundling multiple defs together). |
| 1112 | /// |
| 1113 | /// 5. Value killed at OldIdx: |
| 1114 | /// Hoist kill to NewIdx, then scan for last kill between NewIdx and |
| 1115 | /// OldIdx. |
| 1116 | /// |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 1117 | void handleMoveUp(LiveRange &LR, unsigned Reg, LaneBitmask LaneMask) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1118 | // First look for a kill at OldIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1119 | LiveRange::iterator I = LR.find(OldIdx.getBaseIndex()); |
| 1120 | LiveRange::iterator E = LR.end(); |
| 1121 | // Is LR even live at OldIdx? |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1122 | if (I == E || SlotIndex::isEarlierInstr(OldIdx, I->start)) |
| 1123 | return; |
| 1124 | |
| 1125 | // Handle a live-in value. |
| 1126 | if (!SlotIndex::isSameInstr(I->start, OldIdx)) { |
| 1127 | // If the live-in value isn't killed here, there is nothing to do. |
| 1128 | if (!SlotIndex::isSameInstr(OldIdx, I->end)) |
| 1129 | return; |
| 1130 | // Adjust I->end to end at NewIdx. If we are hoisting a kill above |
| 1131 | // another use, we need to search for that use. Case 5 above. |
| 1132 | I->end = NewIdx.getRegSlot(I->end.isEarlyClobber()); |
| 1133 | ++I; |
| 1134 | // If OldIdx also defines a value, there couldn't have been another use. |
| 1135 | if (I == E || !SlotIndex::isSameInstr(I->start, OldIdx)) { |
| 1136 | // No def, search for the new kill. |
| 1137 | // This can never be an early clobber kill since there is no def. |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 1138 | std::prev(I)->end = findLastUseBefore(Reg, LaneMask).getRegSlot(); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1139 | return; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 1140 | } |
| 1141 | } |
| 1142 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1143 | // Now deal with the def at OldIdx. |
| 1144 | assert(I != E && SlotIndex::isSameInstr(I->start, OldIdx) && "No def?"); |
| 1145 | VNInfo *DefVNI = I->valno; |
| 1146 | assert(DefVNI->def == I->start && "Inconsistent def"); |
| 1147 | DefVNI->def = NewIdx.getRegSlot(I->start.isEarlyClobber()); |
| 1148 | |
| 1149 | // Check for an existing def at NewIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1150 | LiveRange::iterator NewI = LR.find(NewIdx.getRegSlot()); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1151 | if (SlotIndex::isSameInstr(NewI->start, NewIdx)) { |
| 1152 | assert(NewI->valno != DefVNI && "Same value defined more than once?"); |
| 1153 | // There is an existing def at NewIdx. |
| 1154 | if (I->end.isDead()) { |
| 1155 | // Case 3: Remove the dead def at OldIdx. |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1156 | LR.removeValNo(DefVNI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1157 | return; |
| 1158 | } |
| 1159 | // Case 4: Replace def at NewIdx with live def at OldIdx. |
| 1160 | I->start = DefVNI->def; |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1161 | LR.removeValNo(NewI->valno); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1162 | return; |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 1163 | } |
| 1164 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1165 | // There is no existing def at NewIdx. Hoist DefVNI. |
| 1166 | if (!I->end.isDead()) { |
| 1167 | // Leave the end point of a live def. |
| 1168 | I->start = DefVNI->def; |
| 1169 | return; |
| 1170 | } |
| 1171 | |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 1172 | // 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] | 1173 | // so move I up to NewI. Slide [NewI;I) down one position. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1174 | std::copy_backward(NewI, I, std::next(I)); |
Matthias Braun | d7df935 | 2013-10-10 21:28:47 +0000 | [diff] [blame] | 1175 | *NewI = LiveRange::Segment(DefVNI->def, NewIdx.getDeadSlot(), DefVNI); |
Lang Hames | 13b1152 | 2012-02-19 07:13:05 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1178 | void updateRegMaskSlots() { |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 1179 | SmallVectorImpl<SlotIndex>::iterator RI = |
| 1180 | std::lower_bound(LIS.RegMaskSlots.begin(), LIS.RegMaskSlots.end(), |
| 1181 | OldIdx); |
Jakob Stoklund Olesen | 13d5562 | 2012-11-09 19:18:49 +0000 | [diff] [blame] | 1182 | assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() && |
| 1183 | "No RegMask at OldIdx."); |
| 1184 | *RI = NewIdx.getRegSlot(); |
| 1185 | assert((RI == LIS.RegMaskSlots.begin() || |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1186 | SlotIndex::isEarlierInstr(*std::prev(RI), *RI)) && |
| 1187 | "Cannot move regmask instruction above another call"); |
| 1188 | assert((std::next(RI) == LIS.RegMaskSlots.end() || |
| 1189 | SlotIndex::isEarlierInstr(*RI, *std::next(RI))) && |
| 1190 | "Cannot move regmask instruction below another call"); |
Lang Hames | a9afc6a | 2012-02-17 21:29:41 +0000 | [diff] [blame] | 1191 | } |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 1192 | |
| 1193 | // Return the last use of reg between NewIdx and OldIdx. |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 1194 | SlotIndex findLastUseBefore(unsigned Reg, LaneBitmask LaneMask) { |
Lang Hames | c3d9a3d | 2012-09-12 06:56:16 +0000 | [diff] [blame] | 1195 | |
| 1196 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Jakob Stoklund Olesen | 8d1aaf2 | 2013-03-08 18:08:57 +0000 | [diff] [blame] | 1197 | SlotIndex LastUse = NewIdx; |
Matthias Braun | 7044d69 | 2014-12-10 01:12:20 +0000 | [diff] [blame] | 1198 | for (MachineOperand &MO : MRI.use_nodbg_operands(Reg)) { |
| 1199 | unsigned SubReg = MO.getSubReg(); |
| 1200 | if (SubReg != 0 && LaneMask != 0 |
| 1201 | && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask) == 0) |
| 1202 | continue; |
| 1203 | |
| 1204 | const MachineInstr *MI = MO.getParent(); |
Lang Hames | c3d9a3d | 2012-09-12 06:56:16 +0000 | [diff] [blame] | 1205 | SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(MI); |
| 1206 | if (InstSlot > LastUse && InstSlot < OldIdx) |
| 1207 | LastUse = InstSlot; |
| 1208 | } |
Jakob Stoklund Olesen | 8d1aaf2 | 2013-03-08 18:08:57 +0000 | [diff] [blame] | 1209 | return LastUse; |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 1210 | } |
Jakob Stoklund Olesen | 8d1aaf2 | 2013-03-08 18:08:57 +0000 | [diff] [blame] | 1211 | |
| 1212 | // This is a regunit interval, so scanning the use list could be very |
| 1213 | // expensive. Scan upwards from OldIdx instead. |
| 1214 | assert(NewIdx < OldIdx && "Expected upwards move"); |
| 1215 | SlotIndexes *Indexes = LIS.getSlotIndexes(); |
| 1216 | MachineBasicBlock *MBB = Indexes->getMBBFromIndex(NewIdx); |
| 1217 | |
| 1218 | // OldIdx may not correspond to an instruction any longer, so set MII to |
| 1219 | // point to the next instruction after OldIdx, or MBB->end(). |
| 1220 | MachineBasicBlock::iterator MII = MBB->end(); |
| 1221 | if (MachineInstr *MI = Indexes->getInstructionFromIndex( |
| 1222 | Indexes->getNextNonNullIndex(OldIdx))) |
| 1223 | if (MI->getParent() == MBB) |
| 1224 | MII = MI; |
| 1225 | |
| 1226 | MachineBasicBlock::iterator Begin = MBB->begin(); |
| 1227 | while (MII != Begin) { |
| 1228 | if ((--MII)->isDebugValue()) |
| 1229 | continue; |
| 1230 | SlotIndex Idx = Indexes->getInstructionIndex(MII); |
| 1231 | |
| 1232 | // Stop searching when NewIdx is reached. |
| 1233 | if (!SlotIndex::isEarlierInstr(NewIdx, Idx)) |
| 1234 | return NewIdx; |
| 1235 | |
| 1236 | // Check if MII uses Reg. |
| 1237 | for (MIBundleOperands MO(MII); MO.isValid(); ++MO) |
| 1238 | if (MO->isReg() && |
| 1239 | TargetRegisterInfo::isPhysicalRegister(MO->getReg()) && |
| 1240 | TRI.hasRegUnit(MO->getReg(), Reg)) |
| 1241 | return Idx; |
| 1242 | } |
| 1243 | // Didn't reach NewIdx. It must be the first instruction in the block. |
| 1244 | return NewIdx; |
Lang Hames | 4645a72 | 2012-02-19 03:00:30 +0000 | [diff] [blame] | 1245 | } |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1246 | }; |
| 1247 | |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1248 | void LiveIntervals::handleMove(MachineInstr* MI, bool UpdateFlags) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1249 | assert(!MI->isBundled() && "Can't handle bundled instructions yet."); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 1250 | SlotIndex OldIndex = Indexes->getInstructionIndex(MI); |
| 1251 | Indexes->removeMachineInstrFromMaps(MI); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1252 | SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(MI); |
Lang Hames | 5976198 | 2012-02-17 23:43:40 +0000 | [diff] [blame] | 1253 | assert(getMBBStartIdx(MI->getParent()) <= OldIndex && |
| 1254 | OldIndex < getMBBEndIdx(MI->getParent()) && |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1255 | "Cannot handle moves across basic block boundaries."); |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1256 | |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1257 | HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1258 | HME.updateAllRanges(MI); |
Lang Hames | d6e765c | 2012-02-21 22:29:38 +0000 | [diff] [blame] | 1259 | } |
| 1260 | |
Jakob Stoklund Olesen | 2db1125 | 2012-06-19 22:50:53 +0000 | [diff] [blame] | 1261 | void LiveIntervals::handleMoveIntoBundle(MachineInstr* MI, |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1262 | MachineInstr* BundleStart, |
| 1263 | bool UpdateFlags) { |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1264 | SlotIndex OldIndex = Indexes->getInstructionIndex(MI); |
Jakob Stoklund Olesen | 11fb248 | 2012-06-04 22:39:14 +0000 | [diff] [blame] | 1265 | SlotIndex NewIndex = Indexes->getInstructionIndex(BundleStart); |
Andrew Trick | d9d4be0 | 2012-10-16 00:22:51 +0000 | [diff] [blame] | 1266 | HMEditor HME(*this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags); |
Jakob Stoklund Olesen | 1a87a29 | 2012-10-12 21:31:57 +0000 | [diff] [blame] | 1267 | HME.updateAllRanges(MI); |
Lang Hames | b9057d5 | 2012-02-17 18:44:18 +0000 | [diff] [blame] | 1268 | } |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1269 | |
Matthias Braun | e5f861b | 2014-12-10 01:12:26 +0000 | [diff] [blame] | 1270 | void LiveIntervals::repairOldRegInRange(const MachineBasicBlock::iterator Begin, |
| 1271 | const MachineBasicBlock::iterator End, |
| 1272 | const SlotIndex endIdx, |
| 1273 | LiveRange &LR, const unsigned Reg, |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 1274 | LaneBitmask LaneMask) { |
Matthias Braun | e5f861b | 2014-12-10 01:12:26 +0000 | [diff] [blame] | 1275 | LiveInterval::iterator LII = LR.find(endIdx); |
| 1276 | SlotIndex lastUseIdx; |
| 1277 | if (LII != LR.end() && LII->start < endIdx) |
| 1278 | lastUseIdx = LII->end; |
| 1279 | else |
| 1280 | --LII; |
| 1281 | |
| 1282 | for (MachineBasicBlock::iterator I = End; I != Begin;) { |
| 1283 | --I; |
| 1284 | MachineInstr *MI = I; |
| 1285 | if (MI->isDebugValue()) |
| 1286 | continue; |
| 1287 | |
| 1288 | SlotIndex instrIdx = getInstructionIndex(MI); |
| 1289 | bool isStartValid = getInstructionFromIndex(LII->start); |
| 1290 | bool isEndValid = getInstructionFromIndex(LII->end); |
| 1291 | |
| 1292 | // FIXME: This doesn't currently handle early-clobber or multiple removed |
| 1293 | // defs inside of the region to repair. |
| 1294 | for (MachineInstr::mop_iterator OI = MI->operands_begin(), |
| 1295 | OE = MI->operands_end(); OI != OE; ++OI) { |
| 1296 | const MachineOperand &MO = *OI; |
| 1297 | if (!MO.isReg() || MO.getReg() != Reg) |
| 1298 | continue; |
| 1299 | |
| 1300 | unsigned SubReg = MO.getSubReg(); |
Matthias Braun | e6a2485 | 2015-09-25 21:51:14 +0000 | [diff] [blame] | 1301 | LaneBitmask Mask = TRI->getSubRegIndexLaneMask(SubReg); |
Matthias Braun | e5f861b | 2014-12-10 01:12:26 +0000 | [diff] [blame] | 1302 | if ((Mask & LaneMask) == 0) |
| 1303 | continue; |
| 1304 | |
| 1305 | if (MO.isDef()) { |
| 1306 | if (!isStartValid) { |
| 1307 | if (LII->end.isDead()) { |
| 1308 | SlotIndex prevStart; |
| 1309 | if (LII != LR.begin()) |
| 1310 | prevStart = std::prev(LII)->start; |
| 1311 | |
| 1312 | // FIXME: This could be more efficient if there was a |
| 1313 | // removeSegment method that returned an iterator. |
| 1314 | LR.removeSegment(*LII, true); |
| 1315 | if (prevStart.isValid()) |
| 1316 | LII = LR.find(prevStart); |
| 1317 | else |
| 1318 | LII = LR.begin(); |
| 1319 | } else { |
| 1320 | LII->start = instrIdx.getRegSlot(); |
| 1321 | LII->valno->def = instrIdx.getRegSlot(); |
| 1322 | if (MO.getSubReg() && !MO.isUndef()) |
| 1323 | lastUseIdx = instrIdx.getRegSlot(); |
| 1324 | else |
| 1325 | lastUseIdx = SlotIndex(); |
| 1326 | continue; |
| 1327 | } |
| 1328 | } |
| 1329 | |
| 1330 | if (!lastUseIdx.isValid()) { |
| 1331 | VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator); |
| 1332 | LiveRange::Segment S(instrIdx.getRegSlot(), |
| 1333 | instrIdx.getDeadSlot(), VNI); |
| 1334 | LII = LR.addSegment(S); |
| 1335 | } else if (LII->start != instrIdx.getRegSlot()) { |
| 1336 | VNInfo *VNI = LR.getNextValue(instrIdx.getRegSlot(), VNInfoAllocator); |
| 1337 | LiveRange::Segment S(instrIdx.getRegSlot(), lastUseIdx, VNI); |
| 1338 | LII = LR.addSegment(S); |
| 1339 | } |
| 1340 | |
| 1341 | if (MO.getSubReg() && !MO.isUndef()) |
| 1342 | lastUseIdx = instrIdx.getRegSlot(); |
| 1343 | else |
| 1344 | lastUseIdx = SlotIndex(); |
| 1345 | } else if (MO.isUse()) { |
| 1346 | // FIXME: This should probably be handled outside of this branch, |
| 1347 | // either as part of the def case (for defs inside of the region) or |
| 1348 | // after the loop over the region. |
| 1349 | if (!isEndValid && !LII->end.isBlock()) |
| 1350 | LII->end = instrIdx.getRegSlot(); |
| 1351 | if (!lastUseIdx.isValid()) |
| 1352 | lastUseIdx = instrIdx.getRegSlot(); |
| 1353 | } |
| 1354 | } |
| 1355 | } |
| 1356 | } |
| 1357 | |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1358 | void |
| 1359 | LiveIntervals::repairIntervalsInRange(MachineBasicBlock *MBB, |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1360 | MachineBasicBlock::iterator Begin, |
| 1361 | MachineBasicBlock::iterator End, |
Cameron Zwarich | 1286ef9 | 2013-02-17 03:48:23 +0000 | [diff] [blame] | 1362 | ArrayRef<unsigned> OrigRegs) { |
Cameron Zwarich | caad7e1 | 2013-02-20 22:10:00 +0000 | [diff] [blame] | 1363 | // Find anchor points, which are at the beginning/end of blocks or at |
| 1364 | // instructions that already have indexes. |
| 1365 | while (Begin != MBB->begin() && !Indexes->hasIndex(Begin)) |
| 1366 | --Begin; |
| 1367 | while (End != MBB->end() && !Indexes->hasIndex(End)) |
| 1368 | ++End; |
| 1369 | |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1370 | SlotIndex endIdx; |
| 1371 | if (End == MBB->end()) |
| 1372 | endIdx = getMBBEndIdx(MBB).getPrevSlot(); |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1373 | else |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1374 | endIdx = getInstructionIndex(End); |
Cameron Zwarich | 2495596 | 2013-02-17 11:09:00 +0000 | [diff] [blame] | 1375 | |
Cameron Zwarich | 2941482 | 2013-02-20 06:46:41 +0000 | [diff] [blame] | 1376 | Indexes->repairIndexesInRange(MBB, Begin, End); |
| 1377 | |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1378 | for (MachineBasicBlock::iterator I = End; I != Begin;) { |
| 1379 | --I; |
| 1380 | MachineInstr *MI = I; |
Cameron Zwarich | 63acc73 | 2013-02-23 10:25:25 +0000 | [diff] [blame] | 1381 | if (MI->isDebugValue()) |
| 1382 | continue; |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1383 | for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(), |
| 1384 | MOE = MI->operands_end(); MOI != MOE; ++MOI) { |
| 1385 | if (MOI->isReg() && |
| 1386 | TargetRegisterInfo::isVirtualRegister(MOI->getReg()) && |
| 1387 | !hasInterval(MOI->getReg())) { |
Mark Lacey | 9d8103d | 2013-08-14 23:50:16 +0000 | [diff] [blame] | 1388 | createAndComputeVirtRegInterval(MOI->getReg()); |
Cameron Zwarich | 8e60d4d | 2013-02-20 06:46:48 +0000 | [diff] [blame] | 1389 | } |
| 1390 | } |
| 1391 | } |
| 1392 | |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1393 | for (unsigned i = 0, e = OrigRegs.size(); i != e; ++i) { |
| 1394 | unsigned Reg = OrigRegs[i]; |
| 1395 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 1396 | continue; |
| 1397 | |
| 1398 | LiveInterval &LI = getInterval(Reg); |
Cameron Zwarich | 8e7dc06 | 2013-02-20 22:09:57 +0000 | [diff] [blame] | 1399 | // FIXME: Should we support undefs that gain defs? |
| 1400 | if (!LI.hasAtLeastOneValue()) |
| 1401 | continue; |
| 1402 | |
Matthias Braun | 09afa1e | 2014-12-11 00:59:06 +0000 | [diff] [blame] | 1403 | for (LiveInterval::SubRange &S : LI.subranges()) { |
| 1404 | repairOldRegInRange(Begin, End, endIdx, S, Reg, S.LaneMask); |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1405 | } |
Matthias Braun | e5f861b | 2014-12-10 01:12:26 +0000 | [diff] [blame] | 1406 | repairOldRegInRange(Begin, End, endIdx, LI, Reg); |
Cameron Zwarich | bfebb41 | 2013-02-17 00:10:44 +0000 | [diff] [blame] | 1407 | } |
| 1408 | } |
Matthias Braun | cfb8ad2 | 2015-01-21 18:50:21 +0000 | [diff] [blame] | 1409 | |
| 1410 | void LiveIntervals::removePhysRegDefAt(unsigned Reg, SlotIndex Pos) { |
| 1411 | for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) { |
| 1412 | if (LiveRange *LR = getCachedRegUnit(*Units)) |
| 1413 | if (VNInfo *VNI = LR->getVNInfoAt(Pos)) |
| 1414 | LR->removeValNo(VNI); |
| 1415 | } |
| 1416 | } |
Matthias Braun | 311730a | 2015-01-21 19:02:30 +0000 | [diff] [blame] | 1417 | |
| 1418 | void LiveIntervals::removeVRegDefAt(LiveInterval &LI, SlotIndex Pos) { |
| 1419 | VNInfo *VNI = LI.getVNInfoAt(Pos); |
| 1420 | if (VNI == nullptr) |
| 1421 | return; |
| 1422 | LI.removeValNo(VNI); |
| 1423 | |
| 1424 | // Also remove the value in subranges. |
| 1425 | for (LiveInterval::SubRange &S : LI.subranges()) { |
| 1426 | if (VNInfo *SVNI = S.getVNInfoAt(Pos)) |
| 1427 | S.removeValNo(SVNI); |
| 1428 | } |
| 1429 | LI.removeEmptySubRanges(); |
| 1430 | } |
Matthias Braun | d3dd135 | 2015-09-22 03:44:41 +0000 | [diff] [blame] | 1431 | |
| 1432 | void LiveIntervals::splitSeparateComponents(LiveInterval &LI, |
| 1433 | SmallVectorImpl<LiveInterval*> &SplitLIs) { |
| 1434 | ConnectedVNInfoEqClasses ConEQ(*this); |
| 1435 | unsigned NumComp = ConEQ.Classify(&LI); |
| 1436 | if (NumComp <= 1) |
| 1437 | return; |
| 1438 | DEBUG(dbgs() << " Split " << NumComp << " components: " << LI << '\n'); |
| 1439 | unsigned Reg = LI.reg; |
| 1440 | const TargetRegisterClass *RegClass = MRI->getRegClass(Reg); |
| 1441 | for (unsigned I = 1; I < NumComp; ++I) { |
| 1442 | unsigned NewVReg = MRI->createVirtualRegister(RegClass); |
| 1443 | LiveInterval &NewLI = createEmptyInterval(NewVReg); |
| 1444 | SplitLIs.push_back(&NewLI); |
| 1445 | } |
| 1446 | ConEQ.Distribute(LI, SplitLIs.data(), *MRI); |
| 1447 | } |