blob: 19d22475f653262267c423bbff565c7db0a0479b [file] [log] [blame]
Mikhail Glushenkovc834bbf2009-03-03 10:04:23 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner52f7e902001-10-13 07:03:50 +00009//
10// This file implements the LLVM module linker.
11//
12// Specifically, this:
Chris Lattner8d2de8a2001-10-15 03:12:52 +000013// * Merges global variables between the two modules
14// * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +000015// * Merges functions between two modules
Chris Lattner52f7e902001-10-13 07:03:50 +000016//
17//===----------------------------------------------------------------------===//
18
Reid Spencer7cc371a2004-11-14 23:27:04 +000019#include "llvm/Linker.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
Owen Andersonc9ab7bf2009-07-07 21:07:14 +000022#include "llvm/LLVMContext.h"
Chris Lattner5c377c52001-10-14 23:29:15 +000023#include "llvm/Module.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000024#include "llvm/TypeSymbolTable.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000025#include "llvm/ValueSymbolTable.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000026#include "llvm/Instructions.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000027#include "llvm/Assembly/Writer.h"
David Greene0fbf0e32010-01-05 01:27:59 +000028#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Chris Lattner74382b72009-08-23 22:45:37 +000030#include "llvm/Support/raw_ostream.h"
Reid Spencer57a0efa2004-09-11 04:25:17 +000031#include "llvm/System/Path.h"
Dan Gohman05ea54e2010-08-24 18:50:07 +000032#include "llvm/Transforms/Utils/ValueMapper.h"
Chris Lattner62a81a12008-06-16 21:00:18 +000033#include "llvm/ADT/DenseMap.h"
Chris Lattnerf7703df2004-01-09 06:12:26 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattner5c377c52001-10-14 23:29:15 +000036// Error - Simple wrapper function to conditionally assign to E and return true.
37// This just makes error return conditions a little bit simpler...
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +000038static inline bool Error(std::string *E, const Twine &Message) {
39 if (E) *E = Message.str();
Chris Lattner5c377c52001-10-14 23:29:15 +000040 return true;
41}
42
John Criswell700867b2003-11-04 15:22:26 +000043// Function: ResolveTypes()
44//
45// Description:
46// Attempt to link the two specified types together.
47//
48// Inputs:
49// DestTy - The type to which we wish to resolve.
50// SrcTy - The original type which we want to resolve.
John Criswell700867b2003-11-04 15:22:26 +000051//
52// Outputs:
53// DestST - The symbol table in which the new type should be placed.
54//
55// Return value:
56// true - There is an error and the types cannot yet be linked.
57// false - No errors.
Chris Lattner4c00e532003-05-15 16:30:55 +000058//
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000059static bool ResolveTypes(const Type *DestTy, const Type *SrcTy) {
Chris Lattnere76c57a2003-08-22 06:07:12 +000060 if (DestTy == SrcTy) return false; // If already equal, noop
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000061 assert(DestTy && SrcTy && "Can't handle null types");
Chris Lattnere76c57a2003-08-22 06:07:12 +000062
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000063 if (const OpaqueType *OT = dyn_cast<OpaqueType>(DestTy)) {
64 // Type _is_ in module, just opaque...
65 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(SrcTy);
66 } else if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) {
67 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy);
68 } else {
69 return true; // Cannot link types... not-equal and neither is opaque.
Chris Lattner4c00e532003-05-15 16:30:55 +000070 }
71 return false;
72}
73
Chris Lattner62a81a12008-06-16 21:00:18 +000074/// LinkerTypeMap - This implements a map of types that is stable
75/// even if types are resolved/refined to other types. This is not a general
76/// purpose map, it is specific to the linker's use.
77namespace {
78class LinkerTypeMap : public AbstractTypeUser {
79 typedef DenseMap<const Type*, PATypeHolder> TheMapTy;
80 TheMapTy TheMap;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000081
Argyrios Kyrtzidis8c8b9ee2010-08-15 10:27:23 +000082 LinkerTypeMap(const LinkerTypeMap&); // DO NOT IMPLEMENT
83 void operator=(const LinkerTypeMap&); // DO NOT IMPLEMENT
Chris Lattnerfc196f92008-06-16 23:06:51 +000084public:
85 LinkerTypeMap() {}
86 ~LinkerTypeMap() {
Chris Lattner62a81a12008-06-16 21:00:18 +000087 for (DenseMap<const Type*, PATypeHolder>::iterator I = TheMap.begin(),
88 E = TheMap.end(); I != E; ++I)
89 I->first->removeAbstractTypeUser(this);
90 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000091
Chris Lattner62a81a12008-06-16 21:00:18 +000092 /// lookup - Return the value for the specified type or null if it doesn't
93 /// exist.
94 const Type *lookup(const Type *Ty) const {
95 TheMapTy::const_iterator I = TheMap.find(Ty);
96 if (I != TheMap.end()) return I->second;
97 return 0;
98 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000099
Chris Lattner62a81a12008-06-16 21:00:18 +0000100 /// erase - Remove the specified type, returning true if it was in the set.
101 bool erase(const Type *Ty) {
102 if (!TheMap.erase(Ty))
103 return false;
104 if (Ty->isAbstract())
105 Ty->removeAbstractTypeUser(this);
106 return true;
107 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000108
Chris Lattner62a81a12008-06-16 21:00:18 +0000109 /// insert - This returns true if the pointer was new to the set, false if it
110 /// was already in the set.
111 bool insert(const Type *Src, const Type *Dst) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000112 if (!TheMap.insert(std::make_pair(Src, PATypeHolder(Dst))).second)
Chris Lattner62a81a12008-06-16 21:00:18 +0000113 return false; // Already in map.
114 if (Src->isAbstract())
115 Src->addAbstractTypeUser(this);
116 return true;
117 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000118
Chris Lattner62a81a12008-06-16 21:00:18 +0000119protected:
120 /// refineAbstractType - The callback method invoked when an abstract type is
121 /// resolved to another type. An object must override this method to update
122 /// its internal state to reference NewType instead of OldType.
123 ///
124 virtual void refineAbstractType(const DerivedType *OldTy,
125 const Type *NewTy) {
126 TheMapTy::iterator I = TheMap.find(OldTy);
127 const Type *DstTy = I->second;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000128
Chris Lattner62a81a12008-06-16 21:00:18 +0000129 TheMap.erase(I);
130 if (OldTy->isAbstract())
131 OldTy->removeAbstractTypeUser(this);
132
133 // Don't reinsert into the map if the key is concrete now.
134 if (NewTy->isAbstract())
135 insert(NewTy, DstTy);
136 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000137
Chris Lattner62a81a12008-06-16 21:00:18 +0000138 /// The other case which AbstractTypeUsers must be aware of is when a type
139 /// makes the transition from being abstract (where it has clients on it's
140 /// AbstractTypeUsers list) to concrete (where it does not). This method
141 /// notifies ATU's when this occurs for a type.
142 virtual void typeBecameConcrete(const DerivedType *AbsTy) {
143 TheMap.erase(AbsTy);
144 AbsTy->removeAbstractTypeUser(this);
145 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000146
Chris Lattner62a81a12008-06-16 21:00:18 +0000147 // for debugging...
148 virtual void dump() const {
David Greene0fbf0e32010-01-05 01:27:59 +0000149 dbgs() << "AbstractTypeSet!\n";
Chris Lattner62a81a12008-06-16 21:00:18 +0000150 }
151};
152}
153
154
Chris Lattnere76c57a2003-08-22 06:07:12 +0000155// RecursiveResolveTypes - This is just like ResolveTypes, except that it
156// recurses down into derived types, merging the used types if the parent types
157// are compatible.
Chris Lattnera4477f92008-06-16 21:17:12 +0000158static bool RecursiveResolveTypesI(const Type *DstTy, const Type *SrcTy,
Chris Lattner62a81a12008-06-16 21:00:18 +0000159 LinkerTypeMap &Pointers) {
Chris Lattnera4477f92008-06-16 21:17:12 +0000160 if (DstTy == SrcTy) return false; // If already equal, noop
Misha Brukmanf976c852005-04-21 22:55:34 +0000161
Chris Lattnere76c57a2003-08-22 06:07:12 +0000162 // If we found our opaque type, resolve it now!
Duncan Sands47c51882010-02-16 14:50:09 +0000163 if (DstTy->isOpaqueTy() || SrcTy->isOpaqueTy())
Chris Lattnera4477f92008-06-16 21:17:12 +0000164 return ResolveTypes(DstTy, SrcTy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000165
Chris Lattnere76c57a2003-08-22 06:07:12 +0000166 // Two types cannot be resolved together if they are of different primitive
167 // type. For example, we cannot resolve an int to a float.
Chris Lattnera4477f92008-06-16 21:17:12 +0000168 if (DstTy->getTypeID() != SrcTy->getTypeID()) return true;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000169
Chris Lattner56539652008-06-16 20:03:01 +0000170 // If neither type is abstract, then they really are just different types.
Chris Lattnera4477f92008-06-16 21:17:12 +0000171 if (!DstTy->isAbstract() && !SrcTy->isAbstract())
Chris Lattner56539652008-06-16 20:03:01 +0000172 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000173
Chris Lattnere76c57a2003-08-22 06:07:12 +0000174 // Otherwise, resolve the used type used by this derived type...
Chris Lattnera4477f92008-06-16 21:17:12 +0000175 switch (DstTy->getTypeID()) {
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000176 default:
177 return true;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000178 case Type::FunctionTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000179 const FunctionType *DstFT = cast<FunctionType>(DstTy);
180 const FunctionType *SrcFT = cast<FunctionType>(SrcTy);
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000181 if (DstFT->isVarArg() != SrcFT->isVarArg() ||
182 DstFT->getNumContainedTypes() != SrcFT->getNumContainedTypes())
Chris Lattner43f4ba82003-08-22 19:12:55 +0000183 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000184
Chris Lattnera4477f92008-06-16 21:17:12 +0000185 // Use TypeHolder's so recursive resolution won't break us.
186 PATypeHolder ST(SrcFT), DT(DstFT);
187 for (unsigned i = 0, e = DstFT->getNumContainedTypes(); i != e; ++i) {
188 const Type *SE = ST->getContainedType(i), *DE = DT->getContainedType(i);
189 if (SE != DE && RecursiveResolveTypesI(DE, SE, Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000190 return true;
Chris Lattnera4477f92008-06-16 21:17:12 +0000191 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000192 return false;
193 }
194 case Type::StructTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000195 const StructType *DstST = cast<StructType>(DstTy);
196 const StructType *SrcST = cast<StructType>(SrcTy);
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000197 if (DstST->getNumContainedTypes() != SrcST->getNumContainedTypes())
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000198 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000199
Chris Lattnera4477f92008-06-16 21:17:12 +0000200 PATypeHolder ST(SrcST), DT(DstST);
201 for (unsigned i = 0, e = DstST->getNumContainedTypes(); i != e; ++i) {
202 const Type *SE = ST->getContainedType(i), *DE = DT->getContainedType(i);
203 if (SE != DE && RecursiveResolveTypesI(DE, SE, Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000204 return true;
Chris Lattnera4477f92008-06-16 21:17:12 +0000205 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000206 return false;
207 }
208 case Type::ArrayTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000209 const ArrayType *DAT = cast<ArrayType>(DstTy);
210 const ArrayType *SAT = cast<ArrayType>(SrcTy);
Chris Lattnere76c57a2003-08-22 06:07:12 +0000211 if (DAT->getNumElements() != SAT->getNumElements()) return true;
Chris Lattnere3092c92003-08-23 21:25:54 +0000212 return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(),
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000213 Pointers);
Chris Lattnere76c57a2003-08-22 06:07:12 +0000214 }
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000215 case Type::VectorTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000216 const VectorType *DVT = cast<VectorType>(DstTy);
217 const VectorType *SVT = cast<VectorType>(SrcTy);
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000218 if (DVT->getNumElements() != SVT->getNumElements()) return true;
219 return RecursiveResolveTypesI(DVT->getElementType(), SVT->getElementType(),
220 Pointers);
221 }
Chris Lattnere3092c92003-08-23 21:25:54 +0000222 case Type::PointerTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000223 const PointerType *DstPT = cast<PointerType>(DstTy);
224 const PointerType *SrcPT = cast<PointerType>(SrcTy);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000225
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000226 if (DstPT->getAddressSpace() != SrcPT->getAddressSpace())
227 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000228
Chris Lattnere3092c92003-08-23 21:25:54 +0000229 // If this is a pointer type, check to see if we have already seen it. If
230 // so, we are in a recursive branch. Cut off the search now. We cannot use
231 // an associative container for this search, because the type pointers (keys
Chris Lattner62a81a12008-06-16 21:00:18 +0000232 // in the container) change whenever types get resolved.
233 if (SrcPT->isAbstract())
234 if (const Type *ExistingDestTy = Pointers.lookup(SrcPT))
235 return ExistingDestTy != DstPT;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000236
Chris Lattner62a81a12008-06-16 21:00:18 +0000237 if (DstPT->isAbstract())
238 if (const Type *ExistingSrcTy = Pointers.lookup(DstPT))
239 return ExistingSrcTy != SrcPT;
Chris Lattnere3092c92003-08-23 21:25:54 +0000240 // Otherwise, add the current pointers to the vector to stop recursion on
241 // this pair.
Chris Lattner62a81a12008-06-16 21:00:18 +0000242 if (DstPT->isAbstract())
243 Pointers.insert(DstPT, SrcPT);
244 if (SrcPT->isAbstract())
245 Pointers.insert(SrcPT, DstPT);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000246
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000247 return RecursiveResolveTypesI(DstPT->getElementType(),
248 SrcPT->getElementType(), Pointers);
Chris Lattnere3092c92003-08-23 21:25:54 +0000249 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000250 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000251}
252
Chris Lattnera4477f92008-06-16 21:17:12 +0000253static bool RecursiveResolveTypes(const Type *DestTy, const Type *SrcTy) {
Chris Lattner62a81a12008-06-16 21:00:18 +0000254 LinkerTypeMap PointerTypes;
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000255 return RecursiveResolveTypesI(DestTy, SrcTy, PointerTypes);
Chris Lattnere3092c92003-08-23 21:25:54 +0000256}
257
Chris Lattnere76c57a2003-08-22 06:07:12 +0000258
Chris Lattner2c236f32001-11-03 05:18:24 +0000259// LinkTypes - Go through the symbol table of the Src module and see if any
260// types are named in the src module that are not named in the Dst module.
261// Make sure there are no type name conflicts.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000262static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000263 TypeSymbolTable *DestST = &Dest->getTypeSymbolTable();
264 const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable();
Chris Lattner2c236f32001-11-03 05:18:24 +0000265
266 // Look for a type plane for Type's...
Reid Spencer78d033e2007-01-06 07:24:44 +0000267 TypeSymbolTable::const_iterator TI = SrcST->begin();
268 TypeSymbolTable::const_iterator TE = SrcST->end();
Reid Spencer567bc2c2004-05-25 08:52:20 +0000269 if (TI == TE) return false; // No named types, do nothing.
Chris Lattner2c236f32001-11-03 05:18:24 +0000270
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000271 // Some types cannot be resolved immediately because they depend on other
272 // types being resolved to each other first. This contains a list of types we
273 // are waiting to recheck.
Chris Lattner4c00e532003-05-15 16:30:55 +0000274 std::vector<std::string> DelayedTypesToResolve;
275
Reid Spencer567bc2c2004-05-25 08:52:20 +0000276 for ( ; TI != TE; ++TI ) {
277 const std::string &Name = TI->first;
Reid Spencerc28a2242004-07-04 11:52:49 +0000278 const Type *RHS = TI->second;
Chris Lattner2c236f32001-11-03 05:18:24 +0000279
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000280 // Check to see if this type name is already in the dest module.
Reid Spencer78d033e2007-01-06 07:24:44 +0000281 Type *Entry = DestST->lookup(Name);
Chris Lattner2f6bb2b2003-01-30 20:53:43 +0000282
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000283 // If the name is just in the source module, bring it over to the dest.
284 if (Entry == 0) {
285 if (!Name.empty())
286 DestST->insert(Name, const_cast<Type*>(RHS));
287 } else if (ResolveTypes(Entry, RHS)) {
Chris Lattner4c00e532003-05-15 16:30:55 +0000288 // They look different, save the types 'till later to resolve.
289 DelayedTypesToResolve.push_back(Name);
Chris Lattner2c236f32001-11-03 05:18:24 +0000290 }
291 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000292
293 // Iteratively resolve types while we can...
294 while (!DelayedTypesToResolve.empty()) {
295 // Loop over all of the types, attempting to resolve them if possible...
296 unsigned OldSize = DelayedTypesToResolve.size();
297
Chris Lattnere76c57a2003-08-22 06:07:12 +0000298 // Try direct resolution by name...
Chris Lattner4c00e532003-05-15 16:30:55 +0000299 for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) {
300 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer78d033e2007-01-06 07:24:44 +0000301 Type *T1 = SrcST->lookup(Name);
302 Type *T2 = DestST->lookup(Name);
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000303 if (!ResolveTypes(T2, T1)) {
Chris Lattner4c00e532003-05-15 16:30:55 +0000304 // We are making progress!
305 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
306 --i;
307 }
308 }
309
310 // Did we not eliminate any types?
311 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000312 // Attempt to resolve subelements of types. This allows us to merge these
313 // two types: { int* } and { opaque* }
Chris Lattner4c00e532003-05-15 16:30:55 +0000314 for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) {
315 const std::string &Name = DelayedTypesToResolve[i];
Chris Lattnera4477f92008-06-16 21:17:12 +0000316 if (!RecursiveResolveTypes(SrcST->lookup(Name), DestST->lookup(Name))) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000317 // We are making progress!
318 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
Misha Brukmanf976c852005-04-21 22:55:34 +0000319
Chris Lattnere76c57a2003-08-22 06:07:12 +0000320 // Go back to the main loop, perhaps we can resolve directly by name
321 // now...
322 break;
323 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000324 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000325
326 // If we STILL cannot resolve the types, then there is something wrong.
Chris Lattnere76c57a2003-08-22 06:07:12 +0000327 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattneraeb18ce2003-10-21 22:46:38 +0000328 // Remove the symbol name from the destination.
329 DelayedTypesToResolve.pop_back();
Chris Lattnere76c57a2003-08-22 06:07:12 +0000330 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000331 }
332 }
333
334
Chris Lattner2c236f32001-11-03 05:18:24 +0000335 return false;
336}
337
Reid Spencer8bef0372007-02-04 04:29:21 +0000338/// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict
339/// in the symbol table. This is good for all clients except for us. Go
340/// through the trouble to force this back.
Chris Lattnerc0036282004-08-04 07:05:54 +0000341static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
342 assert(GV->getName() != Name && "Can't force rename to self");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000343 ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable();
Chris Lattnerc0036282004-08-04 07:05:54 +0000344
345 // If there is a conflict, rename the conflict.
Chris Lattner33f29492007-02-11 00:39:38 +0000346 if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) {
Rafael Espindolabb46f522009-01-15 20:18:42 +0000347 assert(ConflictGV->hasLocalLinkage() &&
Reid Spenceref9b9a72007-02-05 20:47:22 +0000348 "Not conflicting with a static global, should link instead!");
Chris Lattner33f29492007-02-11 00:39:38 +0000349 GV->takeName(ConflictGV);
350 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Reid Spenceref9b9a72007-02-05 20:47:22 +0000351 assert(ConflictGV->getName() != Name && "ForceRenaming didn't work");
Chris Lattner33f29492007-02-11 00:39:38 +0000352 } else {
353 GV->setName(Name); // Force the name back
Reid Spenceref9b9a72007-02-05 20:47:22 +0000354 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000355}
Reid Spencer8bef0372007-02-04 04:29:21 +0000356
Reid Spenceref9b9a72007-02-05 20:47:22 +0000357/// CopyGVAttributes - copy additional attributes (those not needed to construct
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000358/// a GlobalValue) from the SrcGV to the DestGV.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000359static void CopyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sands28c3cff2008-05-26 19:58:59 +0000360 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
361 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
362 DestGV->copyAttributesFrom(SrcGV);
363 DestGV->setAlignment(Alignment);
Chris Lattnerc0036282004-08-04 07:05:54 +0000364}
365
Chris Lattneraee38ea2004-12-03 22:18:41 +0000366/// GetLinkageResult - This analyzes the two global values and determines what
367/// the result will look like in the destination module. In particular, it
368/// computes the resultant linkage type, computes whether the global in the
369/// source should be copied over to the destination (replacing the existing
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000370/// one), and computes whether this linkage is an error or not. It also performs
371/// visibility checks: we cannot link together two symbols with different
372/// visibilities.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000373static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Chris Lattneraee38ea2004-12-03 22:18:41 +0000374 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
375 std::string *Err) {
Rafael Espindolabb46f522009-01-15 20:18:42 +0000376 assert((!Dest || !Src->hasLocalLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000377 "If Src has internal linkage, Dest shouldn't be set!");
378 if (!Dest) {
379 // Linking something to nothing.
380 LinkFromSrc = true;
381 LT = Src->getLinkage();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000382 } else if (Src->isDeclaration()) {
Anton Korobeynikov2b48ef02008-03-10 22:33:22 +0000383 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattneraee38ea2004-12-03 22:18:41 +0000384 // external globals, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000385 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000386 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000387 if (Dest->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000388 LinkFromSrc = true;
389 LT = Src->getLinkage();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000390 }
Andrew Lenharth8753c442006-12-15 17:35:32 +0000391 } else if (Dest->hasExternalWeakLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000392 // If the Dest is weak, use the source linkage.
Andrew Lenharth8753c442006-12-15 17:35:32 +0000393 LinkFromSrc = true;
394 LT = Src->getLinkage();
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000395 } else {
396 LinkFromSrc = false;
397 LT = Dest->getLinkage();
398 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000399 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000400 // If Dest is external but Src is not:
401 LinkFromSrc = true;
402 LT = Src->getLinkage();
403 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
404 if (Src->getLinkage() != Dest->getLinkage())
405 return Error(Err, "Linking globals named '" + Src->getName() +
406 "': can only link appending global with another appending global!");
407 LinkFromSrc = true; // Special cased.
408 LT = Src->getLinkage();
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000409 } else if (Src->isWeakForLinker()) {
Dale Johannesenaafce772008-05-14 20:12:51 +0000410 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
411 // or DLL* linkage.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000412 if (Dest->hasExternalWeakLinkage() ||
413 Dest->hasAvailableExternallyLinkage() ||
414 (Dest->hasLinkOnceLinkage() &&
415 (Src->hasWeakLinkage() || Src->hasCommonLinkage()))) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000416 LinkFromSrc = true;
417 LT = Src->getLinkage();
418 } else {
419 LinkFromSrc = false;
420 LT = Dest->getLinkage();
421 }
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000422 } else if (Dest->isWeakForLinker()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000423 // At this point we know that Src has External* or DLL* linkage.
424 if (Src->hasExternalWeakLinkage()) {
425 LinkFromSrc = false;
426 LT = Dest->getLinkage();
427 } else {
428 LinkFromSrc = true;
429 LT = GlobalValue::ExternalLinkage;
430 }
Chris Lattneraee38ea2004-12-03 22:18:41 +0000431 } else {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000432 assert((Dest->hasExternalLinkage() ||
433 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000434 Dest->hasDLLExportLinkage() ||
435 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000436 (Src->hasExternalLinkage() ||
437 Src->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000438 Src->hasDLLExportLinkage() ||
439 Src->hasExternalWeakLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000440 "Unexpected linkage type!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000441 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattneraee38ea2004-12-03 22:18:41 +0000442 "': symbol multiply defined!");
443 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000444
445 // Check visibility
446 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattner97f8b092007-08-19 22:22:54 +0000447 if (!Src->isDeclaration() && !Dest->isDeclaration())
448 return Error(Err, "Linking globals named '" + Src->getName() +
449 "': symbols have different visibilities!");
Chris Lattneraee38ea2004-12-03 22:18:41 +0000450 return false;
451}
Chris Lattner5c377c52001-10-14 23:29:15 +0000452
Devang Patelab67e702009-08-11 18:01:24 +0000453// Insert all of the named mdnoes in Src into the Dest module.
Dan Gohmane5835fb2010-08-24 19:31:04 +0000454static void LinkNamedMDNodes(Module *Dest, Module *Src,
455 ValueToValueMapTy &ValueMap) {
Devang Patelab67e702009-08-11 18:01:24 +0000456 for (Module::const_named_metadata_iterator I = Src->named_metadata_begin(),
457 E = Src->named_metadata_end(); I != E; ++I) {
458 const NamedMDNode *SrcNMD = I;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000459 NamedMDNode *DestNMD = Dest->getOrInsertNamedMetadata(SrcNMD->getName());
460 // Add Src elements into Dest node.
461 for (unsigned i = 0, e = SrcNMD->getNumOperands(); i != e; ++i)
Dan Gohmane5835fb2010-08-24 19:31:04 +0000462 DestNMD->addOperand(cast<MDNode>(MapValue(SrcNMD->getOperand(i),
Dan Gohman6cb8c232010-08-26 15:41:53 +0000463 ValueMap,
464 true)));
Devang Patelab67e702009-08-11 18:01:24 +0000465 }
466}
467
Chris Lattner5c377c52001-10-14 23:29:15 +0000468// LinkGlobals - Loop through the global variables in the src module and merge
Chris Lattner8166e6e2003-05-13 21:33:43 +0000469// them into the dest module.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000470static bool LinkGlobals(Module *Dest, const Module *Src,
Dan Gohman05ea54e2010-08-24 18:50:07 +0000471 ValueToValueMapTy &ValueMap,
Chris Lattner8166e6e2003-05-13 21:33:43 +0000472 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000473 std::string *Err) {
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000474 ValueSymbolTable &DestSymTab = Dest->getValueSymbolTable();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000475
Chris Lattner5c377c52001-10-14 23:29:15 +0000476 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner0bb87572008-07-14 05:52:33 +0000477 for (Module::const_global_iterator I = Src->global_begin(),
478 E = Src->global_end(); I != E; ++I) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000479 const GlobalVariable *SGV = I;
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000480 GlobalValue *DGV = 0;
481
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000482 // Check to see if may have to link the global with the global, alias or
483 // function.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000484 if (SGV->hasName() && !SGV->hasLocalLinkage())
Daniel Dunbar03d76512009-07-25 23:55:21 +0000485 DGV = cast_or_null<GlobalValue>(DestSymTab.lookup(SGV->getName()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000486
Chris Lattnerae1132d2008-07-14 06:52:19 +0000487 // If we found a global with the same name in the dest module, but it has
488 // internal linkage, we are really not doing any linkage here.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000489 if (DGV && DGV->hasLocalLinkage())
Chris Lattnerae1132d2008-07-14 06:52:19 +0000490 DGV = 0;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000491
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000492 // If types don't agree due to opaque types, try to resolve them.
493 if (DGV && DGV->getType() != SGV->getType())
494 RecursiveResolveTypes(SGV->getType(), DGV->getType());
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000495
Dan Gohmanc3183292007-10-08 15:13:30 +0000496 assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
497 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) &&
Chris Lattner4ad02e72003-04-16 20:28:45 +0000498 "Global must either be external or have an initializer!");
499
Chris Lattnerb324bd72006-11-09 05:18:12 +0000500 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
501 bool LinkFromSrc = false;
Chris Lattneraee38ea2004-12-03 22:18:41 +0000502 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
503 return true;
Chris Lattner0fec08e2003-04-21 21:07:05 +0000504
Chris Lattner6157e382008-07-14 07:23:24 +0000505 if (DGV == 0) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000506 // No linking to be performed, simply create an identical version of the
507 // symbol over in the dest module... the initializer will be filled in
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000508 // later by LinkGlobalInits.
Chris Lattner2719bac2003-04-21 21:15:04 +0000509 GlobalVariable *NewDGV =
Owen Andersone9b11b42009-07-08 19:03:57 +0000510 new GlobalVariable(*Dest, SGV->getType()->getElementType(),
Chris Lattner2719bac2003-04-21 21:15:04 +0000511 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000512 SGV->getName(), 0, false,
Chris Lattnera534b0f2008-06-27 03:10:24 +0000513 SGV->getType()->getAddressSpace());
Reid Spencer471feac2007-02-04 04:30:33 +0000514 // Propagate alignment, visibility and section info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000515 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000516
Chris Lattner2719bac2003-04-21 21:15:04 +0000517 // If the LLVM runtime renamed the global, but it is an externally visible
518 // symbol, DGV must be an existing global with internal linkage. Rename
519 // it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000520 if (!NewDGV->hasLocalLinkage() && NewDGV->getName() != SGV->getName())
Chris Lattnerc0036282004-08-04 07:05:54 +0000521 ForceRenaming(NewDGV, SGV->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000522
Chris Lattner6157e382008-07-14 07:23:24 +0000523 // Make sure to remember this mapping.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000524 ValueMap[SGV] = NewDGV;
525
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000526 // Keep track that this is an appending variable.
Chris Lattner8166e6e2003-05-13 21:33:43 +0000527 if (SGV->hasAppendingLinkage())
Chris Lattner8166e6e2003-05-13 21:33:43 +0000528 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattner6157e382008-07-14 07:23:24 +0000529 continue;
530 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000531
Chris Lattner6157e382008-07-14 07:23:24 +0000532 // If the visibilities of the symbols disagree and the destination is a
533 // prototype, take the visibility of its input.
534 if (DGV->isDeclaration())
535 DGV->setVisibility(SGV->getVisibility());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000536
Chris Lattner6157e382008-07-14 07:23:24 +0000537 if (DGV->hasAppendingLinkage()) {
Chris Lattner8166e6e2003-05-13 21:33:43 +0000538 // No linking is performed yet. Just insert a new copy of the global, and
539 // keep track of the fact that it is an appending variable in the
540 // AppendingVars map. The name is cleared out so that no linkage is
541 // performed.
542 GlobalVariable *NewDGV =
Owen Andersone9b11b42009-07-08 19:03:57 +0000543 new GlobalVariable(*Dest, SGV->getType()->getElementType(),
Chris Lattner8166e6e2003-05-13 21:33:43 +0000544 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000545 "", 0, false,
Chris Lattnera534b0f2008-06-27 03:10:24 +0000546 SGV->getType()->getAddressSpace());
Chris Lattner8166e6e2003-05-13 21:33:43 +0000547
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000548 // Set alignment allowing CopyGVAttributes merge it with alignment of SGV.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000549 NewDGV->setAlignment(DGV->getAlignment());
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000550 // Propagate alignment, section and visibility info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000551 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000552
Chris Lattner8166e6e2003-05-13 21:33:43 +0000553 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000554 ValueMap[SGV] = NewDGV;
Chris Lattner8166e6e2003-05-13 21:33:43 +0000555
556 // Keep track that this is an appending variable...
557 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattner6157e382008-07-14 07:23:24 +0000558 continue;
559 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000560
Chris Lattner6157e382008-07-14 07:23:24 +0000561 if (LinkFromSrc) {
562 if (isa<GlobalAlias>(DGV))
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000563 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
564 "': symbol multiple defined");
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000565
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000566 // If the types don't match, and if we are to link from the source, nuke
567 // DGV and create a new one of the appropriate type. Note that the thing
568 // we are replacing may be a function (if a prototype, weak, etc) or a
569 // global variable.
570 GlobalVariable *NewDGV =
Owen Andersone9b11b42009-07-08 19:03:57 +0000571 new GlobalVariable(*Dest, SGV->getType()->getElementType(),
Owen Anderson3d29df32009-07-08 01:26:06 +0000572 SGV->isConstant(), NewLinkage, /*init*/0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000573 DGV->getName(), 0, false,
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000574 SGV->getType()->getAddressSpace());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000575
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000576 // Propagate alignment, section, and visibility info.
577 CopyGVAttributes(NewDGV, SGV);
Owen Andersonbaf3c402009-07-29 18:55:55 +0000578 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV,
Owen Andersonc9ab7bf2009-07-07 21:07:14 +0000579 DGV->getType()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000580
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000581 // DGV will conflict with NewDGV because they both had the same
582 // name. We must erase this now so ForceRenaming doesn't assert
583 // because DGV might not have internal linkage.
584 if (GlobalVariable *Var = dyn_cast<GlobalVariable>(DGV))
585 Var->eraseFromParent();
586 else
587 cast<Function>(DGV)->eraseFromParent();
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000588
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000589 // If the symbol table renamed the global, but it is an externally visible
590 // symbol, DGV must be an existing global with internal linkage. Rename.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000591 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasLocalLinkage())
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000592 ForceRenaming(NewDGV, SGV->getName());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000593
Chris Lattner6157e382008-07-14 07:23:24 +0000594 // Inherit const as appropriate.
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000595 NewDGV->setConstant(SGV->isConstant());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000596
Chris Lattner6157e382008-07-14 07:23:24 +0000597 // Make sure to remember this mapping.
598 ValueMap[SGV] = NewDGV;
599 continue;
Chris Lattner5c377c52001-10-14 23:29:15 +0000600 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000601
Chris Lattner6157e382008-07-14 07:23:24 +0000602 // Not "link from source", keep the one in the DestModule and remap the
603 // input onto it.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000604
Chris Lattner6157e382008-07-14 07:23:24 +0000605 // Special case for const propagation.
606 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV))
607 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
608 DGVar->setConstant(true);
609
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000610 // SGV is global, but DGV is alias.
611 if (isa<GlobalAlias>(DGV)) {
612 // The only valid mappings are:
613 // - SGV is external declaration, which is effectively a no-op.
614 // - SGV is weak, when we just need to throw SGV out.
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000615 if (!SGV->isDeclaration() && !SGV->isWeakForLinker())
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000616 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
617 "': symbol multiple defined");
618 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000619
Chris Lattner6157e382008-07-14 07:23:24 +0000620 // Set calculated linkage
621 DGV->setLinkage(NewLinkage);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000622
Chris Lattner6157e382008-07-14 07:23:24 +0000623 // Make sure to remember this mapping...
Owen Andersonbaf3c402009-07-29 18:55:55 +0000624 ValueMap[SGV] = ConstantExpr::getBitCast(DGV, SGV->getType());
Chris Lattner5c377c52001-10-14 23:29:15 +0000625 }
626 return false;
627}
628
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000629static GlobalValue::LinkageTypes
630CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000631 GlobalValue::LinkageTypes SL = SGV->getLinkage();
632 GlobalValue::LinkageTypes DL = DGV->getLinkage();
633 if (SL == GlobalValue::ExternalLinkage || DL == GlobalValue::ExternalLinkage)
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000634 return GlobalValue::ExternalLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +0000635 else if (SL == GlobalValue::WeakAnyLinkage ||
636 DL == GlobalValue::WeakAnyLinkage)
637 return GlobalValue::WeakAnyLinkage;
638 else if (SL == GlobalValue::WeakODRLinkage ||
639 DL == GlobalValue::WeakODRLinkage)
640 return GlobalValue::WeakODRLinkage;
641 else if (SL == GlobalValue::InternalLinkage &&
642 DL == GlobalValue::InternalLinkage)
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000643 return GlobalValue::InternalLinkage;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000644 else if (SL == GlobalValue::LinkerPrivateLinkage &&
645 DL == GlobalValue::LinkerPrivateLinkage)
646 return GlobalValue::LinkerPrivateLinkage;
Bill Wendling4e34d502010-08-24 20:00:52 +0000647 else if (SL == GlobalValue::LinkerPrivateWeakLinkage &&
648 DL == GlobalValue::LinkerPrivateWeakLinkage)
649 return GlobalValue::LinkerPrivateWeakLinkage;
650 else if (SL == GlobalValue::LinkerPrivateWeakDefAutoLinkage &&
651 DL == GlobalValue::LinkerPrivateWeakDefAutoLinkage)
652 return GlobalValue::LinkerPrivateWeakDefAutoLinkage;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000653 else {
Duncan Sands667d4b82009-03-07 15:45:40 +0000654 assert (SL == GlobalValue::PrivateLinkage &&
655 DL == GlobalValue::PrivateLinkage && "Unexpected linkage type");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000656 return GlobalValue::PrivateLinkage;
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000657 }
658}
659
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000660// LinkAlias - Loop through the alias in the src module and link them into the
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000661// dest module. We're assuming, that all functions/global variables were already
662// linked in.
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000663static bool LinkAlias(Module *Dest, const Module *Src,
Dan Gohman05ea54e2010-08-24 18:50:07 +0000664 ValueToValueMapTy &ValueMap,
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000665 std::string *Err) {
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000666 // Loop over all alias in the src module
667 for (Module::const_alias_iterator I = Src->alias_begin(),
668 E = Src->alias_end(); I != E; ++I) {
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000669 const GlobalAlias *SGA = I;
670 const GlobalValue *SAliasee = SGA->getAliasedGlobal();
671 GlobalAlias *NewGA = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000672
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000673 // Globals were already linked, thus we can just query ValueMap for variant
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000674 // of SAliasee in Dest.
Dan Gohman05ea54e2010-08-24 18:50:07 +0000675 ValueToValueMapTy::const_iterator VMI = ValueMap.find(SAliasee);
Ted Kremenek58d5e052008-03-09 18:32:50 +0000676 assert(VMI != ValueMap.end() && "Aliasee not linked");
677 GlobalValue* DAliasee = cast<GlobalValue>(VMI->second);
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000678 GlobalValue* DGV = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000679
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000680 // Try to find something 'similar' to SGA in destination module.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000681 if (!DGV && !SGA->hasLocalLinkage()) {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000682 DGV = Dest->getNamedAlias(SGA->getName());
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000683
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000684 // If types don't agree due to opaque types, try to resolve them.
685 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner5ed2ba22008-07-10 01:09:33 +0000686 RecursiveResolveTypes(SGA->getType(), DGV->getType());
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000687 }
688
Rafael Espindolabb46f522009-01-15 20:18:42 +0000689 if (!DGV && !SGA->hasLocalLinkage()) {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000690 DGV = Dest->getGlobalVariable(SGA->getName());
691
692 // If types don't agree due to opaque types, try to resolve them.
693 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner5ed2ba22008-07-10 01:09:33 +0000694 RecursiveResolveTypes(SGA->getType(), DGV->getType());
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000695 }
696
Rafael Espindolabb46f522009-01-15 20:18:42 +0000697 if (!DGV && !SGA->hasLocalLinkage()) {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000698 DGV = Dest->getFunction(SGA->getName());
699
700 // If types don't agree due to opaque types, try to resolve them.
701 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner5ed2ba22008-07-10 01:09:33 +0000702 RecursiveResolveTypes(SGA->getType(), DGV->getType());
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000703 }
704
705 // No linking to be performed on internal stuff.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000706 if (DGV && DGV->hasLocalLinkage())
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000707 DGV = NULL;
708
709 if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) {
710 // Types are known to be the same, check whether aliasees equal. As
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000711 // globals are already linked we just need query ValueMap to find the
712 // mapping.
713 if (DAliasee == DGA->getAliasedGlobal()) {
714 // This is just two copies of the same alias. Propagate linkage, if
715 // necessary.
716 DGA->setLinkage(CalculateAliasLinkage(SGA, DGA));
717
718 NewGA = DGA;
719 // Proceed to 'common' steps
720 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000721 return Error(Err, "Alias Collision on '" + SGA->getName()+
722 "': aliases have different aliasees");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000723 } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) {
Anton Korobeynikovf88bc652008-07-05 23:33:22 +0000724 // The only allowed way is to link alias with external declaration or weak
725 // symbol..
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000726 if (DGVar->isDeclaration() || DGVar->isWeakForLinker()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000727 // But only if aliasee is global too...
728 if (!isa<GlobalVariable>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000729 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
730 "': aliasee is not global variable");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000731
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000732 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
733 SGA->getName(), DAliasee, Dest);
734 CopyGVAttributes(NewGA, SGA);
735
736 // Any uses of DGV need to change to NewGA, with cast, if needed.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000737 if (SGA->getType() != DGVar->getType())
Owen Andersonbaf3c402009-07-29 18:55:55 +0000738 DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000739 DGVar->getType()));
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000740 else
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000741 DGVar->replaceAllUsesWith(NewGA);
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000742
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000743 // DGVar will conflict with NewGA because they both had the same
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000744 // name. We must erase this now so ForceRenaming doesn't assert
745 // because DGV might not have internal linkage.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000746 DGVar->eraseFromParent();
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000747
748 // Proceed to 'common' steps
749 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000750 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
751 "': symbol multiple defined");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000752 } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) {
Anton Korobeynikovf88bc652008-07-05 23:33:22 +0000753 // The only allowed way is to link alias with external declaration or weak
754 // symbol...
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000755 if (DF->isDeclaration() || DF->isWeakForLinker()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000756 // But only if aliasee is function too...
757 if (!isa<Function>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000758 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
759 "': aliasee is not function");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000760
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000761 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
762 SGA->getName(), DAliasee, Dest);
763 CopyGVAttributes(NewGA, SGA);
764
765 // Any uses of DF need to change to NewGA, with cast, if needed.
766 if (SGA->getType() != DF->getType())
Owen Andersonbaf3c402009-07-29 18:55:55 +0000767 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000768 DF->getType()));
769 else
770 DF->replaceAllUsesWith(NewGA);
771
772 // DF will conflict with NewGA because they both had the same
773 // name. We must erase this now so ForceRenaming doesn't assert
774 // because DF might not have internal linkage.
775 DF->eraseFromParent();
776
777 // Proceed to 'common' steps
778 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000779 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
780 "': symbol multiple defined");
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000781 } else {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000782 // No linking to be performed, simply create an identical version of the
783 // alias over in the dest module...
David Chisnall34722462010-01-09 16:27:31 +0000784 Constant *Aliasee = DAliasee;
785 // Fixup aliases to bitcasts. Note that aliases to GEPs are still broken
786 // by this, but aliases to GEPs are broken to a lot of other things, so
787 // it's less important.
788 if (SGA->getType() != DAliasee->getType())
789 Aliasee = ConstantExpr::getBitCast(DAliasee, SGA->getType());
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000790 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
David Chisnall34722462010-01-09 16:27:31 +0000791 SGA->getName(), Aliasee, Dest);
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000792 CopyGVAttributes(NewGA, SGA);
793
794 // Proceed to 'common' steps
795 }
796
797 assert(NewGA && "No alias was created in destination module!");
798
Anton Korobeynikovb8cdaf72008-03-10 22:36:35 +0000799 // If the symbol table renamed the alias, but it is an externally visible
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000800 // symbol, DGA must be an global value with internal linkage. Rename it.
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000801 if (NewGA->getName() != SGA->getName() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000802 !NewGA->hasLocalLinkage())
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000803 ForceRenaming(NewGA, SGA->getName());
804
805 // Remember this mapping so uses in the source module get remapped
Dan Gohman05ea54e2010-08-24 18:50:07 +0000806 // later by MapValue.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000807 ValueMap[SGA] = NewGA;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000808 }
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000809
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000810 return false;
811}
812
Chris Lattner5c377c52001-10-14 23:29:15 +0000813
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000814// LinkGlobalInits - Update the initializers in the Dest module now that all
815// globals that may be referenced are in Dest.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000816static bool LinkGlobalInits(Module *Dest, const Module *Src,
Dan Gohman05ea54e2010-08-24 18:50:07 +0000817 ValueToValueMapTy &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000818 std::string *Err) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000819 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner11273152006-06-16 01:24:04 +0000820 for (Module::const_global_iterator I = Src->global_begin(),
821 E = Src->global_end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000822 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000823
824 if (SGV->hasInitializer()) { // Only process initialized GV's
825 // Figure out what the initializer looks like in the dest module...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000826 Constant *SInit =
Dan Gohman6cb8c232010-08-26 15:41:53 +0000827 cast<Constant>(MapValue(SGV->getInitializer(), ValueMap, true));
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000828 // Grab destination global variable or alias.
829 GlobalValue *DGV = cast<GlobalValue>(ValueMap[SGV]->stripPointerCasts());
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000830
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000831 // If dest if global variable, check that initializers match.
832 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
833 if (DGVar->hasInitializer()) {
834 if (SGV->hasExternalLinkage()) {
835 if (DGVar->getInitializer() != SInit)
836 return Error(Err, "Global Variable Collision on '" +
837 SGV->getName() +
838 "': global variables have different initializers");
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000839 } else if (DGVar->isWeakForLinker()) {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000840 // Nothing is required, mapped values will take the new global
841 // automatically.
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000842 } else if (SGV->isWeakForLinker()) {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000843 // Nothing is required, mapped values will take the new global
844 // automatically.
845 } else if (DGVar->hasAppendingLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000846 llvm_unreachable("Appending linkage unimplemented!");
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000847 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000848 llvm_unreachable("Unknown linkage!");
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000849 }
Chris Lattner4ad02e72003-04-16 20:28:45 +0000850 } else {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000851 // Copy the initializer over now...
852 DGVar->setInitializer(SInit);
Chris Lattner4ad02e72003-04-16 20:28:45 +0000853 }
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000854 } else {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000855 // Destination is alias, the only valid situation is when source is
856 // weak. Also, note, that we already checked linkage in LinkGlobals(),
857 // thus we assert here.
858 // FIXME: Should we weaken this assumption, 'dereference' alias and
859 // check for initializer of aliasee?
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000860 assert(SGV->isWeakForLinker());
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000861 }
862 }
863 }
864 return false;
865}
Chris Lattner5c377c52001-10-14 23:29:15 +0000866
Chris Lattner79df7c02002-03-26 18:01:55 +0000867// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000868// without doing function bodies... this just adds external function prototypes
869// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000870//
Chris Lattner79df7c02002-03-26 18:01:55 +0000871static bool LinkFunctionProtos(Module *Dest, const Module *Src,
Dan Gohman05ea54e2010-08-24 18:50:07 +0000872 ValueToValueMapTy &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000873 std::string *Err) {
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000874 ValueSymbolTable &DestSymTab = Dest->getValueSymbolTable();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000875
Reid Spencer619f0242007-02-04 04:43:17 +0000876 // Loop over all of the functions in the src module, mapping them over
Chris Lattner5c377c52001-10-14 23:29:15 +0000877 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000878 const Function *SF = I; // SrcFunction
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000879 GlobalValue *DGV = 0;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000880
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000881 // Check to see if may have to link the function with the global, alias or
882 // function.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000883 if (SF->hasName() && !SF->hasLocalLinkage())
Daniel Dunbar03d76512009-07-25 23:55:21 +0000884 DGV = cast_or_null<GlobalValue>(DestSymTab.lookup(SF->getName()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000885
Chris Lattnerae1132d2008-07-14 06:52:19 +0000886 // If we found a global with the same name in the dest module, but it has
887 // internal linkage, we are really not doing any linkage here.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000888 if (DGV && DGV->hasLocalLinkage())
Chris Lattnerae1132d2008-07-14 06:52:19 +0000889 DGV = 0;
890
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000891 // If types don't agree due to opaque types, try to resolve them.
892 if (DGV && DGV->getType() != SF->getType())
893 RecursiveResolveTypes(SF->getType(), DGV->getType());
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000894
Chris Lattner6157e382008-07-14 07:23:24 +0000895 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
896 bool LinkFromSrc = false;
897 if (GetLinkageResult(DGV, SF, NewLinkage, LinkFromSrc, Err))
898 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000899
Chris Lattner82468492008-06-09 07:36:11 +0000900 // If there is no linkage to be performed, just bring over SF without
901 // modifying it.
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000902 if (DGV == 0) {
Chris Lattner82468492008-06-09 07:36:11 +0000903 // Function does not already exist, simply insert an function signature
904 // identical to SF into the dest module.
905 Function *NewDF = Function::Create(SF->getFunctionType(),
906 SF->getLinkage(),
907 SF->getName(), Dest);
908 CopyGVAttributes(NewDF, SF);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000909
Chris Lattner82468492008-06-09 07:36:11 +0000910 // If the LLVM runtime renamed the function, but it is an externally
911 // visible symbol, DF must be an existing function with internal linkage.
912 // Rename it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000913 if (!NewDF->hasLocalLinkage() && NewDF->getName() != SF->getName())
Chris Lattner82468492008-06-09 07:36:11 +0000914 ForceRenaming(NewDF, SF->getName());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000915
Chris Lattner82468492008-06-09 07:36:11 +0000916 // ... and remember this mapping...
917 ValueMap[SF] = NewDF;
918 continue;
Chris Lattner6157e382008-07-14 07:23:24 +0000919 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000920
Chris Lattner6157e382008-07-14 07:23:24 +0000921 // If the visibilities of the symbols disagree and the destination is a
922 // prototype, take the visibility of its input.
923 if (DGV->isDeclaration())
924 DGV->setVisibility(SF->getVisibility());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000925
Chris Lattner6157e382008-07-14 07:23:24 +0000926 if (LinkFromSrc) {
927 if (isa<GlobalAlias>(DGV))
928 return Error(Err, "Function-Alias Collision on '" + SF->getName() +
929 "': symbol multiple defined");
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000930
Chris Lattner6157e382008-07-14 07:23:24 +0000931 // We have a definition of the same name but different type in the
932 // source module. Copy the prototype to the destination and replace
933 // uses of the destination's prototype with the new prototype.
934 Function *NewDF = Function::Create(SF->getFunctionType(), NewLinkage,
935 SF->getName(), Dest);
936 CopyGVAttributes(NewDF, SF);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000937
Chris Lattner6157e382008-07-14 07:23:24 +0000938 // Any uses of DF need to change to NewDF, with cast
Owen Andersonbaf3c402009-07-29 18:55:55 +0000939 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF,
Owen Andersonc9ab7bf2009-07-07 21:07:14 +0000940 DGV->getType()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000941
Chris Lattner6157e382008-07-14 07:23:24 +0000942 // DF will conflict with NewDF because they both had the same. We must
943 // erase this now so ForceRenaming doesn't assert because DF might
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000944 // not have internal linkage.
Chris Lattner6157e382008-07-14 07:23:24 +0000945 if (GlobalVariable *Var = dyn_cast<GlobalVariable>(DGV))
946 Var->eraseFromParent();
947 else
948 cast<Function>(DGV)->eraseFromParent();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000949
Chris Lattner6157e382008-07-14 07:23:24 +0000950 // If the symbol table renamed the function, but it is an externally
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000951 // visible symbol, DF must be an existing function with internal
Chris Lattner6157e382008-07-14 07:23:24 +0000952 // linkage. Rename it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000953 if (NewDF->getName() != SF->getName() && !NewDF->hasLocalLinkage())
Chris Lattner6157e382008-07-14 07:23:24 +0000954 ForceRenaming(NewDF, SF->getName());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000955
Chris Lattner6157e382008-07-14 07:23:24 +0000956 // Remember this mapping so uses in the source module get remapped
Dan Gohman05ea54e2010-08-24 18:50:07 +0000957 // later by MapValue.
Chris Lattner6157e382008-07-14 07:23:24 +0000958 ValueMap[SF] = NewDF;
959 continue;
960 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000961
Chris Lattner6157e382008-07-14 07:23:24 +0000962 // Not "link from source", keep the one in the DestModule and remap the
963 // input onto it.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000964
Chris Lattner6157e382008-07-14 07:23:24 +0000965 if (isa<GlobalAlias>(DGV)) {
Anton Korobeynikovf88bc652008-07-05 23:33:22 +0000966 // The only valid mappings are:
967 // - SF is external declaration, which is effectively a no-op.
968 // - SF is weak, when we just need to throw SF out.
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000969 if (!SF->isDeclaration() && !SF->isWeakForLinker())
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000970 return Error(Err, "Function-Alias Collision on '" + SF->getName() +
971 "': symbol multiple defined");
Chris Lattner82468492008-06-09 07:36:11 +0000972 }
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000973
Chris Lattner6157e382008-07-14 07:23:24 +0000974 // Set calculated linkage
975 DGV->setLinkage(NewLinkage);
Chris Lattner5c377c52001-10-14 23:29:15 +0000976
Chris Lattner6157e382008-07-14 07:23:24 +0000977 // Make sure to remember this mapping.
Owen Andersonbaf3c402009-07-29 18:55:55 +0000978 ValueMap[SF] = ConstantExpr::getBitCast(DGV, SF->getType());
Chris Lattner5c377c52001-10-14 23:29:15 +0000979 }
980 return false;
981}
982
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000983// LinkFunctionBody - Copy the source function over into the dest function and
984// fix up references to values. At this point we know that Dest is an external
985// function, and that Src is not.
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000986static bool LinkFunctionBody(Function *Dest, Function *Src,
Dan Gohman05ea54e2010-08-24 18:50:07 +0000987 ValueToValueMapTy &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000988 std::string *Err) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000989 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Chris Lattner5c377c52001-10-14 23:29:15 +0000990
Chris Lattner0033baf2004-11-16 17:12:38 +0000991 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000992 Function::arg_iterator DI = Dest->arg_begin();
993 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000994 I != E; ++I, ++DI) {
Owen Anderson6bc41e82008-04-14 17:38:21 +0000995 DI->setName(I->getName()); // Copy the name information over...
Chris Lattner5c377c52001-10-14 23:29:15 +0000996
997 // Add a mapping to our local map
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000998 ValueMap[I] = DI;
Chris Lattner5c377c52001-10-14 23:29:15 +0000999 }
1000
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001001 // Splice the body of the source function into the dest function.
1002 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Chris Lattner5c377c52001-10-14 23:29:15 +00001003
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001004 // At this point, all of the instructions and values of the function are now
1005 // copied over. The only problem is that they are still referencing values in
1006 // the Source function as operands. Loop through all of the operands of the
1007 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +00001008 //
Dan Gohman6cb8c232010-08-26 15:41:53 +00001009 // This is the same as RemapInstruction, except that it avoids remapping
1010 // instruction and basic block operands.
1011 //
Chris Lattner18961502002-06-25 16:12:52 +00001012 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
Dan Gohman6cb8c232010-08-26 15:41:53 +00001013 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
1014 // Remap operands.
Chris Lattner18961502002-06-25 16:12:52 +00001015 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +00001016 OI != OE; ++OI)
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001017 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Dan Gohman6cb8c232010-08-26 15:41:53 +00001018 *OI = MapValue(*OI, ValueMap, true);
1019
1020 // Remap attached metadata.
1021 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
1022 I->getAllMetadata(MDs);
1023 for (SmallVectorImpl<std::pair<unsigned, MDNode *> >::iterator
1024 MI = MDs.begin(), ME = MDs.end(); MI != ME; ++MI) {
1025 Value *Old = MI->second;
1026 if (!isa<Instruction>(Old) && !isa<BasicBlock>(Old)) {
1027 Value *New = MapValue(Old, ValueMap, true);
1028 if (New != Old)
1029 I->setMetadata(MI->first, cast<MDNode>(New));
1030 }
1031 }
1032 }
Chris Lattner0033baf2004-11-16 17:12:38 +00001033
1034 // There is no need to map the arguments anymore.
Chris Lattner11273152006-06-16 01:24:04 +00001035 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1036 I != E; ++I)
Reid Spenceref9b9a72007-02-05 20:47:22 +00001037 ValueMap.erase(I);
Chris Lattner5c377c52001-10-14 23:29:15 +00001038
1039 return false;
1040}
1041
1042
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001043// LinkFunctionBodies - Link in the function bodies that are defined in the
1044// source module into the DestModule. This consists basically of copying the
1045// function over and fixing up references to values.
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001046static bool LinkFunctionBodies(Module *Dest, Module *Src,
Dan Gohman05ea54e2010-08-24 18:50:07 +00001047 ValueToValueMapTy &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +00001048 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +00001049
Reid Spencer8bef0372007-02-04 04:29:21 +00001050 // Loop over all of the functions in the src module, mapping them over as we
1051 // go
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001052 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencer619f0242007-02-04 04:43:17 +00001053 if (!SF->isDeclaration()) { // No body if function is external
Chris Lattnerec91ccb2008-06-20 05:29:39 +00001054 Function *DF = dyn_cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +00001055
Chris Lattner18961502002-06-25 16:12:52 +00001056 // DF not external SF external?
Chris Lattnerec91ccb2008-06-20 05:29:39 +00001057 if (DF && DF->isDeclaration())
Chris Lattner35956552003-10-27 16:39:39 +00001058 // Only provide the function body if there isn't one already.
1059 if (LinkFunctionBody(DF, SF, ValueMap, Err))
1060 return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +00001061 }
Chris Lattner5c377c52001-10-14 23:29:15 +00001062 }
1063 return false;
1064}
1065
Chris Lattner8166e6e2003-05-13 21:33:43 +00001066// LinkAppendingVars - If there were any appending global variables, link them
1067// together now. Return true on error.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001068static bool LinkAppendingVars(Module *M,
1069 std::multimap<std::string, GlobalVariable *> &AppendingVars,
1070 std::string *ErrorMsg) {
1071 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukmanf976c852005-04-21 22:55:34 +00001072
Chris Lattner8166e6e2003-05-13 21:33:43 +00001073 // Loop over the multimap of appending vars, processing any variables with the
1074 // same name, forming a new appending global variable with both of the
1075 // initializers merged together, then rewrite references to the old variables
1076 // and delete them.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001077 std::vector<Constant*> Inits;
1078 while (AppendingVars.size() > 1) {
1079 // Get the first two elements in the map...
1080 std::multimap<std::string,
1081 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
1082
1083 // If the first two elements are for different names, there is no pair...
1084 // Otherwise there is a pair, so link them together...
1085 if (First->first == Second->first) {
1086 GlobalVariable *G1 = First->second, *G2 = Second->second;
1087 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
1088 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukmanf976c852005-04-21 22:55:34 +00001089
Chris Lattner8166e6e2003-05-13 21:33:43 +00001090 // Check to see that they two arrays agree on type...
1091 if (T1->getElementType() != T2->getElementType())
1092 return Error(ErrorMsg,
1093 "Appending variables with different element types need to be linked!");
1094 if (G1->isConstant() != G2->isConstant())
1095 return Error(ErrorMsg,
1096 "Appending variables linked with different const'ness!");
1097
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001098 if (G1->getAlignment() != G2->getAlignment())
1099 return Error(ErrorMsg,
1100 "Appending variables with different alignment need to be linked!");
1101
1102 if (G1->getVisibility() != G2->getVisibility())
1103 return Error(ErrorMsg,
1104 "Appending variables with different visibility need to be linked!");
1105
1106 if (G1->getSection() != G2->getSection())
1107 return Error(ErrorMsg,
1108 "Appending variables with different section name need to be linked!");
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001109
Chris Lattner8166e6e2003-05-13 21:33:43 +00001110 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
Owen Andersondebcb012009-07-29 22:17:13 +00001111 ArrayType *NewType = ArrayType::get(T1->getElementType(),
Owen Andersonc9ab7bf2009-07-07 21:07:14 +00001112 NewSize);
Chris Lattner8166e6e2003-05-13 21:33:43 +00001113
Chris Lattnered74a4e2005-12-06 17:30:58 +00001114 G1->setName(""); // Clear G1's name in case of a conflict!
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001115
Chris Lattner8166e6e2003-05-13 21:33:43 +00001116 // Create the new global variable...
1117 GlobalVariable *NG =
Owen Andersone9b11b42009-07-08 19:03:57 +00001118 new GlobalVariable(*M, NewType, G1->isConstant(), G1->getLinkage(),
1119 /*init*/0, First->first, 0, G1->isThreadLocal(),
Chris Lattnera534b0f2008-06-27 03:10:24 +00001120 G1->getType()->getAddressSpace());
Chris Lattner8166e6e2003-05-13 21:33:43 +00001121
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001122 // Propagate alignment, visibility and section info.
1123 CopyGVAttributes(NG, G1);
1124
Chris Lattner8166e6e2003-05-13 21:33:43 +00001125 // Merge the initializer...
1126 Inits.reserve(NewSize);
Chris Lattnerde512b52004-02-15 05:55:15 +00001127 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
1128 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001129 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001130 } else {
1131 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
Owen Andersona7235ea2009-07-31 20:28:14 +00001132 Constant *CV = Constant::getNullValue(T1->getElementType());
Chris Lattnerde512b52004-02-15 05:55:15 +00001133 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1134 Inits.push_back(CV);
1135 }
1136 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
1137 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001138 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001139 } else {
1140 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
Owen Andersona7235ea2009-07-31 20:28:14 +00001141 Constant *CV = Constant::getNullValue(T2->getElementType());
Chris Lattnerde512b52004-02-15 05:55:15 +00001142 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1143 Inits.push_back(CV);
1144 }
Owen Anderson1fd70962009-07-28 18:32:17 +00001145 NG->setInitializer(ConstantArray::get(NewType, Inits));
Chris Lattner8166e6e2003-05-13 21:33:43 +00001146 Inits.clear();
1147
1148 // Replace any uses of the two global variables with uses of the new
1149 // global...
1150
1151 // FIXME: This should rewrite simple/straight-forward uses such as
1152 // getelementptr instructions to not use the Cast!
Owen Andersonbaf3c402009-07-29 18:55:55 +00001153 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG,
Owen Andersonc9ab7bf2009-07-07 21:07:14 +00001154 G1->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001155 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG,
Owen Andersonc9ab7bf2009-07-07 21:07:14 +00001156 G2->getType()));
Chris Lattner8166e6e2003-05-13 21:33:43 +00001157
1158 // Remove the two globals from the module now...
1159 M->getGlobalList().erase(G1);
1160 M->getGlobalList().erase(G2);
1161
1162 // Put the new global into the AppendingVars map so that we can handle
1163 // linking of more than two vars...
1164 Second->second = NG;
1165 }
1166 AppendingVars.erase(First);
1167 }
1168
1169 return false;
1170}
Chris Lattner52f7e902001-10-13 07:03:50 +00001171
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001172static bool ResolveAliases(Module *Dest) {
1173 for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end();
Anton Korobeynikov52419572008-03-11 22:51:09 +00001174 I != E; ++I)
David Chisnall34722462010-01-09 16:27:31 +00001175 // We can't sue resolveGlobalAlias here because we need to preserve
1176 // bitcasts and GEPs.
1177 if (const Constant *C = I->getAliasee()) {
1178 while (dyn_cast<GlobalAlias>(C))
1179 C = cast<GlobalAlias>(C)->getAliasee();
1180 const GlobalValue *GV = dyn_cast<GlobalValue>(C);
1181 if (C != I && !(GV && GV->isDeclaration()))
1182 I->replaceAllUsesWith(const_cast<Constant*>(C));
1183 }
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001184
1185 return false;
1186}
Chris Lattner52f7e902001-10-13 07:03:50 +00001187
1188// LinkModules - This function links two modules together, with the resulting
1189// left module modified to be the composite of the two input modules. If an
1190// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +00001191// the problem. Upon failure, the Dest module could be in a modified state, and
1192// shouldn't be relied on to be consistent.
Misha Brukmanf976c852005-04-21 22:55:34 +00001193bool
Reid Spencer0ba9e212004-12-13 03:00:16 +00001194Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer57a0efa2004-09-11 04:25:17 +00001195 assert(Dest != 0 && "Invalid Destination module");
1196 assert(Src != 0 && "Invalid Source Module");
1197
Chris Lattnerc36357c2007-01-29 00:21:34 +00001198 if (Dest->getDataLayout().empty()) {
1199 if (!Src->getDataLayout().empty()) {
Chris Lattnerec9bfdc2007-01-29 02:18:13 +00001200 Dest->setDataLayout(Src->getDataLayout());
Chris Lattnerc36357c2007-01-29 00:21:34 +00001201 } else {
1202 std::string DataLayout;
Reid Spencer26f23852007-01-26 08:11:39 +00001203
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001204 if (Dest->getEndianness() == Module::AnyEndianness) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001205 if (Src->getEndianness() == Module::BigEndian)
1206 DataLayout.append("E");
1207 else if (Src->getEndianness() == Module::LittleEndian)
1208 DataLayout.append("e");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001209 }
1210
1211 if (Dest->getPointerSize() == Module::AnyPointerSize) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001212 if (Src->getPointerSize() == Module::Pointer64)
1213 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
1214 else if (Src->getPointerSize() == Module::Pointer32)
1215 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001216 }
Chris Lattnerc36357c2007-01-29 00:21:34 +00001217 Dest->setDataLayout(DataLayout);
1218 }
1219 }
1220
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001221 // Copy the target triple from the source to dest if the dest's is empty.
Chris Lattnerc36357c2007-01-29 00:21:34 +00001222 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattner152f19a2004-12-10 20:26:15 +00001223 Dest->setTargetTriple(Src->getTargetTriple());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001224
Chris Lattnerc36357c2007-01-29 00:21:34 +00001225 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
1226 Src->getDataLayout() != Dest->getDataLayout())
Chris Lattnerbdff5482009-08-23 04:37:46 +00001227 errs() << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattner152f19a2004-12-10 20:26:15 +00001228 if (!Src->getTargetTriple().empty() &&
1229 Dest->getTargetTriple() != Src->getTargetTriple())
Chris Lattnerbdff5482009-08-23 04:37:46 +00001230 errs() << "WARNING: Linking two modules of different target triples!\n";
Misha Brukmanf976c852005-04-21 22:55:34 +00001231
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001232 // Append the module inline asm string.
Chris Lattner66316012006-01-24 04:14:29 +00001233 if (!Src->getModuleInlineAsm().empty()) {
1234 if (Dest->getModuleInlineAsm().empty())
1235 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001236 else
Chris Lattner66316012006-01-24 04:14:29 +00001237 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
1238 Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001239 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001240
Reid Spencer719012d2004-11-25 09:29:44 +00001241 // Update the destination module's dependent libraries list with the libraries
Reid Spencer57a0efa2004-09-11 04:25:17 +00001242 // from the source module. There's no opportunity for duplicates here as the
1243 // Module ensures that duplicate insertions are discarded.
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001244 for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001245 SI != SE; ++SI)
Reid Spencer57a0efa2004-09-11 04:25:17 +00001246 Dest->addLibrary(*SI);
Reid Spencer57a0efa2004-09-11 04:25:17 +00001247
Chris Lattner2c236f32001-11-03 05:18:24 +00001248 // LinkTypes - Go through the symbol table of the Src module and see if any
1249 // types are named in the src module that are not named in the Dst module.
1250 // Make sure there are no type name conflicts.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001251 if (LinkTypes(Dest, Src, ErrorMsg))
Reid Spencer619f0242007-02-04 04:43:17 +00001252 return true;
Chris Lattner2c236f32001-11-03 05:18:24 +00001253
Chris Lattner5c377c52001-10-14 23:29:15 +00001254 // ValueMap - Mapping of values from what they used to be in Src, to what they
Dan Gohman05ea54e2010-08-24 18:50:07 +00001255 // are now in Dest. ValueToValueMapTy is a ValueMap, which involves some
1256 // overhead due to the use of Value handles which the Linker doesn't actually
1257 // need, but this allows us to reuse the ValueMapper code.
1258 ValueToValueMapTy ValueMap;
Chris Lattner5c377c52001-10-14 23:29:15 +00001259
Chris Lattner8166e6e2003-05-13 21:33:43 +00001260 // AppendingVars - Keep track of global variables in the destination module
1261 // with appending linkage. After the module is linked together, they are
1262 // appended and the module is rewritten.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001263 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner11273152006-06-16 01:24:04 +00001264 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1265 I != E; ++I) {
Chris Lattner5a837de2004-08-04 07:44:58 +00001266 // Add all of the appending globals already in the Dest module to
1267 // AppendingVars.
Chris Lattnerf4146462003-05-14 12:11:51 +00001268 if (I->hasAppendingLinkage())
1269 AppendingVars.insert(std::make_pair(I->getName(), I));
Chris Lattner5a837de2004-08-04 07:44:58 +00001270 }
1271
Chris Lattner8166e6e2003-05-13 21:33:43 +00001272 // Insert all of the globals in src into the Dest module... without linking
1273 // initializers (which could refer to functions not yet mapped over).
Reid Spenceref9b9a72007-02-05 20:47:22 +00001274 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001275 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001276
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001277 // Link the functions together between the two modules, without doing function
1278 // bodies... this just adds external function prototypes to the Dest
1279 // function... We do this so that when we begin processing function bodies,
1280 // all of the global values that may be referenced are available in our
1281 // ValueMap.
Reid Spenceref9b9a72007-02-05 20:47:22 +00001282 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001283 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001284
Anton Korobeynikov4fb28732008-03-05 15:27:21 +00001285 // If there were any alias, link them now. We really need to do this now,
1286 // because all of the aliases that may be referenced need to be available in
1287 // ValueMap
1288 if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true;
1289
Chris Lattner6cdf1972002-07-18 00:13:08 +00001290 // Update the initializers in the Dest module now that all globals that may
1291 // be referenced are in Dest.
Chris Lattner6cdf1972002-07-18 00:13:08 +00001292 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1293
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001294 // Link in the function bodies that are defined in the source module into the
1295 // DestModule. This consists basically of copying the function over and
1296 // fixing up references to values.
Chris Lattner79df7c02002-03-26 18:01:55 +00001297 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +00001298
Chris Lattner8166e6e2003-05-13 21:33:43 +00001299 // If there were any appending global variables, link them together now.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001300 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1301
Anton Korobeynikov3db91912008-03-05 23:08:47 +00001302 // Resolve all uses of aliases with aliasees
1303 if (ResolveAliases(Dest)) return true;
1304
Dan Gohmane422d1b2010-08-24 19:37:11 +00001305 // Remap all of the named mdnoes in Src into the Dest module. We do this
1306 // after linking GlobalValues so that MDNodes that reference GlobalValues
1307 // are properly remapped.
1308 LinkNamedMDNodes(Dest, Src, ValueMap);
1309
Reid Spencer57a0efa2004-09-11 04:25:17 +00001310 // If the source library's module id is in the dependent library list of the
1311 // destination library, remove it since that module is now linked in.
1312 sys::Path modId;
Reid Spencerdd04df02005-07-07 23:21:43 +00001313 modId.set(Src->getModuleIdentifier());
Reid Spencer07adb282004-11-05 22:15:36 +00001314 if (!modId.isEmpty())
1315 Dest->removeLibrary(modId.getBasename());
Reid Spencer57a0efa2004-09-11 04:25:17 +00001316
Chris Lattner52f7e902001-10-13 07:03:50 +00001317 return false;
1318}
Vikram S. Adve9466f512001-10-28 21:38:02 +00001319
Reid Spencer567bc2c2004-05-25 08:52:20 +00001320// vim: sw=2