blob: a915a8b873a95833e2c08a2b983abac691c86e3e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM module linker.
11//
12// Specifically, this:
13// * Merges global variables between the two modules
14// * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
15// * Merges functions between two modules
16//
17//===----------------------------------------------------------------------===//
18
19#include "llvm/Linker.h"
20#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Module.h"
23#include "llvm/TypeSymbolTable.h"
24#include "llvm/ValueSymbolTable.h"
25#include "llvm/Instructions.h"
26#include "llvm/Assembly/Writer.h"
27#include "llvm/Support/Streams.h"
28#include "llvm/System/Path.h"
Chris Lattner0b228bf2008-06-16 21:00:18 +000029#include "llvm/ADT/DenseMap.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include <sstream>
31using namespace llvm;
32
33// Error - Simple wrapper function to conditionally assign to E and return true.
34// This just makes error return conditions a little bit simpler...
35static inline bool Error(std::string *E, const std::string &Message) {
36 if (E) *E = Message;
37 return true;
38}
39
40// ToStr - Simple wrapper function to convert a type to a string.
41static std::string ToStr(const Type *Ty, const Module *M) {
42 std::ostringstream OS;
43 WriteTypeSymbolic(OS, Ty, M);
44 return OS.str();
45}
46
47//
48// Function: ResolveTypes()
49//
50// Description:
51// Attempt to link the two specified types together.
52//
53// Inputs:
54// DestTy - The type to which we wish to resolve.
55// SrcTy - The original type which we want to resolve.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056//
57// Outputs:
58// DestST - The symbol table in which the new type should be placed.
59//
60// Return value:
61// true - There is an error and the types cannot yet be linked.
62// false - No errors.
63//
Chris Lattner06638ab2008-06-16 18:19:05 +000064static bool ResolveTypes(const Type *DestTy, const Type *SrcTy) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 if (DestTy == SrcTy) return false; // If already equal, noop
Chris Lattner06638ab2008-06-16 18:19:05 +000066 assert(DestTy && SrcTy && "Can't handle null types");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067
Chris Lattner06638ab2008-06-16 18:19:05 +000068 if (const OpaqueType *OT = dyn_cast<OpaqueType>(DestTy)) {
69 // Type _is_ in module, just opaque...
70 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(SrcTy);
71 } else if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) {
72 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy);
73 } else {
74 return true; // Cannot link types... not-equal and neither is opaque.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 }
76 return false;
77}
78
Chris Lattner0b228bf2008-06-16 21:00:18 +000079/// LinkerTypeMap - This implements a map of types that is stable
80/// even if types are resolved/refined to other types. This is not a general
81/// purpose map, it is specific to the linker's use.
82namespace {
83class LinkerTypeMap : public AbstractTypeUser {
84 typedef DenseMap<const Type*, PATypeHolder> TheMapTy;
85 TheMapTy TheMap;
Chris Lattner0b228bf2008-06-16 21:00:18 +000086
Chris Lattnera9326492008-06-16 23:06:51 +000087 LinkerTypeMap(const LinkerTypeMap&); // DO NOT IMPLEMENT
88 void operator=(const LinkerTypeMap&); // DO NOT IMPLEMENT
89public:
90 LinkerTypeMap() {}
91 ~LinkerTypeMap() {
Chris Lattner0b228bf2008-06-16 21:00:18 +000092 for (DenseMap<const Type*, PATypeHolder>::iterator I = TheMap.begin(),
93 E = TheMap.end(); I != E; ++I)
94 I->first->removeAbstractTypeUser(this);
95 }
96
97 /// lookup - Return the value for the specified type or null if it doesn't
98 /// exist.
99 const Type *lookup(const Type *Ty) const {
100 TheMapTy::const_iterator I = TheMap.find(Ty);
101 if (I != TheMap.end()) return I->second;
102 return 0;
103 }
104
105 /// erase - Remove the specified type, returning true if it was in the set.
106 bool erase(const Type *Ty) {
107 if (!TheMap.erase(Ty))
108 return false;
109 if (Ty->isAbstract())
110 Ty->removeAbstractTypeUser(this);
111 return true;
112 }
113
114 /// insert - This returns true if the pointer was new to the set, false if it
115 /// was already in the set.
116 bool insert(const Type *Src, const Type *Dst) {
117 if (!TheMap.insert(std::make_pair(Src, PATypeHolder(Dst))))
118 return false; // Already in map.
119 if (Src->isAbstract())
120 Src->addAbstractTypeUser(this);
121 return true;
122 }
123
124protected:
125 /// refineAbstractType - The callback method invoked when an abstract type is
126 /// resolved to another type. An object must override this method to update
127 /// its internal state to reference NewType instead of OldType.
128 ///
129 virtual void refineAbstractType(const DerivedType *OldTy,
130 const Type *NewTy) {
131 TheMapTy::iterator I = TheMap.find(OldTy);
132 const Type *DstTy = I->second;
133
134 TheMap.erase(I);
135 if (OldTy->isAbstract())
136 OldTy->removeAbstractTypeUser(this);
137
138 // Don't reinsert into the map if the key is concrete now.
139 if (NewTy->isAbstract())
140 insert(NewTy, DstTy);
141 }
142
143 /// The other case which AbstractTypeUsers must be aware of is when a type
144 /// makes the transition from being abstract (where it has clients on it's
145 /// AbstractTypeUsers list) to concrete (where it does not). This method
146 /// notifies ATU's when this occurs for a type.
147 virtual void typeBecameConcrete(const DerivedType *AbsTy) {
148 TheMap.erase(AbsTy);
149 AbsTy->removeAbstractTypeUser(this);
150 }
151
152 // for debugging...
153 virtual void dump() const {
154 cerr << "AbstractTypeSet!\n";
155 }
156};
157}
158
159
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160// RecursiveResolveTypes - This is just like ResolveTypes, except that it
161// recurses down into derived types, merging the used types if the parent types
162// are compatible.
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000163static bool RecursiveResolveTypesI(const Type *DstTy, const Type *SrcTy,
Chris Lattner0b228bf2008-06-16 21:00:18 +0000164 LinkerTypeMap &Pointers) {
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000165 if (DstTy == SrcTy) return false; // If already equal, noop
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166
167 // If we found our opaque type, resolve it now!
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000168 if (isa<OpaqueType>(DstTy) || isa<OpaqueType>(SrcTy))
169 return ResolveTypes(DstTy, SrcTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170
171 // Two types cannot be resolved together if they are of different primitive
172 // type. For example, we cannot resolve an int to a float.
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000173 if (DstTy->getTypeID() != SrcTy->getTypeID()) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174
Chris Lattnere174d322008-06-16 20:03:01 +0000175 // If neither type is abstract, then they really are just different types.
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000176 if (!DstTy->isAbstract() && !SrcTy->isAbstract())
Chris Lattnere174d322008-06-16 20:03:01 +0000177 return true;
178
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 // Otherwise, resolve the used type used by this derived type...
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000180 switch (DstTy->getTypeID()) {
Chris Lattner6b9bdb72008-06-16 18:27:53 +0000181 default:
182 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 case Type::FunctionTyID: {
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000184 const FunctionType *DstFT = cast<FunctionType>(DstTy);
185 const FunctionType *SrcFT = cast<FunctionType>(SrcTy);
Chris Lattner41fed262008-06-16 19:55:40 +0000186 if (DstFT->isVarArg() != SrcFT->isVarArg() ||
187 DstFT->getNumContainedTypes() != SrcFT->getNumContainedTypes())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 return true;
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000189
190 // Use TypeHolder's so recursive resolution won't break us.
191 PATypeHolder ST(SrcFT), DT(DstFT);
192 for (unsigned i = 0, e = DstFT->getNumContainedTypes(); i != e; ++i) {
193 const Type *SE = ST->getContainedType(i), *DE = DT->getContainedType(i);
194 if (SE != DE && RecursiveResolveTypesI(DE, SE, Pointers))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 return true;
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000196 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 return false;
198 }
199 case Type::StructTyID: {
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000200 const StructType *DstST = cast<StructType>(DstTy);
201 const StructType *SrcST = cast<StructType>(SrcTy);
Chris Lattner41fed262008-06-16 19:55:40 +0000202 if (DstST->getNumContainedTypes() != SrcST->getNumContainedTypes())
Chris Lattner6b9bdb72008-06-16 18:27:53 +0000203 return true;
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000204
205 PATypeHolder ST(SrcST), DT(DstST);
206 for (unsigned i = 0, e = DstST->getNumContainedTypes(); i != e; ++i) {
207 const Type *SE = ST->getContainedType(i), *DE = DT->getContainedType(i);
208 if (SE != DE && RecursiveResolveTypesI(DE, SE, Pointers))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 return true;
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000210 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 return false;
212 }
213 case Type::ArrayTyID: {
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000214 const ArrayType *DAT = cast<ArrayType>(DstTy);
215 const ArrayType *SAT = cast<ArrayType>(SrcTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 if (DAT->getNumElements() != SAT->getNumElements()) return true;
217 return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(),
Chris Lattner06638ab2008-06-16 18:19:05 +0000218 Pointers);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 }
Chris Lattner6b9bdb72008-06-16 18:27:53 +0000220 case Type::VectorTyID: {
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000221 const VectorType *DVT = cast<VectorType>(DstTy);
222 const VectorType *SVT = cast<VectorType>(SrcTy);
Chris Lattner6b9bdb72008-06-16 18:27:53 +0000223 if (DVT->getNumElements() != SVT->getNumElements()) return true;
224 return RecursiveResolveTypesI(DVT->getElementType(), SVT->getElementType(),
225 Pointers);
226 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 case Type::PointerTyID: {
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000228 const PointerType *DstPT = cast<PointerType>(DstTy);
229 const PointerType *SrcPT = cast<PointerType>(SrcTy);
Chris Lattner41fed262008-06-16 19:55:40 +0000230
231 if (DstPT->getAddressSpace() != SrcPT->getAddressSpace())
232 return true;
233
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 // If this is a pointer type, check to see if we have already seen it. If
235 // so, we are in a recursive branch. Cut off the search now. We cannot use
236 // an associative container for this search, because the type pointers (keys
Chris Lattner0b228bf2008-06-16 21:00:18 +0000237 // in the container) change whenever types get resolved.
238 if (SrcPT->isAbstract())
239 if (const Type *ExistingDestTy = Pointers.lookup(SrcPT))
240 return ExistingDestTy != DstPT;
241
242 if (DstPT->isAbstract())
243 if (const Type *ExistingSrcTy = Pointers.lookup(DstPT))
244 return ExistingSrcTy != SrcPT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 // Otherwise, add the current pointers to the vector to stop recursion on
246 // this pair.
Chris Lattner0b228bf2008-06-16 21:00:18 +0000247 if (DstPT->isAbstract())
248 Pointers.insert(DstPT, SrcPT);
249 if (SrcPT->isAbstract())
250 Pointers.insert(SrcPT, DstPT);
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000251
Chris Lattner41fed262008-06-16 19:55:40 +0000252 return RecursiveResolveTypesI(DstPT->getElementType(),
253 SrcPT->getElementType(), Pointers);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 }
256}
257
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000258static bool RecursiveResolveTypes(const Type *DestTy, const Type *SrcTy) {
Chris Lattner0b228bf2008-06-16 21:00:18 +0000259 LinkerTypeMap PointerTypes;
Chris Lattner06638ab2008-06-16 18:19:05 +0000260 return RecursiveResolveTypesI(DestTy, SrcTy, PointerTypes);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261}
262
263
264// LinkTypes - Go through the symbol table of the Src module and see if any
265// types are named in the src module that are not named in the Dst module.
266// Make sure there are no type name conflicts.
267static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
268 TypeSymbolTable *DestST = &Dest->getTypeSymbolTable();
269 const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable();
270
271 // Look for a type plane for Type's...
272 TypeSymbolTable::const_iterator TI = SrcST->begin();
273 TypeSymbolTable::const_iterator TE = SrcST->end();
274 if (TI == TE) return false; // No named types, do nothing.
275
276 // Some types cannot be resolved immediately because they depend on other
277 // types being resolved to each other first. This contains a list of types we
278 // are waiting to recheck.
279 std::vector<std::string> DelayedTypesToResolve;
280
281 for ( ; TI != TE; ++TI ) {
282 const std::string &Name = TI->first;
283 const Type *RHS = TI->second;
284
Chris Lattner06638ab2008-06-16 18:19:05 +0000285 // Check to see if this type name is already in the dest module.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 Type *Entry = DestST->lookup(Name);
287
Chris Lattner06638ab2008-06-16 18:19:05 +0000288 // If the name is just in the source module, bring it over to the dest.
289 if (Entry == 0) {
290 if (!Name.empty())
291 DestST->insert(Name, const_cast<Type*>(RHS));
292 } else if (ResolveTypes(Entry, RHS)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 // They look different, save the types 'till later to resolve.
294 DelayedTypesToResolve.push_back(Name);
295 }
296 }
297
298 // Iteratively resolve types while we can...
299 while (!DelayedTypesToResolve.empty()) {
300 // Loop over all of the types, attempting to resolve them if possible...
301 unsigned OldSize = DelayedTypesToResolve.size();
302
303 // Try direct resolution by name...
304 for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) {
305 const std::string &Name = DelayedTypesToResolve[i];
306 Type *T1 = SrcST->lookup(Name);
307 Type *T2 = DestST->lookup(Name);
Chris Lattner06638ab2008-06-16 18:19:05 +0000308 if (!ResolveTypes(T2, T1)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 // We are making progress!
310 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
311 --i;
312 }
313 }
314
315 // Did we not eliminate any types?
316 if (DelayedTypesToResolve.size() == OldSize) {
317 // Attempt to resolve subelements of types. This allows us to merge these
318 // two types: { int* } and { opaque* }
319 for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) {
320 const std::string &Name = DelayedTypesToResolve[i];
Chris Lattnerb2d8a032008-06-16 21:17:12 +0000321 if (!RecursiveResolveTypes(SrcST->lookup(Name), DestST->lookup(Name))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 // We are making progress!
323 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
324
325 // Go back to the main loop, perhaps we can resolve directly by name
326 // now...
327 break;
328 }
329 }
330
331 // If we STILL cannot resolve the types, then there is something wrong.
332 if (DelayedTypesToResolve.size() == OldSize) {
333 // Remove the symbol name from the destination.
334 DelayedTypesToResolve.pop_back();
335 }
336 }
337 }
338
339
340 return false;
341}
342
343static void PrintMap(const std::map<const Value*, Value*> &M) {
344 for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end();
345 I != E; ++I) {
346 cerr << " Fr: " << (void*)I->first << " ";
347 I->first->dump();
348 cerr << " To: " << (void*)I->second << " ";
349 I->second->dump();
350 cerr << "\n";
351 }
352}
353
354
355// RemapOperand - Use ValueMap to convert constants from one module to another.
356static Value *RemapOperand(const Value *In,
357 std::map<const Value*, Value*> &ValueMap) {
358 std::map<const Value*,Value*>::const_iterator I = ValueMap.find(In);
359 if (I != ValueMap.end())
360 return I->second;
361
362 // Check to see if it's a constant that we are interested in transforming.
363 Value *Result = 0;
364 if (const Constant *CPV = dyn_cast<Constant>(In)) {
365 if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) ||
366 isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV))
367 return const_cast<Constant*>(CPV); // Simple constants stay identical.
368
369 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
370 std::vector<Constant*> Operands(CPA->getNumOperands());
371 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
372 Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap));
373 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
374 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
375 std::vector<Constant*> Operands(CPS->getNumOperands());
376 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
377 Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap));
378 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
379 } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) {
380 Result = const_cast<Constant*>(CPV);
381 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CPV)) {
382 std::vector<Constant*> Operands(CP->getNumOperands());
383 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
384 Operands[i] = cast<Constant>(RemapOperand(CP->getOperand(i), ValueMap));
385 Result = ConstantVector::get(Operands);
386 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
387 std::vector<Constant*> Ops;
388 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
389 Ops.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),ValueMap)));
390 Result = CE->getWithOperands(Ops);
391 } else if (isa<GlobalValue>(CPV)) {
392 assert(0 && "Unmapped global?");
393 } else {
394 assert(0 && "Unknown type of derived type constant value!");
395 }
396 } else if (isa<InlineAsm>(In)) {
397 Result = const_cast<Value*>(In);
398 }
399
400 // Cache the mapping in our local map structure
401 if (Result) {
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000402 ValueMap[In] = Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 return Result;
404 }
405
406
407 cerr << "LinkModules ValueMap: \n";
408 PrintMap(ValueMap);
409
410 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
411 assert(0 && "Couldn't remap value!");
412 return 0;
413}
414
415/// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict
416/// in the symbol table. This is good for all clients except for us. Go
417/// through the trouble to force this back.
418static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
419 assert(GV->getName() != Name && "Can't force rename to self");
420 ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable();
421
422 // If there is a conflict, rename the conflict.
423 if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) {
424 assert(ConflictGV->hasInternalLinkage() &&
425 "Not conflicting with a static global, should link instead!");
426 GV->takeName(ConflictGV);
427 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
428 assert(ConflictGV->getName() != Name && "ForceRenaming didn't work");
429 } else {
430 GV->setName(Name); // Force the name back
431 }
432}
433
434/// CopyGVAttributes - copy additional attributes (those not needed to construct
435/// a GlobalValue) from the SrcGV to the DestGV.
436static void CopyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sands0cc90582008-05-26 19:58:59 +0000437 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
438 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
439 DestGV->copyAttributesFrom(SrcGV);
440 DestGV->setAlignment(Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441}
442
443/// GetLinkageResult - This analyzes the two global values and determines what
444/// the result will look like in the destination module. In particular, it
445/// computes the resultant linkage type, computes whether the global in the
446/// source should be copied over to the destination (replacing the existing
447/// one), and computes whether this linkage is an error or not. It also performs
448/// visibility checks: we cannot link together two symbols with different
449/// visibilities.
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000450static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
452 std::string *Err) {
453 assert((!Dest || !Src->hasInternalLinkage()) &&
454 "If Src has internal linkage, Dest shouldn't be set!");
455 if (!Dest) {
456 // Linking something to nothing.
457 LinkFromSrc = true;
458 LT = Src->getLinkage();
459 } else if (Src->isDeclaration()) {
Anton Korobeynikov15520982008-03-10 22:33:22 +0000460 // If Src is external or if both Src & Dest are external.. Just link the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 // external globals, we aren't adding anything.
462 if (Src->hasDLLImportLinkage()) {
463 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
464 if (Dest->isDeclaration()) {
465 LinkFromSrc = true;
466 LT = Src->getLinkage();
467 }
468 } else if (Dest->hasExternalWeakLinkage()) {
469 //If the Dest is weak, use the source linkage
470 LinkFromSrc = true;
471 LT = Src->getLinkage();
472 } else {
473 LinkFromSrc = false;
474 LT = Dest->getLinkage();
475 }
476 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
477 // If Dest is external but Src is not:
478 LinkFromSrc = true;
479 LT = Src->getLinkage();
480 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
481 if (Src->getLinkage() != Dest->getLinkage())
482 return Error(Err, "Linking globals named '" + Src->getName() +
483 "': can only link appending global with another appending global!");
484 LinkFromSrc = true; // Special cased.
485 LT = Src->getLinkage();
Dale Johannesen49c44122008-05-14 20:12:51 +0000486 } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage() ||
487 Src->hasCommonLinkage()) {
488 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
489 // or DLL* linkage.
490 if ((Dest->hasLinkOnceLinkage() &&
491 (Src->hasWeakLinkage() || Src->hasCommonLinkage())) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492 Dest->hasExternalWeakLinkage()) {
493 LinkFromSrc = true;
494 LT = Src->getLinkage();
495 } else {
496 LinkFromSrc = false;
497 LT = Dest->getLinkage();
498 }
Dale Johannesen49c44122008-05-14 20:12:51 +0000499 } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage() ||
500 Dest->hasCommonLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501 // At this point we know that Src has External* or DLL* linkage.
502 if (Src->hasExternalWeakLinkage()) {
503 LinkFromSrc = false;
504 LT = Dest->getLinkage();
505 } else {
506 LinkFromSrc = true;
507 LT = GlobalValue::ExternalLinkage;
508 }
509 } else {
510 assert((Dest->hasExternalLinkage() ||
511 Dest->hasDLLImportLinkage() ||
512 Dest->hasDLLExportLinkage() ||
513 Dest->hasExternalWeakLinkage()) &&
514 (Src->hasExternalLinkage() ||
515 Src->hasDLLImportLinkage() ||
516 Src->hasDLLExportLinkage() ||
517 Src->hasExternalWeakLinkage()) &&
518 "Unexpected linkage type!");
519 return Error(Err, "Linking globals named '" + Src->getName() +
520 "': symbol multiply defined!");
521 }
522
523 // Check visibility
524 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattnerb69fcb82007-08-19 22:22:54 +0000525 if (!Src->isDeclaration() && !Dest->isDeclaration())
526 return Error(Err, "Linking globals named '" + Src->getName() +
527 "': symbols have different visibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 return false;
529}
530
531// LinkGlobals - Loop through the global variables in the src module and merge
532// them into the dest module.
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000533static bool LinkGlobals(Module *Dest, const Module *Src,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 std::map<const Value*, Value*> &ValueMap,
535 std::multimap<std::string, GlobalVariable *> &AppendingVars,
536 std::string *Err) {
537 // Loop over all of the globals in the src module, mapping them over as we go
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000538 for (Module::const_global_iterator I = Src->global_begin(), E = Src->global_end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539 I != E; ++I) {
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000540 const GlobalVariable *SGV = I;
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000541 GlobalValue *DGV = 0;
542
543 // Check to see if may have to link the global with the global
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544 if (SGV->hasName() && !SGV->hasInternalLinkage()) {
545 DGV = Dest->getGlobalVariable(SGV->getName());
546 if (DGV && DGV->getType() != SGV->getType())
547 // If types don't agree due to opaque types, try to resolve them.
Chris Lattner06638ab2008-06-16 18:19:05 +0000548 RecursiveResolveTypes(SGV->getType(), DGV->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 }
550
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000551 // Check to see if may have to link the global with the alias
Anton Korobeynikov702d1cd2008-03-10 22:35:31 +0000552 if (!DGV && SGV->hasName() && !SGV->hasInternalLinkage()) {
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000553 DGV = Dest->getNamedAlias(SGV->getName());
554 if (DGV && DGV->getType() != SGV->getType())
555 // If types don't agree due to opaque types, try to resolve them.
Chris Lattner06638ab2008-06-16 18:19:05 +0000556 RecursiveResolveTypes(SGV->getType(), DGV->getType());
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000557 }
558
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000559 if (DGV && DGV->hasInternalLinkage())
560 DGV = 0;
561
Dan Gohman930191f2007-10-08 15:13:30 +0000562 assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
563 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564 "Global must either be external or have an initializer!");
565
566 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
567 bool LinkFromSrc = false;
568 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
569 return true;
570
571 if (!DGV) {
572 // No linking to be performed, simply create an identical version of the
573 // symbol over in the dest module... the initializer will be filled in
574 // later by LinkGlobalInits...
575 GlobalVariable *NewDGV =
576 new GlobalVariable(SGV->getType()->getElementType(),
577 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Chris Lattner29ae6c52008-06-27 03:10:24 +0000578 SGV->getName(), Dest, false,
579 SGV->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 // Propagate alignment, visibility and section info.
581 CopyGVAttributes(NewDGV, SGV);
582
583 // If the LLVM runtime renamed the global, but it is an externally visible
584 // symbol, DGV must be an existing global with internal linkage. Rename
585 // it.
586 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
587 ForceRenaming(NewDGV, SGV->getName());
588
589 // Make sure to remember this mapping...
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000590 ValueMap[SGV] = NewDGV;
591
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 if (SGV->hasAppendingLinkage())
593 // Keep track that this is an appending variable...
594 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
595 } else if (DGV->hasAppendingLinkage()) {
596 // No linking is performed yet. Just insert a new copy of the global, and
597 // keep track of the fact that it is an appending variable in the
598 // AppendingVars map. The name is cleared out so that no linkage is
599 // performed.
600 GlobalVariable *NewDGV =
601 new GlobalVariable(SGV->getType()->getElementType(),
602 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Chris Lattner29ae6c52008-06-27 03:10:24 +0000603 "", Dest, false,
604 SGV->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605
Anton Korobeynikov4da527c2008-03-07 18:34:50 +0000606 // Set alignment allowing CopyGVAttributes merge it with alignment of SGV.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607 NewDGV->setAlignment(DGV->getAlignment());
Anton Korobeynikov4da527c2008-03-07 18:34:50 +0000608 // Propagate alignment, section and visibility info.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609 CopyGVAttributes(NewDGV, SGV);
610
611 // Make sure to remember this mapping...
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000612 ValueMap[SGV] = NewDGV;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613
614 // Keep track that this is an appending variable...
615 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000616 } else if (GlobalAlias *DGA = dyn_cast<GlobalAlias>(DGV)) {
617 // SGV is global, but DGV is alias. The only valid mapping is when SGV is
618 // external declaration, which is effectively a no-op. Also make sure
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000619 // linkage calculation was correct.
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000620 if (SGV->isDeclaration() && !LinkFromSrc) {
621 // Make sure to remember this mapping...
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000622 ValueMap[SGV] = DGA;
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000623 } else
Anton Korobeynikov82a21e42008-03-10 22:34:46 +0000624 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
625 "': symbol multiple defined");
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000626 } else if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000627 // Otherwise, perform the global-global mapping as instructed by
628 // GetLinkageResult.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 if (LinkFromSrc) {
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000630 // Propagate alignment, section, and visibility info.
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000631 CopyGVAttributes(DGVar, SGV);
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000632
633 // If the types don't match, and if we are to link from the source, nuke
634 // DGV and create a new one of the appropriate type.
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000635 if (SGV->getType() != DGVar->getType()) {
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000636 GlobalVariable *NewDGV =
637 new GlobalVariable(SGV->getType()->getElementType(),
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000638 DGVar->isConstant(), DGVar->getLinkage(),
Chris Lattner29ae6c52008-06-27 03:10:24 +0000639 /*init*/0, DGVar->getName(), Dest, false,
640 SGV->getType()->getAddressSpace());
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000641 CopyGVAttributes(NewDGV, DGVar);
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000642 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV,
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000643 DGVar->getType()));
644 // DGVar will conflict with NewDGV because they both had the same
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000645 // name. We must erase this now so ForceRenaming doesn't assert
646 // because DGV might not have internal linkage.
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000647 DGVar->eraseFromParent();
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000648
649 // If the symbol table renamed the global, but it is an externally
650 // visible symbol, DGV must be an existing global with internal
651 // linkage. Rename it.
652 if (NewDGV->getName() != SGV->getName() &&
653 !NewDGV->hasInternalLinkage())
654 ForceRenaming(NewDGV, SGV->getName());
655
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000656 DGVar = NewDGV;
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000657 }
658
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659 // Inherit const as appropriate
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000660 DGVar->setConstant(SGV->isConstant());
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000661
662 // Set initializer to zero, so we can link the stuff later
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000663 DGVar->setInitializer(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664 } else {
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000665 // Special case for const propagation
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000666 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
667 DGVar->setConstant(true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 }
669
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000670 // Set calculated linkage
Anton Korobeynikov30dd7162008-03-10 22:34:28 +0000671 DGVar->setLinkage(NewLinkage);
Anton Korobeynikovebb58502008-03-10 22:33:53 +0000672
673 // Make sure to remember this mapping...
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000674 ValueMap[SGV] = ConstantExpr::getBitCast(DGVar, SGV->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000675 }
676 }
677 return false;
678}
679
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000680static GlobalValue::LinkageTypes
681CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) {
682 if (SGV->hasExternalLinkage() || DGV->hasExternalLinkage())
683 return GlobalValue::ExternalLinkage;
684 else if (SGV->hasWeakLinkage() || DGV->hasWeakLinkage())
685 return GlobalValue::WeakLinkage;
686 else {
687 assert(SGV->hasInternalLinkage() && DGV->hasInternalLinkage() &&
688 "Unexpected linkage type");
689 return GlobalValue::InternalLinkage;
690 }
691}
692
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693// LinkAlias - Loop through the alias in the src module and link them into the
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000694// dest module. We're assuming, that all functions/global variables were already
695// linked in.
Anton Korobeynikov3cfecfd2008-03-05 15:27:21 +0000696static bool LinkAlias(Module *Dest, const Module *Src,
697 std::map<const Value*, Value*> &ValueMap,
698 std::string *Err) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699 // Loop over all alias in the src module
700 for (Module::const_alias_iterator I = Src->alias_begin(),
701 E = Src->alias_end(); I != E; ++I) {
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000702 const GlobalAlias *SGA = I;
703 const GlobalValue *SAliasee = SGA->getAliasedGlobal();
704 GlobalAlias *NewGA = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000705
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000706 // Globals were already linked, thus we can just query ValueMap for variant
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000707 // of SAliasee in Dest.
Ted Kremenekd40cdd22008-03-09 18:32:50 +0000708 std::map<const Value*,Value*>::const_iterator VMI = ValueMap.find(SAliasee);
709 assert(VMI != ValueMap.end() && "Aliasee not linked");
710 GlobalValue* DAliasee = cast<GlobalValue>(VMI->second);
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000711 GlobalValue* DGV = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000713 // Try to find something 'similar' to SGA in destination module.
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000714 if (!DGV && !SGA->hasInternalLinkage()) {
715 DGV = Dest->getNamedAlias(SGA->getName());
Anton Korobeynikov3cfecfd2008-03-05 15:27:21 +0000716
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000717 // If types don't agree due to opaque types, try to resolve them.
718 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner06638ab2008-06-16 18:19:05 +0000719 if (RecursiveResolveTypes(SGA->getType(), DGV->getType()))
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000720 return Error(Err, "Alias Collision on '" + SGA->getName()+
721 "': aliases have different types");
722 }
723
724 if (!DGV && !SGA->hasInternalLinkage()) {
725 DGV = Dest->getGlobalVariable(SGA->getName());
726
727 // If types don't agree due to opaque types, try to resolve them.
728 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner06638ab2008-06-16 18:19:05 +0000729 if (RecursiveResolveTypes(SGA->getType(), DGV->getType()))
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000730 return Error(Err, "Alias Collision on '" + SGA->getName()+
731 "': aliases have different types");
732 }
733
734 if (!DGV && !SGA->hasInternalLinkage()) {
735 DGV = Dest->getFunction(SGA->getName());
736
737 // If types don't agree due to opaque types, try to resolve them.
738 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner06638ab2008-06-16 18:19:05 +0000739 if (RecursiveResolveTypes(SGA->getType(), DGV->getType()))
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000740 return Error(Err, "Alias Collision on '" + SGA->getName()+
741 "': aliases have different types");
742 }
743
744 // No linking to be performed on internal stuff.
745 if (DGV && DGV->hasInternalLinkage())
746 DGV = NULL;
747
748 if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) {
749 // Types are known to be the same, check whether aliasees equal. As
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000750 // globals are already linked we just need query ValueMap to find the
751 // mapping.
752 if (DAliasee == DGA->getAliasedGlobal()) {
753 // This is just two copies of the same alias. Propagate linkage, if
754 // necessary.
755 DGA->setLinkage(CalculateAliasLinkage(SGA, DGA));
756
757 NewGA = DGA;
758 // Proceed to 'common' steps
759 } else
Anton Korobeynikov82a21e42008-03-10 22:34:46 +0000760 return Error(Err, "Alias Collision on '" + SGA->getName()+
761 "': aliases have different aliasees");
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000762 } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) {
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000763 // The only allowed way is to link alias with external declaration.
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000764 if (DGVar->isDeclaration()) {
Anton Korobeynikov0a67e052008-03-10 22:36:53 +0000765 // But only if aliasee is global too...
766 if (!isa<GlobalVariable>(DAliasee))
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000767 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
768 "': aliasee is not global variable");
Anton Korobeynikov0a67e052008-03-10 22:36:53 +0000769
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000770 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
771 SGA->getName(), DAliasee, Dest);
772 CopyGVAttributes(NewGA, SGA);
773
774 // Any uses of DGV need to change to NewGA, with cast, if needed.
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000775 if (SGA->getType() != DGVar->getType())
776 DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
777 DGVar->getType()));
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000778 else
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000779 DGVar->replaceAllUsesWith(NewGA);
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000780
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000781 // DGVar will conflict with NewGA because they both had the same
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000782 // name. We must erase this now so ForceRenaming doesn't assert
783 // because DGV might not have internal linkage.
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000784 DGVar->eraseFromParent();
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000785
786 // Proceed to 'common' steps
787 } else
Anton Korobeynikov82a21e42008-03-10 22:34:46 +0000788 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
789 "': symbol multiple defined");
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000790 } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) {
Anton Korobeynikovcdf208a2008-03-05 23:08:16 +0000791 // The only allowed way is to link alias with external declaration.
792 if (DF->isDeclaration()) {
Anton Korobeynikov0a67e052008-03-10 22:36:53 +0000793 // But only if aliasee is function too...
794 if (!isa<Function>(DAliasee))
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000795 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
796 "': aliasee is not function");
Anton Korobeynikov0a67e052008-03-10 22:36:53 +0000797
Anton Korobeynikovcdf208a2008-03-05 23:08:16 +0000798 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
799 SGA->getName(), DAliasee, Dest);
800 CopyGVAttributes(NewGA, SGA);
801
802 // Any uses of DF need to change to NewGA, with cast, if needed.
803 if (SGA->getType() != DF->getType())
804 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
805 DF->getType()));
806 else
807 DF->replaceAllUsesWith(NewGA);
808
809 // DF will conflict with NewGA because they both had the same
810 // name. We must erase this now so ForceRenaming doesn't assert
811 // because DF might not have internal linkage.
812 DF->eraseFromParent();
813
814 // Proceed to 'common' steps
815 } else
Anton Korobeynikov82a21e42008-03-10 22:34:46 +0000816 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
817 "': symbol multiple defined");
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000818 } else {
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000819 // No linking to be performed, simply create an identical version of the
820 // alias over in the dest module...
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000821
822 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
823 SGA->getName(), DAliasee, Dest);
824 CopyGVAttributes(NewGA, SGA);
825
826 // Proceed to 'common' steps
827 }
828
829 assert(NewGA && "No alias was created in destination module!");
830
Anton Korobeynikov552ccce2008-03-10 22:36:35 +0000831 // If the symbol table renamed the alias, but it is an externally visible
Anton Korobeynikov1b4f1f72008-05-10 14:41:43 +0000832 // symbol, DGA must be an global value with internal linkage. Rename it.
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000833 if (NewGA->getName() != SGA->getName() &&
834 !NewGA->hasInternalLinkage())
835 ForceRenaming(NewGA, SGA->getName());
836
837 // Remember this mapping so uses in the source module get remapped
838 // later by RemapOperand.
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +0000839 ValueMap[SGA] = NewGA;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840 }
Anton Korobeynikovd0391562008-03-05 22:22:46 +0000841
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 return false;
843}
844
845
846// LinkGlobalInits - Update the initializers in the Dest module now that all
847// globals that may be referenced are in Dest.
848static bool LinkGlobalInits(Module *Dest, const Module *Src,
849 std::map<const Value*, Value*> &ValueMap,
850 std::string *Err) {
851
852 // Loop over all of the globals in the src module, mapping them over as we go
853 for (Module::const_global_iterator I = Src->global_begin(),
854 E = Src->global_end(); I != E; ++I) {
855 const GlobalVariable *SGV = I;
856
857 if (SGV->hasInitializer()) { // Only process initialized GV's
858 // Figure out what the initializer looks like in the dest module...
859 Constant *SInit =
860 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
861
Anton Korobeynikov48fc88f2008-05-07 22:54:15 +0000862 GlobalVariable *DGV =
863 cast<GlobalVariable>(ValueMap[SGV]->stripPointerCasts());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000864 if (DGV->hasInitializer()) {
865 if (SGV->hasExternalLinkage()) {
866 if (DGV->getInitializer() != SInit)
Anton Korobeynikov82a21e42008-03-10 22:34:46 +0000867 return Error(Err, "Global Variable Collision on '" + SGV->getName() +
868 "': global variables have different initializers");
Dale Johannesen49c44122008-05-14 20:12:51 +0000869 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage() ||
870 DGV->hasCommonLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 // Nothing is required, mapped values will take the new global
872 // automatically.
Dale Johannesen49c44122008-05-14 20:12:51 +0000873 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage() ||
874 SGV->hasCommonLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 // Nothing is required, mapped values will take the new global
876 // automatically.
877 } else if (DGV->hasAppendingLinkage()) {
878 assert(0 && "Appending linkage unimplemented!");
879 } else {
880 assert(0 && "Unknown linkage!");
881 }
882 } else {
883 // Copy the initializer over now...
884 DGV->setInitializer(SInit);
885 }
886 }
887 }
888 return false;
889}
890
891// LinkFunctionProtos - Link the functions together between the two modules,
892// without doing function bodies... this just adds external function prototypes
893// to the Dest function...
894//
895static bool LinkFunctionProtos(Module *Dest, const Module *Src,
896 std::map<const Value*, Value*> &ValueMap,
897 std::string *Err) {
898 // Loop over all of the functions in the src module, mapping them over
899 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
900 const Function *SF = I; // SrcFunction
Chris Lattner1426bfa2008-06-09 07:36:11 +0000901
Anton Korobeynikovfdeba112008-07-05 23:03:21 +0000902 GlobalValue *DGV = 0;
Chris Lattnera518cc92008-06-20 05:29:39 +0000903 Value *MappedDF;
Chris Lattner1426bfa2008-06-09 07:36:11 +0000904
905 // If this function is internal or has no name, it doesn't participate in
906 // linkage.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907 if (SF->hasName() && !SF->hasInternalLinkage()) {
908 // Check to see if may have to link the function.
Anton Korobeynikovfdeba112008-07-05 23:03:21 +0000909 DGV = Dest->getFunction(SF->getName());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 }
Anton Korobeynikovfdeba112008-07-05 23:03:21 +0000911
912 // Check to see if may have to link the function with the alias
913 if (!DGV && SF->hasName() && !SF->hasInternalLinkage()) {
914 DGV = Dest->getNamedAlias(SF->getName());
915 if (DGV && DGV->getType() != SF->getType())
916 // If types don't agree due to opaque types, try to resolve them.
917 RecursiveResolveTypes(SF->getType(), DGV->getType());
918 }
919
920 if (DGV && DGV->hasInternalLinkage())
921 DGV = 0;
922
Chris Lattner1426bfa2008-06-09 07:36:11 +0000923 // If there is no linkage to be performed, just bring over SF without
924 // modifying it.
Anton Korobeynikovfdeba112008-07-05 23:03:21 +0000925 if (DGV == 0) {
Chris Lattner1426bfa2008-06-09 07:36:11 +0000926 // Function does not already exist, simply insert an function signature
927 // identical to SF into the dest module.
928 Function *NewDF = Function::Create(SF->getFunctionType(),
929 SF->getLinkage(),
930 SF->getName(), Dest);
931 CopyGVAttributes(NewDF, SF);
932
933 // If the LLVM runtime renamed the function, but it is an externally
934 // visible symbol, DF must be an existing function with internal linkage.
935 // Rename it.
936 if (!NewDF->hasInternalLinkage() && NewDF->getName() != SF->getName())
937 ForceRenaming(NewDF, SF->getName());
938
939 // ... and remember this mapping...
940 ValueMap[SF] = NewDF;
941 continue;
Anton Korobeynikovfdeba112008-07-05 23:03:21 +0000942 } else if (GlobalAlias *DGA = dyn_cast<GlobalAlias>(DGV)) {
943 // SF is global, but DF is alias. The only valid mapping is when SF is
944 // external declaration, which is effectively a no-op.
945 if (!SF->isDeclaration())
946 return Error(Err, "Function-Alias Collision on '" + SF->getName() +
947 "': symbol multiple defined");
948
949 // Make sure to remember this mapping...
950 ValueMap[SF] = DGA;
951 continue;
Chris Lattner1426bfa2008-06-09 07:36:11 +0000952 }
Anton Korobeynikovfdeba112008-07-05 23:03:21 +0000953
954 Function* DF = cast<Function>(DGV);
Chris Lattner1426bfa2008-06-09 07:36:11 +0000955 // If types don't agree because of opaque, try to resolve them.
956 if (SF->getType() != DF->getType())
Chris Lattner06638ab2008-06-16 18:19:05 +0000957 RecursiveResolveTypes(SF->getType(), DF->getType());
Chris Lattner1426bfa2008-06-09 07:36:11 +0000958
959 // Check visibility, merging if a definition overrides a prototype.
960 if (SF->getVisibility() != DF->getVisibility()) {
Chris Lattnerb69fcb82007-08-19 22:22:54 +0000961 // If one is a prototype, ignore its visibility. Prototypes are always
962 // overridden by the definition.
963 if (!SF->isDeclaration() && !DF->isDeclaration())
964 return Error(Err, "Linking functions named '" + SF->getName() +
965 "': symbols have different visibilities!");
Chris Lattnerf7e84192008-06-09 07:25:28 +0000966
967 // Otherwise, replace the visibility of DF if DF is a prototype.
968 if (DF->isDeclaration())
969 DF->setVisibility(SF->getVisibility());
Chris Lattnerb69fcb82007-08-19 22:22:54 +0000970 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971
Chris Lattner1426bfa2008-06-09 07:36:11 +0000972 if (DF->getType() != SF->getType()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 if (DF->isDeclaration() && !SF->isDeclaration()) {
974 // We have a definition of the same name but different type in the
975 // source module. Copy the prototype to the destination and replace
976 // uses of the destination's prototype with the new prototype.
Gabor Greifb91ea9d2008-05-15 10:04:30 +0000977 Function *NewDF = Function::Create(SF->getFunctionType(),
978 SF->getLinkage(),
Gabor Greifd6da1d02008-04-06 20:25:17 +0000979 SF->getName(), Dest);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 CopyGVAttributes(NewDF, SF);
981
982 // Any uses of DF need to change to NewDF, with cast
983 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType()));
984
985 // DF will conflict with NewDF because they both had the same. We must
986 // erase this now so ForceRenaming doesn't assert because DF might
987 // not have internal linkage.
988 DF->eraseFromParent();
989
990 // If the symbol table renamed the function, but it is an externally
991 // visible symbol, DF must be an existing function with internal
992 // linkage. Rename it.
993 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
994 ForceRenaming(NewDF, SF->getName());
995
996 // Remember this mapping so uses in the source module get remapped
997 // later by RemapOperand.
998 ValueMap[SF] = NewDF;
Chris Lattnera518cc92008-06-20 05:29:39 +0000999 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 } else {
Chris Lattnera518cc92008-06-20 05:29:39 +00001001 // We have two functions of the same name but different type. Any use
1002 // of the source must be mapped to the destination, with a cast.
1003 MappedDF = ConstantExpr::getBitCast(DF, SF->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004 }
Chris Lattnera518cc92008-06-20 05:29:39 +00001005 } else {
1006 MappedDF = DF;
Chris Lattner1426bfa2008-06-09 07:36:11 +00001007 }
1008
1009 if (SF->isDeclaration()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 // If SF is a declaration or if both SF & DF are declarations, just link
1011 // the declarations, we aren't adding anything.
1012 if (SF->hasDLLImportLinkage()) {
1013 if (DF->isDeclaration()) {
Chris Lattnera518cc92008-06-20 05:29:39 +00001014 ValueMap[SF] = MappedDF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001015 DF->setLinkage(SF->getLinkage());
Chris Lattnerc082fd42008-06-09 07:47:34 +00001016 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017 } else {
Chris Lattnera518cc92008-06-20 05:29:39 +00001018 ValueMap[SF] = MappedDF;
Chris Lattnerc082fd42008-06-09 07:47:34 +00001019 }
1020 continue;
1021 }
1022
1023 // If DF is external but SF is not, link the external functions, update
1024 // linkage qualifiers.
1025 if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Chris Lattnera518cc92008-06-20 05:29:39 +00001026 ValueMap.insert(std::make_pair(SF, MappedDF));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027 DF->setLinkage(SF->getLinkage());
Chris Lattnerc082fd42008-06-09 07:47:34 +00001028 continue;
1029 }
1030
1031 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
1032 if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage() ||
1033 SF->hasCommonLinkage()) {
Chris Lattnera518cc92008-06-20 05:29:39 +00001034 ValueMap[SF] = MappedDF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035
1036 // Linkonce+Weak = Weak
1037 // *+External Weak = *
Dale Johannesen49c44122008-05-14 20:12:51 +00001038 if ((DF->hasLinkOnceLinkage() &&
1039 (SF->hasWeakLinkage() || SF->hasCommonLinkage())) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040 DF->hasExternalWeakLinkage())
1041 DF->setLinkage(SF->getLinkage());
Chris Lattnerc082fd42008-06-09 07:47:34 +00001042 continue;
1043 }
1044
1045 if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage() ||
1046 DF->hasCommonLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 // At this point we know that SF has LinkOnce or External* linkage.
Chris Lattnera518cc92008-06-20 05:29:39 +00001048 ValueMap[SF] = MappedDF;
Chris Lattnerc082fd42008-06-09 07:47:34 +00001049
1050 // If the source function has stronger linkage than the destination,
1051 // its body and linkage should override ours.
1052 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage()) {
1053 // Don't inherit linkonce & external weak linkage.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 DF->setLinkage(SF->getLinkage());
Chris Lattnerc082fd42008-06-09 07:47:34 +00001055 DF->deleteBody();
1056 }
1057 continue;
1058 }
1059
1060 if (SF->getLinkage() != DF->getLinkage())
1061 return Error(Err, "Functions named '" + SF->getName() +
1062 "' have different linkage specifiers!");
1063
1064 // The function is defined identically in both modules!
1065 if (SF->hasExternalLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 return Error(Err, "Function '" +
1067 ToStr(SF->getFunctionType(), Src) + "':\"" +
1068 SF->getName() + "\" - Function is already defined!");
Chris Lattnerc082fd42008-06-09 07:47:34 +00001069 assert(0 && "Unknown linkage configuration found!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070 }
1071 return false;
1072}
1073
1074// LinkFunctionBody - Copy the source function over into the dest function and
1075// fix up references to values. At this point we know that Dest is an external
1076// function, and that Src is not.
1077static bool LinkFunctionBody(Function *Dest, Function *Src,
1078 std::map<const Value*, Value*> &ValueMap,
1079 std::string *Err) {
1080 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
1081
1082 // Go through and convert function arguments over, remembering the mapping.
1083 Function::arg_iterator DI = Dest->arg_begin();
1084 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1085 I != E; ++I, ++DI) {
Owen Andersonab567f82008-04-14 17:38:21 +00001086 DI->setName(I->getName()); // Copy the name information over...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
1088 // Add a mapping to our local map
Anton Korobeynikovef1eb5e2008-03-10 22:36:08 +00001089 ValueMap[I] = DI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090 }
1091
1092 // Splice the body of the source function into the dest function.
1093 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
1094
1095 // At this point, all of the instructions and values of the function are now
1096 // copied over. The only problem is that they are still referencing values in
1097 // the Source function as operands. Loop through all of the operands of the
1098 // functions and patch them up to point to the local versions...
1099 //
1100 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
1101 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1102 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
1103 OI != OE; ++OI)
1104 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
1105 *OI = RemapOperand(*OI, ValueMap);
1106
1107 // There is no need to map the arguments anymore.
1108 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1109 I != E; ++I)
1110 ValueMap.erase(I);
1111
1112 return false;
1113}
1114
1115
1116// LinkFunctionBodies - Link in the function bodies that are defined in the
1117// source module into the DestModule. This consists basically of copying the
1118// function over and fixing up references to values.
1119static bool LinkFunctionBodies(Module *Dest, Module *Src,
1120 std::map<const Value*, Value*> &ValueMap,
1121 std::string *Err) {
1122
1123 // Loop over all of the functions in the src module, mapping them over as we
1124 // go
1125 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
1126 if (!SF->isDeclaration()) { // No body if function is external
Chris Lattnera518cc92008-06-20 05:29:39 +00001127 Function *DF = dyn_cast<Function>(ValueMap[SF]); // Destination function
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128
1129 // DF not external SF external?
Chris Lattnera518cc92008-06-20 05:29:39 +00001130 if (DF && DF->isDeclaration())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131 // Only provide the function body if there isn't one already.
1132 if (LinkFunctionBody(DF, SF, ValueMap, Err))
1133 return true;
1134 }
1135 }
1136 return false;
1137}
1138
1139// LinkAppendingVars - If there were any appending global variables, link them
1140// together now. Return true on error.
1141static bool LinkAppendingVars(Module *M,
1142 std::multimap<std::string, GlobalVariable *> &AppendingVars,
1143 std::string *ErrorMsg) {
1144 if (AppendingVars.empty()) return false; // Nothing to do.
1145
1146 // Loop over the multimap of appending vars, processing any variables with the
1147 // same name, forming a new appending global variable with both of the
1148 // initializers merged together, then rewrite references to the old variables
1149 // and delete them.
1150 std::vector<Constant*> Inits;
1151 while (AppendingVars.size() > 1) {
1152 // Get the first two elements in the map...
1153 std::multimap<std::string,
1154 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
1155
1156 // If the first two elements are for different names, there is no pair...
1157 // Otherwise there is a pair, so link them together...
1158 if (First->first == Second->first) {
1159 GlobalVariable *G1 = First->second, *G2 = Second->second;
1160 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
1161 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
1162
1163 // Check to see that they two arrays agree on type...
1164 if (T1->getElementType() != T2->getElementType())
1165 return Error(ErrorMsg,
1166 "Appending variables with different element types need to be linked!");
1167 if (G1->isConstant() != G2->isConstant())
1168 return Error(ErrorMsg,
1169 "Appending variables linked with different const'ness!");
1170
1171 if (G1->getAlignment() != G2->getAlignment())
1172 return Error(ErrorMsg,
1173 "Appending variables with different alignment need to be linked!");
1174
1175 if (G1->getVisibility() != G2->getVisibility())
1176 return Error(ErrorMsg,
1177 "Appending variables with different visibility need to be linked!");
1178
1179 if (G1->getSection() != G2->getSection())
1180 return Error(ErrorMsg,
1181 "Appending variables with different section name need to be linked!");
1182
1183 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
1184 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
1185
1186 G1->setName(""); // Clear G1's name in case of a conflict!
1187
1188 // Create the new global variable...
1189 GlobalVariable *NG =
1190 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Chris Lattner29ae6c52008-06-27 03:10:24 +00001191 /*init*/0, First->first, M, G1->isThreadLocal(),
1192 G1->getType()->getAddressSpace());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001193
1194 // Propagate alignment, visibility and section info.
1195 CopyGVAttributes(NG, G1);
1196
1197 // Merge the initializer...
1198 Inits.reserve(NewSize);
1199 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
1200 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1201 Inits.push_back(I->getOperand(i));
1202 } else {
1203 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
1204 Constant *CV = Constant::getNullValue(T1->getElementType());
1205 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1206 Inits.push_back(CV);
1207 }
1208 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
1209 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1210 Inits.push_back(I->getOperand(i));
1211 } else {
1212 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
1213 Constant *CV = Constant::getNullValue(T2->getElementType());
1214 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1215 Inits.push_back(CV);
1216 }
1217 NG->setInitializer(ConstantArray::get(NewType, Inits));
1218 Inits.clear();
1219
1220 // Replace any uses of the two global variables with uses of the new
1221 // global...
1222
1223 // FIXME: This should rewrite simple/straight-forward uses such as
1224 // getelementptr instructions to not use the Cast!
1225 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
1226 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
1227
1228 // Remove the two globals from the module now...
1229 M->getGlobalList().erase(G1);
1230 M->getGlobalList().erase(G2);
1231
1232 // Put the new global into the AppendingVars map so that we can handle
1233 // linking of more than two vars...
1234 Second->second = NG;
1235 }
1236 AppendingVars.erase(First);
1237 }
1238
1239 return false;
1240}
1241
Anton Korobeynikovfdad2d82008-03-05 23:21:39 +00001242static bool ResolveAliases(Module *Dest) {
1243 for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end();
Anton Korobeynikov82192622008-03-11 22:51:09 +00001244 I != E; ++I)
1245 if (const GlobalValue *GV = I->resolveAliasedGlobal())
1246 if (!GV->isDeclaration())
1247 I->replaceAllUsesWith(const_cast<GlobalValue*>(GV));
Anton Korobeynikovfdad2d82008-03-05 23:21:39 +00001248
1249 return false;
1250}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001251
1252// LinkModules - This function links two modules together, with the resulting
1253// left module modified to be the composite of the two input modules. If an
1254// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
1255// the problem. Upon failure, the Dest module could be in a modified state, and
1256// shouldn't be relied on to be consistent.
1257bool
1258Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
1259 assert(Dest != 0 && "Invalid Destination module");
1260 assert(Src != 0 && "Invalid Source Module");
1261
1262 if (Dest->getDataLayout().empty()) {
1263 if (!Src->getDataLayout().empty()) {
1264 Dest->setDataLayout(Src->getDataLayout());
1265 } else {
1266 std::string DataLayout;
1267
Anton Korobeynikovfb782ce2008-02-20 11:27:04 +00001268 if (Dest->getEndianness() == Module::AnyEndianness) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001269 if (Src->getEndianness() == Module::BigEndian)
1270 DataLayout.append("E");
1271 else if (Src->getEndianness() == Module::LittleEndian)
1272 DataLayout.append("e");
Anton Korobeynikovfb782ce2008-02-20 11:27:04 +00001273 }
1274
1275 if (Dest->getPointerSize() == Module::AnyPointerSize) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276 if (Src->getPointerSize() == Module::Pointer64)
1277 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
1278 else if (Src->getPointerSize() == Module::Pointer32)
1279 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
Anton Korobeynikovfb782ce2008-02-20 11:27:04 +00001280 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281 Dest->setDataLayout(DataLayout);
1282 }
1283 }
1284
Chris Lattner85dd49c2008-02-19 18:49:08 +00001285 // Copy the target triple from the source to dest if the dest's is empty.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
1287 Dest->setTargetTriple(Src->getTargetTriple());
1288
1289 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
1290 Src->getDataLayout() != Dest->getDataLayout())
1291 cerr << "WARNING: Linking two modules of different data layouts!\n";
1292 if (!Src->getTargetTriple().empty() &&
1293 Dest->getTargetTriple() != Src->getTargetTriple())
1294 cerr << "WARNING: Linking two modules of different target triples!\n";
1295
Chris Lattner85dd49c2008-02-19 18:49:08 +00001296 // Append the module inline asm string.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001297 if (!Src->getModuleInlineAsm().empty()) {
1298 if (Dest->getModuleInlineAsm().empty())
1299 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
1300 else
1301 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
1302 Src->getModuleInlineAsm());
1303 }
1304
1305 // Update the destination module's dependent libraries list with the libraries
1306 // from the source module. There's no opportunity for duplicates here as the
1307 // Module ensures that duplicate insertions are discarded.
Chris Lattner85dd49c2008-02-19 18:49:08 +00001308 for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end();
1309 SI != SE; ++SI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310 Dest->addLibrary(*SI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001311
1312 // LinkTypes - Go through the symbol table of the Src module and see if any
1313 // types are named in the src module that are not named in the Dst module.
1314 // Make sure there are no type name conflicts.
1315 if (LinkTypes(Dest, Src, ErrorMsg))
1316 return true;
1317
1318 // ValueMap - Mapping of values from what they used to be in Src, to what they
1319 // are now in Dest.
1320 std::map<const Value*, Value*> ValueMap;
1321
1322 // AppendingVars - Keep track of global variables in the destination module
1323 // with appending linkage. After the module is linked together, they are
1324 // appended and the module is rewritten.
1325 std::multimap<std::string, GlobalVariable *> AppendingVars;
1326 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1327 I != E; ++I) {
1328 // Add all of the appending globals already in the Dest module to
1329 // AppendingVars.
1330 if (I->hasAppendingLinkage())
1331 AppendingVars.insert(std::make_pair(I->getName(), I));
1332 }
1333
1334 // Insert all of the globals in src into the Dest module... without linking
1335 // initializers (which could refer to functions not yet mapped over).
1336 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
1337 return true;
1338
1339 // Link the functions together between the two modules, without doing function
1340 // bodies... this just adds external function prototypes to the Dest
1341 // function... We do this so that when we begin processing function bodies,
1342 // all of the global values that may be referenced are available in our
1343 // ValueMap.
1344 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
1345 return true;
1346
Anton Korobeynikov3cfecfd2008-03-05 15:27:21 +00001347 // If there were any alias, link them now. We really need to do this now,
1348 // because all of the aliases that may be referenced need to be available in
1349 // ValueMap
1350 if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true;
1351
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001352 // Update the initializers in the Dest module now that all globals that may
1353 // be referenced are in Dest.
1354 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1355
1356 // Link in the function bodies that are defined in the source module into the
1357 // DestModule. This consists basically of copying the function over and
1358 // fixing up references to values.
1359 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
1360
1361 // If there were any appending global variables, link them together now.
1362 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1363
Anton Korobeynikova68796c2008-03-05 23:08:47 +00001364 // Resolve all uses of aliases with aliasees
1365 if (ResolveAliases(Dest)) return true;
1366
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001367 // If the source library's module id is in the dependent library list of the
1368 // destination library, remove it since that module is now linked in.
1369 sys::Path modId;
1370 modId.set(Src->getModuleIdentifier());
1371 if (!modId.isEmpty())
1372 Dest->removeLibrary(modId.getBasename());
1373
1374 return false;
1375}
1376
1377// vim: sw=2