blob: 03ebd2a441bc36679ea272c8765b8cebc5a284d6 [file] [log] [blame]
Mikhail Glushenkovc834bbf2009-03-03 10:04:23 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner52f7e902001-10-13 07:03:50 +00009//
10// This file implements the LLVM module linker.
11//
Chris Lattner52f7e902001-10-13 07:03:50 +000012//===----------------------------------------------------------------------===//
13
Reid Spencer7cc371a2004-11-14 23:27:04 +000014#include "llvm/Linker.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000015#include "llvm/Constants.h"
16#include "llvm/DerivedTypes.h"
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +000017#include "llvm/Instructions.h"
Chris Lattner5c377c52001-10-14 23:29:15 +000018#include "llvm/Module.h"
Bill Wendlingd34cb1e2012-02-11 11:38:06 +000019#include "llvm/ADT/DenseSet.h"
Rafael Espindola3ed88152012-01-05 23:02:01 +000020#include "llvm/ADT/Optional.h"
Bill Wendlingd34cb1e2012-02-11 11:38:06 +000021#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/SmallPtrSet.h"
Bill Wendlingcd7193f2012-03-22 20:28:27 +000023#include "llvm/Support/Debug.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000024#include "llvm/Support/Path.h"
Bill Wendlingcd7193f2012-03-22 20:28:27 +000025#include "llvm/Support/raw_ostream.h"
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +000026#include "llvm/Transforms/Utils/Cloning.h"
Dan Gohman05ea54e2010-08-24 18:50:07 +000027#include "llvm/Transforms/Utils/ValueMapper.h"
Duncan Sands0aaf2f62012-03-03 09:36:58 +000028#include <cctype>
Chris Lattnerf7703df2004-01-09 06:12:26 +000029using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000030
Chris Lattner1afcace2011-07-09 17:41:24 +000031//===----------------------------------------------------------------------===//
32// TypeMap implementation.
33//===----------------------------------------------------------------------===//
Chris Lattner5c377c52001-10-14 23:29:15 +000034
Chris Lattner62a81a12008-06-16 21:00:18 +000035namespace {
Chris Lattner1afcace2011-07-09 17:41:24 +000036class TypeMapTy : public ValueMapTypeRemapper {
37 /// MappedTypes - This is a mapping from a source type to a destination type
38 /// to use.
39 DenseMap<Type*, Type*> MappedTypes;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000040
Chris Lattner1afcace2011-07-09 17:41:24 +000041 /// SpeculativeTypes - When checking to see if two subgraphs are isomorphic,
42 /// we speculatively add types to MappedTypes, but keep track of them here in
43 /// case we need to roll back.
44 SmallVector<Type*, 16> SpeculativeTypes;
45
Chris Lattner68910502011-12-20 00:03:52 +000046 /// SrcDefinitionsToResolve - This is a list of non-opaque structs in the
47 /// source module that are mapped to an opaque struct in the destination
48 /// module.
49 SmallVector<StructType*, 16> SrcDefinitionsToResolve;
50
51 /// DstResolvedOpaqueTypes - This is the set of opaque types in the
52 /// destination modules who are getting a body from the source module.
53 SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes;
Chris Lattnerfc196f92008-06-16 23:06:51 +000054public:
Bill Wendling601c0942012-02-28 04:01:21 +000055
Chris Lattner1afcace2011-07-09 17:41:24 +000056 /// addTypeMapping - Indicate that the specified type in the destination
57 /// module is conceptually equivalent to the specified type in the source
58 /// module.
59 void addTypeMapping(Type *DstTy, Type *SrcTy);
60
61 /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
62 /// module from a type definition in the source module.
63 void linkDefinedTypeBodies();
64
65 /// get - Return the mapped type to use for the specified input type from the
66 /// source module.
67 Type *get(Type *SrcTy);
68
69 FunctionType *get(FunctionType *T) {return cast<FunctionType>(get((Type*)T));}
70
Bill Wendlingcd7193f2012-03-22 20:28:27 +000071#ifndef NDEBUG
72 /// dump - Dump out the type map for debugging purposes.
73 void dump() const {
74 for (DenseMap<Type*, Type*>::const_iterator
75 I = MappedTypes.begin(), E = MappedTypes.end(); I != E; ++I) {
76 dbgs() << "TypeMap: ";
77 I->first->dump();
78 dbgs() << " => ";
79 I->second->dump();
80 dbgs() << '\n';
81 }
82 }
83#endif
84
Chris Lattner1afcace2011-07-09 17:41:24 +000085private:
86 Type *getImpl(Type *T);
87 /// remapType - Implement the ValueMapTypeRemapper interface.
88 Type *remapType(Type *SrcTy) {
89 return get(SrcTy);
Chris Lattner62a81a12008-06-16 21:00:18 +000090 }
Chris Lattner1afcace2011-07-09 17:41:24 +000091
92 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattner62a81a12008-06-16 21:00:18 +000093};
94}
95
Chris Lattner1afcace2011-07-09 17:41:24 +000096void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
97 Type *&Entry = MappedTypes[SrcTy];
98 if (Entry) return;
99
100 if (DstTy == SrcTy) {
101 Entry = DstTy;
102 return;
103 }
Bill Wendling601c0942012-02-28 04:01:21 +0000104
Chris Lattner1afcace2011-07-09 17:41:24 +0000105 // Check to see if these types are recursively isomorphic and establish a
106 // mapping between them if so.
Bill Wendling601c0942012-02-28 04:01:21 +0000107 if (!areTypesIsomorphic(DstTy, SrcTy)) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000108 // Oops, they aren't isomorphic. Just discard this request by rolling out
109 // any speculative mappings we've established.
110 for (unsigned i = 0, e = SpeculativeTypes.size(); i != e; ++i)
111 MappedTypes.erase(SpeculativeTypes[i]);
Bill Wendling601c0942012-02-28 04:01:21 +0000112 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000113 SpeculativeTypes.clear();
114}
Chris Lattner62a81a12008-06-16 21:00:18 +0000115
Chris Lattner1afcace2011-07-09 17:41:24 +0000116/// areTypesIsomorphic - Recursively walk this pair of types, returning true
117/// if they are isomorphic, false if they are not.
118bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
119 // Two types with differing kinds are clearly not isomorphic.
120 if (DstTy->getTypeID() != SrcTy->getTypeID()) return false;
Misha Brukmanf976c852005-04-21 22:55:34 +0000121
Chris Lattner1afcace2011-07-09 17:41:24 +0000122 // If we have an entry in the MappedTypes table, then we have our answer.
123 Type *&Entry = MappedTypes[SrcTy];
124 if (Entry)
125 return Entry == DstTy;
Misha Brukmanf976c852005-04-21 22:55:34 +0000126
Chris Lattner1afcace2011-07-09 17:41:24 +0000127 // Two identical types are clearly isomorphic. Remember this
128 // non-speculatively.
129 if (DstTy == SrcTy) {
130 Entry = DstTy;
Chris Lattner56539652008-06-16 20:03:01 +0000131 return true;
Chris Lattner1afcace2011-07-09 17:41:24 +0000132 }
Bill Wendling601c0942012-02-28 04:01:21 +0000133
Chris Lattner1afcace2011-07-09 17:41:24 +0000134 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000135
Chris Lattner1afcace2011-07-09 17:41:24 +0000136 // If this is an opaque struct type, special case it.
137 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
138 // Mapping an opaque type to any struct, just keep the dest struct.
139 if (SSTy->isOpaque()) {
140 Entry = DstTy;
141 SpeculativeTypes.push_back(SrcTy);
Chris Lattner43f4ba82003-08-22 19:12:55 +0000142 return true;
Chris Lattnera4477f92008-06-16 21:17:12 +0000143 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000144
Chris Lattner68910502011-12-20 00:03:52 +0000145 // Mapping a non-opaque source type to an opaque dest. If this is the first
146 // type that we're mapping onto this destination type then we succeed. Keep
147 // the dest, but fill it in later. This doesn't need to be speculative. If
148 // this is the second (different) type that we're trying to map onto the
149 // same opaque type then we fail.
Chris Lattner1afcace2011-07-09 17:41:24 +0000150 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner68910502011-12-20 00:03:52 +0000151 // We can only map one source type onto the opaque destination type.
152 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)))
153 return false;
154 SrcDefinitionsToResolve.push_back(SSTy);
Chris Lattner1afcace2011-07-09 17:41:24 +0000155 Entry = DstTy;
Chris Lattner1afcace2011-07-09 17:41:24 +0000156 return true;
157 }
158 }
159
160 // If the number of subtypes disagree between the two types, then we fail.
161 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
Chris Lattnere76c57a2003-08-22 06:07:12 +0000162 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +0000163
164 // Fail if any of the extra properties (e.g. array size) of the type disagree.
165 if (isa<IntegerType>(DstTy))
166 return false; // bitwidth disagrees.
167 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
168 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
169 return false;
Chris Lattner1a31f3b2011-12-20 23:14:57 +0000170
Chris Lattner1afcace2011-07-09 17:41:24 +0000171 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
172 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
173 return false;
174 } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) {
175 StructType *SSTy = cast<StructType>(SrcTy);
Chris Lattner1bcbf852011-08-12 18:07:26 +0000176 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000177 DSTy->isPacked() != SSTy->isPacked())
178 return false;
179 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
180 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
181 return false;
182 } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
183 if (DVTy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
184 return false;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000185 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000186
187 // Otherwise, we speculate that these two types will line up and recursively
188 // check the subelements.
189 Entry = DstTy;
190 SpeculativeTypes.push_back(SrcTy);
191
Bill Wendling601c0942012-02-28 04:01:21 +0000192 for (unsigned i = 0, e = SrcTy->getNumContainedTypes(); i != e; ++i)
193 if (!areTypesIsomorphic(DstTy->getContainedType(i),
194 SrcTy->getContainedType(i)))
Chris Lattner1afcace2011-07-09 17:41:24 +0000195 return false;
196
197 // If everything seems to have lined up, then everything is great.
198 return true;
199}
200
201/// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
202/// module from a type definition in the source module.
203void TypeMapTy::linkDefinedTypeBodies() {
204 SmallVector<Type*, 16> Elements;
205 SmallString<16> TmpName;
206
207 // Note that processing entries in this loop (calling 'get') can add new
Chris Lattner68910502011-12-20 00:03:52 +0000208 // entries to the SrcDefinitionsToResolve vector.
209 while (!SrcDefinitionsToResolve.empty()) {
210 StructType *SrcSTy = SrcDefinitionsToResolve.pop_back_val();
Chris Lattner1afcace2011-07-09 17:41:24 +0000211 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
212
213 // TypeMap is a many-to-one mapping, if there were multiple types that
214 // provide a body for DstSTy then previous iterations of this loop may have
215 // already handled it. Just ignore this case.
216 if (!DstSTy->isOpaque()) continue;
217 assert(!SrcSTy->isOpaque() && "Not resolving a definition?");
218
219 // Map the body of the source type over to a new body for the dest type.
220 Elements.resize(SrcSTy->getNumElements());
221 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
222 Elements[i] = getImpl(SrcSTy->getElementType(i));
223
224 DstSTy->setBody(Elements, SrcSTy->isPacked());
225
226 // If DstSTy has no name or has a longer name than STy, then viciously steal
227 // STy's name.
228 if (!SrcSTy->hasName()) continue;
229 StringRef SrcName = SrcSTy->getName();
230
231 if (!DstSTy->hasName() || DstSTy->getName().size() > SrcName.size()) {
232 TmpName.insert(TmpName.end(), SrcName.begin(), SrcName.end());
233 SrcSTy->setName("");
234 DstSTy->setName(TmpName.str());
235 TmpName.clear();
236 }
237 }
Chris Lattner68910502011-12-20 00:03:52 +0000238
239 DstResolvedOpaqueTypes.clear();
Chris Lattner1afcace2011-07-09 17:41:24 +0000240}
241
Bill Wendling601c0942012-02-28 04:01:21 +0000242
Chris Lattner1afcace2011-07-09 17:41:24 +0000243/// get - Return the mapped type to use for the specified input type from the
244/// source module.
245Type *TypeMapTy::get(Type *Ty) {
246 Type *Result = getImpl(Ty);
247
248 // If this caused a reference to any struct type, resolve it before returning.
Chris Lattner68910502011-12-20 00:03:52 +0000249 if (!SrcDefinitionsToResolve.empty())
Chris Lattner1afcace2011-07-09 17:41:24 +0000250 linkDefinedTypeBodies();
251 return Result;
252}
253
254/// getImpl - This is the recursive version of get().
255Type *TypeMapTy::getImpl(Type *Ty) {
256 // If we already have an entry for this type, return it.
257 Type **Entry = &MappedTypes[Ty];
258 if (*Entry) return *Entry;
Bill Wendling601c0942012-02-28 04:01:21 +0000259
Chris Lattner1afcace2011-07-09 17:41:24 +0000260 // If this is not a named struct type, then just map all of the elements and
261 // then rebuild the type from inside out.
Chris Lattner1bcbf852011-08-12 18:07:26 +0000262 if (!isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral()) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000263 // If there are no element types to map, then the type is itself. This is
264 // true for the anonymous {} struct, things like 'float', integers, etc.
265 if (Ty->getNumContainedTypes() == 0)
266 return *Entry = Ty;
267
268 // Remap all of the elements, keeping track of whether any of them change.
269 bool AnyChange = false;
270 SmallVector<Type*, 4> ElementTypes;
271 ElementTypes.resize(Ty->getNumContainedTypes());
272 for (unsigned i = 0, e = Ty->getNumContainedTypes(); i != e; ++i) {
273 ElementTypes[i] = getImpl(Ty->getContainedType(i));
274 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
275 }
276
277 // If we found our type while recursively processing stuff, just use it.
278 Entry = &MappedTypes[Ty];
279 if (*Entry) return *Entry;
280
281 // If all of the element types mapped directly over, then the type is usable
282 // as-is.
283 if (!AnyChange)
284 return *Entry = Ty;
285
286 // Otherwise, rebuild a modified type.
287 switch (Ty->getTypeID()) {
Craig Topper85814382012-02-07 05:05:23 +0000288 default: llvm_unreachable("unknown derived type to remap");
Chris Lattner1afcace2011-07-09 17:41:24 +0000289 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],
Frits van Bommel39b5abf2011-07-18 12:00:32 +0000300 makeArrayRef(ElementTypes).slice(1),
Chris Lattner1afcace2011-07-09 17:41:24 +0000301 cast<FunctionType>(Ty)->isVarArg());
302 case Type::StructTyID:
303 // Note that this is only reached for anonymous structs.
304 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
305 cast<StructType>(Ty)->isPacked());
306 }
307 }
308
309 // Otherwise, this is an unmapped named struct. If the struct can be directly
310 // mapped over, just use it as-is. This happens in a case when the linked-in
311 // module has something like:
312 // %T = type {%T*, i32}
313 // @GV = global %T* null
314 // where T does not exist at all in the destination module.
315 //
316 // The other case we watch for is when the type is not in the destination
317 // module, but that it has to be rebuilt because it refers to something that
318 // is already mapped. For example, if the destination module has:
319 // %A = type { i32 }
320 // and the source module has something like
321 // %A' = type { i32 }
322 // %B = type { %A'* }
323 // @GV = global %B* null
324 // then we want to create a new type: "%B = type { %A*}" and have it take the
325 // pristine "%B" name from the source module.
326 //
327 // To determine which case this is, we have to recursively walk the type graph
328 // speculating that we'll be able to reuse it unmodified. Only if this is
329 // safe would we map the entire thing over. Because this is an optimization,
330 // and is not required for the prettiness of the linked module, we just skip
331 // it and always rebuild a type here.
332 StructType *STy = cast<StructType>(Ty);
333
334 // If the type is opaque, we can just use it directly.
335 if (STy->isOpaque())
336 return *Entry = STy;
Bill Wendling601c0942012-02-28 04:01:21 +0000337
Chris Lattner1afcace2011-07-09 17:41:24 +0000338 // Otherwise we create a new type and resolve its body later. This will be
339 // resolved by the top level of get().
Chris Lattner68910502011-12-20 00:03:52 +0000340 SrcDefinitionsToResolve.push_back(STy);
341 StructType *DTy = StructType::create(STy->getContext());
342 DstResolvedOpaqueTypes.insert(DTy);
343 return *Entry = DTy;
Chris Lattner1afcace2011-07-09 17:41:24 +0000344}
345
Bill Wendling601c0942012-02-28 04:01:21 +0000346
347
Chris Lattner1afcace2011-07-09 17:41:24 +0000348//===----------------------------------------------------------------------===//
349// ModuleLinker implementation.
350//===----------------------------------------------------------------------===//
351
352namespace {
353 /// ModuleLinker - This is an implementation class for the LinkModules
354 /// function, which is the entrypoint for this file.
355 class ModuleLinker {
356 Module *DstM, *SrcM;
357
358 TypeMapTy TypeMap;
359
360 /// ValueMap - Mapping of values from what they used to be in Src, to what
361 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
362 /// some overhead due to the use of Value handles which the Linker doesn't
363 /// actually need, but this allows us to reuse the ValueMapper code.
364 ValueToValueMapTy ValueMap;
365
366 struct AppendingVarInfo {
367 GlobalVariable *NewGV; // New aggregate global in dest module.
368 Constant *DstInit; // Old initializer from dest module.
369 Constant *SrcInit; // Old initializer from src module.
370 };
371
372 std::vector<AppendingVarInfo> AppendingVars;
373
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000374 unsigned Mode; // Mode to treat source module.
375
376 // Set of items not to link in from source.
377 SmallPtrSet<const Value*, 16> DoNotLinkFromSource;
378
Tanya Lattner9af37a32011-11-02 00:24:56 +0000379 // Vector of functions to lazily link in.
380 std::vector<Function*> LazilyLinkFunctions;
381
Chris Lattner1afcace2011-07-09 17:41:24 +0000382 public:
383 std::string ErrorMsg;
384
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000385 ModuleLinker(Module *dstM, Module *srcM, unsigned mode)
386 : DstM(dstM), SrcM(srcM), Mode(mode) { }
Chris Lattner1afcace2011-07-09 17:41:24 +0000387
388 bool run();
389
390 private:
391 /// emitError - Helper method for setting a message and returning an error
392 /// code.
393 bool emitError(const Twine &Message) {
394 ErrorMsg = Message.str();
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000395 return true;
Chris Lattnera4477f92008-06-16 21:17:12 +0000396 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000397
398 /// getLinkageResult - This analyzes the two global values and determines
399 /// what the result will look like in the destination module.
400 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola3ed88152012-01-05 23:02:01 +0000401 GlobalValue::LinkageTypes &LT,
402 GlobalValue::VisibilityTypes &Vis,
403 bool &LinkFromSrc);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000404
Chris Lattner1afcace2011-07-09 17:41:24 +0000405 /// getLinkedToGlobal - Given a global in the source module, return the
406 /// global in the destination module that is being linked to, if any.
407 GlobalValue *getLinkedToGlobal(GlobalValue *SrcGV) {
408 // If the source has no name it can't link. If it has local linkage,
409 // there is no name match-up going on.
410 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
411 return 0;
Bill Wendling601c0942012-02-28 04:01:21 +0000412
Chris Lattner1afcace2011-07-09 17:41:24 +0000413 // Otherwise see if we have a match in the destination module's symtab.
414 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
415 if (DGV == 0) return 0;
Bill Wendling601c0942012-02-28 04:01:21 +0000416
Chris Lattner1afcace2011-07-09 17:41:24 +0000417 // If we found a global with the same name in the dest module, but it has
418 // internal linkage, we are really not doing any linkage here.
419 if (DGV->hasLocalLinkage())
420 return 0;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000421
Chris Lattner1afcace2011-07-09 17:41:24 +0000422 // Otherwise, we do in fact link to the destination global.
423 return DGV;
424 }
425
426 void computeTypeMapping();
Bill Wendlingd34cb1e2012-02-11 11:38:06 +0000427 bool categorizeModuleFlagNodes(const NamedMDNode *ModFlags,
428 DenseMap<MDString*, MDNode*> &ErrorNode,
429 DenseMap<MDString*, MDNode*> &WarningNode,
430 DenseMap<MDString*, MDNode*> &OverrideNode,
431 DenseMap<MDString*,
432 SmallSetVector<MDNode*, 8> > &RequireNodes,
433 SmallSetVector<MDString*, 16> &SeenIDs);
Chris Lattner1afcace2011-07-09 17:41:24 +0000434
435 bool linkAppendingVarProto(GlobalVariable *DstGV, GlobalVariable *SrcGV);
436 bool linkGlobalProto(GlobalVariable *SrcGV);
437 bool linkFunctionProto(Function *SrcF);
438 bool linkAliasProto(GlobalAlias *SrcA);
Bill Wendlingd34cb1e2012-02-11 11:38:06 +0000439 bool linkModuleFlagsMetadata();
Chris Lattner1afcace2011-07-09 17:41:24 +0000440
441 void linkAppendingVarInit(const AppendingVarInfo &AVI);
442 void linkGlobalInits();
443 void linkFunctionBody(Function *Dst, Function *Src);
444 void linkAliasBodies();
445 void linkNamedMDNodes();
446 };
Bill Wendling601c0942012-02-28 04:01:21 +0000447}
448
Chris Lattner1afcace2011-07-09 17:41:24 +0000449/// forceRenaming - The LLVM SymbolTable class autorenames globals that conflict
Reid Spencer8bef0372007-02-04 04:29:21 +0000450/// in the symbol table. This is good for all clients except for us. Go
451/// through the trouble to force this back.
Chris Lattner1afcace2011-07-09 17:41:24 +0000452static void forceRenaming(GlobalValue *GV, StringRef Name) {
453 // If the global doesn't force its name or if it already has the right name,
454 // there is nothing for us to do.
455 if (GV->hasLocalLinkage() || GV->getName() == Name)
456 return;
457
458 Module *M = GV->getParent();
Chris Lattnerc0036282004-08-04 07:05:54 +0000459
460 // If there is a conflict, rename the conflict.
Chris Lattner1afcace2011-07-09 17:41:24 +0000461 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner33f29492007-02-11 00:39:38 +0000462 GV->takeName(ConflictGV);
463 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattner1afcace2011-07-09 17:41:24 +0000464 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner33f29492007-02-11 00:39:38 +0000465 } else {
466 GV->setName(Name); // Force the name back
Reid Spenceref9b9a72007-02-05 20:47:22 +0000467 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000468}
Reid Spencer8bef0372007-02-04 04:29:21 +0000469
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000470/// copyGVAttributes - copy additional attributes (those not needed to construct
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000471/// a GlobalValue) from the SrcGV to the DestGV.
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000472static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sands28c3cff2008-05-26 19:58:59 +0000473 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
474 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
475 DestGV->copyAttributesFrom(SrcGV);
476 DestGV->setAlignment(Alignment);
Chris Lattner1afcace2011-07-09 17:41:24 +0000477
478 forceRenaming(DestGV, SrcGV->getName());
Chris Lattnerc0036282004-08-04 07:05:54 +0000479}
480
Rafael Espindola3ed88152012-01-05 23:02:01 +0000481static bool isLessConstraining(GlobalValue::VisibilityTypes a,
482 GlobalValue::VisibilityTypes b) {
483 if (a == GlobalValue::HiddenVisibility)
484 return false;
485 if (b == GlobalValue::HiddenVisibility)
486 return true;
487 if (a == GlobalValue::ProtectedVisibility)
488 return false;
489 if (b == GlobalValue::ProtectedVisibility)
490 return true;
491 return false;
492}
493
Chris Lattner1afcace2011-07-09 17:41:24 +0000494/// getLinkageResult - This analyzes the two global values and determines what
Chris Lattneraee38ea2004-12-03 22:18:41 +0000495/// the result will look like in the destination module. In particular, it
Rafael Espindola3ed88152012-01-05 23:02:01 +0000496/// computes the resultant linkage type and visibility, computes whether the
497/// global in the source should be copied over to the destination (replacing
498/// the existing one), and computes whether this linkage is an error or not.
Chris Lattner1afcace2011-07-09 17:41:24 +0000499bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola3ed88152012-01-05 23:02:01 +0000500 GlobalValue::LinkageTypes &LT,
501 GlobalValue::VisibilityTypes &Vis,
Chris Lattner1afcace2011-07-09 17:41:24 +0000502 bool &LinkFromSrc) {
503 assert(Dest && "Must have two globals being queried");
504 assert(!Src->hasLocalLinkage() &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000505 "If Src has internal linkage, Dest shouldn't be set!");
Chris Lattner1afcace2011-07-09 17:41:24 +0000506
Peter Collingbourne88953162011-10-30 17:46:34 +0000507 bool SrcIsDeclaration = Src->isDeclaration() && !Src->isMaterializable();
Chris Lattnerf84c59d2011-07-14 20:23:05 +0000508 bool DestIsDeclaration = Dest->isDeclaration();
Chris Lattner1afcace2011-07-09 17:41:24 +0000509
510 if (SrcIsDeclaration) {
Anton Korobeynikov2b48ef02008-03-10 22:33:22 +0000511 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattneraee38ea2004-12-03 22:18:41 +0000512 // external globals, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000513 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000514 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Chris Lattner1afcace2011-07-09 17:41:24 +0000515 if (DestIsDeclaration) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000516 LinkFromSrc = true;
517 LT = Src->getLinkage();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000518 }
Andrew Lenharth8753c442006-12-15 17:35:32 +0000519 } else if (Dest->hasExternalWeakLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000520 // If the Dest is weak, use the source linkage.
Andrew Lenharth8753c442006-12-15 17:35:32 +0000521 LinkFromSrc = true;
522 LT = Src->getLinkage();
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000523 } else {
524 LinkFromSrc = false;
525 LT = Dest->getLinkage();
526 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000527 } else if (DestIsDeclaration && !Dest->hasDLLImportLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000528 // If Dest is external but Src is not:
529 LinkFromSrc = true;
530 LT = Src->getLinkage();
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000531 } else if (Src->isWeakForLinker()) {
Dale Johannesenaafce772008-05-14 20:12:51 +0000532 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
533 // or DLL* linkage.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000534 if (Dest->hasExternalWeakLinkage() ||
535 Dest->hasAvailableExternallyLinkage() ||
536 (Dest->hasLinkOnceLinkage() &&
537 (Src->hasWeakLinkage() || Src->hasCommonLinkage()))) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000538 LinkFromSrc = true;
539 LT = Src->getLinkage();
540 } else {
541 LinkFromSrc = false;
542 LT = Dest->getLinkage();
543 }
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000544 } else if (Dest->isWeakForLinker()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000545 // At this point we know that Src has External* or DLL* linkage.
546 if (Src->hasExternalWeakLinkage()) {
547 LinkFromSrc = false;
548 LT = Dest->getLinkage();
549 } else {
550 LinkFromSrc = true;
551 LT = GlobalValue::ExternalLinkage;
552 }
Chris Lattneraee38ea2004-12-03 22:18:41 +0000553 } else {
Chris Lattner1afcace2011-07-09 17:41:24 +0000554 assert((Dest->hasExternalLinkage() || Dest->hasDLLImportLinkage() ||
555 Dest->hasDLLExportLinkage() || Dest->hasExternalWeakLinkage()) &&
556 (Src->hasExternalLinkage() || Src->hasDLLImportLinkage() ||
557 Src->hasDLLExportLinkage() || Src->hasExternalWeakLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000558 "Unexpected linkage type!");
Chris Lattner1afcace2011-07-09 17:41:24 +0000559 return emitError("Linking globals named '" + Src->getName() +
Chris Lattneraee38ea2004-12-03 22:18:41 +0000560 "': symbol multiply defined!");
561 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000562
Rafael Espindola3ed88152012-01-05 23:02:01 +0000563 // Compute the visibility. We follow the rules in the System V Application
564 // Binary Interface.
565 Vis = isLessConstraining(Src->getVisibility(), Dest->getVisibility()) ?
566 Dest->getVisibility() : Src->getVisibility();
Chris Lattneraee38ea2004-12-03 22:18:41 +0000567 return false;
568}
Chris Lattner5c377c52001-10-14 23:29:15 +0000569
Chris Lattner1afcace2011-07-09 17:41:24 +0000570/// computeTypeMapping - Loop over all of the linked values to compute type
571/// mappings. For example, if we link "extern Foo *x" and "Foo *x = NULL", then
572/// we have two struct types 'Foo' but one got renamed when the module was
573/// loaded into the same LLVMContext.
574void ModuleLinker::computeTypeMapping() {
575 // Incorporate globals.
576 for (Module::global_iterator I = SrcM->global_begin(),
577 E = SrcM->global_end(); I != E; ++I) {
578 GlobalValue *DGV = getLinkedToGlobal(I);
579 if (DGV == 0) continue;
580
581 if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) {
582 TypeMap.addTypeMapping(DGV->getType(), I->getType());
583 continue;
584 }
585
586 // Unify the element type of appending arrays.
587 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
588 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
589 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patelab67e702009-08-11 18:01:24 +0000590 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000591
592 // Incorporate functions.
593 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
594 if (GlobalValue *DGV = getLinkedToGlobal(I))
595 TypeMap.addTypeMapping(DGV->getType(), I->getType());
596 }
Bill Wendlingc68d1272012-02-27 22:34:19 +0000597
Bill Wendling601c0942012-02-28 04:01:21 +0000598 // Incorporate types by name, scanning all the types in the source module.
599 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling348e5e72012-02-27 23:48:30 +0000600 // example. When the source module got loaded into the same LLVMContext, if
601 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling601c0942012-02-28 04:01:21 +0000602 // Though it isn't required for correctness, attempt to link these up to clean
603 // up the IR.
Bill Wendling348e5e72012-02-27 23:48:30 +0000604 std::vector<StructType*> SrcStructTypes;
605 SrcM->findUsedStructTypes(SrcStructTypes);
606
607 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
608 SrcStructTypes.end());
609
610 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
611 StructType *ST = SrcStructTypes[i];
612 if (!ST->hasName()) continue;
613
614 // Check to see if there is a dot in the name followed by a digit.
Bill Wendling601c0942012-02-28 04:01:21 +0000615 size_t DotPos = ST->getName().rfind('.');
616 if (DotPos == 0 || DotPos == StringRef::npos ||
617 ST->getName().back() == '.' || !isdigit(ST->getName()[DotPos+1]))
618 continue;
Bill Wendling348e5e72012-02-27 23:48:30 +0000619
620 // Check to see if the destination module has a struct with the prefix name.
Bill Wendling601c0942012-02-28 04:01:21 +0000621 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling348e5e72012-02-27 23:48:30 +0000622 // Don't use it if this actually came from the source module. They're in
623 // the same LLVMContext after all.
624 if (!SrcStructTypesSet.count(DST))
625 TypeMap.addTypeMapping(DST, ST);
626 }
627
Chris Lattner1afcace2011-07-09 17:41:24 +0000628 // Don't bother incorporating aliases, they aren't generally typed well.
Bill Wendling601c0942012-02-28 04:01:21 +0000629
Chris Lattner1afcace2011-07-09 17:41:24 +0000630 // Now that we have discovered all of the type equivalences, get a body for
631 // any 'opaque' types in the dest module that are now resolved.
632 TypeMap.linkDefinedTypeBodies();
Devang Patelab67e702009-08-11 18:01:24 +0000633}
634
Chris Lattner1afcace2011-07-09 17:41:24 +0000635/// linkAppendingVarProto - If there were any appending global variables, link
636/// them together now. Return true on error.
637bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
638 GlobalVariable *SrcGV) {
Bill Wendling601c0942012-02-28 04:01:21 +0000639
Chris Lattner1afcace2011-07-09 17:41:24 +0000640 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
641 return emitError("Linking globals named '" + SrcGV->getName() +
642 "': can only link appending global with another appending global!");
643
644 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
645 ArrayType *SrcTy =
646 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
647 Type *EltTy = DstTy->getElementType();
648
649 // Check to see that they two arrays agree on type.
650 if (EltTy != SrcTy->getElementType())
651 return emitError("Appending variables with different element types!");
652 if (DstGV->isConstant() != SrcGV->isConstant())
653 return emitError("Appending variables linked with different const'ness!");
654
655 if (DstGV->getAlignment() != SrcGV->getAlignment())
656 return emitError(
657 "Appending variables with different alignment need to be linked!");
658
659 if (DstGV->getVisibility() != SrcGV->getVisibility())
660 return emitError(
661 "Appending variables with different visibility need to be linked!");
662
663 if (DstGV->getSection() != SrcGV->getSection())
664 return emitError(
665 "Appending variables with different section name need to be linked!");
666
667 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
668 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
669
670 // Create the new global variable.
671 GlobalVariable *NG =
672 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
673 DstGV->getLinkage(), /*init*/0, /*name*/"", DstGV,
674 DstGV->isThreadLocal(),
675 DstGV->getType()->getAddressSpace());
676
677 // Propagate alignment, visibility and section info.
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000678 copyGVAttributes(NG, DstGV);
Chris Lattner1afcace2011-07-09 17:41:24 +0000679
680 AppendingVarInfo AVI;
681 AVI.NewGV = NG;
682 AVI.DstInit = DstGV->getInitializer();
683 AVI.SrcInit = SrcGV->getInitializer();
684 AppendingVars.push_back(AVI);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000685
Chris Lattner1afcace2011-07-09 17:41:24 +0000686 // Replace any uses of the two global variables with uses of the new
687 // global.
688 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000689
Chris Lattner1afcace2011-07-09 17:41:24 +0000690 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
691 DstGV->eraseFromParent();
692
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000693 // Track the source variable so we don't try to link it.
694 DoNotLinkFromSource.insert(SrcGV);
695
Chris Lattner1afcace2011-07-09 17:41:24 +0000696 return false;
697}
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000698
Chris Lattner1afcace2011-07-09 17:41:24 +0000699/// linkGlobalProto - Loop through the global variables in the src module and
700/// merge them into the dest module.
701bool ModuleLinker::linkGlobalProto(GlobalVariable *SGV) {
702 GlobalValue *DGV = getLinkedToGlobal(SGV);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000703 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000704
Chris Lattner1afcace2011-07-09 17:41:24 +0000705 if (DGV) {
706 // Concatenation of appending linkage variables is magic and handled later.
707 if (DGV->hasAppendingLinkage() || SGV->hasAppendingLinkage())
708 return linkAppendingVarProto(cast<GlobalVariable>(DGV), SGV);
709
710 // Determine whether linkage of these two globals follows the source
711 // module's definition or the destination module's definition.
Chris Lattnerb324bd72006-11-09 05:18:12 +0000712 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000713 GlobalValue::VisibilityTypes NV;
Chris Lattnerb324bd72006-11-09 05:18:12 +0000714 bool LinkFromSrc = false;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000715 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
Chris Lattneraee38ea2004-12-03 22:18:41 +0000716 return true;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000717 NewVisibility = NV;
Chris Lattner0fec08e2003-04-21 21:07:05 +0000718
Chris Lattner1afcace2011-07-09 17:41:24 +0000719 // If we're not linking from the source, then keep the definition that we
720 // have.
721 if (!LinkFromSrc) {
722 // Special case for const propagation.
723 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV))
724 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
725 DGVar->setConstant(true);
726
Rafael Espindola3ed88152012-01-05 23:02:01 +0000727 // Set calculated linkage and visibility.
Chris Lattner1afcace2011-07-09 17:41:24 +0000728 DGV->setLinkage(NewLinkage);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000729 DGV->setVisibility(*NewVisibility);
730
Chris Lattner6157e382008-07-14 07:23:24 +0000731 // Make sure to remember this mapping.
Chris Lattner1afcace2011-07-09 17:41:24 +0000732 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
733
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000734 // Track the source global so that we don't attempt to copy it over when
735 // processing global initializers.
736 DoNotLinkFromSource.insert(SGV);
737
Chris Lattner1afcace2011-07-09 17:41:24 +0000738 return false;
Chris Lattner6157e382008-07-14 07:23:24 +0000739 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000740 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000741
742 // No linking to be performed or linking from the source: simply create an
743 // identical version of the symbol over in the dest module... the
744 // initializer will be filled in later by LinkGlobalInits.
745 GlobalVariable *NewDGV =
746 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
747 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
748 SGV->getName(), /*insertbefore*/0,
749 SGV->isThreadLocal(),
750 SGV->getType()->getAddressSpace());
751 // Propagate alignment, visibility and section info.
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000752 copyGVAttributes(NewDGV, SGV);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000753 if (NewVisibility)
754 NewDGV->setVisibility(*NewVisibility);
Chris Lattner1afcace2011-07-09 17:41:24 +0000755
756 if (DGV) {
757 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType()));
758 DGV->eraseFromParent();
759 }
760
761 // Make sure to remember this mapping.
762 ValueMap[SGV] = NewDGV;
Chris Lattner5c377c52001-10-14 23:29:15 +0000763 return false;
764}
765
Chris Lattner1afcace2011-07-09 17:41:24 +0000766/// linkFunctionProto - Link the function in the source module into the
767/// destination module if needed, setting up mapping information.
768bool ModuleLinker::linkFunctionProto(Function *SF) {
769 GlobalValue *DGV = getLinkedToGlobal(SF);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000770 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Chris Lattner1afcace2011-07-09 17:41:24 +0000771
772 if (DGV) {
773 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
774 bool LinkFromSrc = false;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000775 GlobalValue::VisibilityTypes NV;
776 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
Chris Lattner1afcace2011-07-09 17:41:24 +0000777 return true;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000778 NewVisibility = NV;
779
Chris Lattner1afcace2011-07-09 17:41:24 +0000780 if (!LinkFromSrc) {
781 // Set calculated linkage
782 DGV->setLinkage(NewLinkage);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000783 DGV->setVisibility(*NewVisibility);
784
Chris Lattner1afcace2011-07-09 17:41:24 +0000785 // Make sure to remember this mapping.
786 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
787
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000788 // Track the function from the source module so we don't attempt to remap
789 // it.
790 DoNotLinkFromSource.insert(SF);
791
Chris Lattner1afcace2011-07-09 17:41:24 +0000792 return false;
793 }
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000794 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000795
796 // If there is no linkage to be performed or we are linking from the source,
797 // bring SF over.
798 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()),
799 SF->getLinkage(), SF->getName(), DstM);
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000800 copyGVAttributes(NewDF, SF);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000801 if (NewVisibility)
802 NewDF->setVisibility(*NewVisibility);
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000803
Chris Lattner1afcace2011-07-09 17:41:24 +0000804 if (DGV) {
805 // Any uses of DF need to change to NewDF, with cast.
806 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType()));
807 DGV->eraseFromParent();
Tanya Lattner9af37a32011-11-02 00:24:56 +0000808 } else {
809 // Internal, LO_ODR, or LO linkage - stick in set to ignore and lazily link.
810 if (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
811 SF->hasAvailableExternallyLinkage()) {
812 DoNotLinkFromSource.insert(SF);
813 LazilyLinkFunctions.push_back(SF);
814 }
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000815 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000816
817 ValueMap[SF] = NewDF;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000818 return false;
819}
820
Chris Lattner1afcace2011-07-09 17:41:24 +0000821/// LinkAliasProto - Set up prototypes for any aliases that come over from the
822/// source module.
823bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) {
824 GlobalValue *DGV = getLinkedToGlobal(SGA);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000825 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
826
Chris Lattner1afcace2011-07-09 17:41:24 +0000827 if (DGV) {
828 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000829 GlobalValue::VisibilityTypes NV;
Chris Lattner1afcace2011-07-09 17:41:24 +0000830 bool LinkFromSrc = false;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000831 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
Chris Lattner1afcace2011-07-09 17:41:24 +0000832 return true;
Rafael Espindola3ed88152012-01-05 23:02:01 +0000833 NewVisibility = NV;
834
Chris Lattner1afcace2011-07-09 17:41:24 +0000835 if (!LinkFromSrc) {
836 // Set calculated linkage.
837 DGV->setLinkage(NewLinkage);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000838 DGV->setVisibility(*NewVisibility);
839
Chris Lattner1afcace2011-07-09 17:41:24 +0000840 // Make sure to remember this mapping.
841 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
842
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000843 // Track the alias from the source module so we don't attempt to remap it.
844 DoNotLinkFromSource.insert(SGA);
845
Chris Lattner1afcace2011-07-09 17:41:24 +0000846 return false;
847 }
848 }
849
850 // If there is no linkage to be performed or we're linking from the source,
851 // bring over SGA.
852 GlobalAlias *NewDA = new GlobalAlias(TypeMap.get(SGA->getType()),
853 SGA->getLinkage(), SGA->getName(),
854 /*aliasee*/0, DstM);
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000855 copyGVAttributes(NewDA, SGA);
Rafael Espindola3ed88152012-01-05 23:02:01 +0000856 if (NewVisibility)
857 NewDA->setVisibility(*NewVisibility);
Chris Lattner5c377c52001-10-14 23:29:15 +0000858
Chris Lattner1afcace2011-07-09 17:41:24 +0000859 if (DGV) {
860 // Any uses of DGV need to change to NewDA, with cast.
861 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDA, DGV->getType()));
862 DGV->eraseFromParent();
863 }
864
865 ValueMap[SGA] = NewDA;
866 return false;
867}
868
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000869static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) {
Chris Lattnera1f00f42012-01-25 06:48:06 +0000870 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
871
872 for (unsigned i = 0; i != NumElements; ++i)
873 Dest.push_back(C->getAggregateElement(i));
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000874}
875
Chris Lattner1afcace2011-07-09 17:41:24 +0000876void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
877 // Merge the initializer.
878 SmallVector<Constant*, 16> Elements;
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000879 getArrayElements(AVI.DstInit, Elements);
Chris Lattner1afcace2011-07-09 17:41:24 +0000880
881 Constant *SrcInit = MapValue(AVI.SrcInit, ValueMap, RF_None, &TypeMap);
Chris Lattner1ee0ecf2012-01-24 13:41:11 +0000882 getArrayElements(SrcInit, Elements);
883
Chris Lattner1afcace2011-07-09 17:41:24 +0000884 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
885 AVI.NewGV->setInitializer(ConstantArray::get(NewType, Elements));
886}
887
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000888/// linkGlobalInits - Update the initializers in the Dest module now that all
889/// globals that may be referenced are in Dest.
Chris Lattner1afcace2011-07-09 17:41:24 +0000890void ModuleLinker::linkGlobalInits() {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000891 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner1afcace2011-07-09 17:41:24 +0000892 for (Module::const_global_iterator I = SrcM->global_begin(),
893 E = SrcM->global_end(); I != E; ++I) {
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000894
895 // Only process initialized GV's or ones not already in dest.
896 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
Chris Lattner1afcace2011-07-09 17:41:24 +0000897
898 // Grab destination global variable.
899 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
900 // Figure out what the initializer looks like in the dest module.
901 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
902 RF_None, &TypeMap));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000903 }
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000904}
Chris Lattner5c377c52001-10-14 23:29:15 +0000905
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000906/// linkFunctionBody - Copy the source function over into the dest function and
907/// fix up references to values. At this point we know that Dest is an external
908/// function, and that Src is not.
Chris Lattner1afcace2011-07-09 17:41:24 +0000909void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
910 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Chris Lattner5c377c52001-10-14 23:29:15 +0000911
Chris Lattner0033baf2004-11-16 17:12:38 +0000912 // Go through and convert function arguments over, remembering the mapping.
Chris Lattner1afcace2011-07-09 17:41:24 +0000913 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000914 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000915 I != E; ++I, ++DI) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000916 DI->setName(I->getName()); // Copy the name over.
Chris Lattner5c377c52001-10-14 23:29:15 +0000917
Chris Lattner1afcace2011-07-09 17:41:24 +0000918 // Add a mapping to our mapping.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000919 ValueMap[I] = DI;
Chris Lattner5c377c52001-10-14 23:29:15 +0000920 }
921
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000922 if (Mode == Linker::DestroySource) {
923 // Splice the body of the source function into the dest function.
924 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
925
926 // At this point, all of the instructions and values of the function are now
927 // copied over. The only problem is that they are still referencing values in
928 // the Source function as operands. Loop through all of the operands of the
929 // functions and patch them up to point to the local versions.
930 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
931 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
932 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap);
933
934 } else {
935 // Clone the body of the function into the dest function.
936 SmallVector<ReturnInst*, 8> Returns; // Ignore returns.
Mon P Wangd24397a2011-12-23 02:18:32 +0000937 CloneFunctionInto(Dst, Src, ValueMap, false, Returns, "", NULL, &TypeMap);
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000938 }
939
Chris Lattner0033baf2004-11-16 17:12:38 +0000940 // There is no need to map the arguments anymore.
Chris Lattner11273152006-06-16 01:24:04 +0000941 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
942 I != E; ++I)
Reid Spenceref9b9a72007-02-05 20:47:22 +0000943 ValueMap.erase(I);
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000944
Chris Lattner5c377c52001-10-14 23:29:15 +0000945}
946
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000947/// linkAliasBodies - Insert all of the aliases in Src into the Dest module.
Chris Lattner1afcace2011-07-09 17:41:24 +0000948void ModuleLinker::linkAliasBodies() {
949 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000950 I != E; ++I) {
951 if (DoNotLinkFromSource.count(I))
952 continue;
Chris Lattner1afcace2011-07-09 17:41:24 +0000953 if (Constant *Aliasee = I->getAliasee()) {
954 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
955 DA->setAliasee(MapValue(Aliasee, ValueMap, RF_None, &TypeMap));
David Chisnall34722462010-01-09 16:27:31 +0000956 }
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000957 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000958}
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +0000959
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000960/// linkNamedMDNodes - Insert all of the named MDNodes in Src into the Dest
Chris Lattner1afcace2011-07-09 17:41:24 +0000961/// module.
962void ModuleLinker::linkNamedMDNodes() {
Bill Wendlingd34cb1e2012-02-11 11:38:06 +0000963 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattner1afcace2011-07-09 17:41:24 +0000964 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
965 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendlingd34cb1e2012-02-11 11:38:06 +0000966 // Don't link module flags here. Do them separately.
967 if (&*I == SrcModFlags) continue;
Chris Lattner1afcace2011-07-09 17:41:24 +0000968 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
969 // Add Src elements into Dest node.
970 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
971 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
972 RF_None, &TypeMap));
973 }
974}
Bill Wendlingd34cb1e2012-02-11 11:38:06 +0000975
Bill Wendlingcd7193f2012-03-22 20:28:27 +0000976/// categorizeModuleFlagNodes - Categorize the module flags according to their
977/// type: Error, Warning, Override, and Require.
Bill Wendlingd34cb1e2012-02-11 11:38:06 +0000978bool ModuleLinker::
979categorizeModuleFlagNodes(const NamedMDNode *ModFlags,
980 DenseMap<MDString*, MDNode*> &ErrorNode,
981 DenseMap<MDString*, MDNode*> &WarningNode,
982 DenseMap<MDString*, MDNode*> &OverrideNode,
983 DenseMap<MDString*,
984 SmallSetVector<MDNode*, 8> > &RequireNodes,
985 SmallSetVector<MDString*, 16> &SeenIDs) {
986 bool HasErr = false;
987
988 for (unsigned I = 0, E = ModFlags->getNumOperands(); I != E; ++I) {
989 MDNode *Op = ModFlags->getOperand(I);
990 assert(Op->getNumOperands() == 3 && "Invalid module flag metadata!");
991 assert(isa<ConstantInt>(Op->getOperand(0)) &&
992 "Module flag's first operand must be an integer!");
993 assert(isa<MDString>(Op->getOperand(1)) &&
994 "Module flag's second operand must be an MDString!");
995
996 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
997 MDString *ID = cast<MDString>(Op->getOperand(1));
998 Value *Val = Op->getOperand(2);
999 switch (Behavior->getZExtValue()) {
1000 default:
1001 assert(false && "Invalid behavior in module flag metadata!");
1002 break;
1003 case Module::Error: {
1004 MDNode *&ErrNode = ErrorNode[ID];
1005 if (!ErrNode) ErrNode = Op;
1006 if (ErrNode->getOperand(2) != Val)
Bill Wendling75b3d682012-02-14 09:13:54 +00001007 HasErr = emitError("linking module flags '" + ID->getString() +
1008 "': IDs have conflicting values");
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001009 break;
1010 }
1011 case Module::Warning: {
1012 MDNode *&WarnNode = WarningNode[ID];
1013 if (!WarnNode) WarnNode = Op;
1014 if (WarnNode->getOperand(2) != Val)
Bill Wendling75b3d682012-02-14 09:13:54 +00001015 errs() << "WARNING: linking module flags '" << ID->getString()
1016 << "': IDs have conflicting values";
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001017 break;
1018 }
1019 case Module::Require: RequireNodes[ID].insert(Op); break;
1020 case Module::Override: {
1021 MDNode *&OvrNode = OverrideNode[ID];
1022 if (!OvrNode) OvrNode = Op;
1023 if (OvrNode->getOperand(2) != Val)
Bill Wendling75b3d682012-02-14 09:13:54 +00001024 HasErr = emitError("linking module flags '" + ID->getString() +
1025 "': IDs have conflicting override values");
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001026 break;
1027 }
1028 }
1029
1030 SeenIDs.insert(ID);
1031 }
1032
1033 return HasErr;
1034}
1035
1036/// linkModuleFlagsMetadata - Merge the linker flags in Src into the Dest
1037/// module.
1038bool ModuleLinker::linkModuleFlagsMetadata() {
1039 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1040 if (!SrcModFlags) return false;
1041
1042 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
1043
1044 // If the destination module doesn't have module flags yet, then just copy
1045 // over the source module's flags.
1046 if (DstModFlags->getNumOperands() == 0) {
1047 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1048 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1049
1050 return false;
1051 }
1052
1053 bool HasErr = false;
1054
1055 // Otherwise, we have to merge them based on their behaviors. First,
1056 // categorize all of the nodes in the modules' module flags. If an error or
1057 // warning occurs, then emit the appropriate message(s).
1058 DenseMap<MDString*, MDNode*> ErrorNode;
1059 DenseMap<MDString*, MDNode*> WarningNode;
1060 DenseMap<MDString*, MDNode*> OverrideNode;
1061 DenseMap<MDString*, SmallSetVector<MDNode*, 8> > RequireNodes;
1062 SmallSetVector<MDString*, 16> SeenIDs;
1063
1064 HasErr |= categorizeModuleFlagNodes(SrcModFlags, ErrorNode, WarningNode,
1065 OverrideNode, RequireNodes, SeenIDs);
1066 HasErr |= categorizeModuleFlagNodes(DstModFlags, ErrorNode, WarningNode,
1067 OverrideNode, RequireNodes, SeenIDs);
1068
1069 // Check that there isn't both an error and warning node for a flag.
1070 for (SmallSetVector<MDString*, 16>::iterator
1071 I = SeenIDs.begin(), E = SeenIDs.end(); I != E; ++I) {
1072 MDString *ID = *I;
1073 if (ErrorNode[ID] && WarningNode[ID])
Bill Wendling75b3d682012-02-14 09:13:54 +00001074 HasErr = emitError("linking module flags '" + ID->getString() +
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001075 "': IDs have conflicting behaviors");
1076 }
1077
1078 // Early exit if we had an error.
1079 if (HasErr) return true;
1080
1081 // Get the destination's module flags ready for new operands.
1082 DstModFlags->dropAllReferences();
1083
1084 // Add all of the module flags to the destination module.
1085 DenseMap<MDString*, SmallVector<MDNode*, 4> > AddedNodes;
1086 for (SmallSetVector<MDString*, 16>::iterator
1087 I = SeenIDs.begin(), E = SeenIDs.end(); I != E; ++I) {
1088 MDString *ID = *I;
1089 if (OverrideNode[ID]) {
1090 DstModFlags->addOperand(OverrideNode[ID]);
1091 AddedNodes[ID].push_back(OverrideNode[ID]);
1092 } else if (ErrorNode[ID]) {
1093 DstModFlags->addOperand(ErrorNode[ID]);
1094 AddedNodes[ID].push_back(ErrorNode[ID]);
1095 } else if (WarningNode[ID]) {
1096 DstModFlags->addOperand(WarningNode[ID]);
1097 AddedNodes[ID].push_back(WarningNode[ID]);
1098 }
1099
1100 for (SmallSetVector<MDNode*, 8>::iterator
1101 II = RequireNodes[ID].begin(), IE = RequireNodes[ID].end();
1102 II != IE; ++II)
1103 DstModFlags->addOperand(*II);
1104 }
1105
1106 // Now check that all of the requirements have been satisfied.
1107 for (SmallSetVector<MDString*, 16>::iterator
1108 I = SeenIDs.begin(), E = SeenIDs.end(); I != E; ++I) {
1109 MDString *ID = *I;
1110 SmallSetVector<MDNode*, 8> &Set = RequireNodes[ID];
1111
1112 for (SmallSetVector<MDNode*, 8>::iterator
1113 II = Set.begin(), IE = Set.end(); II != IE; ++II) {
1114 MDNode *Node = *II;
1115 assert(isa<MDNode>(Node->getOperand(2)) &&
1116 "Module flag's third operand must be an MDNode!");
1117 MDNode *Val = cast<MDNode>(Node->getOperand(2));
1118
1119 MDString *ReqID = cast<MDString>(Val->getOperand(0));
1120 Value *ReqVal = Val->getOperand(1);
1121
1122 bool HasValue = false;
1123 for (SmallVectorImpl<MDNode*>::iterator
1124 RI = AddedNodes[ReqID].begin(), RE = AddedNodes[ReqID].end();
1125 RI != RE; ++RI) {
1126 MDNode *ReqNode = *RI;
1127 if (ReqNode->getOperand(2) == ReqVal) {
1128 HasValue = true;
1129 break;
1130 }
1131 }
1132
1133 if (!HasValue)
Bill Wendling75b3d682012-02-14 09:13:54 +00001134 HasErr = emitError("linking module flags '" + ReqID->getString() +
1135 "': does not have the required value");
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001136 }
1137 }
1138
1139 return HasErr;
1140}
Chris Lattner1afcace2011-07-09 17:41:24 +00001141
1142bool ModuleLinker::run() {
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001143 assert(DstM && "Null destination module");
1144 assert(SrcM && "Null source module");
Chris Lattner1afcace2011-07-09 17:41:24 +00001145
1146 // Inherit the target data from the source module if the destination module
1147 // doesn't have one already.
1148 if (DstM->getDataLayout().empty() && !SrcM->getDataLayout().empty())
1149 DstM->setDataLayout(SrcM->getDataLayout());
1150
1151 // Copy the target triple from the source to dest if the dest's is empty.
1152 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1153 DstM->setTargetTriple(SrcM->getTargetTriple());
1154
1155 if (!SrcM->getDataLayout().empty() && !DstM->getDataLayout().empty() &&
1156 SrcM->getDataLayout() != DstM->getDataLayout())
1157 errs() << "WARNING: Linking two modules of different data layouts!\n";
1158 if (!SrcM->getTargetTriple().empty() &&
1159 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
1160 errs() << "WARNING: Linking two modules of different target triples: ";
1161 if (!SrcM->getModuleIdentifier().empty())
1162 errs() << SrcM->getModuleIdentifier() << ": ";
1163 errs() << "'" << SrcM->getTargetTriple() << "' and '"
1164 << DstM->getTargetTriple() << "'\n";
1165 }
1166
1167 // Append the module inline asm string.
1168 if (!SrcM->getModuleInlineAsm().empty()) {
1169 if (DstM->getModuleInlineAsm().empty())
1170 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1171 else
1172 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1173 SrcM->getModuleInlineAsm());
1174 }
1175
1176 // Update the destination module's dependent libraries list with the libraries
1177 // from the source module. There's no opportunity for duplicates here as the
1178 // Module ensures that duplicate insertions are discarded.
1179 for (Module::lib_iterator SI = SrcM->lib_begin(), SE = SrcM->lib_end();
1180 SI != SE; ++SI)
1181 DstM->addLibrary(*SI);
1182
1183 // If the source library's module id is in the dependent library list of the
1184 // destination library, remove it since that module is now linked in.
1185 StringRef ModuleId = SrcM->getModuleIdentifier();
1186 if (!ModuleId.empty())
1187 DstM->removeLibrary(sys::path::stem(ModuleId));
Chris Lattner1afcace2011-07-09 17:41:24 +00001188
1189 // Loop over all of the linked values to compute type mappings.
1190 computeTypeMapping();
1191
1192 // Insert all of the globals in src into the DstM module... without linking
1193 // initializers (which could refer to functions not yet mapped over).
1194 for (Module::global_iterator I = SrcM->global_begin(),
1195 E = SrcM->global_end(); I != E; ++I)
1196 if (linkGlobalProto(I))
1197 return true;
1198
1199 // Link the functions together between the two modules, without doing function
1200 // bodies... this just adds external function prototypes to the DstM
1201 // function... We do this so that when we begin processing function bodies,
1202 // all of the global values that may be referenced are available in our
1203 // ValueMap.
1204 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
1205 if (linkFunctionProto(I))
1206 return true;
1207
1208 // If there were any aliases, link them now.
1209 for (Module::alias_iterator I = SrcM->alias_begin(),
1210 E = SrcM->alias_end(); I != E; ++I)
1211 if (linkAliasProto(I))
1212 return true;
1213
1214 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1215 linkAppendingVarInit(AppendingVars[i]);
1216
1217 // Update the initializers in the DstM module now that all globals that may
1218 // be referenced are in DstM.
1219 linkGlobalInits();
1220
1221 // Link in the function bodies that are defined in the source module into
1222 // DstM.
1223 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattner2b28a742011-10-14 22:17:46 +00001224 // Skip if not linking from source.
1225 if (DoNotLinkFromSource.count(SF)) continue;
1226
1227 // Skip if no body (function is external) or materialize.
1228 if (SF->isDeclaration()) {
1229 if (!SF->isMaterializable())
1230 continue;
1231 if (SF->Materialize(&ErrorMsg))
1232 return true;
1233 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001234
1235 linkFunctionBody(cast<Function>(ValueMap[SF]), SF);
1236 }
1237
1238 // Resolve all uses of aliases with aliasees.
1239 linkAliasBodies();
1240
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001241 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel211da8f2011-08-04 19:44:28 +00001242 // after linking GlobalValues so that MDNodes that reference GlobalValues
1243 // are properly remapped.
1244 linkNamedMDNodes();
1245
Bill Wendlingd34cb1e2012-02-11 11:38:06 +00001246 // Merge the module flags into the DstM module.
1247 if (linkModuleFlagsMetadata())
1248 return true;
1249
Tanya Lattner9af37a32011-11-02 00:24:56 +00001250 // Process vector of lazily linked in functions.
1251 bool LinkedInAnyFunctions;
1252 do {
1253 LinkedInAnyFunctions = false;
1254
1255 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
1256 E = LazilyLinkFunctions.end(); I != E; ++I) {
1257 if (!*I)
1258 continue;
1259
1260 Function *SF = *I;
1261 Function *DF = cast<Function>(ValueMap[SF]);
1262
1263 if (!DF->use_empty()) {
1264
1265 // Materialize if necessary.
1266 if (SF->isDeclaration()) {
1267 if (!SF->isMaterializable())
1268 continue;
1269 if (SF->Materialize(&ErrorMsg))
1270 return true;
1271 }
1272
1273 // Link in function body.
1274 linkFunctionBody(DF, SF);
1275
1276 // "Remove" from vector by setting the element to 0.
1277 *I = 0;
1278
1279 // Set flag to indicate we may have more functions to lazily link in
1280 // since we linked in a function.
1281 LinkedInAnyFunctions = true;
1282 }
1283 }
1284 } while (LinkedInAnyFunctions);
1285
1286 // Remove any prototypes of functions that were not actually linked in.
1287 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
1288 E = LazilyLinkFunctions.end(); I != E; ++I) {
1289 if (!*I)
1290 continue;
1291
1292 Function *SF = *I;
1293 Function *DF = cast<Function>(ValueMap[SF]);
1294 if (DF->use_empty())
1295 DF->eraseFromParent();
1296 }
1297
Chris Lattner1afcace2011-07-09 17:41:24 +00001298 // Now that all of the types from the source are used, resolve any structs
1299 // copied over to the dest that didn't exist there.
1300 TypeMap.linkDefinedTypeBodies();
1301
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001302 return false;
1303}
Chris Lattner52f7e902001-10-13 07:03:50 +00001304
Chris Lattner1afcace2011-07-09 17:41:24 +00001305//===----------------------------------------------------------------------===//
1306// LinkModules entrypoint.
1307//===----------------------------------------------------------------------===//
1308
Bill Wendlingcd7193f2012-03-22 20:28:27 +00001309/// LinkModules - This function links two modules together, with the resulting
1310/// left module modified to be the composite of the two input modules. If an
1311/// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
1312/// the problem. Upon failure, the Dest module could be in a modified state,
1313/// and shouldn't be relied on to be consistent.
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +00001314bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode,
1315 std::string *ErrorMsg) {
1316 ModuleLinker TheLinker(Dest, Src, Mode);
Chris Lattner1afcace2011-07-09 17:41:24 +00001317 if (TheLinker.run()) {
1318 if (ErrorMsg) *ErrorMsg = TheLinker.ErrorMsg;
Reid Spencer619f0242007-02-04 04:43:17 +00001319 return true;
Chris Lattner5a837de2004-08-04 07:44:58 +00001320 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001321
Chris Lattner52f7e902001-10-13 07:03:50 +00001322 return false;
1323}