blob: f2f11c19251da6554c457854d5744c6f969dae37 [file] [log] [blame]
Eugene Zelenko975293f2017-09-07 23:28:24 +00001//===- ValueEnumerator.cpp - Number values and types for bitcode writer ---===//
Chris Lattnerc1d10d62007-04-22 06:24:45 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Lattnerc1d10d62007-04-22 06:24:45 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the ValueEnumerator class.
10//
11//===----------------------------------------------------------------------===//
12
13#include "ValueEnumerator.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000014#include "llvm/ADT/DenseMap.h"
15#include "llvm/ADT/SmallVector.h"
Nico Weber432a3882018-04-30 14:59:11 +000016#include "llvm/Config/llvm-config.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000017#include "llvm/IR/Argument.h"
18#include "llvm/IR/Attributes.h"
19#include "llvm/IR/BasicBlock.h"
20#include "llvm/IR/Constant.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000021#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000023#include "llvm/IR/Function.h"
24#include "llvm/IR/GlobalAlias.h"
25#include "llvm/IR/GlobalIFunc.h"
26#include "llvm/IR/GlobalObject.h"
27#include "llvm/IR/GlobalValue.h"
28#include "llvm/IR/GlobalVariable.h"
29#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Instructions.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000031#include "llvm/IR/Metadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/Module.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000033#include "llvm/IR/Type.h"
34#include "llvm/IR/Use.h"
Duncan P. N. Exon Smith15eb0ab2014-07-25 16:13:16 +000035#include "llvm/IR/UseListOrder.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000036#include "llvm/IR/User.h"
37#include "llvm/IR/Value.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/ValueSymbolTable.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000039#include "llvm/Support/Casting.h"
40#include "llvm/Support/Compiler.h"
Chad Rosier78037a92011-12-07 20:44:46 +000041#include "llvm/Support/Debug.h"
Eugene Zelenko975293f2017-09-07 23:28:24 +000042#include "llvm/Support/MathExtras.h"
Chad Rosier78037a92011-12-07 20:44:46 +000043#include "llvm/Support/raw_ostream.h"
Chris Lattnera8713be2007-05-04 05:05:48 +000044#include <algorithm>
Eugene Zelenko975293f2017-09-07 23:28:24 +000045#include <cassert>
46#include <cstddef>
47#include <iterator>
48#include <tuple>
49#include <utility>
50#include <vector>
51
Chris Lattnerc1d10d62007-04-22 06:24:45 +000052using namespace llvm;
53
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +000054namespace {
Eugene Zelenko975293f2017-09-07 23:28:24 +000055
Duncan P. N. Exon Smith2e6a87b2014-07-29 23:03:40 +000056struct OrderMap {
57 DenseMap<const Value *, std::pair<unsigned, bool>> IDs;
Eugene Zelenko975293f2017-09-07 23:28:24 +000058 unsigned LastGlobalConstantID = 0;
59 unsigned LastGlobalValueID = 0;
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +000060
Eugene Zelenko975293f2017-09-07 23:28:24 +000061 OrderMap() = default;
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +000062
63 bool isGlobalConstant(unsigned ID) const {
64 return ID <= LastGlobalConstantID;
65 }
Eugene Zelenko975293f2017-09-07 23:28:24 +000066
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +000067 bool isGlobalValue(unsigned ID) const {
68 return ID <= LastGlobalValueID && !isGlobalConstant(ID);
69 }
Duncan P. N. Exon Smith2e6a87b2014-07-29 23:03:40 +000070
71 unsigned size() const { return IDs.size(); }
72 std::pair<unsigned, bool> &operator[](const Value *V) { return IDs[V]; }
Eugene Zelenko975293f2017-09-07 23:28:24 +000073
Duncan P. N. Exon Smith2e6a87b2014-07-29 23:03:40 +000074 std::pair<unsigned, bool> lookup(const Value *V) const {
75 return IDs.lookup(V);
76 }
Eugene Zelenko975293f2017-09-07 23:28:24 +000077
Duncan P. N. Exon Smithba4576d2014-07-30 01:20:26 +000078 void index(const Value *V) {
79 // Explicitly sequence get-size and insert-value operations to avoid UB.
80 unsigned ID = IDs.size() + 1;
81 IDs[V].first = ID;
82 }
Duncan P. N. Exon Smith2e6a87b2014-07-29 23:03:40 +000083};
Eugene Zelenko975293f2017-09-07 23:28:24 +000084
85} // end anonymous namespace
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +000086
87static void orderValue(const Value *V, OrderMap &OM) {
88 if (OM.lookup(V).first)
89 return;
90
91 if (const Constant *C = dyn_cast<Constant>(V))
92 if (C->getNumOperands() && !isa<GlobalValue>(C))
93 for (const Value *Op : C->operands())
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +000094 if (!isa<BasicBlock>(Op) && !isa<GlobalValue>(Op))
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +000095 orderValue(Op, OM);
96
97 // Note: we cannot cache this lookup above, since inserting into the map
Duncan P. N. Exon Smithba4576d2014-07-30 01:20:26 +000098 // changes the map's size, and thus affects the other IDs.
99 OM.index(V);
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000100}
101
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000102static OrderMap orderModule(const Module &M) {
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000103 // This needs to match the order used by ValueEnumerator::ValueEnumerator()
104 // and ValueEnumerator::incorporateFunction().
105 OrderMap OM;
106
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000107 // In the reader, initializers of GlobalValues are set *after* all the
108 // globals have been read. Rather than awkwardly modeling this behaviour
109 // directly in predictValueUseListOrderImpl(), just assign IDs to
110 // initializers of GlobalValues before GlobalValues themselves to model this
111 // implicitly.
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000112 for (const GlobalVariable &G : M.globals())
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000113 if (G.hasInitializer())
Duncan P. N. Exon Smith91778672014-07-31 00:13:28 +0000114 if (!isa<GlobalValue>(G.getInitializer()))
115 orderValue(G.getInitializer(), OM);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000116 for (const GlobalAlias &A : M.aliases())
Duncan P. N. Exon Smith91778672014-07-31 00:13:28 +0000117 if (!isa<GlobalValue>(A.getAliasee()))
118 orderValue(A.getAliasee(), OM);
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000119 for (const GlobalIFunc &I : M.ifuncs())
120 if (!isa<GlobalValue>(I.getResolver()))
121 orderValue(I.getResolver(), OM);
Peter Collingbourne51d2de72014-12-03 02:08:38 +0000122 for (const Function &F : M) {
Vedant Kumar3a63fb32015-12-19 08:52:49 +0000123 for (const Use &U : F.operands())
124 if (!isa<GlobalValue>(U.get()))
125 orderValue(U.get(), OM);
Peter Collingbourne51d2de72014-12-03 02:08:38 +0000126 }
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000127 OM.LastGlobalConstantID = OM.size();
128
129 // Initializers of GlobalValues are processed in
130 // BitcodeReader::ResolveGlobalAndAliasInits(). Match the order there rather
131 // than ValueEnumerator, and match the code in predictValueUseListOrderImpl()
132 // by giving IDs in reverse order.
133 //
134 // Since GlobalValues never reference each other directly (just through
135 // initializers), their relative IDs only matter for determining order of
136 // uses in their initializers.
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000137 for (const Function &F : M)
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000138 orderValue(&F, OM);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000139 for (const GlobalAlias &A : M.aliases())
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000140 orderValue(&A, OM);
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000141 for (const GlobalIFunc &I : M.ifuncs())
142 orderValue(&I, OM);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000143 for (const GlobalVariable &G : M.globals())
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000144 orderValue(&G, OM);
145 OM.LastGlobalValueID = OM.size();
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000146
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000147 for (const Function &F : M) {
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000148 if (F.isDeclaration())
149 continue;
150 // Here we need to match the union of ValueEnumerator::incorporateFunction()
151 // and WriteFunction(). Basic blocks are implicitly declared before
152 // anything else (by declaring their size).
153 for (const BasicBlock &BB : F)
154 orderValue(&BB, OM);
155 for (const Argument &A : F.args())
156 orderValue(&A, OM);
157 for (const BasicBlock &BB : F)
158 for (const Instruction &I : BB)
159 for (const Value *Op : I.operands())
160 if ((isa<Constant>(*Op) && !isa<GlobalValue>(*Op)) ||
161 isa<InlineAsm>(*Op))
162 orderValue(Op, OM);
163 for (const BasicBlock &BB : F)
164 for (const Instruction &I : BB)
165 orderValue(&I, OM);
166 }
167 return OM;
168}
169
170static void predictValueUseListOrderImpl(const Value *V, const Function *F,
171 unsigned ID, const OrderMap &OM,
172 UseListOrderStack &Stack) {
173 // Predict use-list order for this one.
Eugene Zelenko975293f2017-09-07 23:28:24 +0000174 using Entry = std::pair<const Use *, unsigned>;
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000175 SmallVector<Entry, 64> List;
176 for (const Use &U : V->uses())
177 // Check if this user will be serialized.
178 if (OM.lookup(U.getUser()).first)
179 List.push_back(std::make_pair(&U, List.size()));
180
181 if (List.size() < 2)
182 // We may have lost some users.
183 return;
184
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000185 bool IsGlobalValue = OM.isGlobalValue(ID);
Fangrui Song0cac7262018-09-27 02:13:45 +0000186 llvm::sort(List, [&](const Entry &L, const Entry &R) {
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000187 const Use *LU = L.first;
188 const Use *RU = R.first;
Duncan P. N. Exon Smith3f0fc7b2014-07-29 01:13:56 +0000189 if (LU == RU)
190 return false;
191
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000192 auto LID = OM.lookup(LU->getUser()).first;
193 auto RID = OM.lookup(RU->getUser()).first;
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000194
195 // Global values are processed in reverse order.
196 //
197 // Moreover, initializers of GlobalValues are set *after* all the globals
198 // have been read (despite having earlier IDs). Rather than awkwardly
199 // modeling this behaviour here, orderModule() has assigned IDs to
200 // initializers of GlobalValues before GlobalValues themselves.
201 if (OM.isGlobalValue(LID) && OM.isGlobalValue(RID))
202 return LID < RID;
203
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000204 // If ID is 4, then expect: 7 6 5 1 2 3.
205 if (LID < RID) {
Duncan P. N. Exon Smithab6adeb2014-07-31 18:33:12 +0000206 if (RID <= ID)
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000207 if (!IsGlobalValue) // GlobalValue uses don't get reversed.
208 return true;
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000209 return false;
210 }
211 if (RID < LID) {
Duncan P. N. Exon Smithab6adeb2014-07-31 18:33:12 +0000212 if (LID <= ID)
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000213 if (!IsGlobalValue) // GlobalValue uses don't get reversed.
214 return false;
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000215 return true;
216 }
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000217
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000218 // LID and RID are equal, so we have different operands of the same user.
219 // Assume operands are added in order for all instructions.
Duncan P. N. Exon Smithab6adeb2014-07-31 18:33:12 +0000220 if (LID <= ID)
Duncan P. N. Exon Smith3cbca202014-07-30 01:22:16 +0000221 if (!IsGlobalValue) // GlobalValue uses don't get reversed.
222 return LU->getOperandNo() < RU->getOperandNo();
223 return LU->getOperandNo() > RU->getOperandNo();
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000224 });
225
226 if (std::is_sorted(
227 List.begin(), List.end(),
228 [](const Entry &L, const Entry &R) { return L.second < R.second; }))
229 // Order is already correct.
230 return;
231
232 // Store the shuffle.
Duncan P. N. Exon Smithd7a281a2014-07-29 16:58:18 +0000233 Stack.emplace_back(V, F, List.size());
234 assert(List.size() == Stack.back().Shuffle.size() && "Wrong size");
Duncan P. N. Exon Smithf849ace2014-07-28 22:41:50 +0000235 for (size_t I = 0, E = List.size(); I != E; ++I)
Duncan P. N. Exon Smithd7a281a2014-07-29 16:58:18 +0000236 Stack.back().Shuffle[I] = List[I].second;
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000237}
238
239static void predictValueUseListOrder(const Value *V, const Function *F,
240 OrderMap &OM, UseListOrderStack &Stack) {
241 auto &IDPair = OM[V];
242 assert(IDPair.first && "Unmapped value");
243 if (IDPair.second)
244 // Already predicted.
245 return;
246
247 // Do the actual prediction.
248 IDPair.second = true;
249 if (!V->use_empty() && std::next(V->use_begin()) != V->use_end())
250 predictValueUseListOrderImpl(V, F, IDPair.first, OM, Stack);
251
252 // Recursive descent into constants.
253 if (const Constant *C = dyn_cast<Constant>(V))
Duncan P. N. Exon Smithc69b5162014-07-30 17:51:09 +0000254 if (C->getNumOperands()) // Visit GlobalValues.
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000255 for (const Value *Op : C->operands())
Duncan P. N. Exon Smithc69b5162014-07-30 17:51:09 +0000256 if (isa<Constant>(Op)) // Visit GlobalValues.
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000257 predictValueUseListOrder(Op, F, OM, Stack);
258}
259
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000260static UseListOrderStack predictUseListOrder(const Module &M) {
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000261 OrderMap OM = orderModule(M);
262
263 // Use-list orders need to be serialized after all the users have been added
264 // to a value, or else the shuffles will be incomplete. Store them per
265 // function in a stack.
266 //
267 // Aside from function order, the order of values doesn't matter much here.
268 UseListOrderStack Stack;
269
270 // We want to visit the functions backward now so we can list function-local
271 // constants in the last Function they're used in. Module-level constants
272 // have already been visited above.
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000273 for (auto I = M.rbegin(), E = M.rend(); I != E; ++I) {
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000274 const Function &F = *I;
275 if (F.isDeclaration())
276 continue;
277 for (const BasicBlock &BB : F)
278 predictValueUseListOrder(&BB, &F, OM, Stack);
279 for (const Argument &A : F.args())
280 predictValueUseListOrder(&A, &F, OM, Stack);
281 for (const BasicBlock &BB : F)
282 for (const Instruction &I : BB)
283 for (const Value *Op : I.operands())
Duncan P. N. Exon Smithc69b5162014-07-30 17:51:09 +0000284 if (isa<Constant>(*Op) || isa<InlineAsm>(*Op)) // Visit GlobalValues.
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000285 predictValueUseListOrder(Op, &F, OM, Stack);
286 for (const BasicBlock &BB : F)
287 for (const Instruction &I : BB)
288 predictValueUseListOrder(&I, &F, OM, Stack);
289 }
290
291 // Visit globals last, since the module-level use-list block will be seen
292 // before the function bodies are processed.
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000293 for (const GlobalVariable &G : M.globals())
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000294 predictValueUseListOrder(&G, nullptr, OM, Stack);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000295 for (const Function &F : M)
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000296 predictValueUseListOrder(&F, nullptr, OM, Stack);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000297 for (const GlobalAlias &A : M.aliases())
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000298 predictValueUseListOrder(&A, nullptr, OM, Stack);
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000299 for (const GlobalIFunc &I : M.ifuncs())
300 predictValueUseListOrder(&I, nullptr, OM, Stack);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000301 for (const GlobalVariable &G : M.globals())
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000302 if (G.hasInitializer())
303 predictValueUseListOrder(G.getInitializer(), nullptr, OM, Stack);
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000304 for (const GlobalAlias &A : M.aliases())
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000305 predictValueUseListOrder(A.getAliasee(), nullptr, OM, Stack);
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000306 for (const GlobalIFunc &I : M.ifuncs())
307 predictValueUseListOrder(I.getResolver(), nullptr, OM, Stack);
Peter Collingbourne51d2de72014-12-03 02:08:38 +0000308 for (const Function &F : M) {
Vedant Kumar3a63fb32015-12-19 08:52:49 +0000309 for (const Use &U : F.operands())
310 predictValueUseListOrder(U.get(), nullptr, OM, Stack);
Peter Collingbourne51d2de72014-12-03 02:08:38 +0000311 }
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000312
313 return Stack;
314}
315
Duncan Sandse6beec62012-11-13 12:59:33 +0000316static bool isIntOrIntVectorValue(const std::pair<const Value*, unsigned> &V) {
317 return V.first->getType()->isIntOrIntVectorTy();
Chris Lattner430e80d2007-05-04 05:21:47 +0000318}
319
Duncan P. N. Exon Smith458593a2015-04-14 23:45:11 +0000320ValueEnumerator::ValueEnumerator(const Module &M,
321 bool ShouldPreserveUseListOrder)
Duncan P. N. Exon Smith6565a0d2016-03-27 23:17:54 +0000322 : ShouldPreserveUseListOrder(ShouldPreserveUseListOrder) {
Duncan P. N. Exon Smith458593a2015-04-14 23:45:11 +0000323 if (ShouldPreserveUseListOrder)
Duncan P. N. Exon Smith1f66c852014-07-28 21:19:41 +0000324 UseListOrders = predictUseListOrder(M);
325
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000326 // Enumerate the global variables.
Yaron Keren4c20deb2015-06-12 20:18:20 +0000327 for (const GlobalVariable &GV : M.globals())
328 EnumerateValue(&GV);
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000329
330 // Enumerate the functions.
Yaron Keren4c20deb2015-06-12 20:18:20 +0000331 for (const Function & F : M) {
332 EnumerateValue(&F);
333 EnumerateAttributes(F.getAttributes());
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000334 }
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000335
Chris Lattner44c17072007-04-26 02:46:40 +0000336 // Enumerate the aliases.
Yaron Keren4c20deb2015-06-12 20:18:20 +0000337 for (const GlobalAlias &GA : M.aliases())
338 EnumerateValue(&GA);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000339
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000340 // Enumerate the ifuncs.
341 for (const GlobalIFunc &GIF : M.ifuncs())
342 EnumerateValue(&GIF);
343
Chris Lattner430e80d2007-05-04 05:21:47 +0000344 // Remember what is the cutoff between globalvalue's and other constants.
345 unsigned FirstConstant = Values.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000346
Javed Absarf3d79042017-05-11 12:28:08 +0000347 // Enumerate the global variable initializers and attributes.
348 for (const GlobalVariable &GV : M.globals()) {
Yaron Keren4c20deb2015-06-12 20:18:20 +0000349 if (GV.hasInitializer())
350 EnumerateValue(GV.getInitializer());
Javed Absarf3d79042017-05-11 12:28:08 +0000351 if (GV.hasAttributes())
352 EnumerateAttributes(GV.getAttributesAsList(AttributeList::FunctionIndex));
353 }
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000354
Chris Lattner44c17072007-04-26 02:46:40 +0000355 // Enumerate the aliasees.
Yaron Keren4c20deb2015-06-12 20:18:20 +0000356 for (const GlobalAlias &GA : M.aliases())
357 EnumerateValue(GA.getAliasee());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000358
Dmitry Polukhina1feff72016-04-07 12:32:19 +0000359 // Enumerate the ifunc resolvers.
360 for (const GlobalIFunc &GIF : M.ifuncs())
361 EnumerateValue(GIF.getResolver());
362
Vedant Kumar3a63fb32015-12-19 08:52:49 +0000363 // Enumerate any optional Function data.
Yaron Keren4c20deb2015-06-12 20:18:20 +0000364 for (const Function &F : M)
Vedant Kumar3a63fb32015-12-19 08:52:49 +0000365 for (const Use &U : F.operands())
366 EnumerateValue(U.get());
David Majnemer7fddecc2015-06-17 20:52:32 +0000367
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000368 // Enumerate the metadata type.
369 //
370 // TODO: Move this to ValueEnumerator::EnumerateOperandType() once bitcode
371 // only encodes the metadata type when it's used as a value.
372 EnumerateType(Type::getMetadataTy(M.getContext()));
373
Joe Abbeybc6f4ba2013-04-01 02:28:07 +0000374 // Insert constants and metadata that are named at module level into the slot
Devang Patelfcfee0f2010-01-07 19:39:36 +0000375 // pool so that the module symbol table can refer to them...
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000376 EnumerateValueSymbolTable(M.getValueSymbolTable());
Dan Gohman2637cc12010-07-21 23:38:33 +0000377 EnumerateNamedMetadata(M);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000378
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000379 SmallVector<std::pair<unsigned, MDNode *>, 8> MDs;
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000380 for (const GlobalVariable &GV : M.globals()) {
Peter Collingbourne382d81c2016-06-01 01:17:57 +0000381 MDs.clear();
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000382 GV.getAllMetadata(MDs);
383 for (const auto &I : MDs)
Peter Collingbourne21521892016-06-21 23:42:48 +0000384 // FIXME: Pass GV to EnumerateMetadata and arrange for the bitcode writer
385 // to write metadata to the global variable's own metadata block
386 // (PR28134).
387 EnumerateMetadata(nullptr, I.second);
Peter Collingbournecceae7f2016-05-31 23:01:54 +0000388 }
Chris Lattner8dace892009-12-31 00:51:46 +0000389
Chris Lattner5f640b92007-04-26 03:50:57 +0000390 // Enumerate types used by function bodies and argument lists.
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000391 for (const Function &F : M) {
Rafael Espindola087d6272014-06-17 03:00:40 +0000392 for (const Argument &A : F.args())
393 EnumerateType(A.getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000394
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000395 // Enumerate metadata attached to this function.
Peter Collingbourne382d81c2016-06-01 01:17:57 +0000396 MDs.clear();
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000397 F.getAllMetadata(MDs);
398 for (const auto &I : MDs)
Peter Collingbourne21521892016-06-21 23:42:48 +0000399 EnumerateMetadata(F.isDeclaration() ? nullptr : &F, I.second);
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000400
Rafael Espindola087d6272014-06-17 03:00:40 +0000401 for (const BasicBlock &BB : F)
402 for (const Instruction &I : BB) {
403 for (const Use &Op : I.operands()) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000404 auto *MD = dyn_cast<MetadataAsValue>(&Op);
405 if (!MD) {
406 EnumerateOperandType(Op);
407 continue;
408 }
409
410 // Local metadata is enumerated during function-incorporation.
411 if (isa<LocalAsMetadata>(MD->getMetadata()))
412 continue;
413
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000414 EnumerateMetadata(&F, MD->getMetadata());
Victor Hernandez572218b2010-01-14 19:54:11 +0000415 }
Rafael Espindola087d6272014-06-17 03:00:40 +0000416 EnumerateType(I.getType());
417 if (const CallInst *CI = dyn_cast<CallInst>(&I))
Devang Patel4c758ea2008-09-25 21:00:45 +0000418 EnumerateAttributes(CI->getAttributes());
Rafael Espindola087d6272014-06-17 03:00:40 +0000419 else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I))
Devang Patel4c758ea2008-09-25 21:00:45 +0000420 EnumerateAttributes(II->getAttributes());
Devang Patelaf206b82009-09-18 19:26:43 +0000421
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000422 // Enumerate metadata attached with this instruction.
Devang Patel6da5dbf2009-10-22 18:55:16 +0000423 MDs.clear();
Rafael Espindola087d6272014-06-17 03:00:40 +0000424 I.getAllMetadataOtherThanDebugLoc(MDs);
Chris Lattner2f2aa2b2009-12-28 23:41:32 +0000425 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000426 EnumerateMetadata(&F, MDs[i].second);
Joe Abbey2ad8df22012-11-25 15:23:39 +0000427
Duncan P. N. Exon Smithab659fb32015-03-30 19:40:05 +0000428 // Don't enumerate the location directly -- it has a special record
429 // type -- but enumerate its operands.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000430 if (DILocation *L = I.getDebugLoc())
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000431 for (const Metadata *Op : L->operands())
432 EnumerateMetadata(&F, Op);
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000433 }
434 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000435
Chris Lattner430e80d2007-05-04 05:21:47 +0000436 // Optimize constant ordering.
437 OptimizeConstants(FirstConstant, Values.size());
Duncan P. N. Exon Smith6565a0d2016-03-27 23:17:54 +0000438
439 // Organize metadata ordering.
440 organizeMetadata();
Rafael Espindola337a1b22011-04-06 16:49:37 +0000441}
442
Devang Patelaf206b82009-09-18 19:26:43 +0000443unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
444 InstructionMapType::const_iterator I = InstructionMap.find(Inst);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000445 assert(I != InstructionMap.end() && "Instruction is not mapped!");
Dan Gohman1f4b0282010-08-25 17:09:50 +0000446 return I->second;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000447}
Devang Patelaf206b82009-09-18 19:26:43 +0000448
David Majnemerdad0a642014-06-27 18:19:56 +0000449unsigned ValueEnumerator::getComdatID(const Comdat *C) const {
450 unsigned ComdatID = Comdats.idFor(C);
451 assert(ComdatID && "Comdat not found!");
452 return ComdatID;
453}
454
Devang Patelaf206b82009-09-18 19:26:43 +0000455void ValueEnumerator::setInstructionID(const Instruction *I) {
456 InstructionMap[I] = InstructionCount++;
457}
458
Devang Patel05eb6172009-08-04 06:00:18 +0000459unsigned ValueEnumerator::getValueID(const Value *V) const {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000460 if (auto *MD = dyn_cast<MetadataAsValue>(V))
461 return getMetadataID(MD->getMetadata());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000462
Devang Patel05eb6172009-08-04 06:00:18 +0000463 ValueMapType::const_iterator I = ValueMap.find(V);
464 assert(I != ValueMap.end() && "Value not in slotcalculator!");
465 return I->second-1;
466}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000467
Aaron Ballman615eb472017-10-15 14:32:27 +0000468#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000469LLVM_DUMP_METHOD void ValueEnumerator::dump() const {
Chad Rosier78037a92011-12-07 20:44:46 +0000470 print(dbgs(), ValueMap, "Default");
471 dbgs() << '\n';
Teresa Johnson61b406e2015-12-29 23:00:22 +0000472 print(dbgs(), MetadataMap, "MetaData");
Chad Rosier78037a92011-12-07 20:44:46 +0000473 dbgs() << '\n';
474}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000475#endif
Chad Rosier78037a92011-12-07 20:44:46 +0000476
477void ValueEnumerator::print(raw_ostream &OS, const ValueMapType &Map,
478 const char *Name) const {
Chad Rosier78037a92011-12-07 20:44:46 +0000479 OS << "Map Name: " << Name << "\n";
480 OS << "Size: " << Map.size() << "\n";
481 for (ValueMapType::const_iterator I = Map.begin(),
482 E = Map.end(); I != E; ++I) {
Chad Rosier78037a92011-12-07 20:44:46 +0000483 const Value *V = I->first;
484 if (V->hasName())
485 OS << "Value: " << V->getName();
486 else
487 OS << "Value: [null]\n";
Matthias Braun8c209aa2017-01-28 02:02:38 +0000488 V->print(errs());
489 errs() << '\n';
Chad Rosier78037a92011-12-07 20:44:46 +0000490
Vedant Kumare0b5f862018-05-10 23:01:54 +0000491 OS << " Uses(" << V->getNumUses() << "):";
Chandler Carruthcdf47882014-03-09 03:16:01 +0000492 for (const Use &U : V->uses()) {
493 if (&U != &*V->use_begin())
Chad Rosier78037a92011-12-07 20:44:46 +0000494 OS << ",";
Chandler Carruthcdf47882014-03-09 03:16:01 +0000495 if(U->hasName())
496 OS << " " << U->getName();
Chad Rosier78037a92011-12-07 20:44:46 +0000497 else
498 OS << " [null]";
499
500 }
501 OS << "\n\n";
502 }
503}
504
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000505void ValueEnumerator::print(raw_ostream &OS, const MetadataMapType &Map,
506 const char *Name) const {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000507 OS << "Map Name: " << Name << "\n";
508 OS << "Size: " << Map.size() << "\n";
509 for (auto I = Map.begin(), E = Map.end(); I != E; ++I) {
510 const Metadata *MD = I->first;
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000511 OS << "Metadata: slot = " << I->second.ID << "\n";
512 OS << "Metadata: function = " << I->second.F << "\n";
Nick Lewyckyee0a3a72014-12-17 01:52:08 +0000513 MD->print(OS);
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000514 OS << "\n";
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000515 }
516}
517
Chris Lattner430e80d2007-05-04 05:21:47 +0000518/// OptimizeConstants - Reorder constant pool for denser encoding.
519void ValueEnumerator::OptimizeConstants(unsigned CstStart, unsigned CstEnd) {
520 if (CstStart == CstEnd || CstStart+1 == CstEnd) return;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000521
Duncan P. N. Exon Smith458593a2015-04-14 23:45:11 +0000522 if (ShouldPreserveUseListOrder)
Duncan P. N. Exon Smith15eb0ab2014-07-25 16:13:16 +0000523 // Optimizing constants makes the use-list order difficult to predict.
524 // Disable it for now when trying to preserve the order.
525 return;
526
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000527 std::stable_sort(Values.begin() + CstStart, Values.begin() + CstEnd,
528 [this](const std::pair<const Value *, unsigned> &LHS,
529 const std::pair<const Value *, unsigned> &RHS) {
530 // Sort by plane.
531 if (LHS.first->getType() != RHS.first->getType())
532 return getTypeID(LHS.first->getType()) < getTypeID(RHS.first->getType());
533 // Then by frequency.
534 return LHS.second > RHS.second;
535 });
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000536
Duncan Sandse6beec62012-11-13 12:59:33 +0000537 // Ensure that integer and vector of integer constants are at the start of the
538 // constant pool. This is important so that GEP structure indices come before
539 // gep constant exprs.
Duncan P. N. Exon Smithbdde9e12016-03-25 02:20:28 +0000540 std::stable_partition(Values.begin() + CstStart, Values.begin() + CstEnd,
541 isIntOrIntVectorValue);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000542
Chris Lattner430e80d2007-05-04 05:21:47 +0000543 // Rebuild the modified portion of ValueMap.
544 for (; CstStart != CstEnd; ++CstStart)
545 ValueMap[Values[CstStart].first] = CstStart+1;
546}
547
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000548/// EnumerateValueSymbolTable - Insert all of the values in the specified symbol
549/// table into the values table.
550void ValueEnumerator::EnumerateValueSymbolTable(const ValueSymbolTable &VST) {
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000551 for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end();
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000552 VI != VE; ++VI)
553 EnumerateValue(VI->getValue());
554}
555
Rafael Espindola49e9bf82014-11-17 20:06:27 +0000556/// Insert all of the values referenced by named metadata in the specified
557/// module.
558void ValueEnumerator::EnumerateNamedMetadata(const Module &M) {
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +0000559 for (const auto &I : M.named_metadata())
560 EnumerateNamedMDNode(&I);
Devang Patelfcfee0f2010-01-07 19:39:36 +0000561}
562
Devang Patel99ff5a82010-01-09 00:30:14 +0000563void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
Devang Patel99ff5a82010-01-09 00:30:14 +0000564 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000565 EnumerateMetadata(nullptr, MD->getOperand(i));
566}
567
Peter Collingbourne21521892016-06-21 23:42:48 +0000568unsigned ValueEnumerator::getMetadataFunctionID(const Function *F) const {
569 return F ? getValueID(F) + 1 : 0;
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000570}
571
Peter Collingbourne21521892016-06-21 23:42:48 +0000572void ValueEnumerator::EnumerateMetadata(const Function *F, const Metadata *MD) {
573 EnumerateMetadata(getMetadataFunctionID(F), MD);
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000574}
575
576void ValueEnumerator::EnumerateFunctionLocalMetadata(
577 const Function &F, const LocalAsMetadata *Local) {
Peter Collingbourne21521892016-06-21 23:42:48 +0000578 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local);
Devang Patel99ff5a82010-01-09 00:30:14 +0000579}
580
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000581void ValueEnumerator::dropFunctionFromMetadata(
582 MetadataMapType::value_type &FirstMD) {
Duncan P. N. Exon Smith134cb5d2016-04-18 01:24:58 +0000583 SmallVector<const MDNode *, 64> Worklist;
Malcolm Parsons17d266b2017-01-13 17:12:16 +0000584 auto push = [&Worklist](MetadataMapType::value_type &MD) {
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000585 auto &Entry = MD.second;
586
587 // Nothing to do if this metadata isn't tagged.
588 if (!Entry.F)
589 return;
590
591 // Drop the function tag.
592 Entry.F = 0;
593
594 // If this is has an ID and is an MDNode, then its operands have entries as
595 // well. We need to drop the function from them too.
596 if (Entry.ID)
597 if (auto *N = dyn_cast<MDNode>(MD.first))
598 Worklist.push_back(N);
599 };
600 push(FirstMD);
601 while (!Worklist.empty())
Duncan P. N. Exon Smith134cb5d2016-04-18 01:24:58 +0000602 for (const Metadata *Op : Worklist.pop_back_val()->operands()) {
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000603 if (!Op)
604 continue;
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000605 auto MD = MetadataMap.find(Op);
606 if (MD != MetadataMap.end())
607 push(*MD);
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000608 }
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000609}
610
611void ValueEnumerator::EnumerateMetadata(unsigned F, const Metadata *MD) {
Duncan P. N. Exon Smith30805b22016-04-23 04:59:22 +0000612 // It's vital for reader efficiency that uniqued subgraphs are done in
613 // post-order; it's expensive when their operands have forward references.
614 // If a distinct node is referenced from a uniqued node, it'll be delayed
615 // until the uniqued subgraph has been completely traversed.
616 SmallVector<const MDNode *, 32> DelayedDistinctNodes;
617
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000618 // Start by enumerating MD, and then work through its transitive operands in
Duncan P. N. Exon Smithc1965312016-04-21 01:55:12 +0000619 // post-order. This requires a depth-first search.
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000620 SmallVector<std::pair<const MDNode *, MDNode::op_iterator>, 32> Worklist;
621 if (const MDNode *N = enumerateMetadataImpl(F, MD))
622 Worklist.push_back(std::make_pair(N, N->op_begin()));
623
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000624 while (!Worklist.empty()) {
625 const MDNode *N = Worklist.back().first;
Duncan P. N. Exon Smithc1965312016-04-21 01:55:12 +0000626
Duncan P. N. Exon Smithd9bbdce2016-04-23 04:22:38 +0000627 // Enumerate operands until we hit a new node. We need to traverse these
628 // nodes' operands before visiting the rest of N's operands.
629 MDNode::op_iterator I = std::find_if(
630 Worklist.back().second, N->op_end(),
631 [&](const Metadata *MD) { return enumerateMetadataImpl(F, MD); });
632 if (I != N->op_end()) {
633 auto *Op = cast<MDNode>(*I);
634 Worklist.back().second = ++I;
Duncan P. N. Exon Smith30805b22016-04-23 04:59:22 +0000635
636 // Delay traversing Op if it's a distinct node and N is uniqued.
637 if (Op->isDistinct() && !N->isDistinct())
638 DelayedDistinctNodes.push_back(Op);
639 else
640 Worklist.push_back(std::make_pair(Op, Op->op_begin()));
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000641 continue;
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000642 }
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000643
644 // All the operands have been visited. Now assign an ID.
645 Worklist.pop_back();
646 MDs.push_back(N);
647 MetadataMap[N].ID = MDs.size();
Duncan P. N. Exon Smith30805b22016-04-23 04:59:22 +0000648
649 // Flush out any delayed distinct nodes; these are all the distinct nodes
650 // that are leaves in last uniqued subgraph.
651 if (Worklist.empty() || Worklist.back().first->isDistinct()) {
652 for (const MDNode *N : DelayedDistinctNodes)
653 Worklist.push_back(std::make_pair(N, N->op_begin()));
654 DelayedDistinctNodes.clear();
655 }
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000656 }
657}
658
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000659const MDNode *ValueEnumerator::enumerateMetadataImpl(unsigned F, const Metadata *MD) {
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000660 if (!MD)
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000661 return nullptr;
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000662
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000663 assert(
664 (isa<MDNode>(MD) || isa<MDString>(MD) || isa<ConstantAsMetadata>(MD)) &&
665 "Invalid metadata kind");
Dan Gohmanc828c542010-08-24 02:24:03 +0000666
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000667 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F)));
668 MDIndex &Entry = Insertion.first->second;
669 if (!Insertion.second) {
670 // Already mapped. If F doesn't match the function tag, drop it.
671 if (Entry.hasDifferentFunction(F))
672 dropFunctionFromMetadata(*Insertion.first);
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000673 return nullptr;
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000674 }
Duncan P. N. Exon Smith60d87e72014-10-21 22:13:34 +0000675
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000676 // Don't assign IDs to metadata nodes.
677 if (auto *N = dyn_cast<MDNode>(MD))
678 return N;
Duncan P. N. Exon Smith2fcf60e2015-01-12 22:30:34 +0000679
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000680 // Save the metadata.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000681 MDs.push_back(MD);
Duncan P. N. Exon Smith9695eb32016-04-19 03:46:51 +0000682 Entry.ID = MDs.size();
683
684 // Enumerate the constant, if any.
685 if (auto *C = dyn_cast<ConstantAsMetadata>(MD))
686 EnumerateValue(C->getValue());
Duncan P. N. Exon Smithc1965312016-04-21 01:55:12 +0000687
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000688 return nullptr;
Dan Gohmanc828c542010-08-24 02:24:03 +0000689}
690
691/// EnumerateFunctionLocalMetadataa - Incorporate function-local metadata
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000692/// information reachable from the metadata.
693void ValueEnumerator::EnumerateFunctionLocalMetadata(
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000694 unsigned F, const LocalAsMetadata *Local) {
695 assert(F && "Expected a function");
696
Dan Gohmanc828c542010-08-24 02:24:03 +0000697 // Check to see if it's already in!
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000698 MDIndex &Index = MetadataMap[Local];
699 if (Index.ID) {
700 assert(Index.F == F && "Expected the same function");
Dan Gohmanc828c542010-08-24 02:24:03 +0000701 return;
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000702 }
Duncan P. N. Exon Smith60d87e72014-10-21 22:13:34 +0000703
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000704 MDs.push_back(Local);
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000705 Index.F = F;
706 Index.ID = MDs.size();
Dan Gohmanc828c542010-08-24 02:24:03 +0000707
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000708 EnumerateValue(Local->getValue());
Devang Patel05eb6172009-08-04 06:00:18 +0000709}
710
Duncan P. N. Exon Smith1483fff2016-04-23 04:42:39 +0000711static unsigned getMetadataTypeOrder(const Metadata *MD) {
712 // Strings are emitted in bulk and must come first.
713 if (isa<MDString>(MD))
714 return 0;
715
716 // ConstantAsMetadata doesn't reference anything. We may as well shuffle it
717 // to the front since we can detect it.
718 auto *N = dyn_cast<MDNode>(MD);
719 if (!N)
720 return 1;
721
722 // The reader is fast forward references for distinct node operands, but slow
723 // when uniqued operands are unresolved.
724 return N->isDistinct() ? 2 : 3;
725}
726
Duncan P. N. Exon Smith6565a0d2016-03-27 23:17:54 +0000727void ValueEnumerator::organizeMetadata() {
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000728 assert(MetadataMap.size() == MDs.size() &&
729 "Metadata map and vector out of sync");
730
731 if (MDs.empty())
Duncan P. N. Exon Smith6565a0d2016-03-27 23:17:54 +0000732 return;
733
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000734 // Copy out the index information from MetadataMap in order to choose a new
735 // order.
736 SmallVector<MDIndex, 64> Order;
737 Order.reserve(MetadataMap.size());
738 for (const Metadata *MD : MDs)
739 Order.push_back(MetadataMap.lookup(MD));
Duncan P. N. Exon Smith6565a0d2016-03-27 23:17:54 +0000740
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000741 // Partition:
742 // - by function, then
743 // - by isa<MDString>
744 // and then sort by the original/current ID. Since the IDs are guaranteed to
745 // be unique, the result of std::sort will be deterministic. There's no need
746 // for std::stable_sort.
Fangrui Song0cac7262018-09-27 02:13:45 +0000747 llvm::sort(Order, [this](MDIndex LHS, MDIndex RHS) {
Duncan P. N. Exon Smith1483fff2016-04-23 04:42:39 +0000748 return std::make_tuple(LHS.F, getMetadataTypeOrder(LHS.get(MDs)), LHS.ID) <
749 std::make_tuple(RHS.F, getMetadataTypeOrder(RHS.get(MDs)), RHS.ID);
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000750 });
751
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000752 // Rebuild MDs, index the metadata ranges for each function in FunctionMDs,
753 // and fix up MetadataMap.
754 std::vector<const Metadata *> OldMDs = std::move(MDs);
755 MDs.reserve(OldMDs.size());
756 for (unsigned I = 0, E = Order.size(); I != E && !Order[I].F; ++I) {
757 auto *MD = Order[I].get(OldMDs);
758 MDs.push_back(MD);
759 MetadataMap[MD].ID = I + 1;
760 if (isa<MDString>(MD))
761 ++NumMDStrings;
762 }
763
764 // Return early if there's nothing for the functions.
765 if (MDs.size() == Order.size())
766 return;
767
768 // Build the function metadata ranges.
769 MDRange R;
770 FunctionMDs.reserve(OldMDs.size());
771 unsigned PrevF = 0;
772 for (unsigned I = MDs.size(), E = Order.size(), ID = MDs.size(); I != E;
773 ++I) {
774 unsigned F = Order[I].F;
775 if (!PrevF) {
776 PrevF = F;
777 } else if (PrevF != F) {
778 R.Last = FunctionMDs.size();
779 std::swap(R, FunctionMDInfo[PrevF]);
780 R.First = FunctionMDs.size();
781
782 ID = MDs.size();
783 PrevF = F;
784 }
785
786 auto *MD = Order[I].get(OldMDs);
787 FunctionMDs.push_back(MD);
788 MetadataMap[MD].ID = ++ID;
789 if (isa<MDString>(MD))
790 ++R.NumStrings;
791 }
792 R.Last = FunctionMDs.size();
793 FunctionMDInfo[PrevF] = R;
794}
795
796void ValueEnumerator::incorporateFunctionMetadata(const Function &F) {
797 NumModuleMDs = MDs.size();
798
799 auto R = FunctionMDInfo.lookup(getValueID(&F) + 1);
800 NumMDStrings = R.NumStrings;
801 MDs.insert(MDs.end(), FunctionMDs.begin() + R.First,
802 FunctionMDs.begin() + R.Last);
Duncan P. N. Exon Smith6565a0d2016-03-27 23:17:54 +0000803}
804
Victor Hernandez572218b2010-01-14 19:54:11 +0000805void ValueEnumerator::EnumerateValue(const Value *V) {
Chris Lattner8dace892009-12-31 00:51:46 +0000806 assert(!V->getType()->isVoidTy() && "Can't insert void values!");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000807 assert(!isa<MetadataAsValue>(V) && "EnumerateValue doesn't handle Metadata!");
Devang Patel05eb6172009-08-04 06:00:18 +0000808
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000809 // Check to see if it's already in!
810 unsigned &ValueID = ValueMap[V];
811 if (ValueID) {
812 // Increment use count.
813 Values[ValueID-1].second++;
814 return;
815 }
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000816
David Majnemerdad0a642014-06-27 18:19:56 +0000817 if (auto *GO = dyn_cast<GlobalObject>(V))
818 if (const Comdat *C = GO->getComdat())
819 Comdats.insert(C);
820
Chris Lattner9ee48362007-05-06 01:00:28 +0000821 // Enumerate the type of this value.
822 EnumerateType(V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000823
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000824 if (const Constant *C = dyn_cast<Constant>(V)) {
825 if (isa<GlobalValue>(C)) {
826 // Initializers for globals are handled explicitly elsewhere.
Chris Lattner9ee48362007-05-06 01:00:28 +0000827 } else if (C->getNumOperands()) {
828 // If a constant has operands, enumerate them. This makes sure that if a
829 // constant has uses (for example an array of const ints), that they are
830 // inserted also.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000831
Chris Lattner9ee48362007-05-06 01:00:28 +0000832 // We prefer to enumerate them with values before we enumerate the user
833 // itself. This makes it more likely that we can avoid forward references
834 // in the reader. We know that there can be no cycles in the constants
835 // graph that don't go through a global variable.
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000836 for (User::const_op_iterator I = C->op_begin(), E = C->op_end();
837 I != E; ++I)
Chris Lattneraa99c942009-11-01 01:27:45 +0000838 if (!isa<BasicBlock>(*I)) // Don't enumerate BB operand to BlockAddress.
Victor Hernandez572218b2010-01-14 19:54:11 +0000839 EnumerateValue(*I);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000840
Chris Lattner9ee48362007-05-06 01:00:28 +0000841 // Finally, add the value. Doing this could make the ValueID reference be
842 // dangling, don't reuse it.
843 Values.push_back(std::make_pair(V, 1U));
844 ValueMap[V] = Values.size();
845 return;
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000846 }
847 }
Devang Patele059ba6e2009-07-23 01:07:34 +0000848
Chris Lattner9ee48362007-05-06 01:00:28 +0000849 // Add the value.
850 Values.push_back(std::make_pair(V, 1U));
851 ValueID = Values.size();
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000852}
853
854
Chris Lattner229907c2011-07-18 04:54:35 +0000855void ValueEnumerator::EnumerateType(Type *Ty) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000856 unsigned *TypeID = &TypeMap[Ty];
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000857
Rafael Espindola337a1b22011-04-06 16:49:37 +0000858 // We've already seen this type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000859 if (*TypeID)
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000860 return;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000861
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000862 // If it is a non-anonymous struct, mark the type as being visited so that we
863 // don't recursively visit it. This is safe because we allow forward
864 // references of these in the bitcode reader.
Chris Lattner229907c2011-07-18 04:54:35 +0000865 if (StructType *STy = dyn_cast<StructType>(Ty))
Chris Lattner335d3992011-08-12 18:06:37 +0000866 if (!STy->isLiteral())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000867 *TypeID = ~0U;
Joe Abbey2ad8df22012-11-25 15:23:39 +0000868
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000869 // Enumerate all of the subtypes before we enumerate this type. This ensures
870 // that the type will be enumerated in an order that can be directly built.
Rafael Espindolaffbfcf22014-11-24 20:44:36 +0000871 for (Type *SubTy : Ty->subtypes())
872 EnumerateType(SubTy);
Joe Abbey2ad8df22012-11-25 15:23:39 +0000873
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000874 // Refresh the TypeID pointer in case the table rehashed.
875 TypeID = &TypeMap[Ty];
Joe Abbey2ad8df22012-11-25 15:23:39 +0000876
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000877 // Check to see if we got the pointer another way. This can happen when
878 // enumerating recursive types that hit the base case deeper than they start.
879 //
880 // If this is actually a struct that we are treating as forward ref'able,
881 // then emit the definition now that all of its contents are available.
882 if (*TypeID && *TypeID != ~0U)
883 return;
Joe Abbey2ad8df22012-11-25 15:23:39 +0000884
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000885 // Add this type now that its contents are all happily enumerated.
886 Types.push_back(Ty);
Joe Abbey2ad8df22012-11-25 15:23:39 +0000887
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000888 *TypeID = Types.size();
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000889}
890
Chris Lattner76fd90f2007-05-06 08:35:19 +0000891// Enumerate the types for the specified value. If the value is a constant,
892// walk through it, enumerating the types of the constant.
Victor Hernandez572218b2010-01-14 19:54:11 +0000893void ValueEnumerator::EnumerateOperandType(const Value *V) {
Chris Lattner76fd90f2007-05-06 08:35:19 +0000894 EnumerateType(V->getType());
Joe Abbey2ad8df22012-11-25 15:23:39 +0000895
Duncan P. N. Exon Smith544e4f92016-03-28 00:03:12 +0000896 assert(!isa<MetadataAsValue>(V) && "Unexpected metadata operand");
Joe Abbey2ad8df22012-11-25 15:23:39 +0000897
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000898 const Constant *C = dyn_cast<Constant>(V);
899 if (!C)
900 return;
Joe Abbey2ad8df22012-11-25 15:23:39 +0000901
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000902 // If this constant is already enumerated, ignore it, we know its type must
903 // be enumerated.
904 if (ValueMap.count(C))
905 return;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +0000906
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000907 // This constant may have operands, make sure to enumerate the types in
908 // them.
Pete Cooper125ad172015-06-25 20:51:38 +0000909 for (const Value *Op : C->operands()) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000910 // Don't enumerate basic blocks here, this happens as operands to
911 // blockaddress.
912 if (isa<BasicBlock>(Op))
913 continue;
914
915 EnumerateOperandType(Op);
916 }
Chris Lattner76fd90f2007-05-06 08:35:19 +0000917}
918
Reid Klecknerb5180542017-03-21 16:57:19 +0000919void ValueEnumerator::EnumerateAttributes(AttributeList PAL) {
Chris Lattner8a923e72008-03-12 17:45:29 +0000920 if (PAL.isEmpty()) return; // null is always 0.
Bill Wendling7b5f4f32013-02-12 08:01:22 +0000921
Chris Lattnere4bbad62007-05-03 22:46:43 +0000922 // Do a lookup.
Reid Klecknerb4a2d182017-04-24 20:38:30 +0000923 unsigned &Entry = AttributeListMap[PAL];
Chris Lattnere4bbad62007-05-03 22:46:43 +0000924 if (Entry == 0) {
925 // Never saw this before, add it.
Reid Klecknerb4a2d182017-04-24 20:38:30 +0000926 AttributeLists.push_back(PAL);
927 Entry = AttributeLists.size();
Chris Lattnere4bbad62007-05-03 22:46:43 +0000928 }
Bill Wendling51f612e2013-02-10 23:06:02 +0000929
930 // Do lookups for all attribute groups.
Reid Kleckner8bf67fe2017-05-23 17:01:48 +0000931 for (unsigned i = PAL.index_begin(), e = PAL.index_end(); i != e; ++i) {
932 AttributeSet AS = PAL.getAttributes(i);
933 if (!AS.hasAttributes())
934 continue;
935 IndexAndAttrSet Pair = {i, AS};
Reid Klecknerb4a2d182017-04-24 20:38:30 +0000936 unsigned &Entry = AttributeGroupMap[Pair];
Bill Wendling51f612e2013-02-10 23:06:02 +0000937 if (Entry == 0) {
Reid Klecknerb4a2d182017-04-24 20:38:30 +0000938 AttributeGroups.push_back(Pair);
Bill Wendling92ed7002013-02-11 22:33:26 +0000939 Entry = AttributeGroups.size();
Bill Wendling51f612e2013-02-10 23:06:02 +0000940 }
941 }
Chris Lattnere4bbad62007-05-03 22:46:43 +0000942}
943
Chad Rosier6a11b642011-06-03 17:02:19 +0000944void ValueEnumerator::incorporateFunction(const Function &F) {
Nick Lewyckya72e1af2010-02-25 08:30:17 +0000945 InstructionCount = 0;
Chris Lattnere6e364c2007-04-26 05:53:54 +0000946 NumModuleValues = Values.size();
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +0000947
948 // Add global metadata to the function block. This doesn't include
949 // LocalAsMetadata.
950 incorporateFunctionMetadata(F);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000951
Chris Lattner5f640b92007-04-26 03:50:57 +0000952 // Adding function arguments to the value table.
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +0000953 for (const auto &I : F.args())
954 EnumerateValue(&I);
Chris Lattner5f640b92007-04-26 03:50:57 +0000955
Chris Lattnere6e364c2007-04-26 05:53:54 +0000956 FirstFuncConstantID = Values.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000957
Chris Lattner5f640b92007-04-26 03:50:57 +0000958 // Add all function-level constants to the value table.
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +0000959 for (const BasicBlock &BB : F) {
960 for (const Instruction &I : BB)
961 for (const Use &OI : I.operands()) {
962 if ((isa<Constant>(OI) && !isa<GlobalValue>(OI)) || isa<InlineAsm>(OI))
963 EnumerateValue(OI);
Chris Lattner5f640b92007-04-26 03:50:57 +0000964 }
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +0000965 BasicBlocks.push_back(&BB);
966 ValueMap[&BB] = BasicBlocks.size();
Chris Lattner5f640b92007-04-26 03:50:57 +0000967 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000968
Chris Lattner430e80d2007-05-04 05:21:47 +0000969 // Optimize the constant layout.
970 OptimizeConstants(FirstFuncConstantID, Values.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000971
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000972 // Add the function's parameter attributes so they are available for use in
973 // the function's instruction.
Devang Patel4c758ea2008-09-25 21:00:45 +0000974 EnumerateAttributes(F.getAttributes());
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000975
Chris Lattnere6e364c2007-04-26 05:53:54 +0000976 FirstInstID = Values.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000977
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000978 SmallVector<LocalAsMetadata *, 8> FnLocalMDVector;
Chris Lattner5f640b92007-04-26 03:50:57 +0000979 // Add all of the instructions.
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +0000980 for (const BasicBlock &BB : F) {
981 for (const Instruction &I : BB) {
982 for (const Use &OI : I.operands()) {
983 if (auto *MD = dyn_cast<MetadataAsValue>(&OI))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000984 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata()))
Victor Hernandezd44ee352010-02-04 01:13:08 +0000985 // Enumerate metadata after the instructions they might refer to.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000986 FnLocalMDVector.push_back(Local);
Dan Gohmanc828c542010-08-24 02:24:03 +0000987 }
Joe Abbey2ad8df22012-11-25 15:23:39 +0000988
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +0000989 if (!I.getType()->isVoidTy())
990 EnumerateValue(&I);
Chris Lattnerc1d10d62007-04-22 06:24:45 +0000991 }
992 }
Victor Hernandezd44ee352010-02-04 01:13:08 +0000993
994 // Add all of the function-local metadata.
Mehdi Aminia5cbf432016-07-08 01:13:41 +0000995 for (unsigned i = 0, e = FnLocalMDVector.size(); i != e; ++i) {
996 // At this point, every local values have been incorporated, we shouldn't
997 // have a metadata operand that references a value that hasn't been seen.
998 assert(ValueMap.count(FnLocalMDVector[i]->getValue()) &&
999 "Missing value for metadata operand");
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +00001000 EnumerateFunctionLocalMetadata(F, FnLocalMDVector[i]);
Mehdi Aminia5cbf432016-07-08 01:13:41 +00001001 }
Chris Lattnerc1d10d62007-04-22 06:24:45 +00001002}
1003
Chad Rosier6a11b642011-06-03 17:02:19 +00001004void ValueEnumerator::purgeFunction() {
Chris Lattner5f640b92007-04-26 03:50:57 +00001005 /// Remove purged values from the ValueMap.
Chris Lattnere6e364c2007-04-26 05:53:54 +00001006 for (unsigned i = NumModuleValues, e = Values.size(); i != e; ++i)
Chris Lattner5f640b92007-04-26 03:50:57 +00001007 ValueMap.erase(Values[i].first);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001008 for (unsigned i = NumModuleMDs, e = MDs.size(); i != e; ++i)
Teresa Johnson61b406e2015-12-29 23:00:22 +00001009 MetadataMap.erase(MDs[i]);
Chris Lattner7c37b012007-04-26 04:42:16 +00001010 for (unsigned i = 0, e = BasicBlocks.size(); i != e; ++i)
1011 ValueMap.erase(BasicBlocks[i]);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001012
Chris Lattnere6e364c2007-04-26 05:53:54 +00001013 Values.resize(NumModuleValues);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001014 MDs.resize(NumModuleMDs);
Chris Lattner7c37b012007-04-26 04:42:16 +00001015 BasicBlocks.clear();
Duncan P. N. Exon Smith520f8542016-04-02 15:22:57 +00001016 NumMDStrings = 0;
Chris Lattnerc1d10d62007-04-22 06:24:45 +00001017}
Chris Lattnerf540d742009-10-28 05:24:40 +00001018
1019static void IncorporateFunctionInfoGlobalBBIDs(const Function *F,
1020 DenseMap<const BasicBlock*, unsigned> &IDMap) {
1021 unsigned Counter = 0;
Duncan P. N. Exon Smith584af872015-10-13 03:26:19 +00001022 for (const BasicBlock &BB : *F)
1023 IDMap[&BB] = ++Counter;
Chris Lattnerf540d742009-10-28 05:24:40 +00001024}
1025
1026/// getGlobalBasicBlockID - This returns the function-specific ID for the
1027/// specified basic block. This is relatively expensive information, so it
1028/// should only be used by rare constructs such as address-of-label.
1029unsigned ValueEnumerator::getGlobalBasicBlockID(const BasicBlock *BB) const {
1030 unsigned &Idx = GlobalBasicBlockIDs[BB];
1031 if (Idx != 0)
Chris Lattneraa99c942009-11-01 01:27:45 +00001032 return Idx-1;
Chris Lattnerf540d742009-10-28 05:24:40 +00001033
1034 IncorporateFunctionInfoGlobalBBIDs(BB->getParent(), GlobalBasicBlockIDs);
1035 return getGlobalBasicBlockID(BB);
1036}
David Blaikie7b028102015-02-25 00:51:52 +00001037
1038uint64_t ValueEnumerator::computeBitsRequiredForTypeIndicies() const {
1039 return Log2_32_Ceil(getTypes().size() + 1);
1040}