Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 1 | //===- TailDuplicator.cpp - Duplicate blocks into predecessors' tails -----===// |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This utility class duplicates basic blocks ending in unconditional branches |
| 11 | // into the tails of their predecessors. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/TailDuplicator.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseSet.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SetVector.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
| 21 | #include "llvm/ADT/SmallVector.h" |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineFunction.h" |
| 26 | #include "llvm/CodeGen/MachineInstr.h" |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineOperand.h" |
| 29 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 30 | #include "llvm/CodeGen/MachineSSAUpdater.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 33 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 34 | #include "llvm/IR/DebugLoc.h" |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 35 | #include "llvm/IR/Function.h" |
| 36 | #include "llvm/Support/CommandLine.h" |
| 37 | #include "llvm/Support/Debug.h" |
| 38 | #include "llvm/Support/ErrorHandling.h" |
| 39 | #include "llvm/Support/raw_ostream.h" |
Petar Jovanovic | 540f4cd | 2018-01-31 15:57:57 +0000 | [diff] [blame^] | 40 | #include "llvm/Target/TargetMachine.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 41 | #include <algorithm> |
| 42 | #include <cassert> |
| 43 | #include <iterator> |
| 44 | #include <utility> |
| 45 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 46 | using namespace llvm; |
| 47 | |
| 48 | #define DEBUG_TYPE "tailduplication" |
| 49 | |
| 50 | STATISTIC(NumTails, "Number of tails duplicated"); |
| 51 | STATISTIC(NumTailDups, "Number of tail duplicated blocks"); |
Geoff Berry | f8c29d6 | 2016-06-14 19:40:10 +0000 | [diff] [blame] | 52 | STATISTIC(NumTailDupAdded, |
| 53 | "Number of instructions added due to tail duplication"); |
| 54 | STATISTIC(NumTailDupRemoved, |
| 55 | "Number of instructions removed due to tail duplication"); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 56 | STATISTIC(NumDeadBlocks, "Number of dead blocks removed"); |
| 57 | STATISTIC(NumAddedPHIs, "Number of phis added"); |
| 58 | |
| 59 | // Heuristic for tail duplication. |
| 60 | static cl::opt<unsigned> TailDuplicateSize( |
| 61 | "tail-dup-size", |
| 62 | cl::desc("Maximum instructions to consider tail duplicating"), cl::init(2), |
| 63 | cl::Hidden); |
| 64 | |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 65 | static cl::opt<unsigned> TailDupIndirectBranchSize( |
Kyle Butt | 61aca6e | 2016-08-30 18:18:54 +0000 | [diff] [blame] | 66 | "tail-dup-indirect-size", |
| 67 | cl::desc("Maximum instructions to consider tail duplicating blocks that " |
| 68 | "end with indirect branches."), cl::init(20), |
| 69 | cl::Hidden); |
| 70 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 71 | static cl::opt<bool> |
| 72 | TailDupVerify("tail-dup-verify", |
| 73 | cl::desc("Verify sanity of PHI instructions during taildup"), |
| 74 | cl::init(false), cl::Hidden); |
| 75 | |
| 76 | static cl::opt<unsigned> TailDupLimit("tail-dup-limit", cl::init(~0U), |
| 77 | cl::Hidden); |
| 78 | |
Matthias Braun | 8426d13 | 2017-08-23 03:17:59 +0000 | [diff] [blame] | 79 | void TailDuplicator::initMF(MachineFunction &MFin, bool PreRegAlloc, |
Kyle Butt | db3391e | 2016-08-17 21:07:35 +0000 | [diff] [blame] | 80 | const MachineBranchProbabilityInfo *MBPIin, |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 81 | bool LayoutModeIn, unsigned TailDupSizeIn) { |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 82 | MF = &MFin; |
| 83 | TII = MF->getSubtarget().getInstrInfo(); |
| 84 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 85 | MRI = &MF->getRegInfo(); |
Kyle Butt | c7f1eac | 2016-08-25 01:37:07 +0000 | [diff] [blame] | 86 | MMI = &MF->getMMI(); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 87 | MBPI = MBPIin; |
Kyle Butt | db3391e | 2016-08-17 21:07:35 +0000 | [diff] [blame] | 88 | TailDupSize = TailDupSizeIn; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 89 | |
| 90 | assert(MBPI != nullptr && "Machine Branch Probability Info required"); |
| 91 | |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 92 | LayoutMode = LayoutModeIn; |
Matthias Braun | 8426d13 | 2017-08-23 03:17:59 +0000 | [diff] [blame] | 93 | this->PreRegAlloc = PreRegAlloc; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static void VerifyPHIs(MachineFunction &MF, bool CheckExtra) { |
| 97 | for (MachineFunction::iterator I = ++MF.begin(), E = MF.end(); I != E; ++I) { |
| 98 | MachineBasicBlock *MBB = &*I; |
| 99 | SmallSetVector<MachineBasicBlock *, 8> Preds(MBB->pred_begin(), |
| 100 | MBB->pred_end()); |
| 101 | MachineBasicBlock::iterator MI = MBB->begin(); |
| 102 | while (MI != MBB->end()) { |
| 103 | if (!MI->isPHI()) |
| 104 | break; |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 105 | for (MachineBasicBlock *PredBB : Preds) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 106 | bool Found = false; |
| 107 | for (unsigned i = 1, e = MI->getNumOperands(); i != e; i += 2) { |
| 108 | MachineBasicBlock *PHIBB = MI->getOperand(i + 1).getMBB(); |
| 109 | if (PHIBB == PredBB) { |
| 110 | Found = true; |
| 111 | break; |
| 112 | } |
| 113 | } |
| 114 | if (!Found) { |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 115 | dbgs() << "Malformed PHI in " << printMBBReference(*MBB) << ": " |
| 116 | << *MI; |
| 117 | dbgs() << " missing input from predecessor " |
| 118 | << printMBBReference(*PredBB) << '\n'; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 119 | llvm_unreachable(nullptr); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | for (unsigned i = 1, e = MI->getNumOperands(); i != e; i += 2) { |
| 124 | MachineBasicBlock *PHIBB = MI->getOperand(i + 1).getMBB(); |
| 125 | if (CheckExtra && !Preds.count(PHIBB)) { |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 126 | dbgs() << "Warning: malformed PHI in " << printMBBReference(*MBB) |
| 127 | << ": " << *MI; |
| 128 | dbgs() << " extra input from predecessor " |
| 129 | << printMBBReference(*PHIBB) << '\n'; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 130 | llvm_unreachable(nullptr); |
| 131 | } |
| 132 | if (PHIBB->getNumber() < 0) { |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 133 | dbgs() << "Malformed PHI in " << printMBBReference(*MBB) << ": " |
| 134 | << *MI; |
| 135 | dbgs() << " non-existing " << printMBBReference(*PHIBB) << '\n'; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 136 | llvm_unreachable(nullptr); |
| 137 | } |
| 138 | } |
| 139 | ++MI; |
| 140 | } |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /// Tail duplicate the block and cleanup. |
Kyle Butt | 723aa13 | 2016-08-26 20:12:40 +0000 | [diff] [blame] | 145 | /// \p IsSimple - return value of isSimpleBB |
| 146 | /// \p MBB - block to be duplicated |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 147 | /// \p ForcedLayoutPred - If non-null, treat this block as the layout |
| 148 | /// predecessor, instead of using the ordering in MF |
Kyle Butt | 723aa13 | 2016-08-26 20:12:40 +0000 | [diff] [blame] | 149 | /// \p DuplicatedPreds - if non-null, \p DuplicatedPreds will contain a list of |
| 150 | /// all Preds that received a copy of \p MBB. |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 151 | /// \p RemovalCallback - if non-null, called just before MBB is deleted. |
Kyle Butt | 723aa13 | 2016-08-26 20:12:40 +0000 | [diff] [blame] | 152 | bool TailDuplicator::tailDuplicateAndUpdate( |
| 153 | bool IsSimple, MachineBasicBlock *MBB, |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 154 | MachineBasicBlock *ForcedLayoutPred, |
| 155 | SmallVectorImpl<MachineBasicBlock*> *DuplicatedPreds, |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 156 | function_ref<void(MachineBasicBlock *)> *RemovalCallback) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 157 | // Save the successors list. |
| 158 | SmallSetVector<MachineBasicBlock *, 8> Succs(MBB->succ_begin(), |
| 159 | MBB->succ_end()); |
| 160 | |
| 161 | SmallVector<MachineBasicBlock *, 8> TDBBs; |
| 162 | SmallVector<MachineInstr *, 16> Copies; |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 163 | if (!tailDuplicate(IsSimple, MBB, ForcedLayoutPred, TDBBs, Copies)) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 164 | return false; |
| 165 | |
| 166 | ++NumTails; |
| 167 | |
| 168 | SmallVector<MachineInstr *, 8> NewPHIs; |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 169 | MachineSSAUpdater SSAUpdate(*MF, &NewPHIs); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 170 | |
| 171 | // TailBB's immediate successors are now successors of those predecessors |
| 172 | // which duplicated TailBB. Add the predecessors as sources to the PHI |
| 173 | // instructions. |
| 174 | bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken(); |
| 175 | if (PreRegAlloc) |
| 176 | updateSuccessorsPHIs(MBB, isDead, TDBBs, Succs); |
| 177 | |
| 178 | // If it is dead, remove it. |
| 179 | if (isDead) { |
Geoff Berry | f8c29d6 | 2016-06-14 19:40:10 +0000 | [diff] [blame] | 180 | NumTailDupRemoved += MBB->size(); |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 181 | removeDeadBlock(MBB, RemovalCallback); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 182 | ++NumDeadBlocks; |
| 183 | } |
| 184 | |
| 185 | // Update SSA form. |
| 186 | if (!SSAUpdateVRs.empty()) { |
| 187 | for (unsigned i = 0, e = SSAUpdateVRs.size(); i != e; ++i) { |
| 188 | unsigned VReg = SSAUpdateVRs[i]; |
| 189 | SSAUpdate.Initialize(VReg); |
| 190 | |
| 191 | // If the original definition is still around, add it as an available |
| 192 | // value. |
| 193 | MachineInstr *DefMI = MRI->getVRegDef(VReg); |
| 194 | MachineBasicBlock *DefBB = nullptr; |
| 195 | if (DefMI) { |
| 196 | DefBB = DefMI->getParent(); |
| 197 | SSAUpdate.AddAvailableValue(DefBB, VReg); |
| 198 | } |
| 199 | |
| 200 | // Add the new vregs as available values. |
| 201 | DenseMap<unsigned, AvailableValsTy>::iterator LI = |
| 202 | SSAUpdateVals.find(VReg); |
| 203 | for (unsigned j = 0, ee = LI->second.size(); j != ee; ++j) { |
| 204 | MachineBasicBlock *SrcBB = LI->second[j].first; |
| 205 | unsigned SrcReg = LI->second[j].second; |
| 206 | SSAUpdate.AddAvailableValue(SrcBB, SrcReg); |
| 207 | } |
| 208 | |
| 209 | // Rewrite uses that are outside of the original def's block. |
| 210 | MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); |
| 211 | while (UI != MRI->use_end()) { |
| 212 | MachineOperand &UseMO = *UI; |
| 213 | MachineInstr *UseMI = UseMO.getParent(); |
| 214 | ++UI; |
| 215 | if (UseMI->isDebugValue()) { |
| 216 | // SSAUpdate can replace the use with an undef. That creates |
| 217 | // a debug instruction that is a kill. |
| 218 | // FIXME: Should it SSAUpdate job to delete debug instructions |
| 219 | // instead of replacing the use with undef? |
| 220 | UseMI->eraseFromParent(); |
| 221 | continue; |
| 222 | } |
| 223 | if (UseMI->getParent() == DefBB && !UseMI->isPHI()) |
| 224 | continue; |
| 225 | SSAUpdate.RewriteUse(UseMO); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | SSAUpdateVRs.clear(); |
| 230 | SSAUpdateVals.clear(); |
| 231 | } |
| 232 | |
| 233 | // Eliminate some of the copies inserted by tail duplication to maintain |
| 234 | // SSA form. |
| 235 | for (unsigned i = 0, e = Copies.size(); i != e; ++i) { |
| 236 | MachineInstr *Copy = Copies[i]; |
| 237 | if (!Copy->isCopy()) |
| 238 | continue; |
| 239 | unsigned Dst = Copy->getOperand(0).getReg(); |
| 240 | unsigned Src = Copy->getOperand(1).getReg(); |
| 241 | if (MRI->hasOneNonDBGUse(Src) && |
| 242 | MRI->constrainRegClass(Src, MRI->getRegClass(Dst))) { |
| 243 | // Copy is the only use. Do trivial copy propagation here. |
| 244 | MRI->replaceRegWith(Dst, Src); |
| 245 | Copy->eraseFromParent(); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | if (NewPHIs.size()) |
| 250 | NumAddedPHIs += NewPHIs.size(); |
| 251 | |
Kyle Butt | 723aa13 | 2016-08-26 20:12:40 +0000 | [diff] [blame] | 252 | if (DuplicatedPreds) |
| 253 | *DuplicatedPreds = std::move(TDBBs); |
| 254 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 255 | return true; |
| 256 | } |
| 257 | |
| 258 | /// Look for small blocks that are unconditionally branched to and do not fall |
| 259 | /// through. Tail-duplicate their instructions into their predecessors to |
| 260 | /// eliminate (dynamic) branches. |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 261 | bool TailDuplicator::tailDuplicateBlocks() { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 262 | bool MadeChange = false; |
| 263 | |
| 264 | if (PreRegAlloc && TailDupVerify) { |
| 265 | DEBUG(dbgs() << "\n*** Before tail-duplicating\n"); |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 266 | VerifyPHIs(*MF, true); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 269 | for (MachineFunction::iterator I = ++MF->begin(), E = MF->end(); I != E;) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 270 | MachineBasicBlock *MBB = &*I++; |
| 271 | |
| 272 | if (NumTails == TailDupLimit) |
| 273 | break; |
| 274 | |
| 275 | bool IsSimple = isSimpleBB(MBB); |
| 276 | |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 277 | if (!shouldTailDuplicate(IsSimple, *MBB)) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 278 | continue; |
| 279 | |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 280 | MadeChange |= tailDuplicateAndUpdate(IsSimple, MBB, nullptr); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | if (PreRegAlloc && TailDupVerify) |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 284 | VerifyPHIs(*MF, false); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 285 | |
| 286 | return MadeChange; |
| 287 | } |
| 288 | |
| 289 | static bool isDefLiveOut(unsigned Reg, MachineBasicBlock *BB, |
| 290 | const MachineRegisterInfo *MRI) { |
| 291 | for (MachineInstr &UseMI : MRI->use_instructions(Reg)) { |
| 292 | if (UseMI.isDebugValue()) |
| 293 | continue; |
| 294 | if (UseMI.getParent() != BB) |
| 295 | return true; |
| 296 | } |
| 297 | return false; |
| 298 | } |
| 299 | |
| 300 | static unsigned getPHISrcRegOpIdx(MachineInstr *MI, MachineBasicBlock *SrcBB) { |
| 301 | for (unsigned i = 1, e = MI->getNumOperands(); i != e; i += 2) |
| 302 | if (MI->getOperand(i + 1).getMBB() == SrcBB) |
| 303 | return i; |
| 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | // Remember which registers are used by phis in this block. This is |
| 308 | // used to determine which registers are liveout while modifying the |
| 309 | // block (which is why we need to copy the information). |
| 310 | static void getRegsUsedByPHIs(const MachineBasicBlock &BB, |
| 311 | DenseSet<unsigned> *UsedByPhi) { |
| 312 | for (const auto &MI : BB) { |
| 313 | if (!MI.isPHI()) |
| 314 | break; |
| 315 | for (unsigned i = 1, e = MI.getNumOperands(); i != e; i += 2) { |
| 316 | unsigned SrcReg = MI.getOperand(i).getReg(); |
| 317 | UsedByPhi->insert(SrcReg); |
| 318 | } |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | /// Add a definition and source virtual registers pair for SSA update. |
| 323 | void TailDuplicator::addSSAUpdateEntry(unsigned OrigReg, unsigned NewReg, |
| 324 | MachineBasicBlock *BB) { |
| 325 | DenseMap<unsigned, AvailableValsTy>::iterator LI = |
| 326 | SSAUpdateVals.find(OrigReg); |
| 327 | if (LI != SSAUpdateVals.end()) |
| 328 | LI->second.push_back(std::make_pair(BB, NewReg)); |
| 329 | else { |
| 330 | AvailableValsTy Vals; |
| 331 | Vals.push_back(std::make_pair(BB, NewReg)); |
| 332 | SSAUpdateVals.insert(std::make_pair(OrigReg, Vals)); |
| 333 | SSAUpdateVRs.push_back(OrigReg); |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /// Process PHI node in TailBB by turning it into a copy in PredBB. Remember the |
| 338 | /// source register that's contributed by PredBB and update SSA update map. |
| 339 | void TailDuplicator::processPHI( |
| 340 | MachineInstr *MI, MachineBasicBlock *TailBB, MachineBasicBlock *PredBB, |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 341 | DenseMap<unsigned, RegSubRegPair> &LocalVRMap, |
| 342 | SmallVectorImpl<std::pair<unsigned, RegSubRegPair>> &Copies, |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 343 | const DenseSet<unsigned> &RegsUsedByPhi, bool Remove) { |
| 344 | unsigned DefReg = MI->getOperand(0).getReg(); |
| 345 | unsigned SrcOpIdx = getPHISrcRegOpIdx(MI, PredBB); |
| 346 | assert(SrcOpIdx && "Unable to find matching PHI source?"); |
| 347 | unsigned SrcReg = MI->getOperand(SrcOpIdx).getReg(); |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 348 | unsigned SrcSubReg = MI->getOperand(SrcOpIdx).getSubReg(); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 349 | const TargetRegisterClass *RC = MRI->getRegClass(DefReg); |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 350 | LocalVRMap.insert(std::make_pair(DefReg, RegSubRegPair(SrcReg, SrcSubReg))); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 351 | |
| 352 | // Insert a copy from source to the end of the block. The def register is the |
| 353 | // available value liveout of the block. |
| 354 | unsigned NewDef = MRI->createVirtualRegister(RC); |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 355 | Copies.push_back(std::make_pair(NewDef, RegSubRegPair(SrcReg, SrcSubReg))); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 356 | if (isDefLiveOut(DefReg, TailBB, MRI) || RegsUsedByPhi.count(DefReg)) |
| 357 | addSSAUpdateEntry(DefReg, NewDef, PredBB); |
| 358 | |
| 359 | if (!Remove) |
| 360 | return; |
| 361 | |
| 362 | // Remove PredBB from the PHI node. |
| 363 | MI->RemoveOperand(SrcOpIdx + 1); |
| 364 | MI->RemoveOperand(SrcOpIdx); |
| 365 | if (MI->getNumOperands() == 1) |
| 366 | MI->eraseFromParent(); |
| 367 | } |
| 368 | |
| 369 | /// Duplicate a TailBB instruction to PredBB and update |
| 370 | /// the source operands due to earlier PHI translation. |
| 371 | void TailDuplicator::duplicateInstruction( |
| 372 | MachineInstr *MI, MachineBasicBlock *TailBB, MachineBasicBlock *PredBB, |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 373 | DenseMap<unsigned, RegSubRegPair> &LocalVRMap, |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 374 | const DenseSet<unsigned> &UsedByPhi) { |
Petar Jovanovic | 540f4cd | 2018-01-31 15:57:57 +0000 | [diff] [blame^] | 375 | // Allow duplication of CFI instructions. |
| 376 | if (MI->isCFIInstruction()) { |
| 377 | BuildMI(*PredBB, PredBB->end(), PredBB->findDebugLoc(PredBB->begin()), |
| 378 | TII->get(TargetOpcode::CFI_INSTRUCTION)).addCFIIndex( |
| 379 | MI->getOperand(0).getCFIIndex()); |
| 380 | return; |
| 381 | } |
Matthias Braun | 55bc9b3 | 2017-08-22 23:56:30 +0000 | [diff] [blame] | 382 | MachineInstr &NewMI = TII->duplicate(*PredBB, PredBB->end(), *MI); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 383 | if (PreRegAlloc) { |
Matthias Braun | 55bc9b3 | 2017-08-22 23:56:30 +0000 | [diff] [blame] | 384 | for (unsigned i = 0, e = NewMI.getNumOperands(); i != e; ++i) { |
| 385 | MachineOperand &MO = NewMI.getOperand(i); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 386 | if (!MO.isReg()) |
| 387 | continue; |
| 388 | unsigned Reg = MO.getReg(); |
| 389 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 390 | continue; |
| 391 | if (MO.isDef()) { |
| 392 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 393 | unsigned NewReg = MRI->createVirtualRegister(RC); |
| 394 | MO.setReg(NewReg); |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 395 | LocalVRMap.insert(std::make_pair(Reg, RegSubRegPair(NewReg, 0))); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 396 | if (isDefLiveOut(Reg, TailBB, MRI) || UsedByPhi.count(Reg)) |
| 397 | addSSAUpdateEntry(Reg, NewReg, PredBB); |
| 398 | } else { |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 399 | auto VI = LocalVRMap.find(Reg); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 400 | if (VI != LocalVRMap.end()) { |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 401 | // Need to make sure that the register class of the mapped register |
| 402 | // will satisfy the constraints of the class of the register being |
| 403 | // replaced. |
| 404 | auto *OrigRC = MRI->getRegClass(Reg); |
| 405 | auto *MappedRC = MRI->getRegClass(VI->second.Reg); |
| 406 | const TargetRegisterClass *ConstrRC; |
| 407 | if (VI->second.SubReg != 0) { |
| 408 | ConstrRC = TRI->getMatchingSuperRegClass(MappedRC, OrigRC, |
| 409 | VI->second.SubReg); |
| 410 | if (ConstrRC) { |
| 411 | // The actual constraining (as in "find appropriate new class") |
| 412 | // is done by getMatchingSuperRegClass, so now we only need to |
| 413 | // change the class of the mapped register. |
| 414 | MRI->setRegClass(VI->second.Reg, ConstrRC); |
| 415 | } |
| 416 | } else { |
| 417 | // For mapped registers that do not have sub-registers, simply |
| 418 | // restrict their class to match the original one. |
| 419 | ConstrRC = MRI->constrainRegClass(VI->second.Reg, OrigRC); |
| 420 | } |
| 421 | |
| 422 | if (ConstrRC) { |
| 423 | // If the class constraining succeeded, we can simply replace |
| 424 | // the old register with the mapped one. |
| 425 | MO.setReg(VI->second.Reg); |
| 426 | // We have Reg -> VI.Reg:VI.SubReg, so if Reg is used with a |
| 427 | // sub-register, we need to compose the sub-register indices. |
| 428 | MO.setSubReg(TRI->composeSubRegIndices(MO.getSubReg(), |
| 429 | VI->second.SubReg)); |
| 430 | } else { |
| 431 | // The direct replacement is not possible, due to failing register |
| 432 | // class constraints. An explicit COPY is necessary. Create one |
| 433 | // that can be reused |
| 434 | auto *NewRC = MI->getRegClassConstraint(i, TII, TRI); |
| 435 | if (NewRC == nullptr) |
| 436 | NewRC = OrigRC; |
| 437 | unsigned NewReg = MRI->createVirtualRegister(NewRC); |
| 438 | BuildMI(*PredBB, MI, MI->getDebugLoc(), |
| 439 | TII->get(TargetOpcode::COPY), NewReg) |
| 440 | .addReg(VI->second.Reg, 0, VI->second.SubReg); |
| 441 | LocalVRMap.erase(VI); |
| 442 | LocalVRMap.insert(std::make_pair(Reg, RegSubRegPair(NewReg, 0))); |
| 443 | MO.setReg(NewReg); |
| 444 | // The composed VI.Reg:VI.SubReg is replaced with NewReg, which |
| 445 | // is equivalent to the whole register Reg. Hence, Reg:subreg |
| 446 | // is same as NewReg:subreg, so keep the sub-register index |
| 447 | // unchanged. |
| 448 | } |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 449 | // Clear any kill flags from this operand. The new register could |
| 450 | // have uses after this one, so kills are not valid here. |
| 451 | MO.setIsKill(false); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 452 | } |
| 453 | } |
| 454 | } |
| 455 | } |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | /// After FromBB is tail duplicated into its predecessor blocks, the successors |
| 459 | /// have gained new predecessors. Update the PHI instructions in them |
| 460 | /// accordingly. |
| 461 | void TailDuplicator::updateSuccessorsPHIs( |
| 462 | MachineBasicBlock *FromBB, bool isDead, |
| 463 | SmallVectorImpl<MachineBasicBlock *> &TDBBs, |
| 464 | SmallSetVector<MachineBasicBlock *, 8> &Succs) { |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 465 | for (MachineBasicBlock *SuccBB : Succs) { |
| 466 | for (MachineInstr &MI : *SuccBB) { |
| 467 | if (!MI.isPHI()) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 468 | break; |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 469 | MachineInstrBuilder MIB(*FromBB->getParent(), MI); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 470 | unsigned Idx = 0; |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 471 | for (unsigned i = 1, e = MI.getNumOperands(); i != e; i += 2) { |
| 472 | MachineOperand &MO = MI.getOperand(i + 1); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 473 | if (MO.getMBB() == FromBB) { |
| 474 | Idx = i; |
| 475 | break; |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | assert(Idx != 0); |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 480 | MachineOperand &MO0 = MI.getOperand(Idx); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 481 | unsigned Reg = MO0.getReg(); |
| 482 | if (isDead) { |
| 483 | // Folded into the previous BB. |
| 484 | // There could be duplicate phi source entries. FIXME: Should sdisel |
| 485 | // or earlier pass fixed this? |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 486 | for (unsigned i = MI.getNumOperands() - 2; i != Idx; i -= 2) { |
| 487 | MachineOperand &MO = MI.getOperand(i + 1); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 488 | if (MO.getMBB() == FromBB) { |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 489 | MI.RemoveOperand(i + 1); |
| 490 | MI.RemoveOperand(i); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 491 | } |
| 492 | } |
| 493 | } else |
| 494 | Idx = 0; |
| 495 | |
| 496 | // If Idx is set, the operands at Idx and Idx+1 must be removed. |
| 497 | // We reuse the location to avoid expensive RemoveOperand calls. |
| 498 | |
| 499 | DenseMap<unsigned, AvailableValsTy>::iterator LI = |
| 500 | SSAUpdateVals.find(Reg); |
| 501 | if (LI != SSAUpdateVals.end()) { |
| 502 | // This register is defined in the tail block. |
| 503 | for (unsigned j = 0, ee = LI->second.size(); j != ee; ++j) { |
| 504 | MachineBasicBlock *SrcBB = LI->second[j].first; |
| 505 | // If we didn't duplicate a bb into a particular predecessor, we |
| 506 | // might still have added an entry to SSAUpdateVals to correcly |
| 507 | // recompute SSA. If that case, avoid adding a dummy extra argument |
| 508 | // this PHI. |
| 509 | if (!SrcBB->isSuccessor(SuccBB)) |
| 510 | continue; |
| 511 | |
| 512 | unsigned SrcReg = LI->second[j].second; |
| 513 | if (Idx != 0) { |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 514 | MI.getOperand(Idx).setReg(SrcReg); |
| 515 | MI.getOperand(Idx + 1).setMBB(SrcBB); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 516 | Idx = 0; |
| 517 | } else { |
| 518 | MIB.addReg(SrcReg).addMBB(SrcBB); |
| 519 | } |
| 520 | } |
| 521 | } else { |
| 522 | // Live in tail block, must also be live in predecessors. |
| 523 | for (unsigned j = 0, ee = TDBBs.size(); j != ee; ++j) { |
| 524 | MachineBasicBlock *SrcBB = TDBBs[j]; |
| 525 | if (Idx != 0) { |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 526 | MI.getOperand(Idx).setReg(Reg); |
| 527 | MI.getOperand(Idx + 1).setMBB(SrcBB); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 528 | Idx = 0; |
| 529 | } else { |
| 530 | MIB.addReg(Reg).addMBB(SrcBB); |
| 531 | } |
| 532 | } |
| 533 | } |
| 534 | if (Idx != 0) { |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 535 | MI.RemoveOperand(Idx + 1); |
| 536 | MI.RemoveOperand(Idx); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 537 | } |
| 538 | } |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | /// Determine if it is profitable to duplicate this block. |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 543 | bool TailDuplicator::shouldTailDuplicate(bool IsSimple, |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 544 | MachineBasicBlock &TailBB) { |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 545 | // When doing tail-duplication during layout, the block ordering is in flux, |
| 546 | // so canFallThrough returns a result based on incorrect information and |
| 547 | // should just be ignored. |
| 548 | if (!LayoutMode && TailBB.canFallThrough()) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 549 | return false; |
| 550 | |
| 551 | // Don't try to tail-duplicate single-block loops. |
| 552 | if (TailBB.isSuccessor(&TailBB)) |
| 553 | return false; |
| 554 | |
| 555 | // Set the limit on the cost to duplicate. When optimizing for size, |
| 556 | // duplicate only one, because one branch instruction can be eliminated to |
| 557 | // compensate for the duplication. |
| 558 | unsigned MaxDuplicateCount; |
Kyle Butt | db3391e | 2016-08-17 21:07:35 +0000 | [diff] [blame] | 559 | if (TailDupSize == 0 && |
| 560 | TailDuplicateSize.getNumOccurrences() == 0 && |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 561 | MF->getFunction().optForSize()) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 562 | MaxDuplicateCount = 1; |
Kyle Butt | db3391e | 2016-08-17 21:07:35 +0000 | [diff] [blame] | 563 | else if (TailDupSize == 0) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 564 | MaxDuplicateCount = TailDuplicateSize; |
Kyle Butt | db3391e | 2016-08-17 21:07:35 +0000 | [diff] [blame] | 565 | else |
| 566 | MaxDuplicateCount = TailDupSize; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 567 | |
Kyle Butt | 07d6142 | 2016-08-16 22:56:14 +0000 | [diff] [blame] | 568 | // If the block to be duplicated ends in an unanalyzable fallthrough, don't |
| 569 | // duplicate it. |
| 570 | // A similar check is necessary in MachineBlockPlacement to make sure pairs of |
| 571 | // blocks with unanalyzable fallthrough get layed out contiguously. |
| 572 | MachineBasicBlock *PredTBB = nullptr, *PredFBB = nullptr; |
| 573 | SmallVector<MachineOperand, 4> PredCond; |
Sanjoy Das | d7389d6 | 2016-12-15 05:08:57 +0000 | [diff] [blame] | 574 | if (TII->analyzeBranch(TailBB, PredTBB, PredFBB, PredCond) && |
| 575 | TailBB.canFallThrough()) |
Kyle Butt | 07d6142 | 2016-08-16 22:56:14 +0000 | [diff] [blame] | 576 | return false; |
| 577 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 578 | // If the target has hardware branch prediction that can handle indirect |
| 579 | // branches, duplicating them can often make them predictable when there |
| 580 | // are common paths through the code. The limit needs to be high enough |
| 581 | // to allow undoing the effects of tail merging and other optimizations |
| 582 | // that rearrange the predecessors of the indirect branch. |
| 583 | |
| 584 | bool HasIndirectbr = false; |
| 585 | if (!TailBB.empty()) |
| 586 | HasIndirectbr = TailBB.back().isIndirectBranch(); |
| 587 | |
| 588 | if (HasIndirectbr && PreRegAlloc) |
Kyle Butt | 61aca6e | 2016-08-30 18:18:54 +0000 | [diff] [blame] | 589 | MaxDuplicateCount = TailDupIndirectBranchSize; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 590 | |
| 591 | // Check the instructions in the block to determine whether tail-duplication |
| 592 | // is invalid or unlikely to be profitable. |
| 593 | unsigned InstrCount = 0; |
| 594 | for (MachineInstr &MI : TailBB) { |
| 595 | // Non-duplicable things shouldn't be tail-duplicated. |
Petar Jovanovic | 540f4cd | 2018-01-31 15:57:57 +0000 | [diff] [blame^] | 596 | // CFI instructions are marked as non-duplicable, because Darwin compact |
| 597 | // unwind info emission can't handle multiple prologue setups. In case of |
| 598 | // DWARF, allow them be duplicated, so that their existence doesn't prevent |
| 599 | // tail duplication of some basic blocks, that would be duplicated otherwise. |
| 600 | if (MI.isNotDuplicable() && |
| 601 | (TailBB.getParent()->getTarget().getTargetTriple().isOSDarwin() || |
| 602 | !MI.isCFIInstruction())) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 603 | return false; |
| 604 | |
| 605 | // Convergent instructions can be duplicated only if doing so doesn't add |
| 606 | // new control dependencies, which is what we're going to do here. |
| 607 | if (MI.isConvergent()) |
| 608 | return false; |
| 609 | |
| 610 | // Do not duplicate 'return' instructions if this is a pre-regalloc run. |
| 611 | // A return may expand into a lot more instructions (e.g. reload of callee |
| 612 | // saved registers) after PEI. |
| 613 | if (PreRegAlloc && MI.isReturn()) |
| 614 | return false; |
| 615 | |
| 616 | // Avoid duplicating calls before register allocation. Calls presents a |
| 617 | // barrier to register allocation so duplicating them may end up increasing |
| 618 | // spills. |
| 619 | if (PreRegAlloc && MI.isCall()) |
| 620 | return false; |
| 621 | |
Petar Jovanovic | 540f4cd | 2018-01-31 15:57:57 +0000 | [diff] [blame^] | 622 | if (!MI.isPHI() && !MI.isMetaInstruction()) |
Reid Kleckner | 7adb2fd | 2017-11-08 21:31:14 +0000 | [diff] [blame] | 623 | InstrCount += 1; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 624 | |
| 625 | if (InstrCount > MaxDuplicateCount) |
| 626 | return false; |
| 627 | } |
| 628 | |
| 629 | // Check if any of the successors of TailBB has a PHI node in which the |
| 630 | // value corresponding to TailBB uses a subregister. |
| 631 | // If a phi node uses a register paired with a subregister, the actual |
| 632 | // "value type" of the phi may differ from the type of the register without |
| 633 | // any subregisters. Due to a bug, tail duplication may add a new operand |
| 634 | // without a necessary subregister, producing an invalid code. This is |
| 635 | // demonstrated by test/CodeGen/Hexagon/tail-dup-subreg-abort.ll. |
| 636 | // Disable tail duplication for this case for now, until the problem is |
| 637 | // fixed. |
| 638 | for (auto SB : TailBB.successors()) { |
| 639 | for (auto &I : *SB) { |
| 640 | if (!I.isPHI()) |
| 641 | break; |
| 642 | unsigned Idx = getPHISrcRegOpIdx(&I, &TailBB); |
| 643 | assert(Idx != 0); |
| 644 | MachineOperand &PU = I.getOperand(Idx); |
| 645 | if (PU.getSubReg() != 0) |
| 646 | return false; |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | if (HasIndirectbr && PreRegAlloc) |
| 651 | return true; |
| 652 | |
| 653 | if (IsSimple) |
| 654 | return true; |
| 655 | |
| 656 | if (!PreRegAlloc) |
| 657 | return true; |
| 658 | |
| 659 | return canCompletelyDuplicateBB(TailBB); |
| 660 | } |
| 661 | |
| 662 | /// True if this BB has only one unconditional jump. |
| 663 | bool TailDuplicator::isSimpleBB(MachineBasicBlock *TailBB) { |
| 664 | if (TailBB->succ_size() != 1) |
| 665 | return false; |
| 666 | if (TailBB->pred_empty()) |
| 667 | return false; |
| 668 | MachineBasicBlock::iterator I = TailBB->getFirstNonDebugInstr(); |
| 669 | if (I == TailBB->end()) |
| 670 | return true; |
| 671 | return I->isUnconditionalBranch(); |
| 672 | } |
| 673 | |
| 674 | static bool bothUsedInPHI(const MachineBasicBlock &A, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 675 | const SmallPtrSet<MachineBasicBlock *, 8> &SuccsB) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 676 | for (MachineBasicBlock *BB : A.successors()) |
| 677 | if (SuccsB.count(BB) && !BB->empty() && BB->begin()->isPHI()) |
| 678 | return true; |
| 679 | |
| 680 | return false; |
| 681 | } |
| 682 | |
| 683 | bool TailDuplicator::canCompletelyDuplicateBB(MachineBasicBlock &BB) { |
| 684 | for (MachineBasicBlock *PredBB : BB.predecessors()) { |
| 685 | if (PredBB->succ_size() > 1) |
| 686 | return false; |
| 687 | |
| 688 | MachineBasicBlock *PredTBB = nullptr, *PredFBB = nullptr; |
| 689 | SmallVector<MachineOperand, 4> PredCond; |
Sanjoy Das | d7389d6 | 2016-12-15 05:08:57 +0000 | [diff] [blame] | 690 | if (TII->analyzeBranch(*PredBB, PredTBB, PredFBB, PredCond)) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 691 | return false; |
| 692 | |
| 693 | if (!PredCond.empty()) |
| 694 | return false; |
| 695 | } |
| 696 | return true; |
| 697 | } |
| 698 | |
| 699 | bool TailDuplicator::duplicateSimpleBB( |
| 700 | MachineBasicBlock *TailBB, SmallVectorImpl<MachineBasicBlock *> &TDBBs, |
| 701 | const DenseSet<unsigned> &UsedByPhi, |
| 702 | SmallVectorImpl<MachineInstr *> &Copies) { |
| 703 | SmallPtrSet<MachineBasicBlock *, 8> Succs(TailBB->succ_begin(), |
| 704 | TailBB->succ_end()); |
| 705 | SmallVector<MachineBasicBlock *, 8> Preds(TailBB->pred_begin(), |
| 706 | TailBB->pred_end()); |
| 707 | bool Changed = false; |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 708 | for (MachineBasicBlock *PredBB : Preds) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 709 | if (PredBB->hasEHPadSuccessor()) |
| 710 | continue; |
| 711 | |
| 712 | if (bothUsedInPHI(*PredBB, Succs)) |
| 713 | continue; |
| 714 | |
| 715 | MachineBasicBlock *PredTBB = nullptr, *PredFBB = nullptr; |
| 716 | SmallVector<MachineOperand, 4> PredCond; |
Sanjoy Das | d7389d6 | 2016-12-15 05:08:57 +0000 | [diff] [blame] | 717 | if (TII->analyzeBranch(*PredBB, PredTBB, PredFBB, PredCond)) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 718 | continue; |
| 719 | |
| 720 | Changed = true; |
| 721 | DEBUG(dbgs() << "\nTail-duplicating into PredBB: " << *PredBB |
| 722 | << "From simple Succ: " << *TailBB); |
| 723 | |
| 724 | MachineBasicBlock *NewTarget = *TailBB->succ_begin(); |
Matthias Braun | 6442fc1 | 2016-08-18 00:59:32 +0000 | [diff] [blame] | 725 | MachineBasicBlock *NextBB = PredBB->getNextNode(); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 726 | |
| 727 | // Make PredFBB explicit. |
| 728 | if (PredCond.empty()) |
| 729 | PredFBB = PredTBB; |
| 730 | |
| 731 | // Make fall through explicit. |
| 732 | if (!PredTBB) |
| 733 | PredTBB = NextBB; |
| 734 | if (!PredFBB) |
| 735 | PredFBB = NextBB; |
| 736 | |
| 737 | // Redirect |
| 738 | if (PredFBB == TailBB) |
| 739 | PredFBB = NewTarget; |
| 740 | if (PredTBB == TailBB) |
| 741 | PredTBB = NewTarget; |
| 742 | |
| 743 | // Make the branch unconditional if possible |
| 744 | if (PredTBB == PredFBB) { |
| 745 | PredCond.clear(); |
| 746 | PredFBB = nullptr; |
| 747 | } |
| 748 | |
| 749 | // Avoid adding fall through branches. |
| 750 | if (PredFBB == NextBB) |
| 751 | PredFBB = nullptr; |
| 752 | if (PredTBB == NextBB && PredFBB == nullptr) |
| 753 | PredTBB = nullptr; |
| 754 | |
Taewook Oh | a49eb85 | 2017-02-27 19:30:01 +0000 | [diff] [blame] | 755 | auto DL = PredBB->findBranchDebugLoc(); |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 756 | TII->removeBranch(*PredBB); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 757 | |
| 758 | if (!PredBB->isSuccessor(NewTarget)) |
| 759 | PredBB->replaceSuccessor(TailBB, NewTarget); |
| 760 | else { |
| 761 | PredBB->removeSuccessor(TailBB, true); |
| 762 | assert(PredBB->succ_size() <= 1); |
| 763 | } |
| 764 | |
| 765 | if (PredTBB) |
Taewook Oh | a49eb85 | 2017-02-27 19:30:01 +0000 | [diff] [blame] | 766 | TII->insertBranch(*PredBB, PredTBB, PredFBB, PredCond, DL); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 767 | |
| 768 | TDBBs.push_back(PredBB); |
| 769 | } |
| 770 | return Changed; |
| 771 | } |
| 772 | |
Kyle Butt | 9e52c06 | 2016-07-19 23:54:21 +0000 | [diff] [blame] | 773 | bool TailDuplicator::canTailDuplicate(MachineBasicBlock *TailBB, |
| 774 | MachineBasicBlock *PredBB) { |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 775 | // EH edges are ignored by analyzeBranch. |
Kyle Butt | 9e52c06 | 2016-07-19 23:54:21 +0000 | [diff] [blame] | 776 | if (PredBB->succ_size() > 1) |
| 777 | return false; |
| 778 | |
Vitaly Buka | b238cb8 | 2017-05-22 21:33:54 +0000 | [diff] [blame] | 779 | MachineBasicBlock *PredTBB = nullptr, *PredFBB = nullptr; |
Kyle Butt | 9e52c06 | 2016-07-19 23:54:21 +0000 | [diff] [blame] | 780 | SmallVector<MachineOperand, 4> PredCond; |
Sanjoy Das | d7389d6 | 2016-12-15 05:08:57 +0000 | [diff] [blame] | 781 | if (TII->analyzeBranch(*PredBB, PredTBB, PredFBB, PredCond)) |
Kyle Butt | 9e52c06 | 2016-07-19 23:54:21 +0000 | [diff] [blame] | 782 | return false; |
| 783 | if (!PredCond.empty()) |
| 784 | return false; |
| 785 | return true; |
| 786 | } |
| 787 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 788 | /// If it is profitable, duplicate TailBB's contents in each |
| 789 | /// of its predecessors. |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 790 | /// \p IsSimple result of isSimpleBB |
| 791 | /// \p TailBB Block to be duplicated. |
| 792 | /// \p ForcedLayoutPred When non-null, use this block as the layout predecessor |
| 793 | /// instead of the previous block in MF's order. |
| 794 | /// \p TDBBs A vector to keep track of all blocks tail-duplicated |
| 795 | /// into. |
| 796 | /// \p Copies A vector of copy instructions inserted. Used later to |
| 797 | /// walk all the inserted copies and remove redundant ones. |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 798 | bool TailDuplicator::tailDuplicate(bool IsSimple, MachineBasicBlock *TailBB, |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 799 | MachineBasicBlock *ForcedLayoutPred, |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 800 | SmallVectorImpl<MachineBasicBlock *> &TDBBs, |
| 801 | SmallVectorImpl<MachineInstr *> &Copies) { |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 802 | DEBUG(dbgs() << "\n*** Tail-duplicating " << printMBBReference(*TailBB) |
| 803 | << '\n'); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 804 | |
| 805 | DenseSet<unsigned> UsedByPhi; |
| 806 | getRegsUsedByPHIs(*TailBB, &UsedByPhi); |
| 807 | |
| 808 | if (IsSimple) |
| 809 | return duplicateSimpleBB(TailBB, TDBBs, UsedByPhi, Copies); |
| 810 | |
| 811 | // Iterate through all the unique predecessors and tail-duplicate this |
| 812 | // block into them, if possible. Copying the list ahead of time also |
| 813 | // avoids trouble with the predecessor list reallocating. |
| 814 | bool Changed = false; |
| 815 | SmallSetVector<MachineBasicBlock *, 8> Preds(TailBB->pred_begin(), |
| 816 | TailBB->pred_end()); |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 817 | for (MachineBasicBlock *PredBB : Preds) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 818 | assert(TailBB != PredBB && |
| 819 | "Single-block loop should have been rejected earlier!"); |
Kyle Butt | 9e52c06 | 2016-07-19 23:54:21 +0000 | [diff] [blame] | 820 | |
| 821 | if (!canTailDuplicate(TailBB, PredBB)) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 822 | continue; |
| 823 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 824 | // Don't duplicate into a fall-through predecessor (at least for now). |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 825 | bool IsLayoutSuccessor = false; |
| 826 | if (ForcedLayoutPred) |
| 827 | IsLayoutSuccessor = (ForcedLayoutPred == PredBB); |
| 828 | else if (PredBB->isLayoutSuccessor(TailBB) && PredBB->canFallThrough()) |
| 829 | IsLayoutSuccessor = true; |
| 830 | if (IsLayoutSuccessor) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 831 | continue; |
| 832 | |
| 833 | DEBUG(dbgs() << "\nTail-duplicating into PredBB: " << *PredBB |
| 834 | << "From Succ: " << *TailBB); |
| 835 | |
| 836 | TDBBs.push_back(PredBB); |
| 837 | |
| 838 | // Remove PredBB's unconditional branch. |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 839 | TII->removeBranch(*PredBB); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 840 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 841 | // Clone the contents of TailBB into PredBB. |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 842 | DenseMap<unsigned, RegSubRegPair> LocalVRMap; |
| 843 | SmallVector<std::pair<unsigned, RegSubRegPair>, 4> CopyInfos; |
Matthias Braun | 55bc9b3 | 2017-08-22 23:56:30 +0000 | [diff] [blame] | 844 | for (MachineBasicBlock::iterator I = TailBB->begin(), E = TailBB->end(); |
| 845 | I != E; /* empty */) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 846 | MachineInstr *MI = &*I; |
| 847 | ++I; |
| 848 | if (MI->isPHI()) { |
| 849 | // Replace the uses of the def of the PHI with the register coming |
| 850 | // from PredBB. |
| 851 | processPHI(MI, TailBB, PredBB, LocalVRMap, CopyInfos, UsedByPhi, true); |
| 852 | } else { |
| 853 | // Replace def of virtual registers with new registers, and update |
| 854 | // uses with PHI source register or the new registers. |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 855 | duplicateInstruction(MI, TailBB, PredBB, LocalVRMap, UsedByPhi); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 856 | } |
| 857 | } |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 858 | appendCopies(PredBB, CopyInfos, Copies); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 859 | |
| 860 | // Simplify |
Vitaly Buka | b238cb8 | 2017-05-22 21:33:54 +0000 | [diff] [blame] | 861 | MachineBasicBlock *PredTBB = nullptr, *PredFBB = nullptr; |
Kyle Butt | 9e52c06 | 2016-07-19 23:54:21 +0000 | [diff] [blame] | 862 | SmallVector<MachineOperand, 4> PredCond; |
Sanjoy Das | d7389d6 | 2016-12-15 05:08:57 +0000 | [diff] [blame] | 863 | TII->analyzeBranch(*PredBB, PredTBB, PredFBB, PredCond); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 864 | |
Geoff Berry | f8c29d6 | 2016-06-14 19:40:10 +0000 | [diff] [blame] | 865 | NumTailDupAdded += TailBB->size() - 1; // subtract one for removed branch |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 866 | |
| 867 | // Update the CFG. |
| 868 | PredBB->removeSuccessor(PredBB->succ_begin()); |
| 869 | assert(PredBB->succ_empty() && |
| 870 | "TailDuplicate called on block with multiple successors!"); |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 871 | for (MachineBasicBlock *Succ : TailBB->successors()) |
| 872 | PredBB->addSuccessor(Succ, MBPI->getEdgeProbability(TailBB, Succ)); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 873 | |
| 874 | Changed = true; |
| 875 | ++NumTailDups; |
| 876 | } |
| 877 | |
| 878 | // If TailBB was duplicated into all its predecessors except for the prior |
| 879 | // block, which falls through unconditionally, move the contents of this |
| 880 | // block into the prior block. |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 881 | MachineBasicBlock *PrevBB = ForcedLayoutPred; |
| 882 | if (!PrevBB) |
| 883 | PrevBB = &*std::prev(TailBB->getIterator()); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 884 | MachineBasicBlock *PriorTBB = nullptr, *PriorFBB = nullptr; |
| 885 | SmallVector<MachineOperand, 4> PriorCond; |
| 886 | // This has to check PrevBB->succ_size() because EH edges are ignored by |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 887 | // analyzeBranch. |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 888 | if (PrevBB->succ_size() == 1 && |
Kyle Butt | d2b886e | 2016-07-20 00:01:51 +0000 | [diff] [blame] | 889 | // Layout preds are not always CFG preds. Check. |
| 890 | *PrevBB->succ_begin() == TailBB && |
Sanjoy Das | d7389d6 | 2016-12-15 05:08:57 +0000 | [diff] [blame] | 891 | !TII->analyzeBranch(*PrevBB, PriorTBB, PriorFBB, PriorCond) && |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 892 | PriorCond.empty() && |
| 893 | (!PriorTBB || PriorTBB == TailBB) && |
| 894 | TailBB->pred_size() == 1 && |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 895 | !TailBB->hasAddressTaken()) { |
| 896 | DEBUG(dbgs() << "\nMerging into block: " << *PrevBB |
| 897 | << "From MBB: " << *TailBB); |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 898 | // There may be a branch to the layout successor. This is unlikely but it |
| 899 | // happens. The correct thing to do is to remove the branch before |
| 900 | // duplicating the instructions in all cases. |
| 901 | TII->removeBranch(*PrevBB); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 902 | if (PreRegAlloc) { |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 903 | DenseMap<unsigned, RegSubRegPair> LocalVRMap; |
| 904 | SmallVector<std::pair<unsigned, RegSubRegPair>, 4> CopyInfos; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 905 | MachineBasicBlock::iterator I = TailBB->begin(); |
| 906 | // Process PHI instructions first. |
| 907 | while (I != TailBB->end() && I->isPHI()) { |
| 908 | // Replace the uses of the def of the PHI with the register coming |
| 909 | // from PredBB. |
| 910 | MachineInstr *MI = &*I++; |
| 911 | processPHI(MI, TailBB, PrevBB, LocalVRMap, CopyInfos, UsedByPhi, true); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | // Now copy the non-PHI instructions. |
| 915 | while (I != TailBB->end()) { |
| 916 | // Replace def of virtual registers with new registers, and update |
| 917 | // uses with PHI source register or the new registers. |
| 918 | MachineInstr *MI = &*I++; |
| 919 | assert(!MI->isBundle() && "Not expecting bundles before regalloc!"); |
Kyle Butt | 3ed4273 | 2016-08-25 01:37:03 +0000 | [diff] [blame] | 920 | duplicateInstruction(MI, TailBB, PrevBB, LocalVRMap, UsedByPhi); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 921 | MI->eraseFromParent(); |
| 922 | } |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 923 | appendCopies(PrevBB, CopyInfos, Copies); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 924 | } else { |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 925 | TII->removeBranch(*PrevBB); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 926 | // No PHIs to worry about, just splice the instructions over. |
| 927 | PrevBB->splice(PrevBB->end(), TailBB, TailBB->begin(), TailBB->end()); |
| 928 | } |
| 929 | PrevBB->removeSuccessor(PrevBB->succ_begin()); |
| 930 | assert(PrevBB->succ_empty()); |
| 931 | PrevBB->transferSuccessors(TailBB); |
| 932 | TDBBs.push_back(PrevBB); |
| 933 | Changed = true; |
| 934 | } |
| 935 | |
| 936 | // If this is after register allocation, there are no phis to fix. |
| 937 | if (!PreRegAlloc) |
| 938 | return Changed; |
| 939 | |
| 940 | // If we made no changes so far, we are safe. |
| 941 | if (!Changed) |
| 942 | return Changed; |
| 943 | |
| 944 | // Handle the nasty case in that we duplicated a block that is part of a loop |
| 945 | // into some but not all of its predecessors. For example: |
| 946 | // 1 -> 2 <-> 3 | |
| 947 | // \ | |
| 948 | // \---> rest | |
| 949 | // if we duplicate 2 into 1 but not into 3, we end up with |
| 950 | // 12 -> 3 <-> 2 -> rest | |
| 951 | // \ / | |
| 952 | // \----->-----/ | |
| 953 | // If there was a "var = phi(1, 3)" in 2, it has to be ultimately replaced |
| 954 | // with a phi in 3 (which now dominates 2). |
| 955 | // What we do here is introduce a copy in 3 of the register defined by the |
| 956 | // phi, just like when we are duplicating 2 into 3, but we don't copy any |
| 957 | // real instructions or remove the 3 -> 2 edge from the phi in 2. |
Matt Arsenault | b8037a1 | 2016-08-16 20:38:05 +0000 | [diff] [blame] | 958 | for (MachineBasicBlock *PredBB : Preds) { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 959 | if (is_contained(TDBBs, PredBB)) |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 960 | continue; |
| 961 | |
| 962 | // EH edges |
| 963 | if (PredBB->succ_size() != 1) |
| 964 | continue; |
| 965 | |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 966 | DenseMap<unsigned, RegSubRegPair> LocalVRMap; |
| 967 | SmallVector<std::pair<unsigned, RegSubRegPair>, 4> CopyInfos; |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 968 | MachineBasicBlock::iterator I = TailBB->begin(); |
| 969 | // Process PHI instructions first. |
| 970 | while (I != TailBB->end() && I->isPHI()) { |
| 971 | // Replace the uses of the def of the PHI with the register coming |
| 972 | // from PredBB. |
| 973 | MachineInstr *MI = &*I++; |
| 974 | processPHI(MI, TailBB, PredBB, LocalVRMap, CopyInfos, UsedByPhi, false); |
| 975 | } |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 976 | appendCopies(PredBB, CopyInfos, Copies); |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | return Changed; |
| 980 | } |
| 981 | |
Krzysztof Parzyszek | 4773f64 | 2016-04-26 18:36:34 +0000 | [diff] [blame] | 982 | /// At the end of the block \p MBB generate COPY instructions between registers |
| 983 | /// described by \p CopyInfos. Append resulting instructions to \p Copies. |
| 984 | void TailDuplicator::appendCopies(MachineBasicBlock *MBB, |
| 985 | SmallVectorImpl<std::pair<unsigned,RegSubRegPair>> &CopyInfos, |
| 986 | SmallVectorImpl<MachineInstr*> &Copies) { |
| 987 | MachineBasicBlock::iterator Loc = MBB->getFirstTerminator(); |
| 988 | const MCInstrDesc &CopyD = TII->get(TargetOpcode::COPY); |
| 989 | for (auto &CI : CopyInfos) { |
| 990 | auto C = BuildMI(*MBB, Loc, DebugLoc(), CopyD, CI.first) |
| 991 | .addReg(CI.second.Reg, 0, CI.second.SubReg); |
| 992 | Copies.push_back(C); |
| 993 | } |
| 994 | } |
| 995 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 996 | /// Remove the specified dead machine basic block from the function, updating |
| 997 | /// the CFG. |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 998 | void TailDuplicator::removeDeadBlock( |
| 999 | MachineBasicBlock *MBB, |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 1000 | function_ref<void(MachineBasicBlock *)> *RemovalCallback) { |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 1001 | assert(MBB->pred_empty() && "MBB must be dead!"); |
| 1002 | DEBUG(dbgs() << "\nRemoving MBB: " << *MBB); |
| 1003 | |
Kyle Butt | 0846e56 | 2016-10-11 20:36:43 +0000 | [diff] [blame] | 1004 | if (RemovalCallback) |
| 1005 | (*RemovalCallback)(MBB); |
| 1006 | |
Kyle Butt | 3232dbb | 2016-04-08 20:35:01 +0000 | [diff] [blame] | 1007 | // Remove all successors. |
| 1008 | while (!MBB->succ_empty()) |
| 1009 | MBB->removeSuccessor(MBB->succ_end() - 1); |
| 1010 | |
| 1011 | // Remove the block. |
| 1012 | MBB->eraseFromParent(); |
| 1013 | } |