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