Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 1 | //===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the SSAUpdater class. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 13 | #include "llvm/Transforms/Utils/SSAUpdater.h" |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/DenseMap.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 7b70bef | 2011-07-18 01:43:58 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/TinyPtrVector.h" |
Duncan Sands | 6370495 | 2010-11-16 17:41:24 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/InstructionSimplify.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 19 | #include "llvm/IR/BasicBlock.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 20 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Constants.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 22 | #include "llvm/IR/DebugLoc.h" |
| 23 | #include "llvm/IR/Instruction.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Instructions.h" |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Module.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Use.h" |
| 27 | #include "llvm/IR/Value.h" |
| 28 | #include "llvm/IR/ValueHandle.h" |
| 29 | #include "llvm/Support/Casting.h" |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Debug.h" |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 31 | #include "llvm/Support/raw_ostream.h" |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 32 | #include "llvm/Transforms/Utils/SSAUpdaterImpl.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 33 | #include <cassert> |
| 34 | #include <utility> |
Devang Patel | a8e7411 | 2011-04-29 22:28:59 +0000 | [diff] [blame] | 35 | |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 36 | using namespace llvm; |
| 37 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 38 | #define DEBUG_TYPE "ssaupdater" |
| 39 | |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 40 | using AvailableValsTy = DenseMap<BasicBlock *, Value *>; |
| 41 | |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 42 | static AvailableValsTy &getAvailableVals(void *AV) { |
| 43 | return *static_cast<AvailableValsTy*>(AV); |
| 44 | } |
| 45 | |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 46 | SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode *> *NewPHI) |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 47 | : InsertedPHIs(NewPHI) {} |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 48 | |
| 49 | SSAUpdater::~SSAUpdater() { |
Richard Smith | 257c5f2 | 2012-08-17 21:42:44 +0000 | [diff] [blame] | 50 | delete static_cast<AvailableValsTy*>(AV); |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 53 | void SSAUpdater::Initialize(Type *Ty, StringRef Name) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 54 | if (!AV) |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 55 | AV = new AvailableValsTy(); |
| 56 | else |
| 57 | getAvailableVals(AV).clear(); |
Duncan Sands | 6778149 | 2010-09-02 08:14:03 +0000 | [diff] [blame] | 58 | ProtoType = Ty; |
| 59 | ProtoName = Name; |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Chris Lattner | 9c382ce | 2009-10-10 23:41:48 +0000 | [diff] [blame] | 62 | bool SSAUpdater::HasValueForBlock(BasicBlock *BB) const { |
| 63 | return getAvailableVals(AV).count(BB); |
| 64 | } |
| 65 | |
David Stenberg | c916385 | 2018-10-16 08:06:48 +0000 | [diff] [blame] | 66 | Value *SSAUpdater::FindValueForBlock(BasicBlock *BB) const { |
| 67 | AvailableValsTy::iterator AVI = getAvailableVals(AV).find(BB); |
| 68 | return (AVI != getAvailableVals(AV).end()) ? AVI->second : nullptr; |
| 69 | } |
| 70 | |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 71 | void SSAUpdater::AddAvailableValue(BasicBlock *BB, Value *V) { |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 72 | assert(ProtoType && "Need to initialize SSAUpdater"); |
Duncan Sands | 6778149 | 2010-09-02 08:14:03 +0000 | [diff] [blame] | 73 | assert(ProtoType == V->getType() && |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 74 | "All rewritten values must have the same type"); |
| 75 | getAvailableVals(AV)[BB] = V; |
| 76 | } |
| 77 | |
Bob Wilson | ca51425 | 2010-04-17 03:08:24 +0000 | [diff] [blame] | 78 | static bool IsEquivalentPHI(PHINode *PHI, |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 79 | SmallDenseMap<BasicBlock *, Value *, 8> &ValueMapping) { |
Bob Wilson | 7577e94 | 2010-01-27 22:01:02 +0000 | [diff] [blame] | 80 | unsigned PHINumValues = PHI->getNumIncomingValues(); |
| 81 | if (PHINumValues != ValueMapping.size()) |
| 82 | return false; |
| 83 | |
| 84 | // Scan the phi to see if it matches. |
| 85 | for (unsigned i = 0, e = PHINumValues; i != e; ++i) |
| 86 | if (ValueMapping[PHI->getIncomingBlock(i)] != |
| 87 | PHI->getIncomingValue(i)) { |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | return true; |
| 92 | } |
| 93 | |
Chris Lattner | e474a8d | 2009-10-10 22:41:58 +0000 | [diff] [blame] | 94 | Value *SSAUpdater::GetValueAtEndOfBlock(BasicBlock *BB) { |
Chris Lattner | e474a8d | 2009-10-10 22:41:58 +0000 | [diff] [blame] | 95 | Value *Res = GetValueAtEndOfBlockInternal(BB); |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 96 | return Res; |
| 97 | } |
| 98 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 99 | Value *SSAUpdater::GetValueInMiddleOfBlock(BasicBlock *BB) { |
| 100 | // If there is no definition of the renamed variable in this block, just use |
| 101 | // GetValueAtEndOfBlock to do our work. |
Bob Wilson | ca51425 | 2010-04-17 03:08:24 +0000 | [diff] [blame] | 102 | if (!HasValueForBlock(BB)) |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 103 | return GetValueAtEndOfBlock(BB); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 104 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 105 | // Otherwise, we have the hard case. Get the live-in values for each |
| 106 | // predecessor. |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 107 | SmallVector<std::pair<BasicBlock *, Value *>, 8> PredValues; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 108 | Value *SingularValue = nullptr; |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 110 | // We can get our predecessor info by walking the pred_iterator list, but it |
| 111 | // is relatively slow. If we already have PHI nodes in this block, walk one |
| 112 | // of them to get the predecessor list instead. |
| 113 | if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) { |
| 114 | for (unsigned i = 0, e = SomePhi->getNumIncomingValues(); i != e; ++i) { |
| 115 | BasicBlock *PredBB = SomePhi->getIncomingBlock(i); |
| 116 | Value *PredVal = GetValueAtEndOfBlock(PredBB); |
| 117 | PredValues.push_back(std::make_pair(PredBB, PredVal)); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 118 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 119 | // Compute SingularValue. |
| 120 | if (i == 0) |
| 121 | SingularValue = PredVal; |
| 122 | else if (PredVal != SingularValue) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 123 | SingularValue = nullptr; |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 124 | } |
| 125 | } else { |
| 126 | bool isFirstPred = true; |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 127 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { |
| 128 | BasicBlock *PredBB = *PI; |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 129 | Value *PredVal = GetValueAtEndOfBlock(PredBB); |
| 130 | PredValues.push_back(std::make_pair(PredBB, PredVal)); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 131 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 132 | // Compute SingularValue. |
| 133 | if (isFirstPred) { |
| 134 | SingularValue = PredVal; |
| 135 | isFirstPred = false; |
| 136 | } else if (PredVal != SingularValue) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 137 | SingularValue = nullptr; |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 138 | } |
| 139 | } |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 141 | // If there are no predecessors, just return undef. |
| 142 | if (PredValues.empty()) |
Duncan Sands | 6778149 | 2010-09-02 08:14:03 +0000 | [diff] [blame] | 143 | return UndefValue::get(ProtoType); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 144 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 145 | // Otherwise, if all the merged values are the same, just use it. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 146 | if (SingularValue) |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 147 | return SingularValue; |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 148 | |
Bob Wilson | ca51425 | 2010-04-17 03:08:24 +0000 | [diff] [blame] | 149 | // Otherwise, we do need a PHI: check to see if we already have one available |
| 150 | // in this block that produces the right value. |
| 151 | if (isa<PHINode>(BB->begin())) { |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 152 | SmallDenseMap<BasicBlock *, Value *, 8> ValueMapping(PredValues.begin(), |
| 153 | PredValues.end()); |
Benjamin Kramer | c7fc81e | 2017-12-30 15:27:33 +0000 | [diff] [blame] | 154 | for (PHINode &SomePHI : BB->phis()) { |
| 155 | if (IsEquivalentPHI(&SomePHI, ValueMapping)) |
| 156 | return &SomePHI; |
Bob Wilson | ca51425 | 2010-04-17 03:08:24 +0000 | [diff] [blame] | 157 | } |
| 158 | } |
Bob Wilson | 7577e94 | 2010-01-27 22:01:02 +0000 | [diff] [blame] | 159 | |
Chris Lattner | 8fb07c5 | 2009-12-21 07:16:11 +0000 | [diff] [blame] | 160 | // Ok, we have no way out, insert a new one now. |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 161 | PHINode *InsertedPHI = PHINode::Create(ProtoType, PredValues.size(), |
| 162 | ProtoName, &BB->front()); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 163 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 164 | // Fill in all the predecessors of the PHI. |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 165 | for (const auto &PredValue : PredValues) |
| 166 | InsertedPHI->addIncoming(PredValue.second, PredValue.first); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 167 | |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 168 | // See if the PHI node can be merged to a single value. This can happen in |
| 169 | // loop cases when we get a PHI of itself and one other value. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 170 | if (Value *V = |
| 171 | SimplifyInstruction(InsertedPHI, BB->getModule()->getDataLayout())) { |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 172 | InsertedPHI->eraseFromParent(); |
Duncan Sands | 6370495 | 2010-11-16 17:41:24 +0000 | [diff] [blame] | 173 | return V; |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 174 | } |
Chris Lattner | 249265d | 2009-10-10 23:15:24 +0000 | [diff] [blame] | 175 | |
Eli Bendersky | f0ad360 | 2012-06-25 10:13:14 +0000 | [diff] [blame] | 176 | // Set the DebugLoc of the inserted PHI, if available. |
| 177 | DebugLoc DL; |
| 178 | if (const Instruction *I = BB->getFirstNonPHI()) |
| 179 | DL = I->getDebugLoc(); |
| 180 | InsertedPHI->setDebugLoc(DL); |
Devang Patel | a8e7411 | 2011-04-29 22:28:59 +0000 | [diff] [blame] | 181 | |
Chris Lattner | 249265d | 2009-10-10 23:15:24 +0000 | [diff] [blame] | 182 | // If the client wants to know about all new instructions, tell it. |
| 183 | if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 184 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 185 | LLVM_DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n"); |
Chris Lattner | 67cdd8b | 2009-10-10 23:00:11 +0000 | [diff] [blame] | 186 | return InsertedPHI; |
| 187 | } |
| 188 | |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 189 | void SSAUpdater::RewriteUse(Use &U) { |
| 190 | Instruction *User = cast<Instruction>(U.getUser()); |
Bob Wilson | ca51425 | 2010-04-17 03:08:24 +0000 | [diff] [blame] | 191 | |
Chris Lattner | 7f90368 | 2009-10-20 20:27:49 +0000 | [diff] [blame] | 192 | Value *V; |
| 193 | if (PHINode *UserPN = dyn_cast<PHINode>(User)) |
| 194 | V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U)); |
| 195 | else |
| 196 | V = GetValueInMiddleOfBlock(User->getParent()); |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 197 | |
Nadav Rotem | 8d80452 | 2012-08-13 23:06:54 +0000 | [diff] [blame] | 198 | // Notify that users of the existing value that it is being replaced. |
| 199 | Value *OldVal = U.get(); |
| 200 | if (OldVal != V && OldVal->hasValueHandle()) |
| 201 | ValueHandleBase::ValueIsRAUWd(OldVal, V); |
| 202 | |
Torok Edwin | cf10ec9 | 2009-10-20 15:42:00 +0000 | [diff] [blame] | 203 | U.set(V); |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Chris Lattner | c3fb03e | 2010-08-29 04:54:06 +0000 | [diff] [blame] | 206 | void SSAUpdater::RewriteUseAfterInsertions(Use &U) { |
| 207 | Instruction *User = cast<Instruction>(U.getUser()); |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 208 | |
Chris Lattner | c3fb03e | 2010-08-29 04:54:06 +0000 | [diff] [blame] | 209 | Value *V; |
| 210 | if (PHINode *UserPN = dyn_cast<PHINode>(User)) |
| 211 | V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U)); |
| 212 | else |
| 213 | V = GetValueAtEndOfBlock(User->getParent()); |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 214 | |
Chris Lattner | c3fb03e | 2010-08-29 04:54:06 +0000 | [diff] [blame] | 215 | U.set(V); |
| 216 | } |
| 217 | |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 218 | namespace llvm { |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 219 | |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 220 | template<> |
| 221 | class SSAUpdaterTraits<SSAUpdater> { |
| 222 | public: |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 223 | using BlkT = BasicBlock; |
| 224 | using ValT = Value *; |
| 225 | using PhiT = PHINode; |
| 226 | using BlkSucc_iterator = succ_iterator; |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 227 | |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 228 | static BlkSucc_iterator BlkSucc_begin(BlkT *BB) { return succ_begin(BB); } |
| 229 | static BlkSucc_iterator BlkSucc_end(BlkT *BB) { return succ_end(BB); } |
| 230 | |
Chandler Carruth | c60fbe6 | 2012-06-20 08:39:30 +0000 | [diff] [blame] | 231 | class PHI_iterator { |
| 232 | private: |
| 233 | PHINode *PHI; |
| 234 | unsigned idx; |
| 235 | |
| 236 | public: |
| 237 | explicit PHI_iterator(PHINode *P) // begin iterator |
| 238 | : PHI(P), idx(0) {} |
| 239 | PHI_iterator(PHINode *P, bool) // end iterator |
| 240 | : PHI(P), idx(PHI->getNumIncomingValues()) {} |
| 241 | |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 242 | PHI_iterator &operator++() { ++idx; return *this; } |
Chandler Carruth | c60fbe6 | 2012-06-20 08:39:30 +0000 | [diff] [blame] | 243 | bool operator==(const PHI_iterator& x) const { return idx == x.idx; } |
| 244 | bool operator!=(const PHI_iterator& x) const { return !operator==(x); } |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 245 | |
Chandler Carruth | c60fbe6 | 2012-06-20 08:39:30 +0000 | [diff] [blame] | 246 | Value *getIncomingValue() { return PHI->getIncomingValue(idx); } |
| 247 | BasicBlock *getIncomingBlock() { return PHI->getIncomingBlock(idx); } |
| 248 | }; |
| 249 | |
| 250 | static PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); } |
| 251 | static PHI_iterator PHI_end(PhiT *PHI) { |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 252 | return PHI_iterator(PHI, true); |
| 253 | } |
| 254 | |
| 255 | /// FindPredecessorBlocks - Put the predecessors of Info->BB into the Preds |
| 256 | /// vector, set Info->NumPreds, and allocate space in Info->Preds. |
| 257 | static void FindPredecessorBlocks(BasicBlock *BB, |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 258 | SmallVectorImpl<BasicBlock *> *Preds) { |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 259 | // We can get our predecessor info by walking the pred_iterator list, |
| 260 | // but it is relatively slow. If we already have PHI nodes in this |
| 261 | // block, walk one of them to get the predecessor list instead. |
| 262 | if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) { |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 263 | Preds->append(SomePhi->block_begin(), SomePhi->block_end()); |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 264 | } else { |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 265 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 266 | Preds->push_back(*PI); |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | |
| 270 | /// GetUndefVal - Get an undefined value of the same type as the value |
| 271 | /// being handled. |
| 272 | static Value *GetUndefVal(BasicBlock *BB, SSAUpdater *Updater) { |
Duncan Sands | 6778149 | 2010-09-02 08:14:03 +0000 | [diff] [blame] | 273 | return UndefValue::get(Updater->ProtoType); |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | /// CreateEmptyPHI - Create a new PHI instruction in the specified block. |
| 277 | /// Reserve space for the operands but do not fill them in yet. |
| 278 | static Value *CreateEmptyPHI(BasicBlock *BB, unsigned NumPreds, |
| 279 | SSAUpdater *Updater) { |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 280 | PHINode *PHI = PHINode::Create(Updater->ProtoType, NumPreds, |
| 281 | Updater->ProtoName, &BB->front()); |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 282 | return PHI; |
| 283 | } |
| 284 | |
| 285 | /// AddPHIOperand - Add the specified value as an operand of the PHI for |
| 286 | /// the specified predecessor block. |
| 287 | static void AddPHIOperand(PHINode *PHI, Value *Val, BasicBlock *Pred) { |
| 288 | PHI->addIncoming(Val, Pred); |
| 289 | } |
| 290 | |
| 291 | /// InstrIsPHI - Check if an instruction is a PHI. |
| 292 | /// |
| 293 | static PHINode *InstrIsPHI(Instruction *I) { |
| 294 | return dyn_cast<PHINode>(I); |
| 295 | } |
| 296 | |
| 297 | /// ValueIsPHI - Check if a value is a PHI. |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 298 | static PHINode *ValueIsPHI(Value *Val, SSAUpdater *Updater) { |
| 299 | return dyn_cast<PHINode>(Val); |
| 300 | } |
| 301 | |
| 302 | /// ValueIsNewPHI - Like ValueIsPHI but also check if the PHI has no source |
| 303 | /// operands, i.e., it was just added. |
| 304 | static PHINode *ValueIsNewPHI(Value *Val, SSAUpdater *Updater) { |
| 305 | PHINode *PHI = ValueIsPHI(Val, Updater); |
| 306 | if (PHI && PHI->getNumIncomingValues() == 0) |
| 307 | return PHI; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 308 | return nullptr; |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | /// GetPHIValue - For the specified PHI instruction, return the value |
| 312 | /// that it defines. |
| 313 | static Value *GetPHIValue(PHINode *PHI) { |
| 314 | return PHI; |
| 315 | } |
| 316 | }; |
| 317 | |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 318 | } // end namespace llvm |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 319 | |
Chandler Carruth | 6b55dbe | 2013-07-28 22:00:33 +0000 | [diff] [blame] | 320 | /// Check to see if AvailableVals has an entry for the specified BB and if so, |
| 321 | /// return it. If not, construct SSA form by first calculating the required |
| 322 | /// placement of PHIs and then inserting new PHIs where needed. |
Chris Lattner | e474a8d | 2009-10-10 22:41:58 +0000 | [diff] [blame] | 323 | Value *SSAUpdater::GetValueAtEndOfBlockInternal(BasicBlock *BB) { |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 324 | AvailableValsTy &AvailableVals = getAvailableVals(AV); |
Bob Wilson | ca51425 | 2010-04-17 03:08:24 +0000 | [diff] [blame] | 325 | if (Value *V = AvailableVals[BB]) |
| 326 | return V; |
Duncan Sands | 0058c7b | 2009-10-16 15:20:13 +0000 | [diff] [blame] | 327 | |
Bob Wilson | d1b38e3 | 2010-05-04 23:18:19 +0000 | [diff] [blame] | 328 | SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs); |
| 329 | return Impl.GetValue(BB); |
Chris Lattner | 60d4e69 | 2009-10-10 09:04:27 +0000 | [diff] [blame] | 330 | } |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 331 | |
| 332 | //===----------------------------------------------------------------------===// |
| 333 | // LoadAndStorePromoter Implementation |
| 334 | //===----------------------------------------------------------------------===// |
| 335 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 336 | LoadAndStorePromoter:: |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 337 | LoadAndStorePromoter(ArrayRef<const Instruction *> Insts, |
Devang Patel | a3cbf52 | 2011-07-06 21:09:55 +0000 | [diff] [blame] | 338 | SSAUpdater &S, StringRef BaseName) : SSA(S) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 339 | if (Insts.empty()) return; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 340 | |
Pete Cooper | 41e0ee3 | 2015-05-13 01:12:16 +0000 | [diff] [blame] | 341 | const Value *SomeVal; |
| 342 | if (const LoadInst *LI = dyn_cast<LoadInst>(Insts[0])) |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 343 | SomeVal = LI; |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 344 | else |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 345 | SomeVal = cast<StoreInst>(Insts[0])->getOperand(0); |
| 346 | |
| 347 | if (BaseName.empty()) |
| 348 | BaseName = SomeVal->getName(); |
| 349 | SSA.Initialize(SomeVal->getType(), BaseName); |
| 350 | } |
| 351 | |
Alina Sbirlea | 6cba96e | 2019-02-06 20:25:17 +0000 | [diff] [blame] | 352 | void LoadAndStorePromoter::run(const SmallVectorImpl<Instruction *> &Insts) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 353 | // First step: bucket up uses of the alloca by the block they occur in. |
| 354 | // This is important because we have to handle multiple defs/uses in a block |
| 355 | // ourselves: SSAUpdater is purely for cross-block references. |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 356 | DenseMap<BasicBlock *, TinyPtrVector<Instruction *>> UsesByBlock; |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 357 | |
| 358 | for (Instruction *User : Insts) |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 359 | UsesByBlock[User->getParent()].push_back(User); |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 360 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 361 | // Okay, now we can iterate over all the blocks in the function with uses, |
| 362 | // processing them. Keep track of which loads are loading a live-in value. |
| 363 | // Walk the uses in the use-list order to be determinstic. |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 364 | SmallVector<LoadInst *, 32> LiveInLoads; |
| 365 | DenseMap<Value *, Value *> ReplacedLoads; |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 366 | |
| 367 | for (Instruction *User : Insts) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 368 | BasicBlock *BB = User->getParent(); |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 369 | TinyPtrVector<Instruction *> &BlockUses = UsesByBlock[BB]; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 370 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 371 | // If this block has already been processed, ignore this repeat use. |
| 372 | if (BlockUses.empty()) continue; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 373 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 374 | // Okay, this is the first use in the block. If this block just has a |
| 375 | // single user in it, we can rewrite it trivially. |
| 376 | if (BlockUses.size() == 1) { |
| 377 | // If it is a store, it is a trivial def of the value in the block. |
Cameron Zwarich | 843bc7d | 2011-05-24 03:10:43 +0000 | [diff] [blame] | 378 | if (StoreInst *SI = dyn_cast<StoreInst>(User)) { |
Devang Patel | a3cbf52 | 2011-07-06 21:09:55 +0000 | [diff] [blame] | 379 | updateDebugInfo(SI); |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 380 | SSA.AddAvailableValue(BB, SI->getOperand(0)); |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 381 | } else |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 382 | // Otherwise it is a load, queue it to rewrite as a live-in load. |
| 383 | LiveInLoads.push_back(cast<LoadInst>(User)); |
| 384 | BlockUses.clear(); |
| 385 | continue; |
| 386 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 387 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 388 | // Otherwise, check to see if this block is all loads. |
| 389 | bool HasStore = false; |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 390 | for (Instruction *I : BlockUses) { |
| 391 | if (isa<StoreInst>(I)) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 392 | HasStore = true; |
| 393 | break; |
| 394 | } |
| 395 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 396 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 397 | // If so, we can queue them all as live in loads. We don't have an |
| 398 | // efficient way to tell which on is first in the block and don't want to |
| 399 | // scan large blocks, so just add all loads as live ins. |
| 400 | if (!HasStore) { |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 401 | for (Instruction *I : BlockUses) |
| 402 | LiveInLoads.push_back(cast<LoadInst>(I)); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 403 | BlockUses.clear(); |
| 404 | continue; |
| 405 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 406 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 407 | // Otherwise, we have mixed loads and stores (or just a bunch of stores). |
| 408 | // Since SSAUpdater is purely for cross-block values, we need to determine |
| 409 | // the order of these instructions in the block. If the first use in the |
| 410 | // block is a load, then it uses the live in value. The last store defines |
| 411 | // the live out value. We handle this by doing a linear scan of the block. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 412 | Value *StoredValue = nullptr; |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 413 | for (Instruction &I : *BB) { |
| 414 | if (LoadInst *L = dyn_cast<LoadInst>(&I)) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 415 | // If this is a load from an unrelated pointer, ignore it. |
| 416 | if (!isInstInList(L, Insts)) continue; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 417 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 418 | // If we haven't seen a store yet, this is a live in use, otherwise |
| 419 | // use the stored value. |
| 420 | if (StoredValue) { |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 421 | replaceLoadWithValue(L, StoredValue); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 422 | L->replaceAllUsesWith(StoredValue); |
| 423 | ReplacedLoads[L] = StoredValue; |
| 424 | } else { |
| 425 | LiveInLoads.push_back(L); |
| 426 | } |
| 427 | continue; |
| 428 | } |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 429 | |
| 430 | if (StoreInst *SI = dyn_cast<StoreInst>(&I)) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 431 | // If this is a store to an unrelated pointer, ignore it. |
Cameron Zwarich | 843bc7d | 2011-05-24 03:10:43 +0000 | [diff] [blame] | 432 | if (!isInstInList(SI, Insts)) continue; |
Devang Patel | a3cbf52 | 2011-07-06 21:09:55 +0000 | [diff] [blame] | 433 | updateDebugInfo(SI); |
Cameron Zwarich | 843bc7d | 2011-05-24 03:10:43 +0000 | [diff] [blame] | 434 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 435 | // Remember that this is the active value in the block. |
Cameron Zwarich | 843bc7d | 2011-05-24 03:10:43 +0000 | [diff] [blame] | 436 | StoredValue = SI->getOperand(0); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 437 | } |
| 438 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 440 | // The last stored value that happened is the live-out for the block. |
| 441 | assert(StoredValue && "Already checked that there is a store in block"); |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 442 | SSA.AddAvailableValue(BB, StoredValue); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 443 | BlockUses.clear(); |
| 444 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 445 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 446 | // Okay, now we rewrite all loads that use live-in values in the loop, |
| 447 | // inserting PHI nodes as necessary. |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 448 | for (LoadInst *ALoad : LiveInLoads) { |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 449 | Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent()); |
| 450 | replaceLoadWithValue(ALoad, NewVal); |
Chris Lattner | b401776 | 2011-01-24 03:29:07 +0000 | [diff] [blame] | 451 | |
| 452 | // Avoid assertions in unreachable code. |
| 453 | if (NewVal == ALoad) NewVal = UndefValue::get(NewVal->getType()); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 454 | ALoad->replaceAllUsesWith(NewVal); |
| 455 | ReplacedLoads[ALoad] = NewVal; |
| 456 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 457 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 458 | // Allow the client to do stuff before we start nuking things. |
| 459 | doExtraRewritesBeforeFinalDeletion(); |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 460 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 461 | // Now that everything is rewritten, delete the old instructions from the |
| 462 | // function. They should all be dead now. |
Benjamin Kramer | dfedfeb | 2015-02-19 20:04:02 +0000 | [diff] [blame] | 463 | for (Instruction *User : Insts) { |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 464 | // If this is a load that still has uses, then the load must have been added |
| 465 | // as a live value in the SSAUpdate data structure for a block (e.g. because |
| 466 | // the loaded value was stored later). In this case, we need to recursively |
| 467 | // propagate the updates until we get to the real value. |
| 468 | if (!User->use_empty()) { |
| 469 | Value *NewVal = ReplacedLoads[User]; |
| 470 | assert(NewVal && "not a replaced load?"); |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 471 | |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 472 | // Propagate down to the ultimate replacee. The intermediately loads |
| 473 | // could theoretically already have been deleted, so we don't want to |
| 474 | // dereference the Value*'s. |
| 475 | DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal); |
| 476 | while (RLI != ReplacedLoads.end()) { |
| 477 | NewVal = RLI->second; |
| 478 | RLI = ReplacedLoads.find(NewVal); |
| 479 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 480 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 481 | replaceLoadWithValue(cast<LoadInst>(User), NewVal); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 482 | User->replaceAllUsesWith(NewVal); |
| 483 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 484 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 485 | instructionDeleted(User); |
Chris Lattner | 95294b8 | 2011-01-14 19:36:13 +0000 | [diff] [blame] | 486 | User->eraseFromParent(); |
| 487 | } |
| 488 | } |
Benjamin Kramer | d00e94e | 2011-11-14 17:22:45 +0000 | [diff] [blame] | 489 | |
| 490 | bool |
| 491 | LoadAndStorePromoter::isInstInList(Instruction *I, |
Eugene Zelenko | 286d589 | 2017-10-11 21:41:43 +0000 | [diff] [blame] | 492 | const SmallVectorImpl<Instruction *> &Insts) |
Benjamin Kramer | d00e94e | 2011-11-14 17:22:45 +0000 | [diff] [blame] | 493 | const { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 494 | return is_contained(Insts, I); |
Benjamin Kramer | d00e94e | 2011-11-14 17:22:45 +0000 | [diff] [blame] | 495 | } |