blob: d357bbfeb17d085f8216aab33558add8b9dffb83 [file] [log] [blame]
Rafael Espindolacaabe222015-12-10 14:19:35 +00001//===- lib/Linker/IRMover.cpp ---------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Linker/IRMover.h"
11#include "LinkDiagnosticInfo.h"
12#include "llvm/ADT/SetVector.h"
13#include "llvm/ADT/SmallString.h"
14#include "llvm/ADT/Triple.h"
15#include "llvm/IR/Constants.h"
Teresa Johnson0e7c82c2015-12-18 17:51:37 +000016#include "llvm/IR/DebugInfo.h"
Rafael Espindolacaabe222015-12-10 14:19:35 +000017#include "llvm/IR/DiagnosticPrinter.h"
Teresa Johnsone5a61912015-12-17 17:14:09 +000018#include "llvm/IR/GVMaterializer.h"
Rafael Espindolacaabe222015-12-10 14:19:35 +000019#include "llvm/IR/TypeFinder.h"
20#include "llvm/Transforms/Utils/Cloning.h"
21using namespace llvm;
22
23//===----------------------------------------------------------------------===//
24// TypeMap implementation.
25//===----------------------------------------------------------------------===//
26
27namespace {
28class TypeMapTy : public ValueMapTypeRemapper {
29 /// This is a mapping from a source type to a destination type to use.
30 DenseMap<Type *, Type *> MappedTypes;
31
32 /// When checking to see if two subgraphs are isomorphic, we speculatively
33 /// add types to MappedTypes, but keep track of them here in case we need to
34 /// roll back.
35 SmallVector<Type *, 16> SpeculativeTypes;
36
37 SmallVector<StructType *, 16> SpeculativeDstOpaqueTypes;
38
39 /// This is a list of non-opaque structs in the source module that are mapped
40 /// to an opaque struct in the destination module.
41 SmallVector<StructType *, 16> SrcDefinitionsToResolve;
42
43 /// This is the set of opaque types in the destination modules who are
44 /// getting a body from the source module.
45 SmallPtrSet<StructType *, 16> DstResolvedOpaqueTypes;
46
47public:
48 TypeMapTy(IRMover::IdentifiedStructTypeSet &DstStructTypesSet)
49 : DstStructTypesSet(DstStructTypesSet) {}
50
51 IRMover::IdentifiedStructTypeSet &DstStructTypesSet;
52 /// Indicate that the specified type in the destination module is conceptually
53 /// equivalent to the specified type in the source module.
54 void addTypeMapping(Type *DstTy, Type *SrcTy);
55
56 /// Produce a body for an opaque type in the dest module from a type
57 /// definition in the source module.
58 void linkDefinedTypeBodies();
59
60 /// Return the mapped type to use for the specified input type from the
61 /// source module.
62 Type *get(Type *SrcTy);
63 Type *get(Type *SrcTy, SmallPtrSet<StructType *, 8> &Visited);
64
65 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
66
67 FunctionType *get(FunctionType *T) {
68 return cast<FunctionType>(get((Type *)T));
69 }
70
71private:
72 Type *remapType(Type *SrcTy) override { return get(SrcTy); }
73
74 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
75};
76}
77
78void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
79 assert(SpeculativeTypes.empty());
80 assert(SpeculativeDstOpaqueTypes.empty());
81
82 // Check to see if these types are recursively isomorphic and establish a
83 // mapping between them if so.
84 if (!areTypesIsomorphic(DstTy, SrcTy)) {
85 // Oops, they aren't isomorphic. Just discard this request by rolling out
86 // any speculative mappings we've established.
87 for (Type *Ty : SpeculativeTypes)
88 MappedTypes.erase(Ty);
89
90 SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() -
91 SpeculativeDstOpaqueTypes.size());
92 for (StructType *Ty : SpeculativeDstOpaqueTypes)
93 DstResolvedOpaqueTypes.erase(Ty);
94 } else {
95 for (Type *Ty : SpeculativeTypes)
96 if (auto *STy = dyn_cast<StructType>(Ty))
97 if (STy->hasName())
98 STy->setName("");
99 }
100 SpeculativeTypes.clear();
101 SpeculativeDstOpaqueTypes.clear();
102}
103
104/// Recursively walk this pair of types, returning true if they are isomorphic,
105/// false if they are not.
106bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
107 // Two types with differing kinds are clearly not isomorphic.
108 if (DstTy->getTypeID() != SrcTy->getTypeID())
109 return false;
110
111 // If we have an entry in the MappedTypes table, then we have our answer.
112 Type *&Entry = MappedTypes[SrcTy];
113 if (Entry)
114 return Entry == DstTy;
115
116 // Two identical types are clearly isomorphic. Remember this
117 // non-speculatively.
118 if (DstTy == SrcTy) {
119 Entry = DstTy;
120 return true;
121 }
122
123 // Okay, we have two types with identical kinds that we haven't seen before.
124
125 // If this is an opaque struct type, special case it.
126 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
127 // Mapping an opaque type to any struct, just keep the dest struct.
128 if (SSTy->isOpaque()) {
129 Entry = DstTy;
130 SpeculativeTypes.push_back(SrcTy);
131 return true;
132 }
133
134 // Mapping a non-opaque source type to an opaque dest. If this is the first
135 // type that we're mapping onto this destination type then we succeed. Keep
136 // the dest, but fill it in later. If this is the second (different) type
137 // that we're trying to map onto the same opaque type then we fail.
138 if (cast<StructType>(DstTy)->isOpaque()) {
139 // We can only map one source type onto the opaque destination type.
140 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second)
141 return false;
142 SrcDefinitionsToResolve.push_back(SSTy);
143 SpeculativeTypes.push_back(SrcTy);
144 SpeculativeDstOpaqueTypes.push_back(cast<StructType>(DstTy));
145 Entry = DstTy;
146 return true;
147 }
148 }
149
150 // If the number of subtypes disagree between the two types, then we fail.
151 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
152 return false;
153
154 // Fail if any of the extra properties (e.g. array size) of the type disagree.
155 if (isa<IntegerType>(DstTy))
156 return false; // bitwidth disagrees.
157 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
158 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
159 return false;
160
161 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
162 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
163 return false;
164 } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) {
165 StructType *SSTy = cast<StructType>(SrcTy);
166 if (DSTy->isLiteral() != SSTy->isLiteral() ||
167 DSTy->isPacked() != SSTy->isPacked())
168 return false;
169 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
170 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
171 return false;
172 } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
173 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
174 return false;
175 }
176
177 // Otherwise, we speculate that these two types will line up and recursively
178 // check the subelements.
179 Entry = DstTy;
180 SpeculativeTypes.push_back(SrcTy);
181
182 for (unsigned I = 0, E = SrcTy->getNumContainedTypes(); I != E; ++I)
183 if (!areTypesIsomorphic(DstTy->getContainedType(I),
184 SrcTy->getContainedType(I)))
185 return false;
186
187 // If everything seems to have lined up, then everything is great.
188 return true;
189}
190
191void TypeMapTy::linkDefinedTypeBodies() {
192 SmallVector<Type *, 16> Elements;
193 for (StructType *SrcSTy : SrcDefinitionsToResolve) {
194 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
195 assert(DstSTy->isOpaque());
196
197 // Map the body of the source type over to a new body for the dest type.
198 Elements.resize(SrcSTy->getNumElements());
199 for (unsigned I = 0, E = Elements.size(); I != E; ++I)
200 Elements[I] = get(SrcSTy->getElementType(I));
201
202 DstSTy->setBody(Elements, SrcSTy->isPacked());
203 DstStructTypesSet.switchToNonOpaque(DstSTy);
204 }
205 SrcDefinitionsToResolve.clear();
206 DstResolvedOpaqueTypes.clear();
207}
208
209void TypeMapTy::finishType(StructType *DTy, StructType *STy,
210 ArrayRef<Type *> ETypes) {
211 DTy->setBody(ETypes, STy->isPacked());
212
213 // Steal STy's name.
214 if (STy->hasName()) {
215 SmallString<16> TmpName = STy->getName();
216 STy->setName("");
217 DTy->setName(TmpName);
218 }
219
220 DstStructTypesSet.addNonOpaque(DTy);
221}
222
223Type *TypeMapTy::get(Type *Ty) {
224 SmallPtrSet<StructType *, 8> Visited;
225 return get(Ty, Visited);
226}
227
228Type *TypeMapTy::get(Type *Ty, SmallPtrSet<StructType *, 8> &Visited) {
229 // If we already have an entry for this type, return it.
230 Type **Entry = &MappedTypes[Ty];
231 if (*Entry)
232 return *Entry;
233
234 // These are types that LLVM itself will unique.
235 bool IsUniqued = !isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral();
236
237#ifndef NDEBUG
238 if (!IsUniqued) {
239 for (auto &Pair : MappedTypes) {
240 assert(!(Pair.first != Ty && Pair.second == Ty) &&
241 "mapping to a source type");
242 }
243 }
244#endif
245
246 if (!IsUniqued && !Visited.insert(cast<StructType>(Ty)).second) {
247 StructType *DTy = StructType::create(Ty->getContext());
248 return *Entry = DTy;
249 }
250
251 // If this is not a recursive type, then just map all of the elements and
252 // then rebuild the type from inside out.
253 SmallVector<Type *, 4> ElementTypes;
254
255 // If there are no element types to map, then the type is itself. This is
256 // true for the anonymous {} struct, things like 'float', integers, etc.
257 if (Ty->getNumContainedTypes() == 0 && IsUniqued)
258 return *Entry = Ty;
259
260 // Remap all of the elements, keeping track of whether any of them change.
261 bool AnyChange = false;
262 ElementTypes.resize(Ty->getNumContainedTypes());
263 for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) {
264 ElementTypes[I] = get(Ty->getContainedType(I), Visited);
265 AnyChange |= ElementTypes[I] != Ty->getContainedType(I);
266 }
267
268 // If we found our type while recursively processing stuff, just use it.
269 Entry = &MappedTypes[Ty];
270 if (*Entry) {
271 if (auto *DTy = dyn_cast<StructType>(*Entry)) {
272 if (DTy->isOpaque()) {
273 auto *STy = cast<StructType>(Ty);
274 finishType(DTy, STy, ElementTypes);
275 }
276 }
277 return *Entry;
278 }
279
280 // If all of the element types mapped directly over and the type is not
281 // a nomed struct, then the type is usable as-is.
282 if (!AnyChange && IsUniqued)
283 return *Entry = Ty;
284
285 // Otherwise, rebuild a modified type.
286 switch (Ty->getTypeID()) {
287 default:
288 llvm_unreachable("unknown derived type to remap");
289 case Type::ArrayTyID:
290 return *Entry = ArrayType::get(ElementTypes[0],
291 cast<ArrayType>(Ty)->getNumElements());
292 case Type::VectorTyID:
293 return *Entry = VectorType::get(ElementTypes[0],
294 cast<VectorType>(Ty)->getNumElements());
295 case Type::PointerTyID:
296 return *Entry = PointerType::get(ElementTypes[0],
297 cast<PointerType>(Ty)->getAddressSpace());
298 case Type::FunctionTyID:
299 return *Entry = FunctionType::get(ElementTypes[0],
300 makeArrayRef(ElementTypes).slice(1),
301 cast<FunctionType>(Ty)->isVarArg());
302 case Type::StructTyID: {
303 auto *STy = cast<StructType>(Ty);
304 bool IsPacked = STy->isPacked();
305 if (IsUniqued)
306 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked);
307
308 // If the type is opaque, we can just use it directly.
309 if (STy->isOpaque()) {
310 DstStructTypesSet.addOpaque(STy);
311 return *Entry = Ty;
312 }
313
314 if (StructType *OldT =
315 DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) {
316 STy->setName("");
317 return *Entry = OldT;
318 }
319
320 if (!AnyChange) {
321 DstStructTypesSet.addNonOpaque(STy);
322 return *Entry = Ty;
323 }
324
325 StructType *DTy = StructType::create(Ty->getContext());
326 finishType(DTy, STy, ElementTypes);
327 return *Entry = DTy;
328 }
329 }
330}
331
332LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
333 const Twine &Msg)
334 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
335void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
336
337//===----------------------------------------------------------------------===//
Teresa Johnsonbef54362015-12-18 19:28:59 +0000338// IRLinker implementation.
Rafael Espindolacaabe222015-12-10 14:19:35 +0000339//===----------------------------------------------------------------------===//
340
341namespace {
342class IRLinker;
343
344/// Creates prototypes for functions that are lazily linked on the fly. This
345/// speeds up linking for modules with many/ lazily linked functions of which
346/// few get used.
347class GlobalValueMaterializer final : public ValueMaterializer {
Mehdi Amini33661072016-03-11 22:19:06 +0000348 IRLinker &TheIRLinker;
Rafael Espindolacaabe222015-12-10 14:19:35 +0000349
350public:
Mehdi Amini33661072016-03-11 22:19:06 +0000351 GlobalValueMaterializer(IRLinker &TheIRLinker) : TheIRLinker(TheIRLinker) {}
Rafael Espindolacaabe222015-12-10 14:19:35 +0000352 Value *materializeDeclFor(Value *V) override;
353 void materializeInitFor(GlobalValue *New, GlobalValue *Old) override;
354};
355
356class LocalValueMaterializer final : public ValueMaterializer {
Mehdi Amini33661072016-03-11 22:19:06 +0000357 IRLinker &TheIRLinker;
Rafael Espindolacaabe222015-12-10 14:19:35 +0000358
359public:
Mehdi Amini33661072016-03-11 22:19:06 +0000360 LocalValueMaterializer(IRLinker &TheIRLinker) : TheIRLinker(TheIRLinker) {}
Rafael Espindolacaabe222015-12-10 14:19:35 +0000361 Value *materializeDeclFor(Value *V) override;
362 void materializeInitFor(GlobalValue *New, GlobalValue *Old) override;
363};
364
Duncan P. N. Exon Smith565a0aa2016-04-17 23:30:31 +0000365/// Type of the Metadata map in \a ValueToValueMapTy.
366typedef DenseMap<const Metadata *, TrackingMDRef> MDMapT;
367
Rafael Espindolacaabe222015-12-10 14:19:35 +0000368/// This is responsible for keeping track of the state used for moving data
369/// from SrcM to DstM.
370class IRLinker {
371 Module &DstM;
Rafael Espindola40358fb2016-02-16 18:50:12 +0000372 std::unique_ptr<Module> SrcM;
Rafael Espindolacaabe222015-12-10 14:19:35 +0000373
Mehdi Amini33661072016-03-11 22:19:06 +0000374 /// See IRMover::move().
Rafael Espindolacaabe222015-12-10 14:19:35 +0000375 std::function<void(GlobalValue &, IRMover::ValueAdder)> AddLazyFor;
376
377 TypeMapTy TypeMap;
378 GlobalValueMaterializer GValMaterializer;
379 LocalValueMaterializer LValMaterializer;
380
Duncan P. N. Exon Smith565a0aa2016-04-17 23:30:31 +0000381 /// A metadata map that's shared between IRLinker instances.
382 MDMapT &SharedMDs;
383
Rafael Espindolacaabe222015-12-10 14:19:35 +0000384 /// Mapping of values from what they used to be in Src, to what they are now
385 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
386 /// due to the use of Value handles which the Linker doesn't actually need,
387 /// but this allows us to reuse the ValueMapper code.
388 ValueToValueMapTy ValueMap;
389 ValueToValueMapTy AliasValueMap;
390
391 DenseSet<GlobalValue *> ValuesToLink;
392 std::vector<GlobalValue *> Worklist;
393
394 void maybeAdd(GlobalValue *GV) {
395 if (ValuesToLink.insert(GV).second)
396 Worklist.push_back(GV);
397 }
398
Rafael Espindolacaabe222015-12-10 14:19:35 +0000399 /// Set to true when all global value body linking is complete (including
400 /// lazy linking). Used to prevent metadata linking from creating new
401 /// references.
402 bool DoneLinkingBodies = false;
403
404 bool HasError = false;
405
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000406 /// Entry point for mapping values and alternate context for mapping aliases.
407 ValueMapper Mapper;
408 unsigned AliasMCID;
Teresa Johnsone5a61912015-12-17 17:14:09 +0000409
Rafael Espindolacaabe222015-12-10 14:19:35 +0000410 /// Handles cloning of a global values from the source module into
411 /// the destination module, including setting the attributes and visibility.
412 GlobalValue *copyGlobalValueProto(const GlobalValue *SGV, bool ForDefinition);
413
414 /// Helper method for setting a message and returning an error code.
415 bool emitError(const Twine &Message) {
Rafael Espindola40358fb2016-02-16 18:50:12 +0000416 SrcM->getContext().diagnose(LinkDiagnosticInfo(DS_Error, Message));
Rafael Espindolacaabe222015-12-10 14:19:35 +0000417 HasError = true;
418 return true;
419 }
420
421 void emitWarning(const Twine &Message) {
Rafael Espindola40358fb2016-02-16 18:50:12 +0000422 SrcM->getContext().diagnose(LinkDiagnosticInfo(DS_Warning, Message));
Rafael Espindolacaabe222015-12-10 14:19:35 +0000423 }
424
425 /// Given a global in the source module, return the global in the
426 /// destination module that is being linked to, if any.
427 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
428 // If the source has no name it can't link. If it has local linkage,
429 // there is no name match-up going on.
430 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
431 return nullptr;
432
433 // Otherwise see if we have a match in the destination module's symtab.
434 GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName());
435 if (!DGV)
436 return nullptr;
437
438 // If we found a global with the same name in the dest module, but it has
439 // internal linkage, we are really not doing any linkage here.
440 if (DGV->hasLocalLinkage())
441 return nullptr;
442
443 // Otherwise, we do in fact link to the destination global.
444 return DGV;
445 }
446
447 void computeTypeMapping();
448
449 Constant *linkAppendingVarProto(GlobalVariable *DstGV,
450 const GlobalVariable *SrcGV);
451
Mehdi Amini33661072016-03-11 22:19:06 +0000452 /// Given the GlobaValue \p SGV in the source module, and the matching
453 /// GlobalValue \p DGV (if any), return true if the linker will pull \p SGV
454 /// into the destination module.
455 ///
456 /// Note this code may call the client-provided \p AddLazyFor.
Rafael Espindolacaabe222015-12-10 14:19:35 +0000457 bool shouldLink(GlobalValue *DGV, GlobalValue &SGV);
458 Constant *linkGlobalValueProto(GlobalValue *GV, bool ForAlias);
459
460 bool linkModuleFlagsMetadata();
461
462 void linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src);
463 bool linkFunctionBody(Function &Dst, Function &Src);
464 void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src);
465 bool linkGlobalValueBody(GlobalValue &Dst, GlobalValue &Src);
466
467 /// Functions that take care of cloning a specific global value type
468 /// into the destination module.
469 GlobalVariable *copyGlobalVariableProto(const GlobalVariable *SGVar);
470 Function *copyFunctionProto(const Function *SF);
471 GlobalValue *copyGlobalAliasProto(const GlobalAlias *SGA);
472
473 void linkNamedMDNodes();
474
475public:
Duncan P. N. Exon Smith565a0aa2016-04-17 23:30:31 +0000476 IRLinker(Module &DstM, MDMapT &SharedMDs,
477 IRMover::IdentifiedStructTypeSet &Set, std::unique_ptr<Module> SrcM,
478 ArrayRef<GlobalValue *> ValuesToLink,
Teresa Johnsonb703c772016-03-29 18:24:19 +0000479 std::function<void(GlobalValue &, IRMover::ValueAdder)> AddLazyFor)
Rafael Espindola40358fb2016-02-16 18:50:12 +0000480 : DstM(DstM), SrcM(std::move(SrcM)), AddLazyFor(AddLazyFor), TypeMap(Set),
Duncan P. N. Exon Smith565a0aa2016-04-17 23:30:31 +0000481 GValMaterializer(*this), LValMaterializer(*this), SharedMDs(SharedMDs),
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000482 Mapper(ValueMap, RF_MoveDistinctMDs | RF_IgnoreMissingLocals, &TypeMap,
483 &GValMaterializer),
484 AliasMCID(Mapper.registerAlternateMappingContext(AliasValueMap,
485 &LValMaterializer)) {
Duncan P. N. Exon Smitha4810fa2016-04-19 16:57:24 +0000486 ValueMap.getMDMap() = std::move(SharedMDs);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000487 for (GlobalValue *GV : ValuesToLink)
488 maybeAdd(GV);
Teresa Johnsoncc428572015-12-30 19:32:24 +0000489 }
Duncan P. N. Exon Smitha4810fa2016-04-19 16:57:24 +0000490 ~IRLinker() { SharedMDs = std::move(*ValueMap.getMDMap()); }
Teresa Johnsoncc428572015-12-30 19:32:24 +0000491
Rafael Espindolacaabe222015-12-10 14:19:35 +0000492 bool run();
493 Value *materializeDeclFor(Value *V, bool ForAlias);
494 void materializeInitFor(GlobalValue *New, GlobalValue *Old, bool ForAlias);
495};
496}
497
498/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
499/// table. This is good for all clients except for us. Go through the trouble
500/// to force this back.
501static void forceRenaming(GlobalValue *GV, StringRef Name) {
502 // If the global doesn't force its name or if it already has the right name,
503 // there is nothing for us to do.
504 if (GV->hasLocalLinkage() || GV->getName() == Name)
505 return;
506
507 Module *M = GV->getParent();
508
509 // If there is a conflict, rename the conflict.
510 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
511 GV->takeName(ConflictGV);
512 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
513 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
514 } else {
515 GV->setName(Name); // Force the name back
516 }
517}
518
519Value *GlobalValueMaterializer::materializeDeclFor(Value *V) {
Mehdi Amini33661072016-03-11 22:19:06 +0000520 return TheIRLinker.materializeDeclFor(V, false);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000521}
522
523void GlobalValueMaterializer::materializeInitFor(GlobalValue *New,
524 GlobalValue *Old) {
Mehdi Amini33661072016-03-11 22:19:06 +0000525 TheIRLinker.materializeInitFor(New, Old, false);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000526}
527
528Value *LocalValueMaterializer::materializeDeclFor(Value *V) {
Mehdi Amini33661072016-03-11 22:19:06 +0000529 return TheIRLinker.materializeDeclFor(V, true);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000530}
531
532void LocalValueMaterializer::materializeInitFor(GlobalValue *New,
533 GlobalValue *Old) {
Mehdi Amini33661072016-03-11 22:19:06 +0000534 TheIRLinker.materializeInitFor(New, Old, true);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000535}
536
537Value *IRLinker::materializeDeclFor(Value *V, bool ForAlias) {
538 auto *SGV = dyn_cast<GlobalValue>(V);
539 if (!SGV)
540 return nullptr;
541
542 return linkGlobalValueProto(SGV, ForAlias);
543}
544
545void IRLinker::materializeInitFor(GlobalValue *New, GlobalValue *Old,
546 bool ForAlias) {
547 // If we already created the body, just return.
548 if (auto *F = dyn_cast<Function>(New)) {
549 if (!F->isDeclaration())
550 return;
551 } else if (auto *V = dyn_cast<GlobalVariable>(New)) {
Duncan P. N. Exon Smith0fdaf8c2016-04-17 19:40:20 +0000552 if (V->hasInitializer() || V->hasAppendingLinkage())
Rafael Espindolacaabe222015-12-10 14:19:35 +0000553 return;
554 } else {
555 auto *A = cast<GlobalAlias>(New);
556 if (A->getAliasee())
557 return;
558 }
559
Mehdi Amini3d4f3a02016-05-25 21:00:44 +0000560 // When linking a global for an alias, it will always be linked. However we
561 // need to check if it was not already scheduled to satify a reference from a
562 // regular global value initializer. We know if it has been schedule if the
563 // "New" GlobalValue that is mapped here for the alias is the same as the one
564 // already mapped. If there is an entry in the ValueMap but the value is
565 // different, it means that the value already had a definition in the
566 // destination module (linkonce for instance), but we need a new definition
567 // for the alias ("New" will be different.
568 if (ForAlias && ValueMap.lookup(Old) == New)
569 return;
570
Rafael Espindolacaabe222015-12-10 14:19:35 +0000571 if (ForAlias || shouldLink(New, *Old))
572 linkGlobalValueBody(*New, *Old);
573}
574
575/// Loop through the global variables in the src module and merge them into the
576/// dest module.
577GlobalVariable *IRLinker::copyGlobalVariableProto(const GlobalVariable *SGVar) {
578 // No linking to be performed or linking from the source: simply create an
579 // identical version of the symbol over in the dest module... the
580 // initializer will be filled in later by LinkGlobalInits.
581 GlobalVariable *NewDGV =
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000582 new GlobalVariable(DstM, TypeMap.get(SGVar->getValueType()),
Rafael Espindolacaabe222015-12-10 14:19:35 +0000583 SGVar->isConstant(), GlobalValue::ExternalLinkage,
584 /*init*/ nullptr, SGVar->getName(),
585 /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
586 SGVar->getType()->getAddressSpace());
587 NewDGV->setAlignment(SGVar->getAlignment());
588 return NewDGV;
589}
590
591/// Link the function in the source module into the destination module if
592/// needed, setting up mapping information.
593Function *IRLinker::copyFunctionProto(const Function *SF) {
594 // If there is no linkage to be performed or we are linking from the source,
595 // bring SF over.
596 return Function::Create(TypeMap.get(SF->getFunctionType()),
597 GlobalValue::ExternalLinkage, SF->getName(), &DstM);
598}
599
600/// Set up prototypes for any aliases that come over from the source module.
601GlobalValue *IRLinker::copyGlobalAliasProto(const GlobalAlias *SGA) {
602 // If there is no linkage to be performed or we're linking from the source,
603 // bring over SGA.
604 auto *Ty = TypeMap.get(SGA->getValueType());
605 return GlobalAlias::create(Ty, SGA->getType()->getPointerAddressSpace(),
606 GlobalValue::ExternalLinkage, SGA->getName(),
607 &DstM);
608}
609
610GlobalValue *IRLinker::copyGlobalValueProto(const GlobalValue *SGV,
611 bool ForDefinition) {
612 GlobalValue *NewGV;
613 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) {
614 NewGV = copyGlobalVariableProto(SGVar);
615 } else if (auto *SF = dyn_cast<Function>(SGV)) {
616 NewGV = copyFunctionProto(SF);
617 } else {
618 if (ForDefinition)
619 NewGV = copyGlobalAliasProto(cast<GlobalAlias>(SGV));
620 else
621 NewGV = new GlobalVariable(
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000622 DstM, TypeMap.get(SGV->getValueType()),
Rafael Espindolacaabe222015-12-10 14:19:35 +0000623 /*isConstant*/ false, GlobalValue::ExternalLinkage,
624 /*init*/ nullptr, SGV->getName(),
625 /*insertbefore*/ nullptr, SGV->getThreadLocalMode(),
626 SGV->getType()->getAddressSpace());
627 }
628
629 if (ForDefinition)
630 NewGV->setLinkage(SGV->getLinkage());
Mehdi Amini113adde2016-04-19 16:11:05 +0000631 else if (SGV->hasExternalWeakLinkage())
Rafael Espindolacaabe222015-12-10 14:19:35 +0000632 NewGV->setLinkage(GlobalValue::ExternalWeakLinkage);
633
634 NewGV->copyAttributesFrom(SGV);
Teresa Johnson5fe40052016-01-12 00:24:24 +0000635
Reid Klecknerc0a03632016-05-25 18:36:22 +0000636 // Don't copy the comdat, it's from the original module. We'll handle it
637 // later.
638 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV))
639 NewGO->setComdat(nullptr);
640
Teresa Johnson5fe40052016-01-12 00:24:24 +0000641 // Remove these copied constants in case this stays a declaration, since
642 // they point to the source module. If the def is linked the values will
643 // be mapped in during linkFunctionBody.
644 if (auto *NewF = dyn_cast<Function>(NewGV)) {
645 NewF->setPersonalityFn(nullptr);
646 NewF->setPrefixData(nullptr);
647 NewF->setPrologueData(nullptr);
648 }
649
Rafael Espindolacaabe222015-12-10 14:19:35 +0000650 return NewGV;
651}
652
653/// Loop over all of the linked values to compute type mappings. For example,
654/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
655/// types 'Foo' but one got renamed when the module was loaded into the same
656/// LLVMContext.
657void IRLinker::computeTypeMapping() {
Rafael Espindola40358fb2016-02-16 18:50:12 +0000658 for (GlobalValue &SGV : SrcM->globals()) {
Rafael Espindolacaabe222015-12-10 14:19:35 +0000659 GlobalValue *DGV = getLinkedToGlobal(&SGV);
660 if (!DGV)
661 continue;
662
663 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
664 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
665 continue;
666 }
667
668 // Unify the element type of appending arrays.
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000669 ArrayType *DAT = cast<ArrayType>(DGV->getValueType());
670 ArrayType *SAT = cast<ArrayType>(SGV.getValueType());
Rafael Espindolacaabe222015-12-10 14:19:35 +0000671 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
672 }
673
Rafael Espindola40358fb2016-02-16 18:50:12 +0000674 for (GlobalValue &SGV : *SrcM)
Rafael Espindolacaabe222015-12-10 14:19:35 +0000675 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
676 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
677
Rafael Espindola40358fb2016-02-16 18:50:12 +0000678 for (GlobalValue &SGV : SrcM->aliases())
Rafael Espindolacaabe222015-12-10 14:19:35 +0000679 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
680 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
681
682 // Incorporate types by name, scanning all the types in the source module.
683 // At this point, the destination module may have a type "%foo = { i32 }" for
684 // example. When the source module got loaded into the same LLVMContext, if
685 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Rafael Espindola40358fb2016-02-16 18:50:12 +0000686 std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes();
Rafael Espindolacaabe222015-12-10 14:19:35 +0000687 for (StructType *ST : Types) {
688 if (!ST->hasName())
689 continue;
690
691 // Check to see if there is a dot in the name followed by a digit.
692 size_t DotPos = ST->getName().rfind('.');
693 if (DotPos == 0 || DotPos == StringRef::npos ||
694 ST->getName().back() == '.' ||
695 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
696 continue;
697
698 // Check to see if the destination module has a struct with the prefix name.
699 StructType *DST = DstM.getTypeByName(ST->getName().substr(0, DotPos));
700 if (!DST)
701 continue;
702
703 // Don't use it if this actually came from the source module. They're in
704 // the same LLVMContext after all. Also don't use it unless the type is
705 // actually used in the destination module. This can happen in situations
706 // like this:
707 //
708 // Module A Module B
709 // -------- --------
710 // %Z = type { %A } %B = type { %C.1 }
711 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
712 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
713 // %C = type { i8* } %B.3 = type { %C.1 }
714 //
715 // When we link Module B with Module A, the '%B' in Module B is
716 // used. However, that would then use '%C.1'. But when we process '%C.1',
717 // we prefer to take the '%C' version. So we are then left with both
718 // '%C.1' and '%C' being used for the same types. This leads to some
719 // variables using one type and some using the other.
720 if (TypeMap.DstStructTypesSet.hasType(DST))
721 TypeMap.addTypeMapping(DST, ST);
722 }
723
724 // Now that we have discovered all of the type equivalences, get a body for
725 // any 'opaque' types in the dest module that are now resolved.
726 TypeMap.linkDefinedTypeBodies();
727}
728
729static void getArrayElements(const Constant *C,
730 SmallVectorImpl<Constant *> &Dest) {
731 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
732
733 for (unsigned i = 0; i != NumElements; ++i)
734 Dest.push_back(C->getAggregateElement(i));
735}
736
737/// If there were any appending global variables, link them together now.
738/// Return true on error.
739Constant *IRLinker::linkAppendingVarProto(GlobalVariable *DstGV,
740 const GlobalVariable *SrcGV) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000741 Type *EltTy = cast<ArrayType>(TypeMap.get(SrcGV->getValueType()))
Rafael Espindolacaabe222015-12-10 14:19:35 +0000742 ->getElementType();
743
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000744 // FIXME: This upgrade is done during linking to support the C API. Once the
745 // old form is deprecated, we should move this upgrade to
746 // llvm::UpgradeGlobalVariable() and simplify the logic here and in
747 // Mapper::mapAppendingVariable() in ValueMapper.cpp.
Rafael Espindolacaabe222015-12-10 14:19:35 +0000748 StringRef Name = SrcGV->getName();
749 bool IsNewStructor = false;
750 bool IsOldStructor = false;
751 if (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") {
752 if (cast<StructType>(EltTy)->getNumElements() == 3)
753 IsNewStructor = true;
754 else
755 IsOldStructor = true;
756 }
757
758 PointerType *VoidPtrTy = Type::getInt8Ty(SrcGV->getContext())->getPointerTo();
759 if (IsOldStructor) {
760 auto &ST = *cast<StructType>(EltTy);
761 Type *Tys[3] = {ST.getElementType(0), ST.getElementType(1), VoidPtrTy};
762 EltTy = StructType::get(SrcGV->getContext(), Tys, false);
763 }
764
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000765 uint64_t DstNumElements = 0;
Rafael Espindolacaabe222015-12-10 14:19:35 +0000766 if (DstGV) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000767 ArrayType *DstTy = cast<ArrayType>(DstGV->getValueType());
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000768 DstNumElements = DstTy->getNumElements();
Rafael Espindolacaabe222015-12-10 14:19:35 +0000769
770 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage()) {
771 emitError(
772 "Linking globals named '" + SrcGV->getName() +
773 "': can only link appending global with another appending global!");
774 return nullptr;
775 }
776
777 // Check to see that they two arrays agree on type.
778 if (EltTy != DstTy->getElementType()) {
779 emitError("Appending variables with different element types!");
780 return nullptr;
781 }
782 if (DstGV->isConstant() != SrcGV->isConstant()) {
783 emitError("Appending variables linked with different const'ness!");
784 return nullptr;
785 }
786
787 if (DstGV->getAlignment() != SrcGV->getAlignment()) {
788 emitError(
789 "Appending variables with different alignment need to be linked!");
790 return nullptr;
791 }
792
793 if (DstGV->getVisibility() != SrcGV->getVisibility()) {
794 emitError(
795 "Appending variables with different visibility need to be linked!");
796 return nullptr;
797 }
798
799 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr()) {
800 emitError(
801 "Appending variables with different unnamed_addr need to be linked!");
802 return nullptr;
803 }
804
Rafael Espindola83658d62016-05-11 18:21:59 +0000805 if (DstGV->getSection() != SrcGV->getSection()) {
Rafael Espindolacaabe222015-12-10 14:19:35 +0000806 emitError(
807 "Appending variables with different section name need to be linked!");
808 return nullptr;
809 }
810 }
811
Rafael Espindolacaabe222015-12-10 14:19:35 +0000812 SmallVector<Constant *, 16> SrcElements;
813 getArrayElements(SrcGV->getInitializer(), SrcElements);
814
815 if (IsNewStructor)
816 SrcElements.erase(
817 std::remove_if(SrcElements.begin(), SrcElements.end(),
818 [this](Constant *E) {
819 auto *Key = dyn_cast<GlobalValue>(
820 E->getAggregateElement(2)->stripPointerCasts());
821 if (!Key)
822 return false;
823 GlobalValue *DGV = getLinkedToGlobal(Key);
824 return !shouldLink(DGV, *Key);
825 }),
826 SrcElements.end());
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000827 uint64_t NewSize = DstNumElements + SrcElements.size();
Rafael Espindolacaabe222015-12-10 14:19:35 +0000828 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
829
830 // Create the new global variable.
831 GlobalVariable *NG = new GlobalVariable(
832 DstM, NewType, SrcGV->isConstant(), SrcGV->getLinkage(),
833 /*init*/ nullptr, /*name*/ "", DstGV, SrcGV->getThreadLocalMode(),
834 SrcGV->getType()->getAddressSpace());
835
836 NG->copyAttributesFrom(SrcGV);
837 forceRenaming(NG, SrcGV->getName());
838
839 Constant *Ret = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
840
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000841 Mapper.scheduleMapAppendingVariable(*NG,
842 DstGV ? DstGV->getInitializer() : nullptr,
843 IsOldStructor, SrcElements);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000844
845 // Replace any uses of the two global variables with uses of the new
846 // global.
847 if (DstGV) {
848 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
849 DstGV->eraseFromParent();
850 }
851
852 return Ret;
853}
854
Rafael Espindolacaabe222015-12-10 14:19:35 +0000855bool IRLinker::shouldLink(GlobalValue *DGV, GlobalValue &SGV) {
856 if (ValuesToLink.count(&SGV))
857 return true;
858
859 if (SGV.hasLocalLinkage())
860 return true;
861
Rafael Espindola55a7ae52016-01-20 22:38:23 +0000862 if (DGV && !DGV->isDeclarationForLinker())
Rafael Espindolacaabe222015-12-10 14:19:35 +0000863 return false;
864
865 if (SGV.hasAvailableExternallyLinkage())
866 return true;
867
Rafael Espindola15ca14c2016-04-21 14:56:33 +0000868 if (SGV.isDeclaration())
Rafael Espindolacaabe222015-12-10 14:19:35 +0000869 return false;
870
Rafael Espindola15ca14c2016-04-21 14:56:33 +0000871 if (DoneLinkingBodies)
872 return false;
Mehdi Amini33661072016-03-11 22:19:06 +0000873
874 // Callback to the client to give a chance to lazily add the Global to the
875 // list of value to link.
876 bool LazilyAdded = false;
877 AddLazyFor(SGV, [this, &LazilyAdded](GlobalValue &GV) {
878 maybeAdd(&GV);
879 LazilyAdded = true;
880 });
881 return LazilyAdded;
Rafael Espindolacaabe222015-12-10 14:19:35 +0000882}
883
884Constant *IRLinker::linkGlobalValueProto(GlobalValue *SGV, bool ForAlias) {
885 GlobalValue *DGV = getLinkedToGlobal(SGV);
886
887 bool ShouldLink = shouldLink(DGV, *SGV);
888
889 // just missing from map
890 if (ShouldLink) {
891 auto I = ValueMap.find(SGV);
892 if (I != ValueMap.end())
893 return cast<Constant>(I->second);
894
895 I = AliasValueMap.find(SGV);
896 if (I != AliasValueMap.end())
897 return cast<Constant>(I->second);
898 }
899
Mehdi Amini33661072016-03-11 22:19:06 +0000900 if (!ShouldLink && ForAlias)
901 DGV = nullptr;
Rafael Espindolacaabe222015-12-10 14:19:35 +0000902
903 // Handle the ultra special appending linkage case first.
904 assert(!DGV || SGV->hasAppendingLinkage() == DGV->hasAppendingLinkage());
905 if (SGV->hasAppendingLinkage())
906 return linkAppendingVarProto(cast_or_null<GlobalVariable>(DGV),
907 cast<GlobalVariable>(SGV));
908
909 GlobalValue *NewGV;
Rafael Espindola55a7ae52016-01-20 22:38:23 +0000910 if (DGV && !ShouldLink) {
Rafael Espindolacaabe222015-12-10 14:19:35 +0000911 NewGV = DGV;
912 } else {
913 // If we are done linking global value bodies (i.e. we are performing
914 // metadata linking), don't link in the global value due to this
915 // reference, simply map it to null.
916 if (DoneLinkingBodies)
917 return nullptr;
918
919 NewGV = copyGlobalValueProto(SGV, ShouldLink);
Evgeniy Stepanov9fb70f52016-01-20 22:05:50 +0000920 if (ShouldLink || !ForAlias)
Rafael Espindolacaabe222015-12-10 14:19:35 +0000921 forceRenaming(NewGV, SGV->getName());
922 }
923 if (ShouldLink || ForAlias) {
924 if (const Comdat *SC = SGV->getComdat()) {
925 if (auto *GO = dyn_cast<GlobalObject>(NewGV)) {
926 Comdat *DC = DstM.getOrInsertComdat(SC->getName());
927 DC->setSelectionKind(SC->getSelectionKind());
928 GO->setComdat(DC);
929 }
930 }
931 }
932
933 if (!ShouldLink && ForAlias)
934 NewGV->setLinkage(GlobalValue::InternalLinkage);
935
936 Constant *C = NewGV;
937 if (DGV)
938 C = ConstantExpr::getBitCast(NewGV, TypeMap.get(SGV->getType()));
939
940 if (DGV && NewGV != DGV) {
941 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType()));
942 DGV->eraseFromParent();
943 }
944
945 return C;
946}
947
948/// Update the initializers in the Dest module now that all globals that may be
949/// referenced are in Dest.
950void IRLinker::linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src) {
951 // Figure out what the initializer looks like in the dest module.
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000952 Mapper.scheduleMapGlobalInitializer(Dst, *Src.getInitializer());
Rafael Espindolacaabe222015-12-10 14:19:35 +0000953}
954
955/// Copy the source function over into the dest function and fix up references
956/// to values. At this point we know that Dest is an external function, and
957/// that Src is not.
958bool IRLinker::linkFunctionBody(Function &Dst, Function &Src) {
959 assert(Dst.isDeclaration() && !Src.isDeclaration());
960
961 // Materialize if needed.
962 if (std::error_code EC = Src.materialize())
963 return emitError(EC.message());
964
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000965 // Link in the operands without remapping.
Rafael Espindolacaabe222015-12-10 14:19:35 +0000966 if (Src.hasPrefixData())
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000967 Dst.setPrefixData(Src.getPrefixData());
Rafael Espindolacaabe222015-12-10 14:19:35 +0000968 if (Src.hasPrologueData())
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000969 Dst.setPrologueData(Src.getPrologueData());
Rafael Espindolacaabe222015-12-10 14:19:35 +0000970 if (Src.hasPersonalityFn())
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000971 Dst.setPersonalityFn(Src.getPersonalityFn());
Rafael Espindolacaabe222015-12-10 14:19:35 +0000972
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000973 // Copy over the metadata attachments without remapping.
Rafael Espindolacaabe222015-12-10 14:19:35 +0000974 SmallVector<std::pair<unsigned, MDNode *>, 8> MDs;
975 Src.getAllMetadata(MDs);
976 for (const auto &I : MDs)
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000977 Dst.setMetadata(I.first, I.second);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000978
Duncan P. N. Exon Smithbdfc9842016-04-06 06:38:15 +0000979 // Steal arguments and splice the body of Src into Dst.
980 Dst.stealArgumentListFrom(Src);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000981 Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList());
982
Duncan P. N. Exon Smithbb2c3e12016-04-08 19:26:32 +0000983 // Everything has been moved over. Remap it.
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000984 Mapper.scheduleRemapFunction(Dst);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000985 return false;
986}
987
988void IRLinker::linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src) {
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +0000989 Mapper.scheduleMapGlobalAliasee(Dst, *Src.getAliasee(), AliasMCID);
Rafael Espindolacaabe222015-12-10 14:19:35 +0000990}
991
992bool IRLinker::linkGlobalValueBody(GlobalValue &Dst, GlobalValue &Src) {
993 if (auto *F = dyn_cast<Function>(&Src))
994 return linkFunctionBody(cast<Function>(Dst), *F);
995 if (auto *GVar = dyn_cast<GlobalVariable>(&Src)) {
996 linkGlobalInit(cast<GlobalVariable>(Dst), *GVar);
997 return false;
998 }
999 linkAliasBody(cast<GlobalAlias>(Dst), cast<GlobalAlias>(Src));
1000 return false;
1001}
1002
1003/// Insert all of the named MDNodes in Src into the Dest module.
1004void IRLinker::linkNamedMDNodes() {
Rafael Espindola40358fb2016-02-16 18:50:12 +00001005 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1006 for (const NamedMDNode &NMD : SrcM->named_metadata()) {
Rafael Espindolacaabe222015-12-10 14:19:35 +00001007 // Don't link module flags here. Do them separately.
1008 if (&NMD == SrcModFlags)
1009 continue;
1010 NamedMDNode *DestNMD = DstM.getOrInsertNamedMetadata(NMD.getName());
1011 // Add Src elements into Dest node.
Duncan P. N. Exon Smith8a15dab2016-04-15 23:32:44 +00001012 for (const MDNode *Op : NMD.operands())
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001013 DestNMD->addOperand(Mapper.mapMDNode(*Op));
Rafael Espindolacaabe222015-12-10 14:19:35 +00001014 }
1015}
1016
1017/// Merge the linker flags in Src into the Dest module.
1018bool IRLinker::linkModuleFlagsMetadata() {
1019 // If the source module has no module flags, we are done.
Rafael Espindola40358fb2016-02-16 18:50:12 +00001020 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Rafael Espindolacaabe222015-12-10 14:19:35 +00001021 if (!SrcModFlags)
1022 return false;
1023
1024 // If the destination module doesn't have module flags yet, then just copy
1025 // over the source module's flags.
1026 NamedMDNode *DstModFlags = DstM.getOrInsertModuleFlagsMetadata();
1027 if (DstModFlags->getNumOperands() == 0) {
1028 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1029 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1030
1031 return false;
1032 }
1033
1034 // First build a map of the existing module flags and requirements.
1035 DenseMap<MDString *, std::pair<MDNode *, unsigned>> Flags;
1036 SmallSetVector<MDNode *, 16> Requirements;
1037 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
1038 MDNode *Op = DstModFlags->getOperand(I);
1039 ConstantInt *Behavior = mdconst::extract<ConstantInt>(Op->getOperand(0));
1040 MDString *ID = cast<MDString>(Op->getOperand(1));
1041
1042 if (Behavior->getZExtValue() == Module::Require) {
1043 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1044 } else {
1045 Flags[ID] = std::make_pair(Op, I);
1046 }
1047 }
1048
1049 // Merge in the flags from the source module, and also collect its set of
1050 // requirements.
1051 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
1052 MDNode *SrcOp = SrcModFlags->getOperand(I);
1053 ConstantInt *SrcBehavior =
1054 mdconst::extract<ConstantInt>(SrcOp->getOperand(0));
1055 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1056 MDNode *DstOp;
1057 unsigned DstIndex;
1058 std::tie(DstOp, DstIndex) = Flags.lookup(ID);
1059 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
1060
1061 // If this is a requirement, add it and continue.
1062 if (SrcBehaviorValue == Module::Require) {
1063 // If the destination module does not already have this requirement, add
1064 // it.
1065 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1066 DstModFlags->addOperand(SrcOp);
1067 }
1068 continue;
1069 }
1070
1071 // If there is no existing flag with this ID, just add it.
1072 if (!DstOp) {
1073 Flags[ID] = std::make_pair(SrcOp, DstModFlags->getNumOperands());
1074 DstModFlags->addOperand(SrcOp);
1075 continue;
1076 }
1077
1078 // Otherwise, perform a merge.
1079 ConstantInt *DstBehavior =
1080 mdconst::extract<ConstantInt>(DstOp->getOperand(0));
1081 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1082
1083 // If either flag has override behavior, handle it first.
1084 if (DstBehaviorValue == Module::Override) {
1085 // Diagnose inconsistent flags which both have override behavior.
1086 if (SrcBehaviorValue == Module::Override &&
1087 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1088 emitError("linking module flags '" + ID->getString() +
1089 "': IDs have conflicting override values");
1090 }
1091 continue;
1092 } else if (SrcBehaviorValue == Module::Override) {
1093 // Update the destination flag to that of the source.
1094 DstModFlags->setOperand(DstIndex, SrcOp);
1095 Flags[ID].first = SrcOp;
1096 continue;
1097 }
1098
1099 // Diagnose inconsistent merge behavior types.
1100 if (SrcBehaviorValue != DstBehaviorValue) {
1101 emitError("linking module flags '" + ID->getString() +
1102 "': IDs have conflicting behaviors");
1103 continue;
1104 }
1105
1106 auto replaceDstValue = [&](MDNode *New) {
1107 Metadata *FlagOps[] = {DstOp->getOperand(0), ID, New};
1108 MDNode *Flag = MDNode::get(DstM.getContext(), FlagOps);
1109 DstModFlags->setOperand(DstIndex, Flag);
1110 Flags[ID].first = Flag;
1111 };
1112
1113 // Perform the merge for standard behavior types.
1114 switch (SrcBehaviorValue) {
1115 case Module::Require:
1116 case Module::Override:
1117 llvm_unreachable("not possible");
1118 case Module::Error: {
1119 // Emit an error if the values differ.
1120 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1121 emitError("linking module flags '" + ID->getString() +
1122 "': IDs have conflicting values");
1123 }
1124 continue;
1125 }
1126 case Module::Warning: {
1127 // Emit a warning if the values differ.
1128 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1129 emitWarning("linking module flags '" + ID->getString() +
1130 "': IDs have conflicting values");
1131 }
1132 continue;
1133 }
1134 case Module::Append: {
1135 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1136 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1137 SmallVector<Metadata *, 8> MDs;
1138 MDs.reserve(DstValue->getNumOperands() + SrcValue->getNumOperands());
1139 MDs.append(DstValue->op_begin(), DstValue->op_end());
1140 MDs.append(SrcValue->op_begin(), SrcValue->op_end());
1141
1142 replaceDstValue(MDNode::get(DstM.getContext(), MDs));
1143 break;
1144 }
1145 case Module::AppendUnique: {
1146 SmallSetVector<Metadata *, 16> Elts;
1147 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1148 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1149 Elts.insert(DstValue->op_begin(), DstValue->op_end());
1150 Elts.insert(SrcValue->op_begin(), SrcValue->op_end());
1151
1152 replaceDstValue(MDNode::get(DstM.getContext(),
1153 makeArrayRef(Elts.begin(), Elts.end())));
1154 break;
1155 }
1156 }
1157 }
1158
1159 // Check all of the requirements.
1160 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1161 MDNode *Requirement = Requirements[I];
1162 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1163 Metadata *ReqValue = Requirement->getOperand(1);
1164
1165 MDNode *Op = Flags[Flag].first;
1166 if (!Op || Op->getOperand(2) != ReqValue) {
1167 emitError("linking module flags '" + Flag->getString() +
1168 "': does not have the required value");
1169 continue;
1170 }
1171 }
1172
1173 return HasError;
1174}
1175
1176// This function returns true if the triples match.
1177static bool triplesMatch(const Triple &T0, const Triple &T1) {
1178 // If vendor is apple, ignore the version number.
1179 if (T0.getVendor() == Triple::Apple)
1180 return T0.getArch() == T1.getArch() && T0.getSubArch() == T1.getSubArch() &&
1181 T0.getVendor() == T1.getVendor() && T0.getOS() == T1.getOS();
1182
1183 return T0 == T1;
1184}
1185
1186// This function returns the merged triple.
1187static std::string mergeTriples(const Triple &SrcTriple,
1188 const Triple &DstTriple) {
1189 // If vendor is apple, pick the triple with the larger version number.
1190 if (SrcTriple.getVendor() == Triple::Apple)
1191 if (DstTriple.isOSVersionLT(SrcTriple))
1192 return SrcTriple.str();
1193
1194 return DstTriple.str();
1195}
1196
1197bool IRLinker::run() {
Teresa Johnson0556e222016-03-10 18:47:03 +00001198 // Ensure metadata materialized before value mapping.
Teresa Johnsonb703c772016-03-29 18:24:19 +00001199 if (SrcM->getMaterializer() && SrcM->getMaterializer()->materializeMetadata())
Teresa Johnson0556e222016-03-10 18:47:03 +00001200 return true;
1201
Rafael Espindolacaabe222015-12-10 14:19:35 +00001202 // Inherit the target data from the source module if the destination module
1203 // doesn't have one already.
1204 if (DstM.getDataLayout().isDefault())
Rafael Espindola40358fb2016-02-16 18:50:12 +00001205 DstM.setDataLayout(SrcM->getDataLayout());
Rafael Espindolacaabe222015-12-10 14:19:35 +00001206
Rafael Espindola40358fb2016-02-16 18:50:12 +00001207 if (SrcM->getDataLayout() != DstM.getDataLayout()) {
Rafael Espindolacaabe222015-12-10 14:19:35 +00001208 emitWarning("Linking two modules of different data layouts: '" +
Rafael Espindola40358fb2016-02-16 18:50:12 +00001209 SrcM->getModuleIdentifier() + "' is '" +
1210 SrcM->getDataLayoutStr() + "' whereas '" +
Rafael Espindolacaabe222015-12-10 14:19:35 +00001211 DstM.getModuleIdentifier() + "' is '" +
1212 DstM.getDataLayoutStr() + "'\n");
1213 }
1214
1215 // Copy the target triple from the source to dest if the dest's is empty.
Rafael Espindola40358fb2016-02-16 18:50:12 +00001216 if (DstM.getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1217 DstM.setTargetTriple(SrcM->getTargetTriple());
Rafael Espindolacaabe222015-12-10 14:19:35 +00001218
Rafael Espindola40358fb2016-02-16 18:50:12 +00001219 Triple SrcTriple(SrcM->getTargetTriple()), DstTriple(DstM.getTargetTriple());
Rafael Espindolacaabe222015-12-10 14:19:35 +00001220
Rafael Espindola40358fb2016-02-16 18:50:12 +00001221 if (!SrcM->getTargetTriple().empty() && !triplesMatch(SrcTriple, DstTriple))
Rafael Espindolacaabe222015-12-10 14:19:35 +00001222 emitWarning("Linking two modules of different target triples: " +
Rafael Espindola40358fb2016-02-16 18:50:12 +00001223 SrcM->getModuleIdentifier() + "' is '" +
1224 SrcM->getTargetTriple() + "' whereas '" +
1225 DstM.getModuleIdentifier() + "' is '" + DstM.getTargetTriple() +
1226 "'\n");
Rafael Espindolacaabe222015-12-10 14:19:35 +00001227
1228 DstM.setTargetTriple(mergeTriples(SrcTriple, DstTriple));
1229
1230 // Append the module inline asm string.
Rafael Espindola40358fb2016-02-16 18:50:12 +00001231 if (!SrcM->getModuleInlineAsm().empty()) {
Rafael Espindolacaabe222015-12-10 14:19:35 +00001232 if (DstM.getModuleInlineAsm().empty())
Rafael Espindola40358fb2016-02-16 18:50:12 +00001233 DstM.setModuleInlineAsm(SrcM->getModuleInlineAsm());
Rafael Espindolacaabe222015-12-10 14:19:35 +00001234 else
1235 DstM.setModuleInlineAsm(DstM.getModuleInlineAsm() + "\n" +
Rafael Espindola40358fb2016-02-16 18:50:12 +00001236 SrcM->getModuleInlineAsm());
Rafael Espindolacaabe222015-12-10 14:19:35 +00001237 }
1238
1239 // Loop over all of the linked values to compute type mappings.
1240 computeTypeMapping();
1241
1242 std::reverse(Worklist.begin(), Worklist.end());
1243 while (!Worklist.empty()) {
1244 GlobalValue *GV = Worklist.back();
1245 Worklist.pop_back();
1246
1247 // Already mapped.
1248 if (ValueMap.find(GV) != ValueMap.end() ||
1249 AliasValueMap.find(GV) != AliasValueMap.end())
1250 continue;
1251
1252 assert(!GV->isDeclaration());
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001253 Mapper.mapValue(*GV);
Rafael Espindolacaabe222015-12-10 14:19:35 +00001254 if (HasError)
1255 return true;
1256 }
1257
1258 // Note that we are done linking global value bodies. This prevents
1259 // metadata linking from creating new references.
1260 DoneLinkingBodies = true;
Duncan P. N. Exon Smith39423b02016-04-16 02:29:55 +00001261 Mapper.addFlags(RF_NullMapMissingGlobalValues);
Rafael Espindolacaabe222015-12-10 14:19:35 +00001262
1263 // Remap all of the named MDNodes in Src into the DstM module. We do this
1264 // after linking GlobalValues so that MDNodes that reference GlobalValues
1265 // are properly remapped.
Teresa Johnsonb703c772016-03-29 18:24:19 +00001266 linkNamedMDNodes();
Rafael Espindolacaabe222015-12-10 14:19:35 +00001267
Teresa Johnsonb703c772016-03-29 18:24:19 +00001268 // Merge the module flags into the DstM module.
1269 if (linkModuleFlagsMetadata())
1270 return true;
Rafael Espindolacaabe222015-12-10 14:19:35 +00001271
1272 return false;
1273}
1274
1275IRMover::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P)
1276 : ETypes(E), IsPacked(P) {}
1277
1278IRMover::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST)
1279 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
1280
1281bool IRMover::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const {
1282 if (IsPacked != That.IsPacked)
1283 return false;
1284 if (ETypes != That.ETypes)
1285 return false;
1286 return true;
1287}
1288
1289bool IRMover::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const {
1290 return !this->operator==(That);
1291}
1292
1293StructType *IRMover::StructTypeKeyInfo::getEmptyKey() {
1294 return DenseMapInfo<StructType *>::getEmptyKey();
1295}
1296
1297StructType *IRMover::StructTypeKeyInfo::getTombstoneKey() {
1298 return DenseMapInfo<StructType *>::getTombstoneKey();
1299}
1300
1301unsigned IRMover::StructTypeKeyInfo::getHashValue(const KeyTy &Key) {
1302 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
1303 Key.IsPacked);
1304}
1305
1306unsigned IRMover::StructTypeKeyInfo::getHashValue(const StructType *ST) {
1307 return getHashValue(KeyTy(ST));
1308}
1309
1310bool IRMover::StructTypeKeyInfo::isEqual(const KeyTy &LHS,
1311 const StructType *RHS) {
1312 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
1313 return false;
1314 return LHS == KeyTy(RHS);
1315}
1316
1317bool IRMover::StructTypeKeyInfo::isEqual(const StructType *LHS,
1318 const StructType *RHS) {
1319 if (RHS == getEmptyKey())
1320 return LHS == getEmptyKey();
1321
1322 if (RHS == getTombstoneKey())
1323 return LHS == getTombstoneKey();
1324
1325 return KeyTy(LHS) == KeyTy(RHS);
1326}
1327
1328void IRMover::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) {
1329 assert(!Ty->isOpaque());
1330 NonOpaqueStructTypes.insert(Ty);
1331}
1332
1333void IRMover::IdentifiedStructTypeSet::switchToNonOpaque(StructType *Ty) {
1334 assert(!Ty->isOpaque());
1335 NonOpaqueStructTypes.insert(Ty);
1336 bool Removed = OpaqueStructTypes.erase(Ty);
1337 (void)Removed;
1338 assert(Removed);
1339}
1340
1341void IRMover::IdentifiedStructTypeSet::addOpaque(StructType *Ty) {
1342 assert(Ty->isOpaque());
1343 OpaqueStructTypes.insert(Ty);
1344}
1345
1346StructType *
1347IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes,
1348 bool IsPacked) {
1349 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked);
1350 auto I = NonOpaqueStructTypes.find_as(Key);
1351 if (I == NonOpaqueStructTypes.end())
1352 return nullptr;
1353 return *I;
1354}
1355
1356bool IRMover::IdentifiedStructTypeSet::hasType(StructType *Ty) {
1357 if (Ty->isOpaque())
1358 return OpaqueStructTypes.count(Ty);
1359 auto I = NonOpaqueStructTypes.find(Ty);
1360 if (I == NonOpaqueStructTypes.end())
1361 return false;
1362 return *I == Ty;
1363}
1364
Rafael Espindola9d2bfc42015-12-14 23:17:03 +00001365IRMover::IRMover(Module &M) : Composite(M) {
Rafael Espindolacaabe222015-12-10 14:19:35 +00001366 TypeFinder StructTypes;
1367 StructTypes.run(M, true);
1368 for (StructType *Ty : StructTypes) {
1369 if (Ty->isOpaque())
1370 IdentifiedStructTypes.addOpaque(Ty);
1371 else
1372 IdentifiedStructTypes.addNonOpaque(Ty);
1373 }
1374}
1375
1376bool IRMover::move(
Rafael Espindola40358fb2016-02-16 18:50:12 +00001377 std::unique_ptr<Module> Src, ArrayRef<GlobalValue *> ValuesToLink,
Teresa Johnsonb703c772016-03-29 18:24:19 +00001378 std::function<void(GlobalValue &, ValueAdder Add)> AddLazyFor) {
Duncan P. N. Exon Smith565a0aa2016-04-17 23:30:31 +00001379 IRLinker TheIRLinker(Composite, SharedMDs, IdentifiedStructTypes,
1380 std::move(Src), ValuesToLink, AddLazyFor);
Teresa Johnsonbef54362015-12-18 19:28:59 +00001381 bool RetCode = TheIRLinker.run();
Rafael Espindolacaabe222015-12-10 14:19:35 +00001382 Composite.dropTriviallyDeadConstantArrays();
1383 return RetCode;
1384}