blob: 55fff3f3872a608d9d0c1d6023190b444278dac9 [file] [log] [blame]
Chris Lattnere4dbb1a2002-11-20 20:47:41 +00001//===- ValueMapper.cpp - Interface shared by lib/Transforms/Utils ---------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnere4dbb1a2002-11-20 20:47:41 +00009//
10// This file defines the MapValue function, which is shared by various parts of
11// the lib/Transforms/Utils library.
12//
13//===----------------------------------------------------------------------===//
14
Dan Gohmana2095032010-08-24 18:50:07 +000015#include "llvm/Transforms/Utils/ValueMapper.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000016#include "llvm/ADT/ArrayRef.h"
17#include "llvm/ADT/DenseMap.h"
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +000018#include "llvm/ADT/DenseSet.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000019#include "llvm/ADT/None.h"
20#include "llvm/ADT/Optional.h"
21#include "llvm/ADT/STLExtras.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/IR/Argument.h"
24#include "llvm/IR/BasicBlock.h"
David Blaikie348de692015-04-23 21:36:23 +000025#include "llvm/IR/CallSite.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000026#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Constants.h"
Teresa Johnsondf763182018-01-30 20:16:32 +000028#include "llvm/IR/DebugInfoMetadata.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000029#include "llvm/IR/DerivedTypes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Function.h"
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +000031#include "llvm/IR/GlobalAlias.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000032#include "llvm/IR/GlobalObject.h"
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +000033#include "llvm/IR/GlobalVariable.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/InlineAsm.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000035#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/Instructions.h"
37#include "llvm/IR/Metadata.h"
David Blaikie88208842015-08-21 20:16:51 +000038#include "llvm/IR/Operator.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000039#include "llvm/IR/Type.h"
40#include "llvm/IR/Value.h"
41#include "llvm/Support/Casting.h"
42#include <cassert>
43#include <limits>
44#include <memory>
45#include <utility>
46
Chris Lattnerdf3c3422004-01-09 06:12:26 +000047using namespace llvm;
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000048
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000049// Out of line method to get vtable etc for class.
Craig Topper2a6a08b2012-09-26 06:36:36 +000050void ValueMapTypeRemapper::anchor() {}
James Molloyf6f121e2013-05-28 15:17:05 +000051void ValueMaterializer::anchor() {}
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000052
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +000053namespace {
54
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +000055/// A basic block used in a BlockAddress whose function body is not yet
56/// materialized.
57struct DelayedBasicBlock {
58 BasicBlock *OldBB;
59 std::unique_ptr<BasicBlock> TempBB;
Duncan P. N. Exon Smitha9978562016-04-03 20:42:21 +000060
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +000061 DelayedBasicBlock(const BlockAddress &Old)
62 : OldBB(Old.getBasicBlock()),
63 TempBB(BasicBlock::Create(Old.getContext())) {}
64};
65
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +000066struct WorklistEntry {
67 enum EntryKind {
68 MapGlobalInit,
69 MapAppendingVar,
70 MapGlobalAliasee,
71 RemapFunction
72 };
73 struct GVInitTy {
74 GlobalVariable *GV;
75 Constant *Init;
76 };
77 struct AppendingGVTy {
78 GlobalVariable *GV;
79 Constant *InitPrefix;
80 };
81 struct GlobalAliaseeTy {
82 GlobalAlias *GA;
83 Constant *Aliasee;
84 };
85
86 unsigned Kind : 2;
87 unsigned MCID : 29;
88 unsigned AppendingGVIsOldCtorDtor : 1;
89 unsigned AppendingGVNumNewMembers;
90 union {
91 GVInitTy GVInit;
92 AppendingGVTy AppendingGV;
93 GlobalAliaseeTy GlobalAliasee;
94 Function *RemapF;
95 } Data;
96};
97
98struct MappingContext {
99 ValueToValueMapTy *VM;
100 ValueMaterializer *Materializer = nullptr;
101
102 /// Construct a MappingContext with a value map and materializer.
103 explicit MappingContext(ValueToValueMapTy &VM,
104 ValueMaterializer *Materializer = nullptr)
105 : VM(&VM), Materializer(Materializer) {}
106};
107
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000108class Mapper {
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000109 friend class MDNodeMapper;
110
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +0000111#ifndef NDEBUG
112 DenseSet<GlobalValue *> AlreadyScheduled;
113#endif
114
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000115 RemapFlags Flags;
116 ValueMapTypeRemapper *TypeMapper;
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000117 unsigned CurrentMCID = 0;
118 SmallVector<MappingContext, 2> MCs;
119 SmallVector<WorklistEntry, 4> Worklist;
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000120 SmallVector<DelayedBasicBlock, 1> DelayedBBs;
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000121 SmallVector<Constant *, 16> AppendingInits;
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000122
123public:
124 Mapper(ValueToValueMapTy &VM, RemapFlags Flags,
125 ValueMapTypeRemapper *TypeMapper, ValueMaterializer *Materializer)
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000126 : Flags(Flags), TypeMapper(TypeMapper),
127 MCs(1, MappingContext(VM, Materializer)) {}
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000128
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000129 /// ValueMapper should explicitly call \a flush() before destruction.
130 ~Mapper() { assert(!hasWorkToDo() && "Expected to be flushed"); }
131
132 bool hasWorkToDo() const { return !Worklist.empty(); }
133
134 unsigned
135 registerAlternateMappingContext(ValueToValueMapTy &VM,
136 ValueMaterializer *Materializer = nullptr) {
137 MCs.push_back(MappingContext(VM, Materializer));
138 return MCs.size() - 1;
139 }
140
141 void addFlags(RemapFlags Flags);
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000142
Evgeniy Stepanov9aff8292017-05-04 23:29:39 +0000143 void remapGlobalObjectMetadata(GlobalObject &GO);
144
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000145 Value *mapValue(const Value *V);
Duncan P. N. Exon Smitha574e7a2016-04-08 19:09:34 +0000146 void remapInstruction(Instruction *I);
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000147 void remapFunction(Function &F);
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000148
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000149 Constant *mapConstant(const Constant *C) {
150 return cast_or_null<Constant>(mapValue(C));
151 }
152
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000153 /// Map metadata.
154 ///
155 /// Find the mapping for MD. Guarantees that the return will be resolved
156 /// (not an MDNode, or MDNode::isResolved() returns true).
157 Metadata *mapMetadata(const Metadata *MD);
158
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000159 void scheduleMapGlobalInitializer(GlobalVariable &GV, Constant &Init,
160 unsigned MCID);
161 void scheduleMapAppendingVariable(GlobalVariable &GV, Constant *InitPrefix,
162 bool IsOldCtorDtor,
163 ArrayRef<Constant *> NewMembers,
164 unsigned MCID);
165 void scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee,
166 unsigned MCID);
167 void scheduleRemapFunction(Function &F, unsigned MCID);
168
169 void flush();
170
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000171private:
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000172 void mapGlobalInitializer(GlobalVariable &GV, Constant &Init);
173 void mapAppendingVariable(GlobalVariable &GV, Constant *InitPrefix,
174 bool IsOldCtorDtor,
175 ArrayRef<Constant *> NewMembers);
176 void mapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee);
177 void remapFunction(Function &F, ValueToValueMapTy &VM);
178
179 ValueToValueMapTy &getVM() { return *MCs[CurrentMCID].VM; }
180 ValueMaterializer *getMaterializer() { return MCs[CurrentMCID].Materializer; }
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000181
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000182 Value *mapBlockAddress(const BlockAddress &BA);
183
Duncan P. N. Exon Smithae8bd4b2016-04-03 19:31:01 +0000184 /// Map metadata that doesn't require visiting operands.
185 Optional<Metadata *> mapSimpleMetadata(const Metadata *MD);
186
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000187 Metadata *mapToMetadata(const Metadata *Key, Metadata *Val);
188 Metadata *mapToSelf(const Metadata *MD);
189};
190
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000191class MDNodeMapper {
192 Mapper &M;
193
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000194 /// Data about a node in \a UniquedGraph.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000195 struct Data {
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000196 bool HasChanged = false;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000197 unsigned ID = std::numeric_limits<unsigned>::max();
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000198 TempMDNode Placeholder;
199 };
200
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000201 /// A graph of uniqued nodes.
202 struct UniquedGraph {
203 SmallDenseMap<const Metadata *, Data, 32> Info; // Node properties.
204 SmallVector<MDNode *, 16> POT; // Post-order traversal.
205
206 /// Propagate changed operands through the post-order traversal.
207 ///
208 /// Iteratively update \a Data::HasChanged for each node based on \a
209 /// Data::HasChanged of its operands, until fixed point.
210 void propagateChanges();
211
212 /// Get a forward reference to a node to use as an operand.
213 Metadata &getFwdReference(MDNode &Op);
214 };
215
216 /// Worklist of distinct nodes whose operands need to be remapped.
217 SmallVector<MDNode *, 16> DistinctWorklist;
218
219 // Storage for a UniquedGraph.
220 SmallDenseMap<const Metadata *, Data, 32> InfoStorage;
221 SmallVector<MDNode *, 16> POTStorage;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000222
223public:
224 MDNodeMapper(Mapper &M) : M(M) {}
225
226 /// Map a metadata node (and its transitive operands).
227 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000228 /// Map all the (unmapped) nodes in the subgraph under \c N. The iterative
229 /// algorithm handles distinct nodes and uniqued node subgraphs using
230 /// different strategies.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000231 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000232 /// Distinct nodes are immediately mapped and added to \a DistinctWorklist
233 /// using \a mapDistinctNode(). Their mapping can always be computed
234 /// immediately without visiting operands, even if their operands change.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000235 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000236 /// The mapping for uniqued nodes depends on whether their operands change.
237 /// \a mapTopLevelUniquedNode() traverses the transitive uniqued subgraph of
238 /// a node to calculate uniqued node mappings in bulk. Distinct leafs are
239 /// added to \a DistinctWorklist with \a mapDistinctNode().
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000240 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000241 /// After mapping \c N itself, this function remaps the operands of the
242 /// distinct nodes in \a DistinctWorklist until the entire subgraph under \c
243 /// N has been mapped.
244 Metadata *map(const MDNode &N);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000245
246private:
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000247 /// Map a top-level uniqued node and the uniqued subgraph underneath it.
248 ///
249 /// This builds up a post-order traversal of the (unmapped) uniqued subgraph
250 /// underneath \c FirstN and calculates the nodes' mapping. Each node uses
251 /// the identity mapping (\a Mapper::mapToSelf()) as long as all of its
252 /// operands uses the identity mapping.
253 ///
254 /// The algorithm works as follows:
255 ///
256 /// 1. \a createPOT(): traverse the uniqued subgraph under \c FirstN and
257 /// save the post-order traversal in the given \a UniquedGraph, tracking
258 /// nodes' operands change.
259 ///
260 /// 2. \a UniquedGraph::propagateChanges(): propagate changed operands
261 /// through the \a UniquedGraph until fixed point, following the rule
262 /// that if a node changes, any node that references must also change.
263 ///
264 /// 3. \a mapNodesInPOT(): map the uniqued nodes, creating new uniqued nodes
265 /// (referencing new operands) where necessary.
266 Metadata *mapTopLevelUniquedNode(const MDNode &FirstN);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000267
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000268 /// Try to map the operand of an \a MDNode.
269 ///
270 /// If \c Op is already mapped, return the mapping. If it's not an \a
271 /// MDNode, compute and return the mapping. If it's a distinct \a MDNode,
272 /// return the result of \a mapDistinctNode().
273 ///
274 /// \return None if \c Op is an unmapped uniqued \a MDNode.
275 /// \post getMappedOp(Op) only returns None if this returns None.
276 Optional<Metadata *> tryToMapOperand(const Metadata *Op);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000277
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000278 /// Map a distinct node.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000279 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000280 /// Return the mapping for the distinct node \c N, saving the result in \a
281 /// DistinctWorklist for later remapping.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000282 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000283 /// \pre \c N is not yet mapped.
284 /// \pre \c N.isDistinct().
285 MDNode *mapDistinctNode(const MDNode &N);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000286
287 /// Get a previously mapped node.
288 Optional<Metadata *> getMappedOp(const Metadata *Op) const;
289
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000290 /// Create a post-order traversal of an unmapped uniqued node subgraph.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000291 ///
292 /// This traverses the metadata graph deeply enough to map \c FirstN. It
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000293 /// uses \a tryToMapOperand() (via \a Mapper::mapSimplifiedNode()), so any
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000294 /// metadata that has already been mapped will not be part of the POT.
295 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000296 /// Each node that has a changed operand from outside the graph (e.g., a
297 /// distinct node, an already-mapped uniqued node, or \a ConstantAsMetadata)
298 /// is marked with \a Data::HasChanged.
299 ///
300 /// \return \c true if any nodes in \c G have \a Data::HasChanged.
301 /// \post \c G.POT is a post-order traversal ending with \c FirstN.
302 /// \post \a Data::hasChanged in \c G.Info indicates whether any node needs
303 /// to change because of operands outside the graph.
304 bool createPOT(UniquedGraph &G, const MDNode &FirstN);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000305
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000306 /// Visit the operands of a uniqued node in the POT.
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000307 ///
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000308 /// Visit the operands in the range from \c I to \c E, returning the first
309 /// uniqued node we find that isn't yet in \c G. \c I is always advanced to
310 /// where to continue the loop through the operands.
311 ///
312 /// This sets \c HasChanged if any of the visited operands change.
313 MDNode *visitOperands(UniquedGraph &G, MDNode::op_iterator &I,
314 MDNode::op_iterator E, bool &HasChanged);
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000315
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000316 /// Map all the nodes in the given uniqued graph.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000317 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000318 /// This visits all the nodes in \c G in post-order, using the identity
319 /// mapping or creating a new node depending on \a Data::HasChanged.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000320 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000321 /// \pre \a getMappedOp() returns None for nodes in \c G, but not for any of
322 /// their operands outside of \c G.
323 /// \pre \a Data::HasChanged is true for a node in \c G iff any of its
324 /// operands have changed.
325 /// \post \a getMappedOp() returns the mapped node for every node in \c G.
326 void mapNodesInPOT(UniquedGraph &G);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000327
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000328 /// Remap a node's operands using the given functor.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000329 ///
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000330 /// Iterate through the operands of \c N and update them in place using \c
331 /// mapOperand.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000332 ///
333 /// \pre N.isDistinct() or N.isTemporary().
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000334 template <class OperandMapper>
335 void remapOperands(MDNode &N, OperandMapper mapOperand);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000336};
337
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000338} // end anonymous namespace
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000339
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000340Value *Mapper::mapValue(const Value *V) {
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000341 ValueToValueMapTy::iterator I = getVM().find(V);
342
Chris Lattner43f8d162011-01-08 08:15:20 +0000343 // If the value already exists in the map, use it.
Duncan P. N. Exon Smith3d555ac2016-04-17 18:53:24 +0000344 if (I != getVM().end()) {
345 assert(I->second && "Unexpected null mapping");
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000346 return I->second;
Duncan P. N. Exon Smith3d555ac2016-04-17 18:53:24 +0000347 }
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000348
James Molloyf6f121e2013-05-28 15:17:05 +0000349 // If we have a materializer and it can materialize a value, use that.
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000350 if (auto *Materializer = getMaterializer()) {
Mehdi Aminicc8c1072016-05-25 21:03:21 +0000351 if (Value *NewV = Materializer->materialize(const_cast<Value *>(V))) {
352 getVM()[V] = NewV;
353 return NewV;
Rafael Espindola19b52382015-11-27 20:28:19 +0000354 }
James Molloyf6f121e2013-05-28 15:17:05 +0000355 }
356
Dan Gohmanca26f792010-08-26 15:41:53 +0000357 // Global values do not need to be seeded into the VM if they
358 // are using the identity mapping.
Teresa Johnson83d03dd2015-11-15 14:50:14 +0000359 if (isa<GlobalValue>(V)) {
Duncan P. N. Exon Smithfdccad92016-04-07 01:22:45 +0000360 if (Flags & RF_NullMapMissingGlobalValues)
Teresa Johnson83d03dd2015-11-15 14:50:14 +0000361 return nullptr;
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000362 return getVM()[V] = const_cast<Value *>(V);
Teresa Johnson83d03dd2015-11-15 14:50:14 +0000363 }
364
Chris Lattner8b4cf5e2011-07-15 23:18:40 +0000365 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
366 // Inline asm may need *type* remapping.
367 FunctionType *NewTy = IA->getFunctionType();
368 if (TypeMapper) {
369 NewTy = cast<FunctionType>(TypeMapper->remapType(NewTy));
370
371 if (NewTy != IA->getFunctionType())
372 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(),
373 IA->hasSideEffects(), IA->isAlignStack());
374 }
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000375
376 return getVM()[V] = const_cast<Value *>(V);
Chris Lattner8b4cf5e2011-07-15 23:18:40 +0000377 }
Chris Lattner6aa34b02003-10-06 15:23:43 +0000378
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000379 if (const auto *MDV = dyn_cast<MetadataAsValue>(V)) {
380 const Metadata *MD = MDV->getMetadata();
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000381
382 if (auto *LAM = dyn_cast<LocalAsMetadata>(MD)) {
383 // Look through to grab the local value.
384 if (Value *LV = mapValue(LAM->getValue())) {
385 if (V == LAM->getValue())
386 return const_cast<Value *>(V);
387 return MetadataAsValue::get(V->getContext(), ValueAsMetadata::get(LV));
388 }
389
390 // FIXME: always return nullptr once Verifier::verifyDominatesUse()
391 // ensures metadata operands only reference defined SSA values.
392 return (Flags & RF_IgnoreMissingLocals)
393 ? nullptr
394 : MetadataAsValue::get(V->getContext(),
395 MDTuple::get(V->getContext(), None));
396 }
397
Chris Lattner43f8d162011-01-08 08:15:20 +0000398 // If this is a module-level metadata and we know that nothing at the module
399 // level is changing, then use an identity mapping.
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000400 if (Flags & RF_NoModuleLevelChanges)
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000401 return getVM()[V] = const_cast<Value *>(V);
Dan Gohmanca26f792010-08-26 15:41:53 +0000402
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000403 // Map the metadata and turn it into a value.
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000404 auto *MappedMD = mapMetadata(MD);
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000405 if (MD == MappedMD)
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000406 return getVM()[V] = const_cast<Value *>(V);
407 return getVM()[V] = MetadataAsValue::get(V->getContext(), MappedMD);
Victor Hernandez5fa88d42010-01-20 05:49:59 +0000408 }
409
Chris Lattner43f8d162011-01-08 08:15:20 +0000410 // Okay, this either must be a constant (which may or may not be mappable) or
411 // is something that is not in the mapping table.
Chris Lattnercf5a47d2009-10-29 00:28:30 +0000412 Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V));
Craig Topperf40110f2014-04-25 05:29:35 +0000413 if (!C)
414 return nullptr;
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000415
416 if (BlockAddress *BA = dyn_cast<BlockAddress>(C))
417 return mapBlockAddress(*BA);
418
Mehdi Aminibcc47412016-05-28 17:26:03 +0000419 auto mapValueOrNull = [this](Value *V) {
420 auto Mapped = mapValue(V);
421 assert((Mapped || (Flags & RF_NullMapMissingGlobalValues)) &&
422 "Unexpected null mapping for constant operand without "
423 "NullMapMissingGlobalValues flag");
424 return Mapped;
425 };
426
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000427 // Otherwise, we have some other constant to remap. Start by checking to see
428 // if all operands have an identity remapping.
429 unsigned OpNo = 0, NumOperands = C->getNumOperands();
Craig Topperf40110f2014-04-25 05:29:35 +0000430 Value *Mapped = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000431 for (; OpNo != NumOperands; ++OpNo) {
432 Value *Op = C->getOperand(OpNo);
Mehdi Aminibcc47412016-05-28 17:26:03 +0000433 Mapped = mapValueOrNull(Op);
434 if (!Mapped)
435 return nullptr;
Mehdi Amini9ee054ae2016-05-27 00:32:12 +0000436 if (Mapped != Op)
437 break;
Chris Lattnercf5a47d2009-10-29 00:28:30 +0000438 }
Junmo Park95529872016-05-08 23:22:58 +0000439
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000440 // See if the type mapper wants to remap the type as well.
441 Type *NewTy = C->getType();
442 if (TypeMapper)
443 NewTy = TypeMapper->remapType(NewTy);
Chris Lattner43f8d162011-01-08 08:15:20 +0000444
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000445 // If the result type and all operands match up, then just insert an identity
446 // mapping.
447 if (OpNo == NumOperands && NewTy == C->getType())
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000448 return getVM()[V] = C;
449
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000450 // Okay, we need to create a new constant. We've already processed some or
451 // all of the operands, set them all up now.
452 SmallVector<Constant*, 8> Ops;
453 Ops.reserve(NumOperands);
454 for (unsigned j = 0; j != OpNo; ++j)
455 Ops.push_back(cast<Constant>(C->getOperand(j)));
Junmo Park95529872016-05-08 23:22:58 +0000456
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000457 // If one of the operands mismatch, push it and the other mapped operands.
458 if (OpNo != NumOperands) {
459 Ops.push_back(cast<Constant>(Mapped));
Junmo Park95529872016-05-08 23:22:58 +0000460
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000461 // Map the rest of the operands that aren't processed yet.
Mehdi Aminibcc47412016-05-28 17:26:03 +0000462 for (++OpNo; OpNo != NumOperands; ++OpNo) {
463 Mapped = mapValueOrNull(C->getOperand(OpNo));
464 if (!Mapped)
465 return nullptr;
466 Ops.push_back(cast<Constant>(Mapped));
467 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000468 }
David Blaikie88208842015-08-21 20:16:51 +0000469 Type *NewSrcTy = nullptr;
470 if (TypeMapper)
471 if (auto *GEPO = dyn_cast<GEPOperator>(C))
472 NewSrcTy = TypeMapper->remapType(GEPO->getSourceElementType());
473
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000474 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000475 return getVM()[V] = CE->getWithOperands(Ops, NewTy, false, NewSrcTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000476 if (isa<ConstantArray>(C))
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000477 return getVM()[V] = ConstantArray::get(cast<ArrayType>(NewTy), Ops);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000478 if (isa<ConstantStruct>(C))
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000479 return getVM()[V] = ConstantStruct::get(cast<StructType>(NewTy), Ops);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000480 if (isa<ConstantVector>(C))
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000481 return getVM()[V] = ConstantVector::get(Ops);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000482 // If this is a no-operand constant, it must be because the type was remapped.
483 if (isa<UndefValue>(C))
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000484 return getVM()[V] = UndefValue::get(NewTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000485 if (isa<ConstantAggregateZero>(C))
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000486 return getVM()[V] = ConstantAggregateZero::get(NewTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000487 assert(isa<ConstantPointerNull>(C));
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000488 return getVM()[V] = ConstantPointerNull::get(cast<PointerType>(NewTy));
Chris Lattnere4dbb1a2002-11-20 20:47:41 +0000489}
Brian Gaeke6182acf2004-05-19 09:08:12 +0000490
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000491Value *Mapper::mapBlockAddress(const BlockAddress &BA) {
492 Function *F = cast<Function>(mapValue(BA.getFunction()));
493
494 // F may not have materialized its initializer. In that case, create a
495 // dummy basic block for now, and replace it once we've materialized all
496 // the initializers.
497 BasicBlock *BB;
Duncan P. N. Exon Smith6f2e3742016-04-06 02:25:12 +0000498 if (F->empty()) {
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000499 DelayedBBs.push_back(DelayedBasicBlock(BA));
500 BB = DelayedBBs.back().TempBB.get();
Duncan P. N. Exon Smith6f2e3742016-04-06 02:25:12 +0000501 } else {
502 BB = cast_or_null<BasicBlock>(mapValue(BA.getBasicBlock()));
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000503 }
504
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000505 return getVM()[&BA] = BlockAddress::get(F, BB ? BB : BA.getBasicBlock());
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000506}
507
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000508Metadata *Mapper::mapToMetadata(const Metadata *Key, Metadata *Val) {
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000509 getVM().MD()[Key].reset(Val);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000510 return Val;
511}
512
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000513Metadata *Mapper::mapToSelf(const Metadata *MD) {
514 return mapToMetadata(MD, const_cast<Metadata *>(MD));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000515}
516
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000517Optional<Metadata *> MDNodeMapper::tryToMapOperand(const Metadata *Op) {
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000518 if (!Op)
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000519 return nullptr;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000520
521 if (Optional<Metadata *> MappedOp = M.mapSimpleMetadata(Op)) {
Simon Atanasyane12bef72016-04-16 11:49:40 +0000522#ifndef NDEBUG
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000523 if (auto *CMD = dyn_cast<ConstantAsMetadata>(Op))
524 assert((!*MappedOp || M.getVM().count(CMD->getValue()) ||
525 M.getVM().getMappedMD(Op)) &&
526 "Expected Value to be memoized");
527 else
528 assert((isa<MDString>(Op) || M.getVM().getMappedMD(Op)) &&
529 "Expected result to be memoized");
Simon Atanasyane12bef72016-04-16 11:49:40 +0000530#endif
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000531 return *MappedOp;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000532 }
533
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000534 const MDNode &N = *cast<MDNode>(Op);
535 if (N.isDistinct())
536 return mapDistinctNode(N);
537 return None;
538}
539
Teresa Johnsondf763182018-01-30 20:16:32 +0000540static Metadata *cloneOrBuildODR(const MDNode &N) {
541 auto *CT = dyn_cast<DICompositeType>(&N);
542 // If ODR type uniquing is enabled, we would have uniqued composite types
543 // with identifiers during bitcode reading, so we can just use CT.
544 if (CT && CT->getContext().isODRUniquingDebugTypes() &&
545 CT->getIdentifier() != "")
546 return const_cast<DICompositeType *>(CT);
547 return MDNode::replaceWithDistinct(N.clone());
548}
549
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000550MDNode *MDNodeMapper::mapDistinctNode(const MDNode &N) {
551 assert(N.isDistinct() && "Expected a distinct node");
552 assert(!M.getVM().getMappedMD(&N) && "Expected an unmapped node");
Teresa Johnsondf763182018-01-30 20:16:32 +0000553 DistinctWorklist.push_back(
554 cast<MDNode>((M.Flags & RF_MoveDistinctMDs)
555 ? M.mapToSelf(&N)
556 : M.mapToMetadata(&N, cloneOrBuildODR(N))));
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000557 return DistinctWorklist.back();
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000558}
559
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000560static ConstantAsMetadata *wrapConstantAsMetadata(const ConstantAsMetadata &CMD,
561 Value *MappedV) {
562 if (CMD.getValue() == MappedV)
563 return const_cast<ConstantAsMetadata *>(&CMD);
564 return MappedV ? ConstantAsMetadata::getConstant(MappedV) : nullptr;
565}
566
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000567Optional<Metadata *> MDNodeMapper::getMappedOp(const Metadata *Op) const {
Duncan P. N. Exon Smith077affd2015-01-14 01:01:19 +0000568 if (!Op)
569 return nullptr;
Teresa Johnson0e7c82c2015-12-18 17:51:37 +0000570
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000571 if (Optional<Metadata *> MappedOp = M.getVM().getMappedMD(Op))
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000572 return *MappedOp;
Duncan P. N. Exon Smith077affd2015-01-14 01:01:19 +0000573
Duncan P. N. Exon Smithe05ff7c2016-04-08 18:47:02 +0000574 if (isa<MDString>(Op))
575 return const_cast<Metadata *>(Op);
576
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000577 if (auto *CMD = dyn_cast<ConstantAsMetadata>(Op))
578 return wrapConstantAsMetadata(*CMD, M.getVM().lookup(CMD->getValue()));
579
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000580 return None;
Duncan P. N. Exon Smith077affd2015-01-14 01:01:19 +0000581}
582
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000583Metadata &MDNodeMapper::UniquedGraph::getFwdReference(MDNode &Op) {
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000584 auto Where = Info.find(&Op);
585 assert(Where != Info.end() && "Expected a valid reference");
586
587 auto &OpD = Where->second;
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000588 if (!OpD.HasChanged)
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000589 return Op;
590
591 // Lazily construct a temporary node.
592 if (!OpD.Placeholder)
593 OpD.Placeholder = Op.clone();
594
595 return *OpD.Placeholder;
596}
597
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000598template <class OperandMapper>
599void MDNodeMapper::remapOperands(MDNode &N, OperandMapper mapOperand) {
600 assert(!N.isUniqued() && "Expected distinct or temporary nodes");
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000601 for (unsigned I = 0, E = N.getNumOperands(); I != E; ++I) {
602 Metadata *Old = N.getOperand(I);
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000603 Metadata *New = mapOperand(Old);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000604
605 if (Old != New)
606 N.replaceOperandWith(I, New);
607 }
608}
609
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000610namespace {
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000611
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000612/// An entry in the worklist for the post-order traversal.
613struct POTWorklistEntry {
614 MDNode *N; ///< Current node.
615 MDNode::op_iterator Op; ///< Current operand of \c N.
616
617 /// Keep a flag of whether operands have changed in the worklist to avoid
618 /// hitting the map in \a UniquedGraph.
619 bool HasChanged = false;
620
621 POTWorklistEntry(MDNode &N) : N(&N), Op(N.op_begin()) {}
622};
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000623
624} // end anonymous namespace
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000625
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000626bool MDNodeMapper::createPOT(UniquedGraph &G, const MDNode &FirstN) {
627 assert(G.Info.empty() && "Expected a fresh traversal");
628 assert(FirstN.isUniqued() && "Expected uniqued node in POT");
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000629
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000630 // Construct a post-order traversal of the uniqued subgraph under FirstN.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000631 bool AnyChanges = false;
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000632 SmallVector<POTWorklistEntry, 16> Worklist;
633 Worklist.push_back(POTWorklistEntry(const_cast<MDNode &>(FirstN)));
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000634 (void)G.Info[&FirstN];
635 while (!Worklist.empty()) {
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000636 // Start or continue the traversal through the this node's operands.
637 auto &WE = Worklist.back();
638 if (MDNode *N = visitOperands(G, WE.Op, WE.N->op_end(), WE.HasChanged)) {
639 // Push a new node to traverse first.
640 Worklist.push_back(POTWorklistEntry(*N));
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000641 continue;
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000642 }
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000643
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000644 // Push the node onto the POT.
645 assert(WE.N->isUniqued() && "Expected only uniqued nodes");
646 assert(WE.Op == WE.N->op_end() && "Expected to visit all operands");
647 auto &D = G.Info[WE.N];
648 AnyChanges |= D.HasChanged = WE.HasChanged;
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000649 D.ID = G.POT.size();
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000650 G.POT.push_back(WE.N);
651
652 // Pop the node off the worklist.
653 Worklist.pop_back();
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000654 }
655 return AnyChanges;
656}
657
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000658MDNode *MDNodeMapper::visitOperands(UniquedGraph &G, MDNode::op_iterator &I,
659 MDNode::op_iterator E, bool &HasChanged) {
660 while (I != E) {
661 Metadata *Op = *I++; // Increment even on early return.
662 if (Optional<Metadata *> MappedOp = tryToMapOperand(Op)) {
663 // Check if the operand changes.
664 HasChanged |= Op != *MappedOp;
665 continue;
666 }
667
668 // A uniqued metadata node.
669 MDNode &OpN = *cast<MDNode>(Op);
670 assert(OpN.isUniqued() &&
671 "Only uniqued operands cannot be mapped immediately");
672 if (G.Info.insert(std::make_pair(&OpN, Data())).second)
673 return &OpN; // This is a new one. Return it.
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000674 }
Duncan P. N. Exon Smith71480bd2016-04-22 02:33:06 +0000675 return nullptr;
Duncan P. N. Exon Smith0ab44db2016-04-21 02:34:36 +0000676}
677
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000678void MDNodeMapper::UniquedGraph::propagateChanges() {
679 bool AnyChanges;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000680 do {
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000681 AnyChanges = false;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000682 for (MDNode *N : POT) {
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000683 auto &D = Info[N];
684 if (D.HasChanged)
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000685 continue;
686
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000687 if (llvm::none_of(N->operands(), [&](const Metadata *Op) {
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000688 auto Where = Info.find(Op);
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000689 return Where != Info.end() && Where->second.HasChanged;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000690 }))
691 continue;
692
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000693 AnyChanges = D.HasChanged = true;
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000694 }
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000695 } while (AnyChanges);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000696}
697
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000698void MDNodeMapper::mapNodesInPOT(UniquedGraph &G) {
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000699 // Construct uniqued nodes, building forward references as necessary.
Duncan P. N. Exon Smith11f60fd2016-04-13 22:54:01 +0000700 SmallVector<MDNode *, 16> CyclicNodes;
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000701 for (auto *N : G.POT) {
702 auto &D = G.Info[N];
703 if (!D.HasChanged) {
704 // The node hasn't changed.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000705 M.mapToSelf(N);
706 continue;
707 }
708
Duncan P. N. Exon Smith0cb5c342016-04-16 21:09:53 +0000709 // Remember whether this node had a placeholder.
710 bool HadPlaceholder(D.Placeholder);
711
712 // Clone the uniqued node and remap the operands.
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000713 TempMDNode ClonedN = D.Placeholder ? std::move(D.Placeholder) : N->clone();
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000714 remapOperands(*ClonedN, [this, &D, &G](Metadata *Old) {
715 if (Optional<Metadata *> MappedOp = getMappedOp(Old))
716 return *MappedOp;
David L. Jones41cecba2017-01-13 21:02:41 +0000717 (void)D;
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000718 assert(G.Info[Old].ID > D.ID && "Expected a forward reference");
719 return &G.getFwdReference(*cast<MDNode>(Old));
720 });
721
Duncan P. N. Exon Smith0cb5c342016-04-16 21:09:53 +0000722 auto *NewN = MDNode::replaceWithUniqued(std::move(ClonedN));
723 M.mapToMetadata(N, NewN);
724
725 // Nodes that were referenced out of order in the POT are involved in a
726 // uniquing cycle.
727 if (HadPlaceholder)
728 CyclicNodes.push_back(NewN);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000729 }
730
731 // Resolve cycles.
Duncan P. N. Exon Smith11f60fd2016-04-13 22:54:01 +0000732 for (auto *N : CyclicNodes)
Teresa Johnsonb703c772016-03-29 18:24:19 +0000733 if (!N->isResolved())
734 N->resolveCycles();
Duncan P. N. Exon Smithc9fdbdb2015-08-07 00:39:26 +0000735}
736
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000737Metadata *MDNodeMapper::map(const MDNode &N) {
738 assert(DistinctWorklist.empty() && "MDNodeMapper::map is not recursive");
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000739 assert(!(M.Flags & RF_NoModuleLevelChanges) &&
740 "MDNodeMapper::map assumes module-level changes");
Duncan P. N. Exon Smith14cc94c2015-01-14 01:03:05 +0000741
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000742 // Require resolved nodes whenever metadata might be remapped.
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000743 assert(N.isResolved() && "Unexpected unresolved node");
Duncan P. N. Exon Smith920df5c2015-02-04 19:44:34 +0000744
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000745 Metadata *MappedN =
746 N.isUniqued() ? mapTopLevelUniquedNode(N) : mapDistinctNode(N);
747 while (!DistinctWorklist.empty())
748 remapOperands(*DistinctWorklist.pop_back_val(), [this](Metadata *Old) {
749 if (Optional<Metadata *> MappedOp = tryToMapOperand(Old))
750 return *MappedOp;
751 return mapTopLevelUniquedNode(*cast<MDNode>(Old));
752 });
753 return MappedN;
754}
755
756Metadata *MDNodeMapper::mapTopLevelUniquedNode(const MDNode &FirstN) {
757 assert(FirstN.isUniqued() && "Expected uniqued node");
758
759 // Create a post-order traversal of uniqued nodes under FirstN.
760 UniquedGraph G;
761 if (!createPOT(G, FirstN)) {
762 // Return early if no nodes have changed.
763 for (const MDNode *N : G.POT)
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000764 M.mapToSelf(N);
765 return &const_cast<MDNode &>(FirstN);
Duncan P. N. Exon Smith706f37e2015-08-04 06:42:31 +0000766 }
Duncan P. N. Exon Smith0dcffe22015-01-19 22:39:07 +0000767
Duncan P. N. Exon Smith694ab4e2016-04-16 21:44:08 +0000768 // Update graph with all nodes that have changed.
769 G.propagateChanges();
770
771 // Map all the nodes in the graph.
772 mapNodesInPOT(G);
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000773
774 // Return the original node, remapped.
775 return *getMappedOp(&FirstN);
Duncan P. N. Exon Smithb5579892015-01-14 01:06:21 +0000776}
777
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000778namespace {
779
780struct MapMetadataDisabler {
781 ValueToValueMapTy &VM;
782
783 MapMetadataDisabler(ValueToValueMapTy &VM) : VM(VM) {
784 VM.disableMapMetadata();
785 }
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000786
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000787 ~MapMetadataDisabler() { VM.enableMapMetadata(); }
788};
789
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000790} // end anonymous namespace
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000791
Duncan P. N. Exon Smithae8bd4b2016-04-03 19:31:01 +0000792Optional<Metadata *> Mapper::mapSimpleMetadata(const Metadata *MD) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000793 // If the value already exists in the map, use it.
Duncan P. N. Exon Smithdb6861e2016-04-15 23:18:43 +0000794 if (Optional<Metadata *> NewMD = getVM().getMappedMD(MD))
Duncan P. N. Exon Smithda4a56d2016-04-02 17:04:38 +0000795 return *NewMD;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000796
797 if (isa<MDString>(MD))
Duncan P. N. Exon Smithe05ff7c2016-04-08 18:47:02 +0000798 return const_cast<Metadata *>(MD);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000799
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000800 // This is a module-level metadata. If nothing at the module level is
801 // changing, use an identity mapping.
802 if ((Flags & RF_NoModuleLevelChanges))
Duncan P. N. Exon Smith69341e62016-04-08 18:49:36 +0000803 return const_cast<Metadata *>(MD);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000804
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000805 if (auto *CMD = dyn_cast<ConstantAsMetadata>(MD)) {
Duncan P. N. Exon Smith756e1c32016-04-03 20:54:51 +0000806 // Disallow recursion into metadata mapping through mapValue.
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000807 MapMetadataDisabler MMD(getVM());
Duncan P. N. Exon Smith756e1c32016-04-03 20:54:51 +0000808
Duncan P. N. Exon Smitha77d0732016-04-16 03:39:44 +0000809 // Don't memoize ConstantAsMetadata. Instead of lasting until the
810 // LLVMContext is destroyed, they can be deleted when the GlobalValue they
811 // reference is destructed. These aren't super common, so the extra
812 // indirection isn't that expensive.
813 return wrapConstantAsMetadata(*CMD, mapValue(CMD->getValue()));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000814 }
815
Duncan P. N. Exon Smithae8bd4b2016-04-03 19:31:01 +0000816 assert(isa<MDNode>(MD) && "Expected a metadata node");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000817
Duncan P. N. Exon Smithae8bd4b2016-04-03 19:31:01 +0000818 return None;
819}
820
Duncan P. N. Exon Smith829dc872016-04-03 19:06:24 +0000821Metadata *Mapper::mapMetadata(const Metadata *MD) {
Duncan P. N. Exon Smith4ec55f82016-04-08 03:13:22 +0000822 assert(MD && "Expected valid metadata");
823 assert(!isa<LocalAsMetadata>(MD) && "Unexpected local metadata");
824
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000825 if (Optional<Metadata *> NewMD = mapSimpleMetadata(MD))
826 return *NewMD;
Duncan P. N. Exon Smith920df5c2015-02-04 19:44:34 +0000827
Duncan P. N. Exon Smithea7df772016-04-05 20:23:21 +0000828 return MDNodeMapper(*this).map(*cast<MDNode>(MD));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000829}
830
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000831void Mapper::flush() {
832 // Flush out the worklist of global values.
833 while (!Worklist.empty()) {
834 WorklistEntry E = Worklist.pop_back_val();
835 CurrentMCID = E.MCID;
836 switch (E.Kind) {
837 case WorklistEntry::MapGlobalInit:
838 E.Data.GVInit.GV->setInitializer(mapConstant(E.Data.GVInit.Init));
Evgeniy Stepanov9aff8292017-05-04 23:29:39 +0000839 remapGlobalObjectMetadata(*E.Data.GVInit.GV);
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000840 break;
841 case WorklistEntry::MapAppendingVar: {
842 unsigned PrefixSize = AppendingInits.size() - E.AppendingGVNumNewMembers;
843 mapAppendingVariable(*E.Data.AppendingGV.GV,
844 E.Data.AppendingGV.InitPrefix,
845 E.AppendingGVIsOldCtorDtor,
846 makeArrayRef(AppendingInits).slice(PrefixSize));
847 AppendingInits.resize(PrefixSize);
848 break;
849 }
850 case WorklistEntry::MapGlobalAliasee:
851 E.Data.GlobalAliasee.GA->setAliasee(
852 mapConstant(E.Data.GlobalAliasee.Aliasee));
853 break;
854 case WorklistEntry::RemapFunction:
855 remapFunction(*E.Data.RemapF);
856 break;
857 }
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000858 }
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000859 CurrentMCID = 0;
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000860
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000861 // Finish logic for block addresses now that all global values have been
862 // handled.
Duncan P. N. Exon Smithc6065e32016-04-03 20:17:45 +0000863 while (!DelayedBBs.empty()) {
864 DelayedBasicBlock DBB = DelayedBBs.pop_back_val();
865 BasicBlock *BB = cast_or_null<BasicBlock>(mapValue(DBB.OldBB));
866 DBB.TempBB->replaceAllUsesWith(BB ? BB : DBB.OldBB);
867 }
Duncan P. N. Exon Smitha574e7a2016-04-08 19:09:34 +0000868}
869
870void Mapper::remapInstruction(Instruction *I) {
Dan Gohmanca26f792010-08-26 15:41:53 +0000871 // Remap operands.
Davide Italiano96d2a1c2016-04-14 18:07:32 +0000872 for (Use &Op : I->operands()) {
873 Value *V = mapValue(Op);
Chris Lattner43f8d162011-01-08 08:15:20 +0000874 // If we aren't ignoring missing entries, assert that something happened.
Craig Topperf40110f2014-04-25 05:29:35 +0000875 if (V)
Davide Italiano96d2a1c2016-04-14 18:07:32 +0000876 Op = V;
Chris Lattner43f8d162011-01-08 08:15:20 +0000877 else
Duncan P. N. Exon Smithda68cbc2016-04-07 00:26:43 +0000878 assert((Flags & RF_IgnoreMissingLocals) &&
Chris Lattner43f8d162011-01-08 08:15:20 +0000879 "Referenced value not in value map!");
Brian Gaeke6182acf2004-05-19 09:08:12 +0000880 }
Daniel Dunbar95fe13c2010-08-26 03:48:08 +0000881
Jay Foad61ea0e42011-06-23 09:09:15 +0000882 // Remap phi nodes' incoming blocks.
883 if (PHINode *PN = dyn_cast<PHINode>(I)) {
884 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
Duncan P. N. Exon Smithadcebdf2016-04-08 19:17:13 +0000885 Value *V = mapValue(PN->getIncomingBlock(i));
Jay Foad61ea0e42011-06-23 09:09:15 +0000886 // If we aren't ignoring missing entries, assert that something happened.
Craig Topperf40110f2014-04-25 05:29:35 +0000887 if (V)
Jay Foad61ea0e42011-06-23 09:09:15 +0000888 PN->setIncomingBlock(i, cast<BasicBlock>(V));
889 else
Duncan P. N. Exon Smithda68cbc2016-04-07 00:26:43 +0000890 assert((Flags & RF_IgnoreMissingLocals) &&
Jay Foad61ea0e42011-06-23 09:09:15 +0000891 "Referenced block not in value map!");
892 }
893 }
894
Devang Patelc0174042011-08-04 20:02:18 +0000895 // Remap attached metadata.
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000896 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
Devang Patelc0174042011-08-04 20:02:18 +0000897 I->getAllMetadata(MDs);
Duncan P. N. Exon Smithe08bcbf2015-08-03 03:27:12 +0000898 for (const auto &MI : MDs) {
899 MDNode *Old = MI.second;
Duncan P. N. Exon Smitha574e7a2016-04-08 19:09:34 +0000900 MDNode *New = cast_or_null<MDNode>(mapMetadata(Old));
Dan Gohmanca26f792010-08-26 15:41:53 +0000901 if (New != Old)
Duncan P. N. Exon Smithe08bcbf2015-08-03 03:27:12 +0000902 I->setMetadata(MI.first, New);
Dan Gohmanca26f792010-08-26 15:41:53 +0000903 }
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000904
David Blaikie348de692015-04-23 21:36:23 +0000905 if (!TypeMapper)
906 return;
907
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000908 // If the instruction's type is being remapped, do so now.
David Blaikie348de692015-04-23 21:36:23 +0000909 if (auto CS = CallSite(I)) {
910 SmallVector<Type *, 3> Tys;
911 FunctionType *FTy = CS.getFunctionType();
912 Tys.reserve(FTy->getNumParams());
913 for (Type *Ty : FTy->params())
914 Tys.push_back(TypeMapper->remapType(Ty));
915 CS.mutateFunctionType(FunctionType::get(
916 TypeMapper->remapType(I->getType()), Tys, FTy->isVarArg()));
David Blaikiebf0a42a2015-04-29 23:00:35 +0000917 return;
918 }
919 if (auto *AI = dyn_cast<AllocaInst>(I))
920 AI->setAllocatedType(TypeMapper->remapType(AI->getAllocatedType()));
David Blaikief5147ef2015-06-01 03:09:34 +0000921 if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) {
David Blaikie73cf8722015-05-05 18:03:48 +0000922 GEP->setSourceElementType(
923 TypeMapper->remapType(GEP->getSourceElementType()));
David Blaikief5147ef2015-06-01 03:09:34 +0000924 GEP->setResultElementType(
925 TypeMapper->remapType(GEP->getResultElementType()));
926 }
David Blaikiebf0a42a2015-04-29 23:00:35 +0000927 I->mutateType(TypeMapper->remapType(I->getType()));
Dan Gohmanca26f792010-08-26 15:41:53 +0000928}
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000929
Evgeniy Stepanov9aff8292017-05-04 23:29:39 +0000930void Mapper::remapGlobalObjectMetadata(GlobalObject &GO) {
931 SmallVector<std::pair<unsigned, MDNode *>, 8> MDs;
932 GO.getAllMetadata(MDs);
933 GO.clearMetadata();
934 for (const auto &I : MDs)
935 GO.addMetadata(I.first, *cast<MDNode>(mapMetadata(I.second)));
936}
937
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000938void Mapper::remapFunction(Function &F) {
939 // Remap the operands.
940 for (Use &Op : F.operands())
941 if (Op)
942 Op = mapValue(Op);
943
944 // Remap the metadata attachments.
Evgeniy Stepanov9aff8292017-05-04 23:29:39 +0000945 remapGlobalObjectMetadata(F);
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000946
947 // Remap the argument types.
948 if (TypeMapper)
949 for (Argument &A : F.args())
950 A.mutateType(TypeMapper->remapType(A.getType()));
951
952 // Remap the instructions.
953 for (BasicBlock &BB : F)
954 for (Instruction &I : BB)
955 remapInstruction(&I);
956}
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000957
958void Mapper::mapAppendingVariable(GlobalVariable &GV, Constant *InitPrefix,
959 bool IsOldCtorDtor,
960 ArrayRef<Constant *> NewMembers) {
961 SmallVector<Constant *, 16> Elements;
962 if (InitPrefix) {
963 unsigned NumElements =
964 cast<ArrayType>(InitPrefix->getType())->getNumElements();
965 for (unsigned I = 0; I != NumElements; ++I)
966 Elements.push_back(InitPrefix->getAggregateElement(I));
967 }
968
969 PointerType *VoidPtrTy;
970 Type *EltTy;
971 if (IsOldCtorDtor) {
972 // FIXME: This upgrade is done during linking to support the C API. See
973 // also IRLinker::linkAppendingVarProto() in IRMover.cpp.
974 VoidPtrTy = Type::getInt8Ty(GV.getContext())->getPointerTo();
975 auto &ST = *cast<StructType>(NewMembers.front()->getType());
976 Type *Tys[3] = {ST.getElementType(0), ST.getElementType(1), VoidPtrTy};
977 EltTy = StructType::get(GV.getContext(), Tys, false);
978 }
979
980 for (auto *V : NewMembers) {
981 Constant *NewV;
982 if (IsOldCtorDtor) {
983 auto *S = cast<ConstantStruct>(V);
Serge Gueltone38003f2017-05-09 19:31:13 +0000984 auto *E1 = cast<Constant>(mapValue(S->getOperand(0)));
985 auto *E2 = cast<Constant>(mapValue(S->getOperand(1)));
986 Constant *Null = Constant::getNullValue(VoidPtrTy);
987 NewV = ConstantStruct::get(cast<StructType>(EltTy), E1, E2, Null);
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000988 } else {
989 NewV = cast_or_null<Constant>(mapValue(V));
990 }
991 Elements.push_back(NewV);
992 }
993
994 GV.setInitializer(ConstantArray::get(
995 cast<ArrayType>(GV.getType()->getElementType()), Elements));
996}
997
998void Mapper::scheduleMapGlobalInitializer(GlobalVariable &GV, Constant &Init,
999 unsigned MCID) {
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +00001000 assert(AlreadyScheduled.insert(&GV).second && "Should not reschedule");
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001001 assert(MCID < MCs.size() && "Invalid mapping context");
1002
1003 WorklistEntry WE;
1004 WE.Kind = WorklistEntry::MapGlobalInit;
1005 WE.MCID = MCID;
1006 WE.Data.GVInit.GV = &GV;
1007 WE.Data.GVInit.Init = &Init;
1008 Worklist.push_back(WE);
1009}
1010
1011void Mapper::scheduleMapAppendingVariable(GlobalVariable &GV,
1012 Constant *InitPrefix,
1013 bool IsOldCtorDtor,
1014 ArrayRef<Constant *> NewMembers,
1015 unsigned MCID) {
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +00001016 assert(AlreadyScheduled.insert(&GV).second && "Should not reschedule");
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001017 assert(MCID < MCs.size() && "Invalid mapping context");
1018
1019 WorklistEntry WE;
1020 WE.Kind = WorklistEntry::MapAppendingVar;
1021 WE.MCID = MCID;
1022 WE.Data.AppendingGV.GV = &GV;
1023 WE.Data.AppendingGV.InitPrefix = InitPrefix;
1024 WE.AppendingGVIsOldCtorDtor = IsOldCtorDtor;
1025 WE.AppendingGVNumNewMembers = NewMembers.size();
1026 Worklist.push_back(WE);
1027 AppendingInits.append(NewMembers.begin(), NewMembers.end());
1028}
1029
1030void Mapper::scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee,
1031 unsigned MCID) {
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +00001032 assert(AlreadyScheduled.insert(&GA).second && "Should not reschedule");
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001033 assert(MCID < MCs.size() && "Invalid mapping context");
1034
1035 WorklistEntry WE;
1036 WE.Kind = WorklistEntry::MapGlobalAliasee;
1037 WE.MCID = MCID;
1038 WE.Data.GlobalAliasee.GA = &GA;
1039 WE.Data.GlobalAliasee.Aliasee = &Aliasee;
1040 Worklist.push_back(WE);
1041}
1042
1043void Mapper::scheduleRemapFunction(Function &F, unsigned MCID) {
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +00001044 assert(AlreadyScheduled.insert(&F).second && "Should not reschedule");
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001045 assert(MCID < MCs.size() && "Invalid mapping context");
1046
1047 WorklistEntry WE;
1048 WE.Kind = WorklistEntry::RemapFunction;
1049 WE.MCID = MCID;
1050 WE.Data.RemapF = &F;
1051 Worklist.push_back(WE);
1052}
1053
1054void Mapper::addFlags(RemapFlags Flags) {
1055 assert(!hasWorkToDo() && "Expected to have flushed the worklist");
1056 this->Flags = this->Flags | Flags;
1057}
1058
1059static Mapper *getAsMapper(void *pImpl) {
1060 return reinterpret_cast<Mapper *>(pImpl);
1061}
1062
1063namespace {
1064
1065class FlushingMapper {
1066 Mapper &M;
1067
1068public:
1069 explicit FlushingMapper(void *pImpl) : M(*getAsMapper(pImpl)) {
1070 assert(!M.hasWorkToDo() && "Expected to be flushed");
1071 }
Eugene Zelenko5adb96c2017-10-26 00:55:39 +00001072
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001073 ~FlushingMapper() { M.flush(); }
Eugene Zelenko5adb96c2017-10-26 00:55:39 +00001074
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001075 Mapper *operator->() const { return &M; }
1076};
1077
Eugene Zelenko5adb96c2017-10-26 00:55:39 +00001078} // end anonymous namespace
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001079
1080ValueMapper::ValueMapper(ValueToValueMapTy &VM, RemapFlags Flags,
1081 ValueMapTypeRemapper *TypeMapper,
1082 ValueMaterializer *Materializer)
1083 : pImpl(new Mapper(VM, Flags, TypeMapper, Materializer)) {}
1084
1085ValueMapper::~ValueMapper() { delete getAsMapper(pImpl); }
1086
1087unsigned
1088ValueMapper::registerAlternateMappingContext(ValueToValueMapTy &VM,
1089 ValueMaterializer *Materializer) {
1090 return getAsMapper(pImpl)->registerAlternateMappingContext(VM, Materializer);
1091}
1092
1093void ValueMapper::addFlags(RemapFlags Flags) {
1094 FlushingMapper(pImpl)->addFlags(Flags);
1095}
1096
1097Value *ValueMapper::mapValue(const Value &V) {
1098 return FlushingMapper(pImpl)->mapValue(&V);
1099}
1100
1101Constant *ValueMapper::mapConstant(const Constant &C) {
1102 return cast_or_null<Constant>(mapValue(C));
1103}
1104
1105Metadata *ValueMapper::mapMetadata(const Metadata &MD) {
1106 return FlushingMapper(pImpl)->mapMetadata(&MD);
1107}
1108
1109MDNode *ValueMapper::mapMDNode(const MDNode &N) {
1110 return cast_or_null<MDNode>(mapMetadata(N));
1111}
1112
1113void ValueMapper::remapInstruction(Instruction &I) {
1114 FlushingMapper(pImpl)->remapInstruction(&I);
1115}
1116
1117void ValueMapper::remapFunction(Function &F) {
1118 FlushingMapper(pImpl)->remapFunction(F);
1119}
1120
1121void ValueMapper::scheduleMapGlobalInitializer(GlobalVariable &GV,
1122 Constant &Init,
1123 unsigned MCID) {
1124 getAsMapper(pImpl)->scheduleMapGlobalInitializer(GV, Init, MCID);
1125}
1126
1127void ValueMapper::scheduleMapAppendingVariable(GlobalVariable &GV,
1128 Constant *InitPrefix,
1129 bool IsOldCtorDtor,
1130 ArrayRef<Constant *> NewMembers,
1131 unsigned MCID) {
1132 getAsMapper(pImpl)->scheduleMapAppendingVariable(
1133 GV, InitPrefix, IsOldCtorDtor, NewMembers, MCID);
1134}
1135
1136void ValueMapper::scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee,
1137 unsigned MCID) {
1138 getAsMapper(pImpl)->scheduleMapGlobalAliasee(GA, Aliasee, MCID);
1139}
1140
1141void ValueMapper::scheduleRemapFunction(Function &F, unsigned MCID) {
1142 getAsMapper(pImpl)->scheduleRemapFunction(F, MCID);
1143}