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