Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 1 | //===-- ValueEnumerator.cpp - Number values and types for bitcode writer --===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the ValueEnumerator class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ValueEnumerator.h" |
Rafael Espindola | 337a1b2 | 2011-04-06 16:49:37 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallPtrSet.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Constants.h" |
Duncan P. N. Exon Smith | d9901ff | 2015-02-02 18:53:21 +0000 | [diff] [blame] | 18 | #include "llvm/IR/DebugInfoMetadata.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 19 | #include "llvm/IR/DerivedTypes.h" |
| 20 | #include "llvm/IR/Instructions.h" |
| 21 | #include "llvm/IR/Module.h" |
Duncan P. N. Exon Smith | 15eb0ab | 2014-07-25 16:13:16 +0000 | [diff] [blame] | 22 | #include "llvm/IR/UseListOrder.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/ValueSymbolTable.h" |
Chad Rosier | 78037a9 | 2011-12-07 20:44:46 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Debug.h" |
| 25 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | a8713be | 2007-05-04 05:05:48 +0000 | [diff] [blame] | 26 | #include <algorithm> |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 29 | namespace { |
Duncan P. N. Exon Smith | 2e6a87b | 2014-07-29 23:03:40 +0000 | [diff] [blame] | 30 | struct OrderMap { |
| 31 | DenseMap<const Value *, std::pair<unsigned, bool>> IDs; |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 32 | unsigned LastGlobalConstantID; |
| 33 | unsigned LastGlobalValueID; |
| 34 | |
| 35 | OrderMap() : LastGlobalConstantID(0), LastGlobalValueID(0) {} |
| 36 | |
| 37 | bool isGlobalConstant(unsigned ID) const { |
| 38 | return ID <= LastGlobalConstantID; |
| 39 | } |
| 40 | bool isGlobalValue(unsigned ID) const { |
| 41 | return ID <= LastGlobalValueID && !isGlobalConstant(ID); |
| 42 | } |
Duncan P. N. Exon Smith | 2e6a87b | 2014-07-29 23:03:40 +0000 | [diff] [blame] | 43 | |
| 44 | unsigned size() const { return IDs.size(); } |
| 45 | std::pair<unsigned, bool> &operator[](const Value *V) { return IDs[V]; } |
| 46 | std::pair<unsigned, bool> lookup(const Value *V) const { |
| 47 | return IDs.lookup(V); |
| 48 | } |
Duncan P. N. Exon Smith | ba4576d | 2014-07-30 01:20:26 +0000 | [diff] [blame] | 49 | void index(const Value *V) { |
| 50 | // Explicitly sequence get-size and insert-value operations to avoid UB. |
| 51 | unsigned ID = IDs.size() + 1; |
| 52 | IDs[V].first = ID; |
| 53 | } |
Duncan P. N. Exon Smith | 2e6a87b | 2014-07-29 23:03:40 +0000 | [diff] [blame] | 54 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 55 | } |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 56 | |
| 57 | static void orderValue(const Value *V, OrderMap &OM) { |
| 58 | if (OM.lookup(V).first) |
| 59 | return; |
| 60 | |
| 61 | if (const Constant *C = dyn_cast<Constant>(V)) |
| 62 | if (C->getNumOperands() && !isa<GlobalValue>(C)) |
| 63 | for (const Value *Op : C->operands()) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 64 | if (!isa<BasicBlock>(Op) && !isa<GlobalValue>(Op)) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 65 | orderValue(Op, OM); |
| 66 | |
| 67 | // Note: we cannot cache this lookup above, since inserting into the map |
Duncan P. N. Exon Smith | ba4576d | 2014-07-30 01:20:26 +0000 | [diff] [blame] | 68 | // changes the map's size, and thus affects the other IDs. |
| 69 | OM.index(V); |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 72 | static OrderMap orderModule(const Module &M) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 73 | // This needs to match the order used by ValueEnumerator::ValueEnumerator() |
| 74 | // and ValueEnumerator::incorporateFunction(). |
| 75 | OrderMap OM; |
| 76 | |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 77 | // In the reader, initializers of GlobalValues are set *after* all the |
| 78 | // globals have been read. Rather than awkwardly modeling this behaviour |
| 79 | // directly in predictValueUseListOrderImpl(), just assign IDs to |
| 80 | // initializers of GlobalValues before GlobalValues themselves to model this |
| 81 | // implicitly. |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 82 | for (const GlobalVariable &G : M.globals()) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 83 | if (G.hasInitializer()) |
Duncan P. N. Exon Smith | 9177867 | 2014-07-31 00:13:28 +0000 | [diff] [blame] | 84 | if (!isa<GlobalValue>(G.getInitializer())) |
| 85 | orderValue(G.getInitializer(), OM); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 86 | for (const GlobalAlias &A : M.aliases()) |
Duncan P. N. Exon Smith | 9177867 | 2014-07-31 00:13:28 +0000 | [diff] [blame] | 87 | if (!isa<GlobalValue>(A.getAliasee())) |
| 88 | orderValue(A.getAliasee(), OM); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 89 | for (const Function &F : M) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 90 | if (F.hasPrefixData()) |
Duncan P. N. Exon Smith | 9177867 | 2014-07-31 00:13:28 +0000 | [diff] [blame] | 91 | if (!isa<GlobalValue>(F.getPrefixData())) |
| 92 | orderValue(F.getPrefixData(), OM); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 93 | if (F.hasPrologueData()) |
| 94 | if (!isa<GlobalValue>(F.getPrologueData())) |
| 95 | orderValue(F.getPrologueData(), OM); |
David Majnemer | 7fddecc | 2015-06-17 20:52:32 +0000 | [diff] [blame] | 96 | if (F.hasPersonalityFn()) |
| 97 | if (!isa<GlobalValue>(F.getPersonalityFn())) |
| 98 | orderValue(F.getPersonalityFn(), OM); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 99 | } |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 100 | OM.LastGlobalConstantID = OM.size(); |
| 101 | |
| 102 | // Initializers of GlobalValues are processed in |
| 103 | // BitcodeReader::ResolveGlobalAndAliasInits(). Match the order there rather |
| 104 | // than ValueEnumerator, and match the code in predictValueUseListOrderImpl() |
| 105 | // by giving IDs in reverse order. |
| 106 | // |
| 107 | // Since GlobalValues never reference each other directly (just through |
| 108 | // initializers), their relative IDs only matter for determining order of |
| 109 | // uses in their initializers. |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 110 | for (const Function &F : M) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 111 | orderValue(&F, OM); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 112 | for (const GlobalAlias &A : M.aliases()) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 113 | orderValue(&A, OM); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 114 | for (const GlobalVariable &G : M.globals()) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 115 | orderValue(&G, OM); |
| 116 | OM.LastGlobalValueID = OM.size(); |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 117 | |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 118 | for (const Function &F : M) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 119 | if (F.isDeclaration()) |
| 120 | continue; |
| 121 | // Here we need to match the union of ValueEnumerator::incorporateFunction() |
| 122 | // and WriteFunction(). Basic blocks are implicitly declared before |
| 123 | // anything else (by declaring their size). |
| 124 | for (const BasicBlock &BB : F) |
| 125 | orderValue(&BB, OM); |
| 126 | for (const Argument &A : F.args()) |
| 127 | orderValue(&A, OM); |
| 128 | for (const BasicBlock &BB : F) |
| 129 | for (const Instruction &I : BB) |
| 130 | for (const Value *Op : I.operands()) |
| 131 | if ((isa<Constant>(*Op) && !isa<GlobalValue>(*Op)) || |
| 132 | isa<InlineAsm>(*Op)) |
| 133 | orderValue(Op, OM); |
| 134 | for (const BasicBlock &BB : F) |
| 135 | for (const Instruction &I : BB) |
| 136 | orderValue(&I, OM); |
| 137 | } |
| 138 | return OM; |
| 139 | } |
| 140 | |
| 141 | static void predictValueUseListOrderImpl(const Value *V, const Function *F, |
| 142 | unsigned ID, const OrderMap &OM, |
| 143 | UseListOrderStack &Stack) { |
| 144 | // Predict use-list order for this one. |
| 145 | typedef std::pair<const Use *, unsigned> Entry; |
| 146 | SmallVector<Entry, 64> List; |
| 147 | for (const Use &U : V->uses()) |
| 148 | // Check if this user will be serialized. |
| 149 | if (OM.lookup(U.getUser()).first) |
| 150 | List.push_back(std::make_pair(&U, List.size())); |
| 151 | |
| 152 | if (List.size() < 2) |
| 153 | // We may have lost some users. |
| 154 | return; |
| 155 | |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 156 | bool IsGlobalValue = OM.isGlobalValue(ID); |
| 157 | std::sort(List.begin(), List.end(), [&](const Entry &L, const Entry &R) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 158 | const Use *LU = L.first; |
| 159 | const Use *RU = R.first; |
Duncan P. N. Exon Smith | 3f0fc7b | 2014-07-29 01:13:56 +0000 | [diff] [blame] | 160 | if (LU == RU) |
| 161 | return false; |
| 162 | |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 163 | auto LID = OM.lookup(LU->getUser()).first; |
| 164 | auto RID = OM.lookup(RU->getUser()).first; |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 165 | |
| 166 | // Global values are processed in reverse order. |
| 167 | // |
| 168 | // Moreover, initializers of GlobalValues are set *after* all the globals |
| 169 | // have been read (despite having earlier IDs). Rather than awkwardly |
| 170 | // modeling this behaviour here, orderModule() has assigned IDs to |
| 171 | // initializers of GlobalValues before GlobalValues themselves. |
| 172 | if (OM.isGlobalValue(LID) && OM.isGlobalValue(RID)) |
| 173 | return LID < RID; |
| 174 | |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 175 | // If ID is 4, then expect: 7 6 5 1 2 3. |
| 176 | if (LID < RID) { |
Duncan P. N. Exon Smith | ab6adeb | 2014-07-31 18:33:12 +0000 | [diff] [blame] | 177 | if (RID <= ID) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 178 | if (!IsGlobalValue) // GlobalValue uses don't get reversed. |
| 179 | return true; |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 180 | return false; |
| 181 | } |
| 182 | if (RID < LID) { |
Duncan P. N. Exon Smith | ab6adeb | 2014-07-31 18:33:12 +0000 | [diff] [blame] | 183 | if (LID <= ID) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 184 | if (!IsGlobalValue) // GlobalValue uses don't get reversed. |
| 185 | return false; |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 186 | return true; |
| 187 | } |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 188 | |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 189 | // LID and RID are equal, so we have different operands of the same user. |
| 190 | // Assume operands are added in order for all instructions. |
Duncan P. N. Exon Smith | ab6adeb | 2014-07-31 18:33:12 +0000 | [diff] [blame] | 191 | if (LID <= ID) |
Duncan P. N. Exon Smith | 3cbca20 | 2014-07-30 01:22:16 +0000 | [diff] [blame] | 192 | if (!IsGlobalValue) // GlobalValue uses don't get reversed. |
| 193 | return LU->getOperandNo() < RU->getOperandNo(); |
| 194 | return LU->getOperandNo() > RU->getOperandNo(); |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 195 | }); |
| 196 | |
| 197 | if (std::is_sorted( |
| 198 | List.begin(), List.end(), |
| 199 | [](const Entry &L, const Entry &R) { return L.second < R.second; })) |
| 200 | // Order is already correct. |
| 201 | return; |
| 202 | |
| 203 | // Store the shuffle. |
Duncan P. N. Exon Smith | d7a281a | 2014-07-29 16:58:18 +0000 | [diff] [blame] | 204 | Stack.emplace_back(V, F, List.size()); |
| 205 | assert(List.size() == Stack.back().Shuffle.size() && "Wrong size"); |
Duncan P. N. Exon Smith | f849ace | 2014-07-28 22:41:50 +0000 | [diff] [blame] | 206 | for (size_t I = 0, E = List.size(); I != E; ++I) |
Duncan P. N. Exon Smith | d7a281a | 2014-07-29 16:58:18 +0000 | [diff] [blame] | 207 | Stack.back().Shuffle[I] = List[I].second; |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | static void predictValueUseListOrder(const Value *V, const Function *F, |
| 211 | OrderMap &OM, UseListOrderStack &Stack) { |
| 212 | auto &IDPair = OM[V]; |
| 213 | assert(IDPair.first && "Unmapped value"); |
| 214 | if (IDPair.second) |
| 215 | // Already predicted. |
| 216 | return; |
| 217 | |
| 218 | // Do the actual prediction. |
| 219 | IDPair.second = true; |
| 220 | if (!V->use_empty() && std::next(V->use_begin()) != V->use_end()) |
| 221 | predictValueUseListOrderImpl(V, F, IDPair.first, OM, Stack); |
| 222 | |
| 223 | // Recursive descent into constants. |
| 224 | if (const Constant *C = dyn_cast<Constant>(V)) |
Duncan P. N. Exon Smith | c69b516 | 2014-07-30 17:51:09 +0000 | [diff] [blame] | 225 | if (C->getNumOperands()) // Visit GlobalValues. |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 226 | for (const Value *Op : C->operands()) |
Duncan P. N. Exon Smith | c69b516 | 2014-07-30 17:51:09 +0000 | [diff] [blame] | 227 | if (isa<Constant>(Op)) // Visit GlobalValues. |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 228 | predictValueUseListOrder(Op, F, OM, Stack); |
| 229 | } |
| 230 | |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 231 | static UseListOrderStack predictUseListOrder(const Module &M) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 232 | OrderMap OM = orderModule(M); |
| 233 | |
| 234 | // Use-list orders need to be serialized after all the users have been added |
| 235 | // to a value, or else the shuffles will be incomplete. Store them per |
| 236 | // function in a stack. |
| 237 | // |
| 238 | // Aside from function order, the order of values doesn't matter much here. |
| 239 | UseListOrderStack Stack; |
| 240 | |
| 241 | // We want to visit the functions backward now so we can list function-local |
| 242 | // constants in the last Function they're used in. Module-level constants |
| 243 | // have already been visited above. |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 244 | for (auto I = M.rbegin(), E = M.rend(); I != E; ++I) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 245 | const Function &F = *I; |
| 246 | if (F.isDeclaration()) |
| 247 | continue; |
| 248 | for (const BasicBlock &BB : F) |
| 249 | predictValueUseListOrder(&BB, &F, OM, Stack); |
| 250 | for (const Argument &A : F.args()) |
| 251 | predictValueUseListOrder(&A, &F, OM, Stack); |
| 252 | for (const BasicBlock &BB : F) |
| 253 | for (const Instruction &I : BB) |
| 254 | for (const Value *Op : I.operands()) |
Duncan P. N. Exon Smith | c69b516 | 2014-07-30 17:51:09 +0000 | [diff] [blame] | 255 | if (isa<Constant>(*Op) || isa<InlineAsm>(*Op)) // Visit GlobalValues. |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 256 | predictValueUseListOrder(Op, &F, OM, Stack); |
| 257 | for (const BasicBlock &BB : F) |
| 258 | for (const Instruction &I : BB) |
| 259 | predictValueUseListOrder(&I, &F, OM, Stack); |
| 260 | } |
| 261 | |
| 262 | // Visit globals last, since the module-level use-list block will be seen |
| 263 | // before the function bodies are processed. |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 264 | for (const GlobalVariable &G : M.globals()) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 265 | predictValueUseListOrder(&G, nullptr, OM, Stack); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 266 | for (const Function &F : M) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 267 | predictValueUseListOrder(&F, nullptr, OM, Stack); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 268 | for (const GlobalAlias &A : M.aliases()) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 269 | predictValueUseListOrder(&A, nullptr, OM, Stack); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 270 | for (const GlobalVariable &G : M.globals()) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 271 | if (G.hasInitializer()) |
| 272 | predictValueUseListOrder(G.getInitializer(), nullptr, OM, Stack); |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 273 | for (const GlobalAlias &A : M.aliases()) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 274 | predictValueUseListOrder(A.getAliasee(), nullptr, OM, Stack); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 275 | for (const Function &F : M) { |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 276 | if (F.hasPrefixData()) |
| 277 | predictValueUseListOrder(F.getPrefixData(), nullptr, OM, Stack); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 278 | if (F.hasPrologueData()) |
| 279 | predictValueUseListOrder(F.getPrologueData(), nullptr, OM, Stack); |
David Majnemer | 7fddecc | 2015-06-17 20:52:32 +0000 | [diff] [blame] | 280 | if (F.hasPersonalityFn()) |
| 281 | predictValueUseListOrder(F.getPersonalityFn(), nullptr, OM, Stack); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 282 | } |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 283 | |
| 284 | return Stack; |
| 285 | } |
| 286 | |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 287 | static bool isIntOrIntVectorValue(const std::pair<const Value*, unsigned> &V) { |
| 288 | return V.first->getType()->isIntOrIntVectorTy(); |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Duncan P. N. Exon Smith | 458593a | 2015-04-14 23:45:11 +0000 | [diff] [blame] | 291 | ValueEnumerator::ValueEnumerator(const Module &M, |
| 292 | bool ShouldPreserveUseListOrder) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 293 | : HasMDString(false), HasDILocation(false), HasGenericDINode(false), |
Duncan P. N. Exon Smith | 458593a | 2015-04-14 23:45:11 +0000 | [diff] [blame] | 294 | ShouldPreserveUseListOrder(ShouldPreserveUseListOrder) { |
| 295 | if (ShouldPreserveUseListOrder) |
Duncan P. N. Exon Smith | 1f66c85 | 2014-07-28 21:19:41 +0000 | [diff] [blame] | 296 | UseListOrders = predictUseListOrder(M); |
| 297 | |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 298 | // Enumerate the global variables. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 299 | for (const GlobalVariable &GV : M.globals()) |
| 300 | EnumerateValue(&GV); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 301 | |
| 302 | // Enumerate the functions. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 303 | for (const Function & F : M) { |
| 304 | EnumerateValue(&F); |
| 305 | EnumerateAttributes(F.getAttributes()); |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 306 | } |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 307 | |
Chris Lattner | 44c1707 | 2007-04-26 02:46:40 +0000 | [diff] [blame] | 308 | // Enumerate the aliases. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 309 | for (const GlobalAlias &GA : M.aliases()) |
| 310 | EnumerateValue(&GA); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 311 | |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 312 | // Remember what is the cutoff between globalvalue's and other constants. |
| 313 | unsigned FirstConstant = Values.size(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 314 | |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 315 | // Enumerate the global variable initializers. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 316 | for (const GlobalVariable &GV : M.globals()) |
| 317 | if (GV.hasInitializer()) |
| 318 | EnumerateValue(GV.getInitializer()); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 319 | |
Chris Lattner | 44c1707 | 2007-04-26 02:46:40 +0000 | [diff] [blame] | 320 | // Enumerate the aliasees. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 321 | for (const GlobalAlias &GA : M.aliases()) |
| 322 | EnumerateValue(GA.getAliasee()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 323 | |
Peter Collingbourne | 3fa50f9 | 2013-09-16 01:08:15 +0000 | [diff] [blame] | 324 | // Enumerate the prefix data constants. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 325 | for (const Function &F : M) |
| 326 | if (F.hasPrefixData()) |
| 327 | EnumerateValue(F.getPrefixData()); |
Peter Collingbourne | 3fa50f9 | 2013-09-16 01:08:15 +0000 | [diff] [blame] | 328 | |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 329 | // Enumerate the prologue data constants. |
Yaron Keren | 4c20deb | 2015-06-12 20:18:20 +0000 | [diff] [blame] | 330 | for (const Function &F : M) |
| 331 | if (F.hasPrologueData()) |
| 332 | EnumerateValue(F.getPrologueData()); |
Peter Collingbourne | 51d2de7 | 2014-12-03 02:08:38 +0000 | [diff] [blame] | 333 | |
David Majnemer | 7fddecc | 2015-06-17 20:52:32 +0000 | [diff] [blame] | 334 | // Enumerate the personality functions. |
| 335 | for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) |
| 336 | if (I->hasPersonalityFn()) |
| 337 | EnumerateValue(I->getPersonalityFn()); |
| 338 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 339 | // Enumerate the metadata type. |
| 340 | // |
| 341 | // TODO: Move this to ValueEnumerator::EnumerateOperandType() once bitcode |
| 342 | // only encodes the metadata type when it's used as a value. |
| 343 | EnumerateType(Type::getMetadataTy(M.getContext())); |
| 344 | |
Joe Abbey | bc6f4ba | 2013-04-01 02:28:07 +0000 | [diff] [blame] | 345 | // Insert constants and metadata that are named at module level into the slot |
Devang Patel | fcfee0f | 2010-01-07 19:39:36 +0000 | [diff] [blame] | 346 | // pool so that the module symbol table can refer to them... |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 347 | EnumerateValueSymbolTable(M.getValueSymbolTable()); |
Dan Gohman | 2637cc1 | 2010-07-21 23:38:33 +0000 | [diff] [blame] | 348 | EnumerateNamedMetadata(M); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 349 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 350 | SmallVector<std::pair<unsigned, MDNode *>, 8> MDs; |
Chris Lattner | 8dace89 | 2009-12-31 00:51:46 +0000 | [diff] [blame] | 351 | |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 352 | // Enumerate types used by function bodies and argument lists. |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 353 | for (const Function &F : M) { |
Rafael Espindola | 087d627 | 2014-06-17 03:00:40 +0000 | [diff] [blame] | 354 | for (const Argument &A : F.args()) |
| 355 | EnumerateType(A.getType()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 356 | |
Duncan P. N. Exon Smith | 3d4cd75 | 2015-04-24 22:04:41 +0000 | [diff] [blame] | 357 | // Enumerate metadata attached to this function. |
| 358 | F.getAllMetadata(MDs); |
| 359 | for (const auto &I : MDs) |
| 360 | EnumerateMetadata(I.second); |
| 361 | |
Rafael Espindola | 087d627 | 2014-06-17 03:00:40 +0000 | [diff] [blame] | 362 | for (const BasicBlock &BB : F) |
| 363 | for (const Instruction &I : BB) { |
| 364 | for (const Use &Op : I.operands()) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 365 | auto *MD = dyn_cast<MetadataAsValue>(&Op); |
| 366 | if (!MD) { |
| 367 | EnumerateOperandType(Op); |
| 368 | continue; |
| 369 | } |
| 370 | |
| 371 | // Local metadata is enumerated during function-incorporation. |
| 372 | if (isa<LocalAsMetadata>(MD->getMetadata())) |
| 373 | continue; |
| 374 | |
| 375 | EnumerateMetadata(MD->getMetadata()); |
Victor Hernandez | 572218b | 2010-01-14 19:54:11 +0000 | [diff] [blame] | 376 | } |
Rafael Espindola | 087d627 | 2014-06-17 03:00:40 +0000 | [diff] [blame] | 377 | EnumerateType(I.getType()); |
| 378 | if (const CallInst *CI = dyn_cast<CallInst>(&I)) |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 379 | EnumerateAttributes(CI->getAttributes()); |
Rafael Espindola | 087d627 | 2014-06-17 03:00:40 +0000 | [diff] [blame] | 380 | else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 381 | EnumerateAttributes(II->getAttributes()); |
Devang Patel | af206b8 | 2009-09-18 19:26:43 +0000 | [diff] [blame] | 382 | |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 383 | // Enumerate metadata attached with this instruction. |
Devang Patel | 6da5dbf | 2009-10-22 18:55:16 +0000 | [diff] [blame] | 384 | MDs.clear(); |
Rafael Espindola | 087d627 | 2014-06-17 03:00:40 +0000 | [diff] [blame] | 385 | I.getAllMetadataOtherThanDebugLoc(MDs); |
Chris Lattner | 2f2aa2b | 2009-12-28 23:41:32 +0000 | [diff] [blame] | 386 | for (unsigned i = 0, e = MDs.size(); i != e; ++i) |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 387 | EnumerateMetadata(MDs[i].second); |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 388 | |
Duncan P. N. Exon Smith | ab659fb3 | 2015-03-30 19:40:05 +0000 | [diff] [blame] | 389 | // Don't enumerate the location directly -- it has a special record |
| 390 | // type -- but enumerate its operands. |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 391 | if (DILocation *L = I.getDebugLoc()) |
Duncan P. N. Exon Smith | ab659fb3 | 2015-03-30 19:40:05 +0000 | [diff] [blame] | 392 | EnumerateMDNodeOperands(L); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 393 | } |
| 394 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 395 | |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 396 | // Optimize constant ordering. |
| 397 | OptimizeConstants(FirstConstant, Values.size()); |
Rafael Espindola | 337a1b2 | 2011-04-06 16:49:37 +0000 | [diff] [blame] | 398 | } |
| 399 | |
Devang Patel | af206b8 | 2009-09-18 19:26:43 +0000 | [diff] [blame] | 400 | unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const { |
| 401 | InstructionMapType::const_iterator I = InstructionMap.find(Inst); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 402 | assert(I != InstructionMap.end() && "Instruction is not mapped!"); |
Dan Gohman | 1f4b028 | 2010-08-25 17:09:50 +0000 | [diff] [blame] | 403 | return I->second; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 404 | } |
Devang Patel | af206b8 | 2009-09-18 19:26:43 +0000 | [diff] [blame] | 405 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 406 | unsigned ValueEnumerator::getComdatID(const Comdat *C) const { |
| 407 | unsigned ComdatID = Comdats.idFor(C); |
| 408 | assert(ComdatID && "Comdat not found!"); |
| 409 | return ComdatID; |
| 410 | } |
| 411 | |
Devang Patel | af206b8 | 2009-09-18 19:26:43 +0000 | [diff] [blame] | 412 | void ValueEnumerator::setInstructionID(const Instruction *I) { |
| 413 | InstructionMap[I] = InstructionCount++; |
| 414 | } |
| 415 | |
Devang Patel | 05eb617 | 2009-08-04 06:00:18 +0000 | [diff] [blame] | 416 | unsigned ValueEnumerator::getValueID(const Value *V) const { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 417 | if (auto *MD = dyn_cast<MetadataAsValue>(V)) |
| 418 | return getMetadataID(MD->getMetadata()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 419 | |
Devang Patel | 05eb617 | 2009-08-04 06:00:18 +0000 | [diff] [blame] | 420 | ValueMapType::const_iterator I = ValueMap.find(V); |
| 421 | assert(I != ValueMap.end() && "Value not in slotcalculator!"); |
| 422 | return I->second-1; |
| 423 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 424 | |
Chad Rosier | 78037a9 | 2011-12-07 20:44:46 +0000 | [diff] [blame] | 425 | void ValueEnumerator::dump() const { |
| 426 | print(dbgs(), ValueMap, "Default"); |
| 427 | dbgs() << '\n'; |
| 428 | print(dbgs(), MDValueMap, "MetaData"); |
| 429 | dbgs() << '\n'; |
| 430 | } |
| 431 | |
| 432 | void ValueEnumerator::print(raw_ostream &OS, const ValueMapType &Map, |
| 433 | const char *Name) const { |
| 434 | |
| 435 | OS << "Map Name: " << Name << "\n"; |
| 436 | OS << "Size: " << Map.size() << "\n"; |
| 437 | for (ValueMapType::const_iterator I = Map.begin(), |
| 438 | E = Map.end(); I != E; ++I) { |
| 439 | |
| 440 | const Value *V = I->first; |
| 441 | if (V->hasName()) |
| 442 | OS << "Value: " << V->getName(); |
| 443 | else |
| 444 | OS << "Value: [null]\n"; |
| 445 | V->dump(); |
| 446 | |
| 447 | OS << " Uses(" << std::distance(V->use_begin(),V->use_end()) << "):"; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 448 | for (const Use &U : V->uses()) { |
| 449 | if (&U != &*V->use_begin()) |
Chad Rosier | 78037a9 | 2011-12-07 20:44:46 +0000 | [diff] [blame] | 450 | OS << ","; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 451 | if(U->hasName()) |
| 452 | OS << " " << U->getName(); |
Chad Rosier | 78037a9 | 2011-12-07 20:44:46 +0000 | [diff] [blame] | 453 | else |
| 454 | OS << " [null]"; |
| 455 | |
| 456 | } |
| 457 | OS << "\n\n"; |
| 458 | } |
| 459 | } |
| 460 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 461 | void ValueEnumerator::print(raw_ostream &OS, const MetadataMapType &Map, |
| 462 | const char *Name) const { |
| 463 | |
| 464 | OS << "Map Name: " << Name << "\n"; |
| 465 | OS << "Size: " << Map.size() << "\n"; |
| 466 | for (auto I = Map.begin(), E = Map.end(); I != E; ++I) { |
| 467 | const Metadata *MD = I->first; |
| 468 | OS << "Metadata: slot = " << I->second << "\n"; |
Nick Lewycky | ee0a3a7 | 2014-12-17 01:52:08 +0000 | [diff] [blame] | 469 | MD->print(OS); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 470 | } |
| 471 | } |
| 472 | |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 473 | /// OptimizeConstants - Reorder constant pool for denser encoding. |
| 474 | void ValueEnumerator::OptimizeConstants(unsigned CstStart, unsigned CstEnd) { |
| 475 | if (CstStart == CstEnd || CstStart+1 == CstEnd) return; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 476 | |
Duncan P. N. Exon Smith | 458593a | 2015-04-14 23:45:11 +0000 | [diff] [blame] | 477 | if (ShouldPreserveUseListOrder) |
Duncan P. N. Exon Smith | 15eb0ab | 2014-07-25 16:13:16 +0000 | [diff] [blame] | 478 | // Optimizing constants makes the use-list order difficult to predict. |
| 479 | // Disable it for now when trying to preserve the order. |
| 480 | return; |
| 481 | |
Benjamin Kramer | 3a377bc | 2014-03-01 11:47:00 +0000 | [diff] [blame] | 482 | std::stable_sort(Values.begin() + CstStart, Values.begin() + CstEnd, |
| 483 | [this](const std::pair<const Value *, unsigned> &LHS, |
| 484 | const std::pair<const Value *, unsigned> &RHS) { |
| 485 | // Sort by plane. |
| 486 | if (LHS.first->getType() != RHS.first->getType()) |
| 487 | return getTypeID(LHS.first->getType()) < getTypeID(RHS.first->getType()); |
| 488 | // Then by frequency. |
| 489 | return LHS.second > RHS.second; |
| 490 | }); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 491 | |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 492 | // Ensure that integer and vector of integer constants are at the start of the |
| 493 | // constant pool. This is important so that GEP structure indices come before |
| 494 | // gep constant exprs. |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 495 | std::partition(Values.begin()+CstStart, Values.begin()+CstEnd, |
Duncan Sands | e6beec6 | 2012-11-13 12:59:33 +0000 | [diff] [blame] | 496 | isIntOrIntVectorValue); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 497 | |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 498 | // Rebuild the modified portion of ValueMap. |
| 499 | for (; CstStart != CstEnd; ++CstStart) |
| 500 | ValueMap[Values[CstStart].first] = CstStart+1; |
| 501 | } |
| 502 | |
| 503 | |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 504 | /// EnumerateValueSymbolTable - Insert all of the values in the specified symbol |
| 505 | /// table into the values table. |
| 506 | void ValueEnumerator::EnumerateValueSymbolTable(const ValueSymbolTable &VST) { |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 507 | for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end(); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 508 | VI != VE; ++VI) |
| 509 | EnumerateValue(VI->getValue()); |
| 510 | } |
| 511 | |
Rafael Espindola | 49e9bf8 | 2014-11-17 20:06:27 +0000 | [diff] [blame] | 512 | /// Insert all of the values referenced by named metadata in the specified |
| 513 | /// module. |
| 514 | void ValueEnumerator::EnumerateNamedMetadata(const Module &M) { |
| 515 | for (Module::const_named_metadata_iterator I = M.named_metadata_begin(), |
| 516 | E = M.named_metadata_end(); |
| 517 | I != E; ++I) |
Dan Gohman | 2637cc1 | 2010-07-21 23:38:33 +0000 | [diff] [blame] | 518 | EnumerateNamedMDNode(I); |
Devang Patel | fcfee0f | 2010-01-07 19:39:36 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Devang Patel | 99ff5a8 | 2010-01-09 00:30:14 +0000 | [diff] [blame] | 521 | void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { |
Devang Patel | 99ff5a8 | 2010-01-09 00:30:14 +0000 | [diff] [blame] | 522 | for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) |
Dan Gohman | d3d2bbe | 2010-08-24 02:01:24 +0000 | [diff] [blame] | 523 | EnumerateMetadata(MD->getOperand(i)); |
Devang Patel | 99ff5a8 | 2010-01-09 00:30:14 +0000 | [diff] [blame] | 524 | } |
| 525 | |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 526 | /// EnumerateMDNodeOperands - Enumerate all non-function-local values |
| 527 | /// and types referenced by the given MDNode. |
| 528 | void ValueEnumerator::EnumerateMDNodeOperands(const MDNode *N) { |
| 529 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 530 | Metadata *MD = N->getOperand(i); |
Duncan P. N. Exon Smith | 5c7006e | 2014-12-11 23:02:24 +0000 | [diff] [blame] | 531 | if (!MD) |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 532 | continue; |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 533 | assert(!isa<LocalAsMetadata>(MD) && "MDNodes cannot be function-local"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 534 | EnumerateMetadata(MD); |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 535 | } |
| 536 | } |
| 537 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 538 | void ValueEnumerator::EnumerateMetadata(const Metadata *MD) { |
| 539 | assert( |
| 540 | (isa<MDNode>(MD) || isa<MDString>(MD) || isa<ConstantAsMetadata>(MD)) && |
| 541 | "Invalid metadata kind"); |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 542 | |
Duncan P. N. Exon Smith | 44e5b4e53 | 2014-10-21 22:27:47 +0000 | [diff] [blame] | 543 | // Insert a dummy ID to block the co-recursive call to |
| 544 | // EnumerateMDNodeOperands() from re-visiting MD in a cyclic graph. |
| 545 | // |
| 546 | // Return early if there's already an ID. |
| 547 | if (!MDValueMap.insert(std::make_pair(MD, 0)).second) |
Devang Patel | 05eb617 | 2009-08-04 06:00:18 +0000 | [diff] [blame] | 548 | return; |
Duncan P. N. Exon Smith | 60d87e7 | 2014-10-21 22:13:34 +0000 | [diff] [blame] | 549 | |
Duncan P. N. Exon Smith | 44e5b4e53 | 2014-10-21 22:27:47 +0000 | [diff] [blame] | 550 | // Visit operands first to minimize RAUW. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 551 | if (auto *N = dyn_cast<MDNode>(MD)) |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 552 | EnumerateMDNodeOperands(N); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 553 | else if (auto *C = dyn_cast<ConstantAsMetadata>(MD)) |
| 554 | EnumerateValue(C->getValue()); |
Duncan P. N. Exon Smith | 44e5b4e53 | 2014-10-21 22:27:47 +0000 | [diff] [blame] | 555 | |
Duncan P. N. Exon Smith | 2fcf60e | 2015-01-12 22:30:34 +0000 | [diff] [blame] | 556 | HasMDString |= isa<MDString>(MD); |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 557 | HasDILocation |= isa<DILocation>(MD); |
| 558 | HasGenericDINode |= isa<GenericDINode>(MD); |
Duncan P. N. Exon Smith | 2fcf60e | 2015-01-12 22:30:34 +0000 | [diff] [blame] | 559 | |
Duncan P. N. Exon Smith | 44e5b4e53 | 2014-10-21 22:27:47 +0000 | [diff] [blame] | 560 | // Replace the dummy ID inserted above with the correct one. MDValueMap may |
| 561 | // have changed by inserting operands, so we need a fresh lookup here. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 562 | MDs.push_back(MD); |
| 563 | MDValueMap[MD] = MDs.size(); |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | /// EnumerateFunctionLocalMetadataa - Incorporate function-local metadata |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 567 | /// information reachable from the metadata. |
| 568 | void ValueEnumerator::EnumerateFunctionLocalMetadata( |
| 569 | const LocalAsMetadata *Local) { |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 570 | // Check to see if it's already in! |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 571 | unsigned &MDValueID = MDValueMap[Local]; |
Duncan P. N. Exon Smith | 60d87e7 | 2014-10-21 22:13:34 +0000 | [diff] [blame] | 572 | if (MDValueID) |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 573 | return; |
Duncan P. N. Exon Smith | 60d87e7 | 2014-10-21 22:13:34 +0000 | [diff] [blame] | 574 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 575 | MDs.push_back(Local); |
| 576 | MDValueID = MDs.size(); |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 577 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 578 | EnumerateValue(Local->getValue()); |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 579 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 580 | // Also, collect all function-local metadata for easy access. |
| 581 | FunctionLocalMDs.push_back(Local); |
Devang Patel | 05eb617 | 2009-08-04 06:00:18 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Victor Hernandez | 572218b | 2010-01-14 19:54:11 +0000 | [diff] [blame] | 584 | void ValueEnumerator::EnumerateValue(const Value *V) { |
Chris Lattner | 8dace89 | 2009-12-31 00:51:46 +0000 | [diff] [blame] | 585 | assert(!V->getType()->isVoidTy() && "Can't insert void values!"); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 586 | assert(!isa<MetadataAsValue>(V) && "EnumerateValue doesn't handle Metadata!"); |
Devang Patel | 05eb617 | 2009-08-04 06:00:18 +0000 | [diff] [blame] | 587 | |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 588 | // Check to see if it's already in! |
| 589 | unsigned &ValueID = ValueMap[V]; |
| 590 | if (ValueID) { |
| 591 | // Increment use count. |
| 592 | Values[ValueID-1].second++; |
| 593 | return; |
| 594 | } |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 595 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 596 | if (auto *GO = dyn_cast<GlobalObject>(V)) |
| 597 | if (const Comdat *C = GO->getComdat()) |
| 598 | Comdats.insert(C); |
| 599 | |
Chris Lattner | 9ee4836 | 2007-05-06 01:00:28 +0000 | [diff] [blame] | 600 | // Enumerate the type of this value. |
| 601 | EnumerateType(V->getType()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 602 | |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 603 | if (const Constant *C = dyn_cast<Constant>(V)) { |
| 604 | if (isa<GlobalValue>(C)) { |
| 605 | // Initializers for globals are handled explicitly elsewhere. |
Chris Lattner | 9ee4836 | 2007-05-06 01:00:28 +0000 | [diff] [blame] | 606 | } else if (C->getNumOperands()) { |
| 607 | // If a constant has operands, enumerate them. This makes sure that if a |
| 608 | // constant has uses (for example an array of const ints), that they are |
| 609 | // inserted also. |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 610 | |
Chris Lattner | 9ee4836 | 2007-05-06 01:00:28 +0000 | [diff] [blame] | 611 | // We prefer to enumerate them with values before we enumerate the user |
| 612 | // itself. This makes it more likely that we can avoid forward references |
| 613 | // in the reader. We know that there can be no cycles in the constants |
| 614 | // graph that don't go through a global variable. |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 615 | for (User::const_op_iterator I = C->op_begin(), E = C->op_end(); |
| 616 | I != E; ++I) |
Chris Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 617 | if (!isa<BasicBlock>(*I)) // Don't enumerate BB operand to BlockAddress. |
Victor Hernandez | 572218b | 2010-01-14 19:54:11 +0000 | [diff] [blame] | 618 | EnumerateValue(*I); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 619 | |
Chris Lattner | 9ee4836 | 2007-05-06 01:00:28 +0000 | [diff] [blame] | 620 | // Finally, add the value. Doing this could make the ValueID reference be |
| 621 | // dangling, don't reuse it. |
| 622 | Values.push_back(std::make_pair(V, 1U)); |
| 623 | ValueMap[V] = Values.size(); |
| 624 | return; |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 625 | } |
| 626 | } |
Devang Patel | e059ba6e | 2009-07-23 01:07:34 +0000 | [diff] [blame] | 627 | |
Chris Lattner | 9ee4836 | 2007-05-06 01:00:28 +0000 | [diff] [blame] | 628 | // Add the value. |
| 629 | Values.push_back(std::make_pair(V, 1U)); |
| 630 | ValueID = Values.size(); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 634 | void ValueEnumerator::EnumerateType(Type *Ty) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 635 | unsigned *TypeID = &TypeMap[Ty]; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 636 | |
Rafael Espindola | 337a1b2 | 2011-04-06 16:49:37 +0000 | [diff] [blame] | 637 | // We've already seen this type. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 638 | if (*TypeID) |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 639 | return; |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 640 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 641 | // If it is a non-anonymous struct, mark the type as being visited so that we |
| 642 | // don't recursively visit it. This is safe because we allow forward |
| 643 | // references of these in the bitcode reader. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 644 | if (StructType *STy = dyn_cast<StructType>(Ty)) |
Chris Lattner | 335d399 | 2011-08-12 18:06:37 +0000 | [diff] [blame] | 645 | if (!STy->isLiteral()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 646 | *TypeID = ~0U; |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 647 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 648 | // Enumerate all of the subtypes before we enumerate this type. This ensures |
| 649 | // that the type will be enumerated in an order that can be directly built. |
Rafael Espindola | ffbfcf2 | 2014-11-24 20:44:36 +0000 | [diff] [blame] | 650 | for (Type *SubTy : Ty->subtypes()) |
| 651 | EnumerateType(SubTy); |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 652 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 653 | // Refresh the TypeID pointer in case the table rehashed. |
| 654 | TypeID = &TypeMap[Ty]; |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 655 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 656 | // Check to see if we got the pointer another way. This can happen when |
| 657 | // enumerating recursive types that hit the base case deeper than they start. |
| 658 | // |
| 659 | // If this is actually a struct that we are treating as forward ref'able, |
| 660 | // then emit the definition now that all of its contents are available. |
| 661 | if (*TypeID && *TypeID != ~0U) |
| 662 | return; |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 663 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 664 | // Add this type now that its contents are all happily enumerated. |
| 665 | Types.push_back(Ty); |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 666 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 667 | *TypeID = Types.size(); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 668 | } |
| 669 | |
Chris Lattner | 76fd90f | 2007-05-06 08:35:19 +0000 | [diff] [blame] | 670 | // Enumerate the types for the specified value. If the value is a constant, |
| 671 | // walk through it, enumerating the types of the constant. |
Victor Hernandez | 572218b | 2010-01-14 19:54:11 +0000 | [diff] [blame] | 672 | void ValueEnumerator::EnumerateOperandType(const Value *V) { |
Chris Lattner | 76fd90f | 2007-05-06 08:35:19 +0000 | [diff] [blame] | 673 | EnumerateType(V->getType()); |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 674 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 675 | if (auto *MD = dyn_cast<MetadataAsValue>(V)) { |
| 676 | assert(!isa<LocalAsMetadata>(MD->getMetadata()) && |
| 677 | "Function-local metadata should be left for later"); |
Chris Lattner | 76fd90f | 2007-05-06 08:35:19 +0000 | [diff] [blame] | 678 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 679 | EnumerateMetadata(MD->getMetadata()); |
| 680 | return; |
| 681 | } |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 682 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 683 | const Constant *C = dyn_cast<Constant>(V); |
| 684 | if (!C) |
| 685 | return; |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 686 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 687 | // If this constant is already enumerated, ignore it, we know its type must |
| 688 | // be enumerated. |
| 689 | if (ValueMap.count(C)) |
| 690 | return; |
Nick Lewycky | b8f9b7a | 2009-05-10 20:57:05 +0000 | [diff] [blame] | 691 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 692 | // This constant may have operands, make sure to enumerate the types in |
| 693 | // them. |
| 694 | for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) { |
| 695 | const Value *Op = C->getOperand(i); |
| 696 | |
| 697 | // Don't enumerate basic blocks here, this happens as operands to |
| 698 | // blockaddress. |
| 699 | if (isa<BasicBlock>(Op)) |
| 700 | continue; |
| 701 | |
| 702 | EnumerateOperandType(Op); |
| 703 | } |
Chris Lattner | 76fd90f | 2007-05-06 08:35:19 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Bill Wendling | 7b5f4f3 | 2013-02-12 08:01:22 +0000 | [diff] [blame] | 706 | void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) { |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 707 | if (PAL.isEmpty()) return; // null is always 0. |
Bill Wendling | 7b5f4f3 | 2013-02-12 08:01:22 +0000 | [diff] [blame] | 708 | |
Chris Lattner | e4bbad6 | 2007-05-03 22:46:43 +0000 | [diff] [blame] | 709 | // Do a lookup. |
Bill Wendling | 7b5f4f3 | 2013-02-12 08:01:22 +0000 | [diff] [blame] | 710 | unsigned &Entry = AttributeMap[PAL]; |
Chris Lattner | e4bbad6 | 2007-05-03 22:46:43 +0000 | [diff] [blame] | 711 | if (Entry == 0) { |
| 712 | // Never saw this before, add it. |
Bill Wendling | 3d7b0b8 | 2012-12-19 07:18:57 +0000 | [diff] [blame] | 713 | Attribute.push_back(PAL); |
| 714 | Entry = Attribute.size(); |
Chris Lattner | e4bbad6 | 2007-05-03 22:46:43 +0000 | [diff] [blame] | 715 | } |
Bill Wendling | 51f612e | 2013-02-10 23:06:02 +0000 | [diff] [blame] | 716 | |
| 717 | // Do lookups for all attribute groups. |
| 718 | for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) { |
| 719 | AttributeSet AS = PAL.getSlotAttributes(i); |
Bill Wendling | 92ed700 | 2013-02-11 22:33:26 +0000 | [diff] [blame] | 720 | unsigned &Entry = AttributeGroupMap[AS]; |
Bill Wendling | 51f612e | 2013-02-10 23:06:02 +0000 | [diff] [blame] | 721 | if (Entry == 0) { |
Bill Wendling | 92ed700 | 2013-02-11 22:33:26 +0000 | [diff] [blame] | 722 | AttributeGroups.push_back(AS); |
| 723 | Entry = AttributeGroups.size(); |
Bill Wendling | 51f612e | 2013-02-10 23:06:02 +0000 | [diff] [blame] | 724 | } |
| 725 | } |
Chris Lattner | e4bbad6 | 2007-05-03 22:46:43 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Chad Rosier | 6a11b64 | 2011-06-03 17:02:19 +0000 | [diff] [blame] | 728 | void ValueEnumerator::incorporateFunction(const Function &F) { |
Nick Lewycky | a72e1af | 2010-02-25 08:30:17 +0000 | [diff] [blame] | 729 | InstructionCount = 0; |
Chris Lattner | e6e364c | 2007-04-26 05:53:54 +0000 | [diff] [blame] | 730 | NumModuleValues = Values.size(); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 731 | NumModuleMDs = MDs.size(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 732 | |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 733 | // Adding function arguments to the value table. |
Dan Gohman | 9a54c17 | 2010-07-16 22:58:39 +0000 | [diff] [blame] | 734 | for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 735 | I != E; ++I) |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 736 | EnumerateValue(I); |
| 737 | |
Chris Lattner | e6e364c | 2007-04-26 05:53:54 +0000 | [diff] [blame] | 738 | FirstFuncConstantID = Values.size(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 739 | |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 740 | // Add all function-level constants to the value table. |
| 741 | for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { |
| 742 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 743 | for (User::const_op_iterator OI = I->op_begin(), E = I->op_end(); |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 744 | OI != E; ++OI) { |
| 745 | if ((isa<Constant>(*OI) && !isa<GlobalValue>(*OI)) || |
| 746 | isa<InlineAsm>(*OI)) |
| 747 | EnumerateValue(*OI); |
| 748 | } |
Chris Lattner | 7c37b01 | 2007-04-26 04:42:16 +0000 | [diff] [blame] | 749 | BasicBlocks.push_back(BB); |
Chris Lattner | 6be58c6 | 2007-05-03 22:18:21 +0000 | [diff] [blame] | 750 | ValueMap[BB] = BasicBlocks.size(); |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 751 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 752 | |
Chris Lattner | 430e80d | 2007-05-04 05:21:47 +0000 | [diff] [blame] | 753 | // Optimize the constant layout. |
| 754 | OptimizeConstants(FirstFuncConstantID, Values.size()); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 755 | |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 756 | // Add the function's parameter attributes so they are available for use in |
| 757 | // the function's instruction. |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 758 | EnumerateAttributes(F.getAttributes()); |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 759 | |
Chris Lattner | e6e364c | 2007-04-26 05:53:54 +0000 | [diff] [blame] | 760 | FirstInstID = Values.size(); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 761 | |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 762 | SmallVector<LocalAsMetadata *, 8> FnLocalMDVector; |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 763 | // Add all of the instructions. |
| 764 | for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 765 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) { |
Victor Hernandez | cad7328 | 2010-01-13 19:36:16 +0000 | [diff] [blame] | 766 | for (User::const_op_iterator OI = I->op_begin(), E = I->op_end(); |
| 767 | OI != E; ++OI) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 768 | if (auto *MD = dyn_cast<MetadataAsValue>(&*OI)) |
| 769 | if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata())) |
Victor Hernandez | d44ee35 | 2010-02-04 01:13:08 +0000 | [diff] [blame] | 770 | // Enumerate metadata after the instructions they might refer to. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 771 | FnLocalMDVector.push_back(Local); |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 772 | } |
Joe Abbey | 2ad8df2 | 2012-11-25 15:23:39 +0000 | [diff] [blame] | 773 | |
Benjamin Kramer | ccce8ba | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 774 | if (!I->getType()->isVoidTy()) |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 775 | EnumerateValue(I); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 776 | } |
| 777 | } |
Victor Hernandez | d44ee35 | 2010-02-04 01:13:08 +0000 | [diff] [blame] | 778 | |
| 779 | // Add all of the function-local metadata. |
Devang Patel | df84e8b | 2010-06-02 23:05:04 +0000 | [diff] [blame] | 780 | for (unsigned i = 0, e = FnLocalMDVector.size(); i != e; ++i) |
Dan Gohman | c828c54 | 2010-08-24 02:24:03 +0000 | [diff] [blame] | 781 | EnumerateFunctionLocalMetadata(FnLocalMDVector[i]); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 782 | } |
| 783 | |
Chad Rosier | 6a11b64 | 2011-06-03 17:02:19 +0000 | [diff] [blame] | 784 | void ValueEnumerator::purgeFunction() { |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 785 | /// Remove purged values from the ValueMap. |
Chris Lattner | e6e364c | 2007-04-26 05:53:54 +0000 | [diff] [blame] | 786 | for (unsigned i = NumModuleValues, e = Values.size(); i != e; ++i) |
Chris Lattner | 5f640b9 | 2007-04-26 03:50:57 +0000 | [diff] [blame] | 787 | ValueMap.erase(Values[i].first); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 788 | for (unsigned i = NumModuleMDs, e = MDs.size(); i != e; ++i) |
| 789 | MDValueMap.erase(MDs[i]); |
Chris Lattner | 7c37b01 | 2007-04-26 04:42:16 +0000 | [diff] [blame] | 790 | for (unsigned i = 0, e = BasicBlocks.size(); i != e; ++i) |
| 791 | ValueMap.erase(BasicBlocks[i]); |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 792 | |
Chris Lattner | e6e364c | 2007-04-26 05:53:54 +0000 | [diff] [blame] | 793 | Values.resize(NumModuleValues); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 794 | MDs.resize(NumModuleMDs); |
Chris Lattner | 7c37b01 | 2007-04-26 04:42:16 +0000 | [diff] [blame] | 795 | BasicBlocks.clear(); |
Dan Gohman | 22161da | 2010-08-25 17:11:16 +0000 | [diff] [blame] | 796 | FunctionLocalMDs.clear(); |
Chris Lattner | c1d10d6 | 2007-04-22 06:24:45 +0000 | [diff] [blame] | 797 | } |
Chris Lattner | f540d74 | 2009-10-28 05:24:40 +0000 | [diff] [blame] | 798 | |
| 799 | static void IncorporateFunctionInfoGlobalBBIDs(const Function *F, |
| 800 | DenseMap<const BasicBlock*, unsigned> &IDMap) { |
| 801 | unsigned Counter = 0; |
| 802 | for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 803 | IDMap[BB] = ++Counter; |
| 804 | } |
| 805 | |
| 806 | /// getGlobalBasicBlockID - This returns the function-specific ID for the |
| 807 | /// specified basic block. This is relatively expensive information, so it |
| 808 | /// should only be used by rare constructs such as address-of-label. |
| 809 | unsigned ValueEnumerator::getGlobalBasicBlockID(const BasicBlock *BB) const { |
| 810 | unsigned &Idx = GlobalBasicBlockIDs[BB]; |
| 811 | if (Idx != 0) |
Chris Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 812 | return Idx-1; |
Chris Lattner | f540d74 | 2009-10-28 05:24:40 +0000 | [diff] [blame] | 813 | |
| 814 | IncorporateFunctionInfoGlobalBBIDs(BB->getParent(), GlobalBasicBlockIDs); |
| 815 | return getGlobalBasicBlockID(BB); |
| 816 | } |
David Blaikie | 7b02810 | 2015-02-25 00:51:52 +0000 | [diff] [blame] | 817 | |
| 818 | uint64_t ValueEnumerator::computeBitsRequiredForTypeIndicies() const { |
| 819 | return Log2_32_Ceil(getTypes().size() + 1); |
| 820 | } |