blob: 1b4ef324d72b33c2b638e4839f29752fa2be8e0b [file] [log] [blame]
Mikhail Glushenkov59a5afa2009-03-03 10:04:23 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Reid Spencer361e5132004-11-12 20:37:43 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Reid Spencer361e5132004-11-12 20:37:43 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM module linker.
11//
Reid Spencer361e5132004-11-12 20:37:43 +000012//===----------------------------------------------------------------------===//
13
Reid Spencer9b0ddbb2004-11-14 23:27:04 +000014#include "llvm/Linker.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm-c/Linker.h"
Bill Wendling66f02412012-02-11 11:38:06 +000016#include "llvm/ADT/DenseSet.h"
Rafael Espindola23f8d642012-01-05 23:02:01 +000017#include "llvm/ADT/Optional.h"
Bill Wendling66f02412012-02-11 11:38:06 +000018#include "llvm/ADT/SetVector.h"
19#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Constants.h"
21#include "llvm/IR/DerivedTypes.h"
22#include "llvm/IR/Instructions.h"
23#include "llvm/IR/Module.h"
Chandler Carruthdcb603f2013-01-07 15:43:51 +000024#include "llvm/IR/TypeFinder.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000025#include "llvm/Support/Debug.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000026#include "llvm/Support/Path.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000027#include "llvm/Support/raw_ostream.h"
Tanya Lattnercbb91402011-10-11 00:24:54 +000028#include "llvm/Transforms/Utils/Cloning.h"
Dan Gohmana2095032010-08-24 18:50:07 +000029#include "llvm/Transforms/Utils/ValueMapper.h"
Duncan Sandsdf39b702012-03-03 09:36:58 +000030#include <cctype>
Reid Spencer361e5132004-11-12 20:37:43 +000031using namespace llvm;
32
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000033//===----------------------------------------------------------------------===//
34// TypeMap implementation.
35//===----------------------------------------------------------------------===//
Reid Spencer361e5132004-11-12 20:37:43 +000036
Chris Lattnereee6f992008-06-16 21:00:18 +000037namespace {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000038class TypeMapTy : public ValueMapTypeRemapper {
39 /// MappedTypes - This is a mapping from a source type to a destination type
40 /// to use.
41 DenseMap<Type*, Type*> MappedTypes;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +000042
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000043 /// SpeculativeTypes - When checking to see if two subgraphs are isomorphic,
44 /// we speculatively add types to MappedTypes, but keep track of them here in
45 /// case we need to roll back.
46 SmallVector<Type*, 16> SpeculativeTypes;
47
Chris Lattner5e3bd972011-12-20 00:03:52 +000048 /// SrcDefinitionsToResolve - This is a list of non-opaque structs in the
49 /// source module that are mapped to an opaque struct in the destination
50 /// module.
51 SmallVector<StructType*, 16> SrcDefinitionsToResolve;
52
53 /// DstResolvedOpaqueTypes - This is the set of opaque types in the
54 /// destination modules who are getting a body from the source module.
55 SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes;
Bill Wendling8c2cc412012-03-22 20:30:41 +000056
Chris Lattner56cdea62008-06-16 23:06:51 +000057public:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000058 /// addTypeMapping - Indicate that the specified type in the destination
59 /// module is conceptually equivalent to the specified type in the source
60 /// module.
61 void addTypeMapping(Type *DstTy, Type *SrcTy);
62
63 /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
64 /// module from a type definition in the source module.
65 void linkDefinedTypeBodies();
66
67 /// get - Return the mapped type to use for the specified input type from the
68 /// source module.
69 Type *get(Type *SrcTy);
70
71 FunctionType *get(FunctionType *T) {return cast<FunctionType>(get((Type*)T));}
72
Bill Wendlingb6af2f32012-03-22 20:28:27 +000073 /// dump - Dump out the type map for debugging purposes.
74 void dump() const {
75 for (DenseMap<Type*, Type*>::const_iterator
76 I = MappedTypes.begin(), E = MappedTypes.end(); I != E; ++I) {
77 dbgs() << "TypeMap: ";
78 I->first->dump();
79 dbgs() << " => ";
80 I->second->dump();
81 dbgs() << '\n';
82 }
83 }
Bill Wendlingb6af2f32012-03-22 20:28:27 +000084
Chris Lattnerb1ed91f2011-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 Lattnereee6f992008-06-16 21:00:18 +000090 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000091
92 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000093};
94}
95
Chris Lattnerb1ed91f2011-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 Wendlingd48b7782012-02-28 04:01:21 +0000104
Chris Lattnerb1ed91f2011-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 Wendlingd48b7782012-02-28 04:01:21 +0000107 if (!areTypesIsomorphic(DstTy, SrcTy)) {
Chris Lattnerb1ed91f2011-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 Wendlingd48b7782012-02-28 04:01:21 +0000112 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000113 SpeculativeTypes.clear();
114}
Chris Lattnereee6f992008-06-16 21:00:18 +0000115
Chris Lattnerb1ed91f2011-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 Brukman10468d82005-04-21 22:55:34 +0000121
Chris Lattnerb1ed91f2011-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 Brukman10468d82005-04-21 22:55:34 +0000126
Chris Lattnerb1ed91f2011-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 Lattnerfe677e92008-06-16 20:03:01 +0000131 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000132 }
Bill Wendlingd48b7782012-02-28 04:01:21 +0000133
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000134 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000135
Chris Lattnerb1ed91f2011-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);
Reid Spencer361e5132004-11-12 20:37:43 +0000142 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000143 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000144
Chris Lattner5e3bd972011-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 Lattnerb1ed91f2011-07-09 17:41:24 +0000150 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-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 Lattnerb1ed91f2011-07-09 17:41:24 +0000155 Entry = DstTy;
Chris Lattnerb1ed91f2011-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())
Reid Spencer361e5132004-11-12 20:37:43 +0000162 return false;
Chris Lattnerb1ed91f2011-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 Lattnereaf9b762011-12-20 23:14:57 +0000170
Chris Lattnerb1ed91f2011-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 Lattner44f7ab42011-08-12 18:07:26 +0000176 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattnerb1ed91f2011-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)) {
Joey Gouly5fad3e92013-01-10 10:49:36 +0000183 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000184 return false;
Reid Spencer361e5132004-11-12 20:37:43 +0000185 }
Chris Lattnerb1ed91f2011-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 Wendlingd48b7782012-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 Lattnerb1ed91f2011-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 Lattner5e3bd972011-12-20 00:03:52 +0000208 // entries to the SrcDefinitionsToResolve vector.
209 while (!SrcDefinitionsToResolve.empty()) {
210 StructType *SrcSTy = SrcDefinitionsToResolve.pop_back_val();
Chris Lattnerb1ed91f2011-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 Lattner5e3bd972011-12-20 00:03:52 +0000238
239 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000240}
241
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000242/// get - Return the mapped type to use for the specified input type from the
243/// source module.
244Type *TypeMapTy::get(Type *Ty) {
245 Type *Result = getImpl(Ty);
246
247 // If this caused a reference to any struct type, resolve it before returning.
Chris Lattner5e3bd972011-12-20 00:03:52 +0000248 if (!SrcDefinitionsToResolve.empty())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000249 linkDefinedTypeBodies();
250 return Result;
251}
252
253/// getImpl - This is the recursive version of get().
254Type *TypeMapTy::getImpl(Type *Ty) {
255 // If we already have an entry for this type, return it.
256 Type **Entry = &MappedTypes[Ty];
257 if (*Entry) return *Entry;
Bill Wendlingd48b7782012-02-28 04:01:21 +0000258
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000259 // If this is not a named struct type, then just map all of the elements and
260 // then rebuild the type from inside out.
Chris Lattner44f7ab42011-08-12 18:07:26 +0000261 if (!isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000262 // If there are no element types to map, then the type is itself. This is
263 // true for the anonymous {} struct, things like 'float', integers, etc.
264 if (Ty->getNumContainedTypes() == 0)
265 return *Entry = Ty;
266
267 // Remap all of the elements, keeping track of whether any of them change.
268 bool AnyChange = false;
269 SmallVector<Type*, 4> ElementTypes;
270 ElementTypes.resize(Ty->getNumContainedTypes());
271 for (unsigned i = 0, e = Ty->getNumContainedTypes(); i != e; ++i) {
272 ElementTypes[i] = getImpl(Ty->getContainedType(i));
273 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
274 }
275
276 // If we found our type while recursively processing stuff, just use it.
277 Entry = &MappedTypes[Ty];
278 if (*Entry) return *Entry;
279
280 // If all of the element types mapped directly over, then the type is usable
281 // as-is.
282 if (!AnyChange)
283 return *Entry = Ty;
284
285 // Otherwise, rebuild a modified type.
286 switch (Ty->getTypeID()) {
Craig Toppera2886c22012-02-07 05:05:23 +0000287 default: llvm_unreachable("unknown derived type to remap");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000288 case Type::ArrayTyID:
289 return *Entry = ArrayType::get(ElementTypes[0],
290 cast<ArrayType>(Ty)->getNumElements());
291 case Type::VectorTyID:
292 return *Entry = VectorType::get(ElementTypes[0],
293 cast<VectorType>(Ty)->getNumElements());
294 case Type::PointerTyID:
295 return *Entry = PointerType::get(ElementTypes[0],
296 cast<PointerType>(Ty)->getAddressSpace());
297 case Type::FunctionTyID:
298 return *Entry = FunctionType::get(ElementTypes[0],
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000299 makeArrayRef(ElementTypes).slice(1),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000300 cast<FunctionType>(Ty)->isVarArg());
301 case Type::StructTyID:
302 // Note that this is only reached for anonymous structs.
303 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
304 cast<StructType>(Ty)->isPacked());
305 }
306 }
307
308 // Otherwise, this is an unmapped named struct. If the struct can be directly
309 // mapped over, just use it as-is. This happens in a case when the linked-in
310 // module has something like:
311 // %T = type {%T*, i32}
312 // @GV = global %T* null
313 // where T does not exist at all in the destination module.
314 //
315 // The other case we watch for is when the type is not in the destination
316 // module, but that it has to be rebuilt because it refers to something that
317 // is already mapped. For example, if the destination module has:
318 // %A = type { i32 }
319 // and the source module has something like
320 // %A' = type { i32 }
321 // %B = type { %A'* }
322 // @GV = global %B* null
323 // then we want to create a new type: "%B = type { %A*}" and have it take the
324 // pristine "%B" name from the source module.
325 //
326 // To determine which case this is, we have to recursively walk the type graph
327 // speculating that we'll be able to reuse it unmodified. Only if this is
328 // safe would we map the entire thing over. Because this is an optimization,
329 // and is not required for the prettiness of the linked module, we just skip
330 // it and always rebuild a type here.
331 StructType *STy = cast<StructType>(Ty);
332
333 // If the type is opaque, we can just use it directly.
334 if (STy->isOpaque())
335 return *Entry = STy;
Bill Wendlingd48b7782012-02-28 04:01:21 +0000336
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000337 // Otherwise we create a new type and resolve its body later. This will be
338 // resolved by the top level of get().
Chris Lattner5e3bd972011-12-20 00:03:52 +0000339 SrcDefinitionsToResolve.push_back(STy);
340 StructType *DTy = StructType::create(STy->getContext());
341 DstResolvedOpaqueTypes.insert(DTy);
342 return *Entry = DTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000343}
344
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000345//===----------------------------------------------------------------------===//
346// ModuleLinker implementation.
347//===----------------------------------------------------------------------===//
348
349namespace {
350 /// ModuleLinker - This is an implementation class for the LinkModules
351 /// function, which is the entrypoint for this file.
352 class ModuleLinker {
353 Module *DstM, *SrcM;
354
355 TypeMapTy TypeMap;
356
357 /// ValueMap - Mapping of values from what they used to be in Src, to what
358 /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves
359 /// some overhead due to the use of Value handles which the Linker doesn't
360 /// actually need, but this allows us to reuse the ValueMapper code.
361 ValueToValueMapTy ValueMap;
362
363 struct AppendingVarInfo {
364 GlobalVariable *NewGV; // New aggregate global in dest module.
365 Constant *DstInit; // Old initializer from dest module.
366 Constant *SrcInit; // Old initializer from src module.
367 };
368
369 std::vector<AppendingVarInfo> AppendingVars;
370
Tanya Lattnercbb91402011-10-11 00:24:54 +0000371 unsigned Mode; // Mode to treat source module.
372
373 // Set of items not to link in from source.
374 SmallPtrSet<const Value*, 16> DoNotLinkFromSource;
375
Tanya Lattner0a48b872011-11-02 00:24:56 +0000376 // Vector of functions to lazily link in.
377 std::vector<Function*> LazilyLinkFunctions;
378
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000379 public:
380 std::string ErrorMsg;
381
Tanya Lattnercbb91402011-10-11 00:24:54 +0000382 ModuleLinker(Module *dstM, Module *srcM, unsigned mode)
383 : DstM(dstM), SrcM(srcM), Mode(mode) { }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000384
385 bool run();
386
387 private:
388 /// emitError - Helper method for setting a message and returning an error
389 /// code.
390 bool emitError(const Twine &Message) {
391 ErrorMsg = Message.str();
Chris Lattner99953022008-06-16 18:27:53 +0000392 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000393 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000394
395 /// getLinkageResult - This analyzes the two global values and determines
396 /// what the result will look like in the destination module.
397 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000398 GlobalValue::LinkageTypes &LT,
399 GlobalValue::VisibilityTypes &Vis,
400 bool &LinkFromSrc);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000401
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000402 /// getLinkedToGlobal - Given a global in the source module, return the
403 /// global in the destination module that is being linked to, if any.
404 GlobalValue *getLinkedToGlobal(GlobalValue *SrcGV) {
405 // If the source has no name it can't link. If it has local linkage,
406 // there is no name match-up going on.
407 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
408 return 0;
Bill Wendlingd48b7782012-02-28 04:01:21 +0000409
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000410 // Otherwise see if we have a match in the destination module's symtab.
411 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
412 if (DGV == 0) return 0;
Bill Wendlingd48b7782012-02-28 04:01:21 +0000413
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000414 // If we found a global with the same name in the dest module, but it has
415 // internal linkage, we are really not doing any linkage here.
416 if (DGV->hasLocalLinkage())
417 return 0;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000418
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000419 // Otherwise, we do in fact link to the destination global.
420 return DGV;
421 }
422
423 void computeTypeMapping();
424
425 bool linkAppendingVarProto(GlobalVariable *DstGV, GlobalVariable *SrcGV);
426 bool linkGlobalProto(GlobalVariable *SrcGV);
427 bool linkFunctionProto(Function *SrcF);
428 bool linkAliasProto(GlobalAlias *SrcA);
Bill Wendling66f02412012-02-11 11:38:06 +0000429 bool linkModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000430
431 void linkAppendingVarInit(const AppendingVarInfo &AVI);
432 void linkGlobalInits();
433 void linkFunctionBody(Function *Dst, Function *Src);
434 void linkAliasBodies();
435 void linkNamedMDNodes();
436 };
Bill Wendlingd48b7782012-02-28 04:01:21 +0000437}
438
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000439/// forceRenaming - The LLVM SymbolTable class autorenames globals that conflict
Reid Spencer90246aa2007-02-04 04:29:21 +0000440/// in the symbol table. This is good for all clients except for us. Go
441/// through the trouble to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000442static void forceRenaming(GlobalValue *GV, StringRef Name) {
443 // If the global doesn't force its name or if it already has the right name,
444 // there is nothing for us to do.
445 if (GV->hasLocalLinkage() || GV->getName() == Name)
446 return;
447
448 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000449
450 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000451 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000452 GV->takeName(ConflictGV);
453 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000454 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000455 } else {
456 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000457 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000458}
Reid Spencer90246aa2007-02-04 04:29:21 +0000459
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000460/// copyGVAttributes - copy additional attributes (those not needed to construct
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000461/// a GlobalValue) from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000462static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000463 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
464 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
465 DestGV->copyAttributesFrom(SrcGV);
466 DestGV->setAlignment(Alignment);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000467
468 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000469}
470
Rafael Espindola23f8d642012-01-05 23:02:01 +0000471static bool isLessConstraining(GlobalValue::VisibilityTypes a,
472 GlobalValue::VisibilityTypes b) {
473 if (a == GlobalValue::HiddenVisibility)
474 return false;
475 if (b == GlobalValue::HiddenVisibility)
476 return true;
477 if (a == GlobalValue::ProtectedVisibility)
478 return false;
479 if (b == GlobalValue::ProtectedVisibility)
480 return true;
481 return false;
482}
483
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000484/// getLinkageResult - This analyzes the two global values and determines what
Chris Lattnerfc61de32004-12-03 22:18:41 +0000485/// the result will look like in the destination module. In particular, it
Rafael Espindola23f8d642012-01-05 23:02:01 +0000486/// computes the resultant linkage type and visibility, computes whether the
487/// global in the source should be copied over to the destination (replacing
488/// the existing one), and computes whether this linkage is an error or not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000489bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000490 GlobalValue::LinkageTypes &LT,
491 GlobalValue::VisibilityTypes &Vis,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000492 bool &LinkFromSrc) {
493 assert(Dest && "Must have two globals being queried");
494 assert(!Src->hasLocalLinkage() &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000495 "If Src has internal linkage, Dest shouldn't be set!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000496
Peter Collingbourne8bb15d82011-10-30 17:46:34 +0000497 bool SrcIsDeclaration = Src->isDeclaration() && !Src->isMaterializable();
Chris Lattner0c134b52011-07-14 20:23:05 +0000498 bool DestIsDeclaration = Dest->isDeclaration();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000499
500 if (SrcIsDeclaration) {
Anton Korobeynikov1f93c502008-03-10 22:33:22 +0000501 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattnerfc61de32004-12-03 22:18:41 +0000502 // external globals, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000503 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000504 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000505 if (DestIsDeclaration) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000506 LinkFromSrc = true;
507 LT = Src->getLinkage();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000508 }
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000509 } else if (Dest->hasExternalWeakLinkage()) {
Duncan Sands12da8ce2009-03-07 15:45:40 +0000510 // If the Dest is weak, use the source linkage.
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000511 LinkFromSrc = true;
512 LT = Src->getLinkage();
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000513 } else {
514 LinkFromSrc = false;
515 LT = Dest->getLinkage();
516 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000517 } else if (DestIsDeclaration && !Dest->hasDLLImportLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000518 // If Dest is external but Src is not:
519 LinkFromSrc = true;
520 LT = Src->getLinkage();
Duncan Sandsd725c992009-03-08 13:35:23 +0000521 } else if (Src->isWeakForLinker()) {
Dale Johannesence4396b2008-05-14 20:12:51 +0000522 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
523 // or DLL* linkage.
Chris Lattner184f1be2009-04-13 05:44:34 +0000524 if (Dest->hasExternalWeakLinkage() ||
525 Dest->hasAvailableExternallyLinkage() ||
526 (Dest->hasLinkOnceLinkage() &&
527 (Src->hasWeakLinkage() || Src->hasCommonLinkage()))) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000528 LinkFromSrc = true;
529 LT = Src->getLinkage();
530 } else {
531 LinkFromSrc = false;
532 LT = Dest->getLinkage();
533 }
Duncan Sandsd725c992009-03-08 13:35:23 +0000534 } else if (Dest->isWeakForLinker()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000535 // At this point we know that Src has External* or DLL* linkage.
536 if (Src->hasExternalWeakLinkage()) {
537 LinkFromSrc = false;
538 LT = Dest->getLinkage();
539 } else {
540 LinkFromSrc = true;
541 LT = GlobalValue::ExternalLinkage;
542 }
Chris Lattnerfc61de32004-12-03 22:18:41 +0000543 } else {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000544 assert((Dest->hasExternalLinkage() || Dest->hasDLLImportLinkage() ||
545 Dest->hasDLLExportLinkage() || Dest->hasExternalWeakLinkage()) &&
546 (Src->hasExternalLinkage() || Src->hasDLLImportLinkage() ||
547 Src->hasDLLExportLinkage() || Src->hasExternalWeakLinkage()) &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000548 "Unexpected linkage type!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000549 return emitError("Linking globals named '" + Src->getName() +
Chris Lattnerfc61de32004-12-03 22:18:41 +0000550 "': symbol multiply defined!");
551 }
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000552
Rafael Espindola23f8d642012-01-05 23:02:01 +0000553 // Compute the visibility. We follow the rules in the System V Application
554 // Binary Interface.
555 Vis = isLessConstraining(Src->getVisibility(), Dest->getVisibility()) ?
556 Dest->getVisibility() : Src->getVisibility();
Chris Lattnerfc61de32004-12-03 22:18:41 +0000557 return false;
558}
Reid Spencer361e5132004-11-12 20:37:43 +0000559
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000560/// computeTypeMapping - Loop over all of the linked values to compute type
561/// mappings. For example, if we link "extern Foo *x" and "Foo *x = NULL", then
562/// we have two struct types 'Foo' but one got renamed when the module was
563/// loaded into the same LLVMContext.
564void ModuleLinker::computeTypeMapping() {
565 // Incorporate globals.
566 for (Module::global_iterator I = SrcM->global_begin(),
567 E = SrcM->global_end(); I != E; ++I) {
568 GlobalValue *DGV = getLinkedToGlobal(I);
569 if (DGV == 0) continue;
570
571 if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) {
572 TypeMap.addTypeMapping(DGV->getType(), I->getType());
573 continue;
574 }
575
576 // Unify the element type of appending arrays.
577 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
578 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
579 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000580 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000581
582 // Incorporate functions.
583 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
584 if (GlobalValue *DGV = getLinkedToGlobal(I))
585 TypeMap.addTypeMapping(DGV->getType(), I->getType());
586 }
Bill Wendling7b464612012-02-27 22:34:19 +0000587
Bill Wendlingd48b7782012-02-28 04:01:21 +0000588 // Incorporate types by name, scanning all the types in the source module.
589 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000590 // example. When the source module got loaded into the same LLVMContext, if
591 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000592 TypeFinder SrcStructTypes;
593 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000594 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
595 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000596
Bill Wendling8555a372012-08-03 00:30:35 +0000597 TypeFinder DstStructTypes;
598 DstStructTypes.run(*DstM, true);
Bill Wendling87374802012-03-23 23:17:38 +0000599 SmallPtrSet<StructType*, 32> DstStructTypesSet(DstStructTypes.begin(),
600 DstStructTypes.end());
601
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000602 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
603 StructType *ST = SrcStructTypes[i];
604 if (!ST->hasName()) continue;
605
606 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000607 size_t DotPos = ST->getName().rfind('.');
608 if (DotPos == 0 || DotPos == StringRef::npos ||
609 ST->getName().back() == '.' || !isdigit(ST->getName()[DotPos+1]))
610 continue;
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000611
612 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000613 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000614 // Don't use it if this actually came from the source module. They're in
615 // the same LLVMContext after all. Also don't use it unless the type is
616 // actually used in the destination module. This can happen in situations
617 // like this:
618 //
619 // Module A Module B
620 // -------- --------
621 // %Z = type { %A } %B = type { %C.1 }
622 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
623 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
624 // %C = type { i8* } %B.3 = type { %C.1 }
625 //
626 // When we link Module B with Module A, the '%B' in Module B is
627 // used. However, that would then use '%C.1'. But when we process '%C.1',
628 // we prefer to take the '%C' version. So we are then left with both
629 // '%C.1' and '%C' being used for the same types. This leads to some
630 // variables using one type and some using the other.
631 if (!SrcStructTypesSet.count(DST) && DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000632 TypeMap.addTypeMapping(DST, ST);
633 }
634
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000635 // Don't bother incorporating aliases, they aren't generally typed well.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000636
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000637 // Now that we have discovered all of the type equivalences, get a body for
638 // any 'opaque' types in the dest module that are now resolved.
639 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000640}
641
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000642/// linkAppendingVarProto - If there were any appending global variables, link
643/// them together now. Return true on error.
644bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
645 GlobalVariable *SrcGV) {
Bill Wendlingd48b7782012-02-28 04:01:21 +0000646
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000647 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
648 return emitError("Linking globals named '" + SrcGV->getName() +
649 "': can only link appending global with another appending global!");
650
651 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
652 ArrayType *SrcTy =
653 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
654 Type *EltTy = DstTy->getElementType();
655
656 // Check to see that they two arrays agree on type.
657 if (EltTy != SrcTy->getElementType())
658 return emitError("Appending variables with different element types!");
659 if (DstGV->isConstant() != SrcGV->isConstant())
660 return emitError("Appending variables linked with different const'ness!");
661
662 if (DstGV->getAlignment() != SrcGV->getAlignment())
663 return emitError(
664 "Appending variables with different alignment need to be linked!");
665
666 if (DstGV->getVisibility() != SrcGV->getVisibility())
667 return emitError(
668 "Appending variables with different visibility need to be linked!");
669
670 if (DstGV->getSection() != SrcGV->getSection())
671 return emitError(
672 "Appending variables with different section name need to be linked!");
673
674 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
675 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
676
677 // Create the new global variable.
678 GlobalVariable *NG =
679 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
680 DstGV->getLinkage(), /*init*/0, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000681 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000682 DstGV->getType()->getAddressSpace());
683
684 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000685 copyGVAttributes(NG, DstGV);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000686
687 AppendingVarInfo AVI;
688 AVI.NewGV = NG;
689 AVI.DstInit = DstGV->getInitializer();
690 AVI.SrcInit = SrcGV->getInitializer();
691 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000692
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000693 // Replace any uses of the two global variables with uses of the new
694 // global.
695 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000696
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000697 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
698 DstGV->eraseFromParent();
699
Tanya Lattnercbb91402011-10-11 00:24:54 +0000700 // Track the source variable so we don't try to link it.
701 DoNotLinkFromSource.insert(SrcGV);
702
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000703 return false;
704}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000705
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000706/// linkGlobalProto - Loop through the global variables in the src module and
707/// merge them into the dest module.
708bool ModuleLinker::linkGlobalProto(GlobalVariable *SGV) {
709 GlobalValue *DGV = getLinkedToGlobal(SGV);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000710 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000711
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000712 if (DGV) {
713 // Concatenation of appending linkage variables is magic and handled later.
714 if (DGV->hasAppendingLinkage() || SGV->hasAppendingLinkage())
715 return linkAppendingVarProto(cast<GlobalVariable>(DGV), SGV);
716
717 // Determine whether linkage of these two globals follows the source
718 // module's definition or the destination module's definition.
Chris Lattner1b9633d2006-11-09 05:18:12 +0000719 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000720 GlobalValue::VisibilityTypes NV;
Chris Lattner1b9633d2006-11-09 05:18:12 +0000721 bool LinkFromSrc = false;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000722 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
Chris Lattnerfc61de32004-12-03 22:18:41 +0000723 return true;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000724 NewVisibility = NV;
Reid Spencer361e5132004-11-12 20:37:43 +0000725
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000726 // If we're not linking from the source, then keep the definition that we
727 // have.
728 if (!LinkFromSrc) {
729 // Special case for const propagation.
730 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV))
731 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
732 DGVar->setConstant(true);
733
Rafael Espindola23f8d642012-01-05 23:02:01 +0000734 // Set calculated linkage and visibility.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000735 DGV->setLinkage(NewLinkage);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000736 DGV->setVisibility(*NewVisibility);
737
Chris Lattner0ead7a52008-07-14 07:23:24 +0000738 // Make sure to remember this mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000739 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
740
Tanya Lattnercbb91402011-10-11 00:24:54 +0000741 // Track the source global so that we don't attempt to copy it over when
742 // processing global initializers.
743 DoNotLinkFromSource.insert(SGV);
744
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000745 return false;
Chris Lattner0ead7a52008-07-14 07:23:24 +0000746 }
Reid Spencer361e5132004-11-12 20:37:43 +0000747 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000748
749 // No linking to be performed or linking from the source: simply create an
750 // identical version of the symbol over in the dest module... the
751 // initializer will be filled in later by LinkGlobalInits.
752 GlobalVariable *NewDGV =
753 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
754 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
755 SGV->getName(), /*insertbefore*/0,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000756 SGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000757 SGV->getType()->getAddressSpace());
758 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000759 copyGVAttributes(NewDGV, SGV);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000760 if (NewVisibility)
761 NewDGV->setVisibility(*NewVisibility);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000762
763 if (DGV) {
764 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType()));
765 DGV->eraseFromParent();
766 }
767
768 // Make sure to remember this mapping.
769 ValueMap[SGV] = NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +0000770 return false;
771}
772
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000773/// linkFunctionProto - Link the function in the source module into the
774/// destination module if needed, setting up mapping information.
775bool ModuleLinker::linkFunctionProto(Function *SF) {
776 GlobalValue *DGV = getLinkedToGlobal(SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000777 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000778
779 if (DGV) {
780 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
781 bool LinkFromSrc = false;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000782 GlobalValue::VisibilityTypes NV;
783 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000784 return true;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000785 NewVisibility = NV;
786
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000787 if (!LinkFromSrc) {
788 // Set calculated linkage
789 DGV->setLinkage(NewLinkage);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000790 DGV->setVisibility(*NewVisibility);
791
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000792 // Make sure to remember this mapping.
793 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
794
Tanya Lattnercbb91402011-10-11 00:24:54 +0000795 // Track the function from the source module so we don't attempt to remap
796 // it.
797 DoNotLinkFromSource.insert(SF);
798
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000799 return false;
800 }
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000801 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000802
803 // If there is no linkage to be performed or we are linking from the source,
804 // bring SF over.
805 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()),
806 SF->getLinkage(), SF->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000807 copyGVAttributes(NewDF, SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000808 if (NewVisibility)
809 NewDF->setVisibility(*NewVisibility);
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000810
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000811 if (DGV) {
812 // Any uses of DF need to change to NewDF, with cast.
813 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType()));
814 DGV->eraseFromParent();
Tanya Lattner0a48b872011-11-02 00:24:56 +0000815 } else {
816 // Internal, LO_ODR, or LO linkage - stick in set to ignore and lazily link.
817 if (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
818 SF->hasAvailableExternallyLinkage()) {
819 DoNotLinkFromSource.insert(SF);
820 LazilyLinkFunctions.push_back(SF);
821 }
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000822 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000823
824 ValueMap[SF] = NewDF;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000825 return false;
826}
827
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000828/// LinkAliasProto - Set up prototypes for any aliases that come over from the
829/// source module.
830bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) {
831 GlobalValue *DGV = getLinkedToGlobal(SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000832 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
833
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000834 if (DGV) {
835 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000836 GlobalValue::VisibilityTypes NV;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000837 bool LinkFromSrc = false;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000838 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000839 return true;
Rafael Espindola23f8d642012-01-05 23:02:01 +0000840 NewVisibility = NV;
841
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000842 if (!LinkFromSrc) {
843 // Set calculated linkage.
844 DGV->setLinkage(NewLinkage);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000845 DGV->setVisibility(*NewVisibility);
846
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000847 // Make sure to remember this mapping.
848 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
849
Tanya Lattnercbb91402011-10-11 00:24:54 +0000850 // Track the alias from the source module so we don't attempt to remap it.
851 DoNotLinkFromSource.insert(SGA);
852
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000853 return false;
854 }
855 }
856
857 // If there is no linkage to be performed or we're linking from the source,
858 // bring over SGA.
859 GlobalAlias *NewDA = new GlobalAlias(TypeMap.get(SGA->getType()),
860 SGA->getLinkage(), SGA->getName(),
861 /*aliasee*/0, DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000862 copyGVAttributes(NewDA, SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +0000863 if (NewVisibility)
864 NewDA->setVisibility(*NewVisibility);
Reid Spencer361e5132004-11-12 20:37:43 +0000865
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000866 if (DGV) {
867 // Any uses of DGV need to change to NewDA, with cast.
868 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDA, DGV->getType()));
869 DGV->eraseFromParent();
870 }
871
872 ValueMap[SGA] = NewDA;
873 return false;
874}
875
Chris Lattner00245f42012-01-24 13:41:11 +0000876static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +0000877 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
878
879 for (unsigned i = 0; i != NumElements; ++i)
880 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +0000881}
882
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000883void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
884 // Merge the initializer.
885 SmallVector<Constant*, 16> Elements;
Chris Lattner00245f42012-01-24 13:41:11 +0000886 getArrayElements(AVI.DstInit, Elements);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000887
888 Constant *SrcInit = MapValue(AVI.SrcInit, ValueMap, RF_None, &TypeMap);
Chris Lattner00245f42012-01-24 13:41:11 +0000889 getArrayElements(SrcInit, Elements);
890
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000891 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
892 AVI.NewGV->setInitializer(ConstantArray::get(NewType, Elements));
893}
894
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000895/// linkGlobalInits - Update the initializers in the Dest module now that all
896/// globals that may be referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000897void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +0000898 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000899 for (Module::const_global_iterator I = SrcM->global_begin(),
900 E = SrcM->global_end(); I != E; ++I) {
Tanya Lattnercbb91402011-10-11 00:24:54 +0000901
902 // Only process initialized GV's or ones not already in dest.
903 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000904
905 // Grab destination global variable.
906 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
907 // Figure out what the initializer looks like in the dest module.
908 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
909 RF_None, &TypeMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000910 }
Reid Spencer361e5132004-11-12 20:37:43 +0000911}
912
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000913/// linkFunctionBody - Copy the source function over into the dest function and
914/// fix up references to values. At this point we know that Dest is an external
915/// function, and that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000916void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
917 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +0000918
Chris Lattner7391dde2004-11-16 17:12:38 +0000919 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000920 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +0000921 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +0000922 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000923 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +0000924
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000925 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000926 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +0000927 }
928
Tanya Lattnercbb91402011-10-11 00:24:54 +0000929 if (Mode == Linker::DestroySource) {
930 // Splice the body of the source function into the dest function.
931 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
932
933 // At this point, all of the instructions and values of the function are now
934 // copied over. The only problem is that they are still referencing values in
935 // the Source function as operands. Loop through all of the operands of the
936 // functions and patch them up to point to the local versions.
937 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
938 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
939 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap);
940
941 } else {
942 // Clone the body of the function into the dest function.
943 SmallVector<ReturnInst*, 8> Returns; // Ignore returns.
Mon P Wang5d44a432011-12-23 02:18:32 +0000944 CloneFunctionInto(Dst, Src, ValueMap, false, Returns, "", NULL, &TypeMap);
Tanya Lattnercbb91402011-10-11 00:24:54 +0000945 }
946
Chris Lattner7391dde2004-11-16 17:12:38 +0000947 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000948 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
949 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000950 ValueMap.erase(I);
Tanya Lattnercbb91402011-10-11 00:24:54 +0000951
Reid Spencer361e5132004-11-12 20:37:43 +0000952}
953
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000954/// linkAliasBodies - Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000955void ModuleLinker::linkAliasBodies() {
956 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +0000957 I != E; ++I) {
958 if (DoNotLinkFromSource.count(I))
959 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000960 if (Constant *Aliasee = I->getAliasee()) {
961 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
962 DA->setAliasee(MapValue(Aliasee, ValueMap, RF_None, &TypeMap));
David Chisnall2c4a34a2010-01-09 16:27:31 +0000963 }
Tanya Lattnercbb91402011-10-11 00:24:54 +0000964 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000965}
Anton Korobeynikov26098882008-03-05 23:21:39 +0000966
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000967/// linkNamedMDNodes - Insert all of the named MDNodes in Src into the Dest
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000968/// module.
969void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +0000970 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000971 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
972 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +0000973 // Don't link module flags here. Do them separately.
974 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000975 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
976 // Add Src elements into Dest node.
977 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
978 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
979 RF_None, &TypeMap));
980 }
981}
Bill Wendling66f02412012-02-11 11:38:06 +0000982
Bill Wendling66f02412012-02-11 11:38:06 +0000983/// linkModuleFlagsMetadata - Merge the linker flags in Src into the Dest
984/// module.
985bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +0000986 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +0000987 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
988 if (!SrcModFlags) return false;
989
Bill Wendling66f02412012-02-11 11:38:06 +0000990 // If the destination module doesn't have module flags yet, then just copy
991 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +0000992 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +0000993 if (DstModFlags->getNumOperands() == 0) {
994 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
995 DstModFlags->addOperand(SrcModFlags->getOperand(I));
996
997 return false;
998 }
999
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001000 // First build a map of the existing module flags and requirements.
1001 DenseMap<MDString*, MDNode*> Flags;
1002 SmallSetVector<MDNode*, 16> Requirements;
1003 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
1004 MDNode *Op = DstModFlags->getOperand(I);
1005 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1006 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001007
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001008 if (Behavior->getZExtValue() == Module::Require) {
1009 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1010 } else {
1011 Flags[ID] = Op;
1012 }
Bill Wendling66f02412012-02-11 11:38:06 +00001013 }
1014
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001015 // Merge in the flags from the source module, and also collect its set of
1016 // requirements.
1017 bool HasErr = false;
1018 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
1019 MDNode *SrcOp = SrcModFlags->getOperand(I);
1020 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1021 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1022 MDNode *DstOp = Flags.lookup(ID);
1023 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001024
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001025 // If this is a requirement, add it and continue.
1026 if (SrcBehaviorValue == Module::Require) {
1027 // If the destination module does not already have this requirement, add
1028 // it.
1029 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1030 DstModFlags->addOperand(SrcOp);
1031 }
1032 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001033 }
1034
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001035 // If there is no existing flag with this ID, just add it.
1036 if (!DstOp) {
1037 Flags[ID] = SrcOp;
1038 DstModFlags->addOperand(SrcOp);
1039 continue;
1040 }
1041
1042 // Otherwise, perform a merge.
1043 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1044 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1045
1046 // If either flag has override behavior, handle it first.
1047 if (DstBehaviorValue == Module::Override) {
1048 // Diagnose inconsistent flags which both have override behavior.
1049 if (SrcBehaviorValue == Module::Override &&
1050 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1051 HasErr |= emitError("linking module flags '" + ID->getString() +
1052 "': IDs have conflicting override values");
1053 }
1054 continue;
1055 } else if (SrcBehaviorValue == Module::Override) {
1056 // Update the destination flag to that of the source.
1057 DstOp->replaceOperandWith(0, SrcBehavior);
1058 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1059 continue;
1060 }
1061
1062 // Diagnose inconsistent merge behavior types.
1063 if (SrcBehaviorValue != DstBehaviorValue) {
1064 HasErr |= emitError("linking module flags '" + ID->getString() +
1065 "': IDs have conflicting behaviors");
1066 continue;
1067 }
1068
1069 // Perform the merge for standard behavior types.
1070 switch (SrcBehaviorValue) {
1071 case Module::Require:
1072 case Module::Override: assert(0 && "not possible"); break;
1073 case Module::Error: {
1074 // Emit an error if the values differ.
1075 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1076 HasErr |= emitError("linking module flags '" + ID->getString() +
1077 "': IDs have conflicting values");
1078 }
1079 continue;
1080 }
1081 case Module::Warning: {
1082 // Emit a warning if the values differ.
1083 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1084 errs() << "WARNING: linking module flags '" << ID->getString()
1085 << "': IDs have conflicting values";
1086 }
1087 continue;
1088 }
1089 }
Bill Wendling66f02412012-02-11 11:38:06 +00001090 }
1091
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001092 // Check all of the requirements.
1093 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1094 MDNode *Requirement = Requirements[I];
1095 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1096 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001097
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001098 MDNode *Op = Flags[Flag];
1099 if (!Op || Op->getOperand(2) != ReqValue) {
1100 HasErr |= emitError("linking module flags '" + Flag->getString() +
1101 "': does not have the required value");
1102 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001103 }
1104 }
1105
1106 return HasErr;
1107}
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001108
1109bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001110 assert(DstM && "Null destination module");
1111 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001112
1113 // Inherit the target data from the source module if the destination module
1114 // doesn't have one already.
1115 if (DstM->getDataLayout().empty() && !SrcM->getDataLayout().empty())
1116 DstM->setDataLayout(SrcM->getDataLayout());
1117
1118 // Copy the target triple from the source to dest if the dest's is empty.
1119 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1120 DstM->setTargetTriple(SrcM->getTargetTriple());
1121
1122 if (!SrcM->getDataLayout().empty() && !DstM->getDataLayout().empty() &&
1123 SrcM->getDataLayout() != DstM->getDataLayout())
1124 errs() << "WARNING: Linking two modules of different data layouts!\n";
1125 if (!SrcM->getTargetTriple().empty() &&
1126 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
1127 errs() << "WARNING: Linking two modules of different target triples: ";
1128 if (!SrcM->getModuleIdentifier().empty())
1129 errs() << SrcM->getModuleIdentifier() << ": ";
1130 errs() << "'" << SrcM->getTargetTriple() << "' and '"
1131 << DstM->getTargetTriple() << "'\n";
1132 }
1133
1134 // Append the module inline asm string.
1135 if (!SrcM->getModuleInlineAsm().empty()) {
1136 if (DstM->getModuleInlineAsm().empty())
1137 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1138 else
1139 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1140 SrcM->getModuleInlineAsm());
1141 }
1142
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001143 // Loop over all of the linked values to compute type mappings.
1144 computeTypeMapping();
1145
1146 // Insert all of the globals in src into the DstM module... without linking
1147 // initializers (which could refer to functions not yet mapped over).
1148 for (Module::global_iterator I = SrcM->global_begin(),
1149 E = SrcM->global_end(); I != E; ++I)
1150 if (linkGlobalProto(I))
1151 return true;
1152
1153 // Link the functions together between the two modules, without doing function
1154 // bodies... this just adds external function prototypes to the DstM
1155 // function... We do this so that when we begin processing function bodies,
1156 // all of the global values that may be referenced are available in our
1157 // ValueMap.
1158 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
1159 if (linkFunctionProto(I))
1160 return true;
1161
1162 // If there were any aliases, link them now.
1163 for (Module::alias_iterator I = SrcM->alias_begin(),
1164 E = SrcM->alias_end(); I != E; ++I)
1165 if (linkAliasProto(I))
1166 return true;
1167
1168 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1169 linkAppendingVarInit(AppendingVars[i]);
1170
1171 // Update the initializers in the DstM module now that all globals that may
1172 // be referenced are in DstM.
1173 linkGlobalInits();
1174
1175 // Link in the function bodies that are defined in the source module into
1176 // DstM.
1177 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001178 // Skip if not linking from source.
1179 if (DoNotLinkFromSource.count(SF)) continue;
1180
1181 // Skip if no body (function is external) or materialize.
1182 if (SF->isDeclaration()) {
1183 if (!SF->isMaterializable())
1184 continue;
1185 if (SF->Materialize(&ErrorMsg))
1186 return true;
1187 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001188
1189 linkFunctionBody(cast<Function>(ValueMap[SF]), SF);
Bill Wendling00623782012-03-23 07:22:49 +00001190 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001191 }
1192
1193 // Resolve all uses of aliases with aliasees.
1194 linkAliasBodies();
1195
Bill Wendling66f02412012-02-11 11:38:06 +00001196 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001197 // after linking GlobalValues so that MDNodes that reference GlobalValues
1198 // are properly remapped.
1199 linkNamedMDNodes();
1200
Bill Wendling66f02412012-02-11 11:38:06 +00001201 // Merge the module flags into the DstM module.
1202 if (linkModuleFlagsMetadata())
1203 return true;
1204
Tanya Lattner0a48b872011-11-02 00:24:56 +00001205 // Process vector of lazily linked in functions.
1206 bool LinkedInAnyFunctions;
1207 do {
1208 LinkedInAnyFunctions = false;
1209
1210 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
1211 E = LazilyLinkFunctions.end(); I != E; ++I) {
1212 if (!*I)
1213 continue;
1214
1215 Function *SF = *I;
1216 Function *DF = cast<Function>(ValueMap[SF]);
1217
1218 if (!DF->use_empty()) {
1219
1220 // Materialize if necessary.
1221 if (SF->isDeclaration()) {
1222 if (!SF->isMaterializable())
1223 continue;
1224 if (SF->Materialize(&ErrorMsg))
1225 return true;
1226 }
1227
1228 // Link in function body.
1229 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001230 SF->Dematerialize();
1231
Tanya Lattner0a48b872011-11-02 00:24:56 +00001232 // "Remove" from vector by setting the element to 0.
1233 *I = 0;
1234
1235 // Set flag to indicate we may have more functions to lazily link in
1236 // since we linked in a function.
1237 LinkedInAnyFunctions = true;
1238 }
1239 }
1240 } while (LinkedInAnyFunctions);
1241
1242 // Remove any prototypes of functions that were not actually linked in.
1243 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
1244 E = LazilyLinkFunctions.end(); I != E; ++I) {
1245 if (!*I)
1246 continue;
1247
1248 Function *SF = *I;
1249 Function *DF = cast<Function>(ValueMap[SF]);
1250 if (DF->use_empty())
1251 DF->eraseFromParent();
1252 }
1253
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001254 // Now that all of the types from the source are used, resolve any structs
1255 // copied over to the dest that didn't exist there.
1256 TypeMap.linkDefinedTypeBodies();
1257
Anton Korobeynikov26098882008-03-05 23:21:39 +00001258 return false;
1259}
Reid Spencer361e5132004-11-12 20:37:43 +00001260
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001261//===----------------------------------------------------------------------===//
1262// LinkModules entrypoint.
1263//===----------------------------------------------------------------------===//
1264
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001265/// LinkModules - This function links two modules together, with the resulting
1266/// left module modified to be the composite of the two input modules. If an
1267/// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
1268/// the problem. Upon failure, the Dest module could be in a modified state,
1269/// and shouldn't be relied on to be consistent.
Tanya Lattnercbb91402011-10-11 00:24:54 +00001270bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode,
1271 std::string *ErrorMsg) {
1272 ModuleLinker TheLinker(Dest, Src, Mode);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001273 if (TheLinker.run()) {
1274 if (ErrorMsg) *ErrorMsg = TheLinker.ErrorMsg;
Reid Spencerd3ba7d92007-02-04 04:43:17 +00001275 return true;
Reid Spencer361e5132004-11-12 20:37:43 +00001276 }
Bill Wendling87374802012-03-23 23:17:38 +00001277
Reid Spencer361e5132004-11-12 20:37:43 +00001278 return false;
1279}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001280
1281//===----------------------------------------------------------------------===//
1282// C API.
1283//===----------------------------------------------------------------------===//
1284
1285LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1286 LLVMLinkerMode Mode, char **OutMessages) {
1287 std::string Messages;
1288 LLVMBool Result = Linker::LinkModules(unwrap(Dest), unwrap(Src),
1289 Mode, OutMessages? &Messages : 0);
1290 if (OutMessages)
1291 *OutMessages = strdup(Messages.c_str());
1292 return Result;
1293}