blob: 4a15d88d8f369649df64db2d640a77cf3976ce1e [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"
Chris Lattner5c377c52001-10-14 23:29:15 +000022#include "llvm/Module.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000023#include "llvm/TypeSymbolTable.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000024#include "llvm/ValueSymbolTable.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000025#include "llvm/Instructions.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000026#include "llvm/Assembly/Writer.h"
Bill Wendling41edad72006-11-27 10:09:12 +000027#include "llvm/Support/Streams.h"
Reid Spencer57a0efa2004-09-11 04:25:17 +000028#include "llvm/System/Path.h"
Chris Lattner62a81a12008-06-16 21:00:18 +000029#include "llvm/ADT/DenseMap.h"
Bill Wendling1a097e32006-12-07 23:41:45 +000030#include <sstream>
Chris Lattnerf7703df2004-01-09 06:12:26 +000031using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000032
Chris Lattner5c377c52001-10-14 23:29:15 +000033// Error - Simple wrapper function to conditionally assign to E and return true.
34// This just makes error return conditions a little bit simpler...
Chris Lattner8166e6e2003-05-13 21:33:43 +000035static inline bool Error(std::string *E, const std::string &Message) {
Chris Lattner5c377c52001-10-14 23:29:15 +000036 if (E) *E = Message;
37 return true;
38}
39
John Criswell700867b2003-11-04 15:22:26 +000040// Function: ResolveTypes()
41//
42// Description:
43// Attempt to link the two specified types together.
44//
45// Inputs:
46// DestTy - The type to which we wish to resolve.
47// SrcTy - The original type which we want to resolve.
John Criswell700867b2003-11-04 15:22:26 +000048//
49// Outputs:
50// DestST - The symbol table in which the new type should be placed.
51//
52// Return value:
53// true - There is an error and the types cannot yet be linked.
54// false - No errors.
Chris Lattner4c00e532003-05-15 16:30:55 +000055//
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000056static bool ResolveTypes(const Type *DestTy, const Type *SrcTy) {
Chris Lattnere76c57a2003-08-22 06:07:12 +000057 if (DestTy == SrcTy) return false; // If already equal, noop
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000058 assert(DestTy && SrcTy && "Can't handle null types");
Chris Lattnere76c57a2003-08-22 06:07:12 +000059
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000060 if (const OpaqueType *OT = dyn_cast<OpaqueType>(DestTy)) {
61 // Type _is_ in module, just opaque...
62 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(SrcTy);
63 } else if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) {
64 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy);
65 } else {
66 return true; // Cannot link types... not-equal and neither is opaque.
Chris Lattner4c00e532003-05-15 16:30:55 +000067 }
68 return false;
69}
70
Chris Lattner62a81a12008-06-16 21:00:18 +000071/// LinkerTypeMap - This implements a map of types that is stable
72/// even if types are resolved/refined to other types. This is not a general
73/// purpose map, it is specific to the linker's use.
74namespace {
75class LinkerTypeMap : public AbstractTypeUser {
76 typedef DenseMap<const Type*, PATypeHolder> TheMapTy;
77 TheMapTy TheMap;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000078
Chris Lattnerfc196f92008-06-16 23:06:51 +000079 LinkerTypeMap(const LinkerTypeMap&); // DO NOT IMPLEMENT
80 void operator=(const LinkerTypeMap&); // DO NOT IMPLEMENT
81public:
82 LinkerTypeMap() {}
83 ~LinkerTypeMap() {
Chris Lattner62a81a12008-06-16 21:00:18 +000084 for (DenseMap<const Type*, PATypeHolder>::iterator I = TheMap.begin(),
85 E = TheMap.end(); I != E; ++I)
86 I->first->removeAbstractTypeUser(this);
87 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000088
Chris Lattner62a81a12008-06-16 21:00:18 +000089 /// lookup - Return the value for the specified type or null if it doesn't
90 /// exist.
91 const Type *lookup(const Type *Ty) const {
92 TheMapTy::const_iterator I = TheMap.find(Ty);
93 if (I != TheMap.end()) return I->second;
94 return 0;
95 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +000096
Chris Lattner62a81a12008-06-16 21:00:18 +000097 /// erase - Remove the specified type, returning true if it was in the set.
98 bool erase(const Type *Ty) {
99 if (!TheMap.erase(Ty))
100 return false;
101 if (Ty->isAbstract())
102 Ty->removeAbstractTypeUser(this);
103 return true;
104 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000105
Chris Lattner62a81a12008-06-16 21:00:18 +0000106 /// insert - This returns true if the pointer was new to the set, false if it
107 /// was already in the set.
108 bool insert(const Type *Src, const Type *Dst) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000109 if (!TheMap.insert(std::make_pair(Src, PATypeHolder(Dst))).second)
Chris Lattner62a81a12008-06-16 21:00:18 +0000110 return false; // Already in map.
111 if (Src->isAbstract())
112 Src->addAbstractTypeUser(this);
113 return true;
114 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000115
Chris Lattner62a81a12008-06-16 21:00:18 +0000116protected:
117 /// refineAbstractType - The callback method invoked when an abstract type is
118 /// resolved to another type. An object must override this method to update
119 /// its internal state to reference NewType instead of OldType.
120 ///
121 virtual void refineAbstractType(const DerivedType *OldTy,
122 const Type *NewTy) {
123 TheMapTy::iterator I = TheMap.find(OldTy);
124 const Type *DstTy = I->second;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000125
Chris Lattner62a81a12008-06-16 21:00:18 +0000126 TheMap.erase(I);
127 if (OldTy->isAbstract())
128 OldTy->removeAbstractTypeUser(this);
129
130 // Don't reinsert into the map if the key is concrete now.
131 if (NewTy->isAbstract())
132 insert(NewTy, DstTy);
133 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000134
Chris Lattner62a81a12008-06-16 21:00:18 +0000135 /// The other case which AbstractTypeUsers must be aware of is when a type
136 /// makes the transition from being abstract (where it has clients on it's
137 /// AbstractTypeUsers list) to concrete (where it does not). This method
138 /// notifies ATU's when this occurs for a type.
139 virtual void typeBecameConcrete(const DerivedType *AbsTy) {
140 TheMap.erase(AbsTy);
141 AbsTy->removeAbstractTypeUser(this);
142 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000143
Chris Lattner62a81a12008-06-16 21:00:18 +0000144 // for debugging...
145 virtual void dump() const {
146 cerr << "AbstractTypeSet!\n";
147 }
148};
149}
150
151
Chris Lattnere76c57a2003-08-22 06:07:12 +0000152// RecursiveResolveTypes - This is just like ResolveTypes, except that it
153// recurses down into derived types, merging the used types if the parent types
154// are compatible.
Chris Lattnera4477f92008-06-16 21:17:12 +0000155static bool RecursiveResolveTypesI(const Type *DstTy, const Type *SrcTy,
Chris Lattner62a81a12008-06-16 21:00:18 +0000156 LinkerTypeMap &Pointers) {
Chris Lattnera4477f92008-06-16 21:17:12 +0000157 if (DstTy == SrcTy) return false; // If already equal, noop
Misha Brukmanf976c852005-04-21 22:55:34 +0000158
Chris Lattnere76c57a2003-08-22 06:07:12 +0000159 // If we found our opaque type, resolve it now!
Chris Lattnera4477f92008-06-16 21:17:12 +0000160 if (isa<OpaqueType>(DstTy) || isa<OpaqueType>(SrcTy))
161 return ResolveTypes(DstTy, SrcTy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000162
Chris Lattnere76c57a2003-08-22 06:07:12 +0000163 // Two types cannot be resolved together if they are of different primitive
164 // type. For example, we cannot resolve an int to a float.
Chris Lattnera4477f92008-06-16 21:17:12 +0000165 if (DstTy->getTypeID() != SrcTy->getTypeID()) return true;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000166
Chris Lattner56539652008-06-16 20:03:01 +0000167 // If neither type is abstract, then they really are just different types.
Chris Lattnera4477f92008-06-16 21:17:12 +0000168 if (!DstTy->isAbstract() && !SrcTy->isAbstract())
Chris Lattner56539652008-06-16 20:03:01 +0000169 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000170
Chris Lattnere76c57a2003-08-22 06:07:12 +0000171 // Otherwise, resolve the used type used by this derived type...
Chris Lattnera4477f92008-06-16 21:17:12 +0000172 switch (DstTy->getTypeID()) {
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000173 default:
174 return true;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000175 case Type::FunctionTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000176 const FunctionType *DstFT = cast<FunctionType>(DstTy);
177 const FunctionType *SrcFT = cast<FunctionType>(SrcTy);
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000178 if (DstFT->isVarArg() != SrcFT->isVarArg() ||
179 DstFT->getNumContainedTypes() != SrcFT->getNumContainedTypes())
Chris Lattner43f4ba82003-08-22 19:12:55 +0000180 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000181
Chris Lattnera4477f92008-06-16 21:17:12 +0000182 // Use TypeHolder's so recursive resolution won't break us.
183 PATypeHolder ST(SrcFT), DT(DstFT);
184 for (unsigned i = 0, e = DstFT->getNumContainedTypes(); i != e; ++i) {
185 const Type *SE = ST->getContainedType(i), *DE = DT->getContainedType(i);
186 if (SE != DE && RecursiveResolveTypesI(DE, SE, Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000187 return true;
Chris Lattnera4477f92008-06-16 21:17:12 +0000188 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000189 return false;
190 }
191 case Type::StructTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000192 const StructType *DstST = cast<StructType>(DstTy);
193 const StructType *SrcST = cast<StructType>(SrcTy);
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000194 if (DstST->getNumContainedTypes() != SrcST->getNumContainedTypes())
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000195 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000196
Chris Lattnera4477f92008-06-16 21:17:12 +0000197 PATypeHolder ST(SrcST), DT(DstST);
198 for (unsigned i = 0, e = DstST->getNumContainedTypes(); i != e; ++i) {
199 const Type *SE = ST->getContainedType(i), *DE = DT->getContainedType(i);
200 if (SE != DE && RecursiveResolveTypesI(DE, SE, Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000201 return true;
Chris Lattnera4477f92008-06-16 21:17:12 +0000202 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000203 return false;
204 }
205 case Type::ArrayTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000206 const ArrayType *DAT = cast<ArrayType>(DstTy);
207 const ArrayType *SAT = cast<ArrayType>(SrcTy);
Chris Lattnere76c57a2003-08-22 06:07:12 +0000208 if (DAT->getNumElements() != SAT->getNumElements()) return true;
Chris Lattnere3092c92003-08-23 21:25:54 +0000209 return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(),
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000210 Pointers);
Chris Lattnere76c57a2003-08-22 06:07:12 +0000211 }
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000212 case Type::VectorTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000213 const VectorType *DVT = cast<VectorType>(DstTy);
214 const VectorType *SVT = cast<VectorType>(SrcTy);
Chris Lattnerf6f4f7a2008-06-16 18:27:53 +0000215 if (DVT->getNumElements() != SVT->getNumElements()) return true;
216 return RecursiveResolveTypesI(DVT->getElementType(), SVT->getElementType(),
217 Pointers);
218 }
Chris Lattnere3092c92003-08-23 21:25:54 +0000219 case Type::PointerTyID: {
Chris Lattnera4477f92008-06-16 21:17:12 +0000220 const PointerType *DstPT = cast<PointerType>(DstTy);
221 const PointerType *SrcPT = cast<PointerType>(SrcTy);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000222
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000223 if (DstPT->getAddressSpace() != SrcPT->getAddressSpace())
224 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000225
Chris Lattnere3092c92003-08-23 21:25:54 +0000226 // If this is a pointer type, check to see if we have already seen it. If
227 // so, we are in a recursive branch. Cut off the search now. We cannot use
228 // an associative container for this search, because the type pointers (keys
Chris Lattner62a81a12008-06-16 21:00:18 +0000229 // in the container) change whenever types get resolved.
230 if (SrcPT->isAbstract())
231 if (const Type *ExistingDestTy = Pointers.lookup(SrcPT))
232 return ExistingDestTy != DstPT;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000233
Chris Lattner62a81a12008-06-16 21:00:18 +0000234 if (DstPT->isAbstract())
235 if (const Type *ExistingSrcTy = Pointers.lookup(DstPT))
236 return ExistingSrcTy != SrcPT;
Chris Lattnere3092c92003-08-23 21:25:54 +0000237 // Otherwise, add the current pointers to the vector to stop recursion on
238 // this pair.
Chris Lattner62a81a12008-06-16 21:00:18 +0000239 if (DstPT->isAbstract())
240 Pointers.insert(DstPT, SrcPT);
241 if (SrcPT->isAbstract())
242 Pointers.insert(SrcPT, DstPT);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000243
Chris Lattner9ddf2c82008-06-16 19:55:40 +0000244 return RecursiveResolveTypesI(DstPT->getElementType(),
245 SrcPT->getElementType(), Pointers);
Chris Lattnere3092c92003-08-23 21:25:54 +0000246 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000247 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000248}
249
Chris Lattnera4477f92008-06-16 21:17:12 +0000250static bool RecursiveResolveTypes(const Type *DestTy, const Type *SrcTy) {
Chris Lattner62a81a12008-06-16 21:00:18 +0000251 LinkerTypeMap PointerTypes;
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000252 return RecursiveResolveTypesI(DestTy, SrcTy, PointerTypes);
Chris Lattnere3092c92003-08-23 21:25:54 +0000253}
254
Chris Lattnere76c57a2003-08-22 06:07:12 +0000255
Chris Lattner2c236f32001-11-03 05:18:24 +0000256// LinkTypes - Go through the symbol table of the Src module and see if any
257// types are named in the src module that are not named in the Dst module.
258// Make sure there are no type name conflicts.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000259static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000260 TypeSymbolTable *DestST = &Dest->getTypeSymbolTable();
261 const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable();
Chris Lattner2c236f32001-11-03 05:18:24 +0000262
263 // Look for a type plane for Type's...
Reid Spencer78d033e2007-01-06 07:24:44 +0000264 TypeSymbolTable::const_iterator TI = SrcST->begin();
265 TypeSymbolTable::const_iterator TE = SrcST->end();
Reid Spencer567bc2c2004-05-25 08:52:20 +0000266 if (TI == TE) return false; // No named types, do nothing.
Chris Lattner2c236f32001-11-03 05:18:24 +0000267
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000268 // Some types cannot be resolved immediately because they depend on other
269 // types being resolved to each other first. This contains a list of types we
270 // are waiting to recheck.
Chris Lattner4c00e532003-05-15 16:30:55 +0000271 std::vector<std::string> DelayedTypesToResolve;
272
Reid Spencer567bc2c2004-05-25 08:52:20 +0000273 for ( ; TI != TE; ++TI ) {
274 const std::string &Name = TI->first;
Reid Spencerc28a2242004-07-04 11:52:49 +0000275 const Type *RHS = TI->second;
Chris Lattner2c236f32001-11-03 05:18:24 +0000276
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000277 // Check to see if this type name is already in the dest module.
Reid Spencer78d033e2007-01-06 07:24:44 +0000278 Type *Entry = DestST->lookup(Name);
Chris Lattner2f6bb2b2003-01-30 20:53:43 +0000279
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000280 // If the name is just in the source module, bring it over to the dest.
281 if (Entry == 0) {
282 if (!Name.empty())
283 DestST->insert(Name, const_cast<Type*>(RHS));
284 } else if (ResolveTypes(Entry, RHS)) {
Chris Lattner4c00e532003-05-15 16:30:55 +0000285 // They look different, save the types 'till later to resolve.
286 DelayedTypesToResolve.push_back(Name);
Chris Lattner2c236f32001-11-03 05:18:24 +0000287 }
288 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000289
290 // Iteratively resolve types while we can...
291 while (!DelayedTypesToResolve.empty()) {
292 // Loop over all of the types, attempting to resolve them if possible...
293 unsigned OldSize = DelayedTypesToResolve.size();
294
Chris Lattnere76c57a2003-08-22 06:07:12 +0000295 // Try direct resolution by name...
Chris Lattner4c00e532003-05-15 16:30:55 +0000296 for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) {
297 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer78d033e2007-01-06 07:24:44 +0000298 Type *T1 = SrcST->lookup(Name);
299 Type *T2 = DestST->lookup(Name);
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000300 if (!ResolveTypes(T2, T1)) {
Chris Lattner4c00e532003-05-15 16:30:55 +0000301 // We are making progress!
302 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
303 --i;
304 }
305 }
306
307 // Did we not eliminate any types?
308 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000309 // Attempt to resolve subelements of types. This allows us to merge these
310 // two types: { int* } and { opaque* }
Chris Lattner4c00e532003-05-15 16:30:55 +0000311 for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) {
312 const std::string &Name = DelayedTypesToResolve[i];
Chris Lattnera4477f92008-06-16 21:17:12 +0000313 if (!RecursiveResolveTypes(SrcST->lookup(Name), DestST->lookup(Name))) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000314 // We are making progress!
315 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
Misha Brukmanf976c852005-04-21 22:55:34 +0000316
Chris Lattnere76c57a2003-08-22 06:07:12 +0000317 // Go back to the main loop, perhaps we can resolve directly by name
318 // now...
319 break;
320 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000321 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000322
323 // If we STILL cannot resolve the types, then there is something wrong.
Chris Lattnere76c57a2003-08-22 06:07:12 +0000324 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattneraeb18ce2003-10-21 22:46:38 +0000325 // Remove the symbol name from the destination.
326 DelayedTypesToResolve.pop_back();
Chris Lattnere76c57a2003-08-22 06:07:12 +0000327 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000328 }
329 }
330
331
Chris Lattner2c236f32001-11-03 05:18:24 +0000332 return false;
333}
334
Chris Lattner0bb87572008-07-14 05:52:33 +0000335#ifndef NDEBUG
Chris Lattner5c2d3352003-01-30 19:53:34 +0000336static void PrintMap(const std::map<const Value*, Value*> &M) {
337 for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end();
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000338 I != E; ++I) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000339 cerr << " Fr: " << (void*)I->first << " ";
Chris Lattner87182ae2002-04-07 22:31:23 +0000340 I->first->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000341 cerr << " To: " << (void*)I->second << " ";
Chris Lattner87182ae2002-04-07 22:31:23 +0000342 I->second->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000343 cerr << "\n";
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000344 }
345}
Chris Lattner0bb87572008-07-14 05:52:33 +0000346#endif
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000347
348
Reid Spencer619f0242007-02-04 04:43:17 +0000349// RemapOperand - Use ValueMap to convert constants from one module to another.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000350static Value *RemapOperand(const Value *In,
Chris Lattner0033baf2004-11-16 17:12:38 +0000351 std::map<const Value*, Value*> &ValueMap) {
352 std::map<const Value*,Value*>::const_iterator I = ValueMap.find(In);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000353 if (I != ValueMap.end())
Reid Spenceref9b9a72007-02-05 20:47:22 +0000354 return I->second;
Chris Lattner5c377c52001-10-14 23:29:15 +0000355
Reid Spencer619f0242007-02-04 04:43:17 +0000356 // Check to see if it's a constant that we are interested in transforming.
Chris Lattner620fd682006-06-01 19:14:22 +0000357 Value *Result = 0;
Chris Lattner18961502002-06-25 16:12:52 +0000358 if (const Constant *CPV = dyn_cast<Constant>(In)) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000359 if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) ||
Reid Spencera54b7cb2007-01-12 07:05:14 +0000360 isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV))
Chris Lattner0033baf2004-11-16 17:12:38 +0000361 return const_cast<Constant*>(CPV); // Simple constants stay identical.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000362
Chris Lattner18961502002-06-25 16:12:52 +0000363 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000364 std::vector<Constant*> Operands(CPA->getNumOperands());
365 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
Chris Lattner0033baf2004-11-16 17:12:38 +0000366 Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap));
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000367 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
Chris Lattner18961502002-06-25 16:12:52 +0000368 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000369 std::vector<Constant*> Operands(CPS->getNumOperands());
370 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattner0033baf2004-11-16 17:12:38 +0000371 Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap));
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000372 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
Chris Lattnerb976e662004-10-16 18:08:06 +0000373 } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) {
Chris Lattner18961502002-06-25 16:12:52 +0000374 Result = const_cast<Constant*>(CPV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000375 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CPV)) {
Chris Lattnera88eb922006-01-19 23:15:58 +0000376 std::vector<Constant*> Operands(CP->getNumOperands());
377 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
378 Operands[i] = cast<Constant>(RemapOperand(CP->getOperand(i), ValueMap));
Reid Spencer9d6565a2007-02-15 02:26:10 +0000379 Result = ConstantVector::get(Operands);
Chris Lattner6cdf1972002-07-18 00:13:08 +0000380 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
Chris Lattner27d67212006-07-14 22:21:31 +0000381 std::vector<Constant*> Ops;
382 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
383 Ops.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),ValueMap)));
384 Result = CE->getWithOperands(Ops);
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000385 } else {
Chris Lattner0bb87572008-07-14 05:52:33 +0000386 assert(!isa<GlobalValue>(CPV) && "Unmapped global?");
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000387 assert(0 && "Unknown type of derived type constant value!");
388 }
Chris Lattner620fd682006-06-01 19:14:22 +0000389 } else if (isa<InlineAsm>(In)) {
390 Result = const_cast<Value*>(In);
391 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000392
Reid Spencer619f0242007-02-04 04:43:17 +0000393 // Cache the mapping in our local map structure
Chris Lattner620fd682006-06-01 19:14:22 +0000394 if (Result) {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000395 ValueMap[In] = Result;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000396 return Result;
397 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000398
Chris Lattner0bb87572008-07-14 05:52:33 +0000399#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +0000400 cerr << "LinkModules ValueMap: \n";
Chris Lattner0033baf2004-11-16 17:12:38 +0000401 PrintMap(ValueMap);
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000402
Bill Wendlinge8156192006-12-07 01:30:32 +0000403 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000404 assert(0 && "Couldn't remap value!");
Chris Lattner0bb87572008-07-14 05:52:33 +0000405#endif
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000406 return 0;
Chris Lattner5c377c52001-10-14 23:29:15 +0000407}
408
Reid Spencer8bef0372007-02-04 04:29:21 +0000409/// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict
410/// in the symbol table. This is good for all clients except for us. Go
411/// through the trouble to force this back.
Chris Lattnerc0036282004-08-04 07:05:54 +0000412static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
413 assert(GV->getName() != Name && "Can't force rename to self");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000414 ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable();
Chris Lattnerc0036282004-08-04 07:05:54 +0000415
416 // If there is a conflict, rename the conflict.
Chris Lattner33f29492007-02-11 00:39:38 +0000417 if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) {
Rafael Espindolabb46f522009-01-15 20:18:42 +0000418 assert(ConflictGV->hasLocalLinkage() &&
Reid Spenceref9b9a72007-02-05 20:47:22 +0000419 "Not conflicting with a static global, should link instead!");
Chris Lattner33f29492007-02-11 00:39:38 +0000420 GV->takeName(ConflictGV);
421 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Reid Spenceref9b9a72007-02-05 20:47:22 +0000422 assert(ConflictGV->getName() != Name && "ForceRenaming didn't work");
Chris Lattner33f29492007-02-11 00:39:38 +0000423 } else {
424 GV->setName(Name); // Force the name back
Reid Spenceref9b9a72007-02-05 20:47:22 +0000425 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000426}
Reid Spencer8bef0372007-02-04 04:29:21 +0000427
Reid Spenceref9b9a72007-02-05 20:47:22 +0000428/// CopyGVAttributes - copy additional attributes (those not needed to construct
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000429/// a GlobalValue) from the SrcGV to the DestGV.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000430static void CopyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sands28c3cff2008-05-26 19:58:59 +0000431 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
432 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
433 DestGV->copyAttributesFrom(SrcGV);
434 DestGV->setAlignment(Alignment);
Chris Lattnerc0036282004-08-04 07:05:54 +0000435}
436
Chris Lattneraee38ea2004-12-03 22:18:41 +0000437/// GetLinkageResult - This analyzes the two global values and determines what
438/// the result will look like in the destination module. In particular, it
439/// computes the resultant linkage type, computes whether the global in the
440/// source should be copied over to the destination (replacing the existing
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000441/// one), and computes whether this linkage is an error or not. It also performs
442/// visibility checks: we cannot link together two symbols with different
443/// visibilities.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000444static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Chris Lattneraee38ea2004-12-03 22:18:41 +0000445 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
446 std::string *Err) {
Rafael Espindolabb46f522009-01-15 20:18:42 +0000447 assert((!Dest || !Src->hasLocalLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000448 "If Src has internal linkage, Dest shouldn't be set!");
449 if (!Dest) {
450 // Linking something to nothing.
451 LinkFromSrc = true;
452 LT = Src->getLinkage();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000453 } else if (Src->isDeclaration()) {
Anton Korobeynikov2b48ef02008-03-10 22:33:22 +0000454 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattneraee38ea2004-12-03 22:18:41 +0000455 // external globals, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000456 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000457 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000458 if (Dest->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000459 LinkFromSrc = true;
460 LT = Src->getLinkage();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000461 }
Andrew Lenharth8753c442006-12-15 17:35:32 +0000462 } else if (Dest->hasExternalWeakLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000463 // If the Dest is weak, use the source linkage.
Andrew Lenharth8753c442006-12-15 17:35:32 +0000464 LinkFromSrc = true;
465 LT = Src->getLinkage();
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000466 } else {
467 LinkFromSrc = false;
468 LT = Dest->getLinkage();
469 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000470 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000471 // If Dest is external but Src is not:
472 LinkFromSrc = true;
473 LT = Src->getLinkage();
474 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
475 if (Src->getLinkage() != Dest->getLinkage())
476 return Error(Err, "Linking globals named '" + Src->getName() +
477 "': can only link appending global with another appending global!");
478 LinkFromSrc = true; // Special cased.
479 LT = Src->getLinkage();
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000480 } else if (Src->isWeakForLinker()) {
Dale Johannesenaafce772008-05-14 20:12:51 +0000481 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
482 // or DLL* linkage.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000483 if (Dest->hasExternalWeakLinkage() ||
484 Dest->hasAvailableExternallyLinkage() ||
485 (Dest->hasLinkOnceLinkage() &&
486 (Src->hasWeakLinkage() || Src->hasCommonLinkage()))) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000487 LinkFromSrc = true;
488 LT = Src->getLinkage();
489 } else {
490 LinkFromSrc = false;
491 LT = Dest->getLinkage();
492 }
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000493 } else if (Dest->isWeakForLinker()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000494 // At this point we know that Src has External* or DLL* linkage.
495 if (Src->hasExternalWeakLinkage()) {
496 LinkFromSrc = false;
497 LT = Dest->getLinkage();
498 } else {
499 LinkFromSrc = true;
500 LT = GlobalValue::ExternalLinkage;
501 }
Chris Lattneraee38ea2004-12-03 22:18:41 +0000502 } else {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000503 assert((Dest->hasExternalLinkage() ||
504 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000505 Dest->hasDLLExportLinkage() ||
506 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000507 (Src->hasExternalLinkage() ||
508 Src->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000509 Src->hasDLLExportLinkage() ||
510 Src->hasExternalWeakLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000511 "Unexpected linkage type!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000512 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattneraee38ea2004-12-03 22:18:41 +0000513 "': symbol multiply defined!");
514 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000515
516 // Check visibility
517 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattner97f8b092007-08-19 22:22:54 +0000518 if (!Src->isDeclaration() && !Dest->isDeclaration())
519 return Error(Err, "Linking globals named '" + Src->getName() +
520 "': symbols have different visibilities!");
Chris Lattneraee38ea2004-12-03 22:18:41 +0000521 return false;
522}
Chris Lattner5c377c52001-10-14 23:29:15 +0000523
524// LinkGlobals - Loop through the global variables in the src module and merge
Chris Lattner8166e6e2003-05-13 21:33:43 +0000525// them into the dest module.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000526static bool LinkGlobals(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000527 std::map<const Value*, Value*> &ValueMap,
Chris Lattner8166e6e2003-05-13 21:33:43 +0000528 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000529 std::string *Err) {
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000530 ValueSymbolTable &DestSymTab = Dest->getValueSymbolTable();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000531
Chris Lattner5c377c52001-10-14 23:29:15 +0000532 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner0bb87572008-07-14 05:52:33 +0000533 for (Module::const_global_iterator I = Src->global_begin(),
534 E = Src->global_end(); I != E; ++I) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000535 const GlobalVariable *SGV = I;
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000536 GlobalValue *DGV = 0;
537
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000538 // Check to see if may have to link the global with the global, alias or
539 // function.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000540 if (SGV->hasName() && !SGV->hasLocalLinkage())
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000541 DGV = cast_or_null<GlobalValue>(DestSymTab.lookup(SGV->getNameStart(),
542 SGV->getNameEnd()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000543
Chris Lattnerae1132d2008-07-14 06:52:19 +0000544 // If we found a global with the same name in the dest module, but it has
545 // internal linkage, we are really not doing any linkage here.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000546 if (DGV && DGV->hasLocalLinkage())
Chris Lattnerae1132d2008-07-14 06:52:19 +0000547 DGV = 0;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000548
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000549 // If types don't agree due to opaque types, try to resolve them.
550 if (DGV && DGV->getType() != SGV->getType())
551 RecursiveResolveTypes(SGV->getType(), DGV->getType());
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000552
Dan Gohmanc3183292007-10-08 15:13:30 +0000553 assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
554 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) &&
Chris Lattner4ad02e72003-04-16 20:28:45 +0000555 "Global must either be external or have an initializer!");
556
Chris Lattnerb324bd72006-11-09 05:18:12 +0000557 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
558 bool LinkFromSrc = false;
Chris Lattneraee38ea2004-12-03 22:18:41 +0000559 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
560 return true;
Chris Lattner0fec08e2003-04-21 21:07:05 +0000561
Chris Lattner6157e382008-07-14 07:23:24 +0000562 if (DGV == 0) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000563 // No linking to be performed, simply create an identical version of the
564 // symbol over in the dest module... the initializer will be filled in
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000565 // later by LinkGlobalInits.
Chris Lattner2719bac2003-04-21 21:15:04 +0000566 GlobalVariable *NewDGV =
567 new GlobalVariable(SGV->getType()->getElementType(),
568 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Chris Lattnera534b0f2008-06-27 03:10:24 +0000569 SGV->getName(), Dest, false,
570 SGV->getType()->getAddressSpace());
Reid Spencer471feac2007-02-04 04:30:33 +0000571 // Propagate alignment, visibility and section info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000572 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000573
Chris Lattner2719bac2003-04-21 21:15:04 +0000574 // If the LLVM runtime renamed the global, but it is an externally visible
575 // symbol, DGV must be an existing global with internal linkage. Rename
576 // it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000577 if (!NewDGV->hasLocalLinkage() && NewDGV->getName() != SGV->getName())
Chris Lattnerc0036282004-08-04 07:05:54 +0000578 ForceRenaming(NewDGV, SGV->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000579
Chris Lattner6157e382008-07-14 07:23:24 +0000580 // Make sure to remember this mapping.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000581 ValueMap[SGV] = NewDGV;
582
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000583 // Keep track that this is an appending variable.
Chris Lattner8166e6e2003-05-13 21:33:43 +0000584 if (SGV->hasAppendingLinkage())
Chris Lattner8166e6e2003-05-13 21:33:43 +0000585 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattner6157e382008-07-14 07:23:24 +0000586 continue;
587 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000588
Chris Lattner6157e382008-07-14 07:23:24 +0000589 // If the visibilities of the symbols disagree and the destination is a
590 // prototype, take the visibility of its input.
591 if (DGV->isDeclaration())
592 DGV->setVisibility(SGV->getVisibility());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000593
Chris Lattner6157e382008-07-14 07:23:24 +0000594 if (DGV->hasAppendingLinkage()) {
Chris Lattner8166e6e2003-05-13 21:33:43 +0000595 // No linking is performed yet. Just insert a new copy of the global, and
596 // keep track of the fact that it is an appending variable in the
597 // AppendingVars map. The name is cleared out so that no linkage is
598 // performed.
599 GlobalVariable *NewDGV =
600 new GlobalVariable(SGV->getType()->getElementType(),
601 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Chris Lattnera534b0f2008-06-27 03:10:24 +0000602 "", Dest, false,
603 SGV->getType()->getAddressSpace());
Chris Lattner8166e6e2003-05-13 21:33:43 +0000604
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000605 // Set alignment allowing CopyGVAttributes merge it with alignment of SGV.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000606 NewDGV->setAlignment(DGV->getAlignment());
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000607 // Propagate alignment, section and visibility info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000608 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000609
Chris Lattner8166e6e2003-05-13 21:33:43 +0000610 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000611 ValueMap[SGV] = NewDGV;
Chris Lattner8166e6e2003-05-13 21:33:43 +0000612
613 // Keep track that this is an appending variable...
614 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattner6157e382008-07-14 07:23:24 +0000615 continue;
616 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000617
Chris Lattner6157e382008-07-14 07:23:24 +0000618 if (LinkFromSrc) {
619 if (isa<GlobalAlias>(DGV))
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000620 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
621 "': symbol multiple defined");
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000622
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000623 // If the types don't match, and if we are to link from the source, nuke
624 // DGV and create a new one of the appropriate type. Note that the thing
625 // we are replacing may be a function (if a prototype, weak, etc) or a
626 // global variable.
627 GlobalVariable *NewDGV =
Chris Lattner6157e382008-07-14 07:23:24 +0000628 new GlobalVariable(SGV->getType()->getElementType(), SGV->isConstant(),
629 NewLinkage, /*init*/0, DGV->getName(), Dest, false,
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000630 SGV->getType()->getAddressSpace());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000631
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000632 // Propagate alignment, section, and visibility info.
633 CopyGVAttributes(NewDGV, SGV);
634 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000635
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000636 // DGV will conflict with NewDGV because they both had the same
637 // name. We must erase this now so ForceRenaming doesn't assert
638 // because DGV might not have internal linkage.
639 if (GlobalVariable *Var = dyn_cast<GlobalVariable>(DGV))
640 Var->eraseFromParent();
641 else
642 cast<Function>(DGV)->eraseFromParent();
643 DGV = NewDGV;
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000644
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000645 // If the symbol table renamed the global, but it is an externally visible
646 // symbol, DGV must be an existing global with internal linkage. Rename.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000647 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasLocalLinkage())
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000648 ForceRenaming(NewDGV, SGV->getName());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000649
Chris Lattner6157e382008-07-14 07:23:24 +0000650 // Inherit const as appropriate.
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000651 NewDGV->setConstant(SGV->isConstant());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000652
Chris Lattner6157e382008-07-14 07:23:24 +0000653 // Make sure to remember this mapping.
654 ValueMap[SGV] = NewDGV;
655 continue;
Chris Lattner5c377c52001-10-14 23:29:15 +0000656 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000657
Chris Lattner6157e382008-07-14 07:23:24 +0000658 // Not "link from source", keep the one in the DestModule and remap the
659 // input onto it.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000660
Chris Lattner6157e382008-07-14 07:23:24 +0000661 // Special case for const propagation.
662 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV))
663 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
664 DGVar->setConstant(true);
665
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000666 // SGV is global, but DGV is alias.
667 if (isa<GlobalAlias>(DGV)) {
668 // The only valid mappings are:
669 // - SGV is external declaration, which is effectively a no-op.
670 // - SGV is weak, when we just need to throw SGV out.
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000671 if (!SGV->isDeclaration() && !SGV->isWeakForLinker())
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000672 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
673 "': symbol multiple defined");
674 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000675
Chris Lattner6157e382008-07-14 07:23:24 +0000676 // Set calculated linkage
677 DGV->setLinkage(NewLinkage);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000678
Chris Lattner6157e382008-07-14 07:23:24 +0000679 // Make sure to remember this mapping...
680 ValueMap[SGV] = ConstantExpr::getBitCast(DGV, SGV->getType());
Chris Lattner5c377c52001-10-14 23:29:15 +0000681 }
682 return false;
683}
684
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000685static GlobalValue::LinkageTypes
686CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000687 GlobalValue::LinkageTypes SL = SGV->getLinkage();
688 GlobalValue::LinkageTypes DL = DGV->getLinkage();
689 if (SL == GlobalValue::ExternalLinkage || DL == GlobalValue::ExternalLinkage)
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000690 return GlobalValue::ExternalLinkage;
Duncan Sands667d4b82009-03-07 15:45:40 +0000691 else if (SL == GlobalValue::WeakAnyLinkage ||
692 DL == GlobalValue::WeakAnyLinkage)
693 return GlobalValue::WeakAnyLinkage;
694 else if (SL == GlobalValue::WeakODRLinkage ||
695 DL == GlobalValue::WeakODRLinkage)
696 return GlobalValue::WeakODRLinkage;
697 else if (SL == GlobalValue::InternalLinkage &&
698 DL == GlobalValue::InternalLinkage)
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000699 return GlobalValue::InternalLinkage;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000700 else {
Duncan Sands667d4b82009-03-07 15:45:40 +0000701 assert (SL == GlobalValue::PrivateLinkage &&
702 DL == GlobalValue::PrivateLinkage && "Unexpected linkage type");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000703 return GlobalValue::PrivateLinkage;
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000704 }
705}
706
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000707// LinkAlias - Loop through the alias in the src module and link them into the
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000708// dest module. We're assuming, that all functions/global variables were already
709// linked in.
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000710static bool LinkAlias(Module *Dest, const Module *Src,
711 std::map<const Value*, Value*> &ValueMap,
712 std::string *Err) {
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000713 // Loop over all alias in the src module
714 for (Module::const_alias_iterator I = Src->alias_begin(),
715 E = Src->alias_end(); I != E; ++I) {
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000716 const GlobalAlias *SGA = I;
717 const GlobalValue *SAliasee = SGA->getAliasedGlobal();
718 GlobalAlias *NewGA = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000719
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000720 // Globals were already linked, thus we can just query ValueMap for variant
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000721 // of SAliasee in Dest.
Ted Kremenek58d5e052008-03-09 18:32:50 +0000722 std::map<const Value*,Value*>::const_iterator VMI = ValueMap.find(SAliasee);
723 assert(VMI != ValueMap.end() && "Aliasee not linked");
724 GlobalValue* DAliasee = cast<GlobalValue>(VMI->second);
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000725 GlobalValue* DGV = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000726
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000727 // Try to find something 'similar' to SGA in destination module.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000728 if (!DGV && !SGA->hasLocalLinkage()) {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000729 DGV = Dest->getNamedAlias(SGA->getName());
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000730
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000731 // If types don't agree due to opaque types, try to resolve them.
732 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner5ed2ba22008-07-10 01:09:33 +0000733 RecursiveResolveTypes(SGA->getType(), DGV->getType());
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000734 }
735
Rafael Espindolabb46f522009-01-15 20:18:42 +0000736 if (!DGV && !SGA->hasLocalLinkage()) {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000737 DGV = Dest->getGlobalVariable(SGA->getName());
738
739 // If types don't agree due to opaque types, try to resolve them.
740 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner5ed2ba22008-07-10 01:09:33 +0000741 RecursiveResolveTypes(SGA->getType(), DGV->getType());
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000742 }
743
Rafael Espindolabb46f522009-01-15 20:18:42 +0000744 if (!DGV && !SGA->hasLocalLinkage()) {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000745 DGV = Dest->getFunction(SGA->getName());
746
747 // If types don't agree due to opaque types, try to resolve them.
748 if (DGV && DGV->getType() != SGA->getType())
Chris Lattner5ed2ba22008-07-10 01:09:33 +0000749 RecursiveResolveTypes(SGA->getType(), DGV->getType());
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000750 }
751
752 // No linking to be performed on internal stuff.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000753 if (DGV && DGV->hasLocalLinkage())
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000754 DGV = NULL;
755
756 if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) {
757 // Types are known to be the same, check whether aliasees equal. As
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000758 // globals are already linked we just need query ValueMap to find the
759 // mapping.
760 if (DAliasee == DGA->getAliasedGlobal()) {
761 // This is just two copies of the same alias. Propagate linkage, if
762 // necessary.
763 DGA->setLinkage(CalculateAliasLinkage(SGA, DGA));
764
765 NewGA = DGA;
766 // Proceed to 'common' steps
767 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000768 return Error(Err, "Alias Collision on '" + SGA->getName()+
769 "': aliases have different aliasees");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000770 } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) {
Anton Korobeynikovf88bc652008-07-05 23:33:22 +0000771 // The only allowed way is to link alias with external declaration or weak
772 // symbol..
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000773 if (DGVar->isDeclaration() || DGVar->isWeakForLinker()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000774 // But only if aliasee is global too...
775 if (!isa<GlobalVariable>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000776 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
777 "': aliasee is not global variable");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000778
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000779 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
780 SGA->getName(), DAliasee, Dest);
781 CopyGVAttributes(NewGA, SGA);
782
783 // Any uses of DGV need to change to NewGA, with cast, if needed.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000784 if (SGA->getType() != DGVar->getType())
785 DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
786 DGVar->getType()));
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000787 else
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000788 DGVar->replaceAllUsesWith(NewGA);
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000789
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000790 // DGVar will conflict with NewGA because they both had the same
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000791 // name. We must erase this now so ForceRenaming doesn't assert
792 // because DGV might not have internal linkage.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000793 DGVar->eraseFromParent();
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000794
795 // Proceed to 'common' steps
796 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000797 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
798 "': symbol multiple defined");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000799 } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) {
Anton Korobeynikovf88bc652008-07-05 23:33:22 +0000800 // The only allowed way is to link alias with external declaration or weak
801 // symbol...
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000802 if (DF->isDeclaration() || DF->isWeakForLinker()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000803 // But only if aliasee is function too...
804 if (!isa<Function>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000805 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
806 "': aliasee is not function");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000807
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000808 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
809 SGA->getName(), DAliasee, Dest);
810 CopyGVAttributes(NewGA, SGA);
811
812 // Any uses of DF need to change to NewGA, with cast, if needed.
813 if (SGA->getType() != DF->getType())
814 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
815 DF->getType()));
816 else
817 DF->replaceAllUsesWith(NewGA);
818
819 // DF will conflict with NewGA because they both had the same
820 // name. We must erase this now so ForceRenaming doesn't assert
821 // because DF might not have internal linkage.
822 DF->eraseFromParent();
823
824 // Proceed to 'common' steps
825 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000826 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
827 "': symbol multiple defined");
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000828 } else {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000829 // No linking to be performed, simply create an identical version of the
830 // alias over in the dest module...
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000831
832 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
833 SGA->getName(), DAliasee, Dest);
834 CopyGVAttributes(NewGA, SGA);
835
836 // Proceed to 'common' steps
837 }
838
839 assert(NewGA && "No alias was created in destination module!");
840
Anton Korobeynikovb8cdaf72008-03-10 22:36:35 +0000841 // If the symbol table renamed the alias, but it is an externally visible
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000842 // symbol, DGA must be an global value with internal linkage. Rename it.
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000843 if (NewGA->getName() != SGA->getName() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000844 !NewGA->hasLocalLinkage())
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000845 ForceRenaming(NewGA, SGA->getName());
846
847 // Remember this mapping so uses in the source module get remapped
848 // later by RemapOperand.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000849 ValueMap[SGA] = NewGA;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000850 }
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000851
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000852 return false;
853}
854
Chris Lattner5c377c52001-10-14 23:29:15 +0000855
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000856// LinkGlobalInits - Update the initializers in the Dest module now that all
857// globals that may be referenced are in Dest.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000858static bool LinkGlobalInits(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000859 std::map<const Value*, Value*> &ValueMap,
860 std::string *Err) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000861 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner11273152006-06-16 01:24:04 +0000862 for (Module::const_global_iterator I = Src->global_begin(),
863 E = Src->global_end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000864 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000865
866 if (SGV->hasInitializer()) { // Only process initialized GV's
867 // Figure out what the initializer looks like in the dest module...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000868 Constant *SInit =
Chris Lattner0033baf2004-11-16 17:12:38 +0000869 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000870 // Grab destination global variable or alias.
871 GlobalValue *DGV = cast<GlobalValue>(ValueMap[SGV]->stripPointerCasts());
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000872
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000873 // If dest if global variable, check that initializers match.
874 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
875 if (DGVar->hasInitializer()) {
876 if (SGV->hasExternalLinkage()) {
877 if (DGVar->getInitializer() != SInit)
878 return Error(Err, "Global Variable Collision on '" +
879 SGV->getName() +
880 "': global variables have different initializers");
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000881 } else if (DGVar->isWeakForLinker()) {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000882 // Nothing is required, mapped values will take the new global
883 // automatically.
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000884 } else if (SGV->isWeakForLinker()) {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000885 // Nothing is required, mapped values will take the new global
886 // automatically.
887 } else if (DGVar->hasAppendingLinkage()) {
888 assert(0 && "Appending linkage unimplemented!");
889 } else {
890 assert(0 && "Unknown linkage!");
891 }
Chris Lattner4ad02e72003-04-16 20:28:45 +0000892 } else {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000893 // Copy the initializer over now...
894 DGVar->setInitializer(SInit);
Chris Lattner4ad02e72003-04-16 20:28:45 +0000895 }
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000896 } else {
Anton Korobeynikovd13726f2008-10-15 20:10:50 +0000897 // Destination is alias, the only valid situation is when source is
898 // weak. Also, note, that we already checked linkage in LinkGlobals(),
899 // thus we assert here.
900 // FIXME: Should we weaken this assumption, 'dereference' alias and
901 // check for initializer of aliasee?
Duncan Sandsa05ef5e2009-03-08 13:35:23 +0000902 assert(SGV->isWeakForLinker());
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000903 }
904 }
905 }
906 return false;
907}
Chris Lattner5c377c52001-10-14 23:29:15 +0000908
Chris Lattner79df7c02002-03-26 18:01:55 +0000909// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000910// without doing function bodies... this just adds external function prototypes
911// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000912//
Chris Lattner79df7c02002-03-26 18:01:55 +0000913static bool LinkFunctionProtos(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000914 std::map<const Value*, Value*> &ValueMap,
915 std::string *Err) {
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000916 ValueSymbolTable &DestSymTab = Dest->getValueSymbolTable();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000917
Reid Spencer619f0242007-02-04 04:43:17 +0000918 // Loop over all of the functions in the src module, mapping them over
Chris Lattner5c377c52001-10-14 23:29:15 +0000919 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000920 const Function *SF = I; // SrcFunction
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000921 GlobalValue *DGV = 0;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000922
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000923 // Check to see if may have to link the function with the global, alias or
924 // function.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000925 if (SF->hasName() && !SF->hasLocalLinkage())
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000926 DGV = cast_or_null<GlobalValue>(DestSymTab.lookup(SF->getNameStart(),
927 SF->getNameEnd()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000928
Chris Lattnerae1132d2008-07-14 06:52:19 +0000929 // If we found a global with the same name in the dest module, but it has
930 // internal linkage, we are really not doing any linkage here.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000931 if (DGV && DGV->hasLocalLinkage())
Chris Lattnerae1132d2008-07-14 06:52:19 +0000932 DGV = 0;
933
Chris Lattnerd1ec48c2008-07-14 06:49:45 +0000934 // If types don't agree due to opaque types, try to resolve them.
935 if (DGV && DGV->getType() != SF->getType())
936 RecursiveResolveTypes(SF->getType(), DGV->getType());
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000937
Chris Lattner6157e382008-07-14 07:23:24 +0000938 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
939 bool LinkFromSrc = false;
940 if (GetLinkageResult(DGV, SF, NewLinkage, LinkFromSrc, Err))
941 return true;
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000942
Chris Lattner82468492008-06-09 07:36:11 +0000943 // If there is no linkage to be performed, just bring over SF without
944 // modifying it.
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +0000945 if (DGV == 0) {
Chris Lattner82468492008-06-09 07:36:11 +0000946 // Function does not already exist, simply insert an function signature
947 // identical to SF into the dest module.
948 Function *NewDF = Function::Create(SF->getFunctionType(),
949 SF->getLinkage(),
950 SF->getName(), Dest);
951 CopyGVAttributes(NewDF, SF);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000952
Chris Lattner82468492008-06-09 07:36:11 +0000953 // If the LLVM runtime renamed the function, but it is an externally
954 // visible symbol, DF must be an existing function with internal linkage.
955 // Rename it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000956 if (!NewDF->hasLocalLinkage() && NewDF->getName() != SF->getName())
Chris Lattner82468492008-06-09 07:36:11 +0000957 ForceRenaming(NewDF, SF->getName());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000958
Chris Lattner82468492008-06-09 07:36:11 +0000959 // ... and remember this mapping...
960 ValueMap[SF] = NewDF;
961 continue;
Chris Lattner6157e382008-07-14 07:23:24 +0000962 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000963
Chris Lattner6157e382008-07-14 07:23:24 +0000964 // If the visibilities of the symbols disagree and the destination is a
965 // prototype, take the visibility of its input.
966 if (DGV->isDeclaration())
967 DGV->setVisibility(SF->getVisibility());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000968
Chris Lattner6157e382008-07-14 07:23:24 +0000969 if (LinkFromSrc) {
970 if (isa<GlobalAlias>(DGV))
971 return Error(Err, "Function-Alias Collision on '" + SF->getName() +
972 "': symbol multiple defined");
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000973
Chris Lattner6157e382008-07-14 07:23:24 +0000974 // 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.
977 Function *NewDF = Function::Create(SF->getFunctionType(), NewLinkage,
978 SF->getName(), Dest);
979 CopyGVAttributes(NewDF, SF);
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000980
Chris Lattner6157e382008-07-14 07:23:24 +0000981 // Any uses of DF need to change to NewDF, with cast
982 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType()));
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000983
Chris Lattner6157e382008-07-14 07:23:24 +0000984 // DF will conflict with NewDF because they both had the same. We must
985 // erase this now so ForceRenaming doesn't assert because DF might
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000986 // not have internal linkage.
Chris Lattner6157e382008-07-14 07:23:24 +0000987 if (GlobalVariable *Var = dyn_cast<GlobalVariable>(DGV))
988 Var->eraseFromParent();
989 else
990 cast<Function>(DGV)->eraseFromParent();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000991
Chris Lattner6157e382008-07-14 07:23:24 +0000992 // If the symbol table renamed the function, but it is an externally
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000993 // visible symbol, DF must be an existing function with internal
Chris Lattner6157e382008-07-14 07:23:24 +0000994 // linkage. Rename it.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000995 if (NewDF->getName() != SF->getName() && !NewDF->hasLocalLinkage())
Chris Lattner6157e382008-07-14 07:23:24 +0000996 ForceRenaming(NewDF, SF->getName());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +0000997
Chris Lattner6157e382008-07-14 07:23:24 +0000998 // Remember this mapping so uses in the source module get remapped
999 // later by RemapOperand.
1000 ValueMap[SF] = NewDF;
1001 continue;
1002 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001003
Chris Lattner6157e382008-07-14 07:23:24 +00001004 // Not "link from source", keep the one in the DestModule and remap the
1005 // input onto it.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001006
Chris Lattner6157e382008-07-14 07:23:24 +00001007 if (isa<GlobalAlias>(DGV)) {
Anton Korobeynikovf88bc652008-07-05 23:33:22 +00001008 // The only valid mappings are:
1009 // - SF is external declaration, which is effectively a no-op.
1010 // - SF is weak, when we just need to throw SF out.
Duncan Sandsa05ef5e2009-03-08 13:35:23 +00001011 if (!SF->isDeclaration() && !SF->isWeakForLinker())
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +00001012 return Error(Err, "Function-Alias Collision on '" + SF->getName() +
1013 "': symbol multiple defined");
Chris Lattner82468492008-06-09 07:36:11 +00001014 }
Anton Korobeynikov194c2ce2008-07-05 23:03:21 +00001015
Chris Lattner6157e382008-07-14 07:23:24 +00001016 // Set calculated linkage
1017 DGV->setLinkage(NewLinkage);
Chris Lattner5c377c52001-10-14 23:29:15 +00001018
Chris Lattner6157e382008-07-14 07:23:24 +00001019 // Make sure to remember this mapping.
1020 ValueMap[SF] = ConstantExpr::getBitCast(DGV, SF->getType());
Chris Lattner5c377c52001-10-14 23:29:15 +00001021 }
1022 return false;
1023}
1024
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001025// LinkFunctionBody - Copy the source function over into the dest function and
1026// fix up references to values. At this point we know that Dest is an external
1027// function, and that Src is not.
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001028static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spenceref9b9a72007-02-05 20:47:22 +00001029 std::map<const Value*, Value*> &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +00001030 std::string *Err) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001031 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Chris Lattner5c377c52001-10-14 23:29:15 +00001032
Chris Lattner0033baf2004-11-16 17:12:38 +00001033 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnere4d5c442005-03-15 04:54:21 +00001034 Function::arg_iterator DI = Dest->arg_begin();
1035 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Chris Lattner69da5cf2002-10-13 20:57:00 +00001036 I != E; ++I, ++DI) {
Owen Anderson6bc41e82008-04-14 17:38:21 +00001037 DI->setName(I->getName()); // Copy the name information over...
Chris Lattner5c377c52001-10-14 23:29:15 +00001038
1039 // Add a mapping to our local map
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +00001040 ValueMap[I] = DI;
Chris Lattner5c377c52001-10-14 23:29:15 +00001041 }
1042
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001043 // Splice the body of the source function into the dest function.
1044 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Chris Lattner5c377c52001-10-14 23:29:15 +00001045
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001046 // At this point, all of the instructions and values of the function are now
1047 // copied over. The only problem is that they are still referencing values in
1048 // the Source function as operands. Loop through all of the operands of the
1049 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +00001050 //
Chris Lattner18961502002-06-25 16:12:52 +00001051 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
1052 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1053 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +00001054 OI != OE; ++OI)
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001055 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Reid Spenceref9b9a72007-02-05 20:47:22 +00001056 *OI = RemapOperand(*OI, ValueMap);
Chris Lattner0033baf2004-11-16 17:12:38 +00001057
1058 // There is no need to map the arguments anymore.
Chris Lattner11273152006-06-16 01:24:04 +00001059 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1060 I != E; ++I)
Reid Spenceref9b9a72007-02-05 20:47:22 +00001061 ValueMap.erase(I);
Chris Lattner5c377c52001-10-14 23:29:15 +00001062
1063 return false;
1064}
1065
1066
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001067// LinkFunctionBodies - Link in the function bodies that are defined in the
1068// source module into the DestModule. This consists basically of copying the
1069// function over and fixing up references to values.
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001070static bool LinkFunctionBodies(Module *Dest, Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +00001071 std::map<const Value*, Value*> &ValueMap,
1072 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +00001073
Reid Spencer8bef0372007-02-04 04:29:21 +00001074 // Loop over all of the functions in the src module, mapping them over as we
1075 // go
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001076 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencer619f0242007-02-04 04:43:17 +00001077 if (!SF->isDeclaration()) { // No body if function is external
Chris Lattnerec91ccb2008-06-20 05:29:39 +00001078 Function *DF = dyn_cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +00001079
Chris Lattner18961502002-06-25 16:12:52 +00001080 // DF not external SF external?
Chris Lattnerec91ccb2008-06-20 05:29:39 +00001081 if (DF && DF->isDeclaration())
Chris Lattner35956552003-10-27 16:39:39 +00001082 // Only provide the function body if there isn't one already.
1083 if (LinkFunctionBody(DF, SF, ValueMap, Err))
1084 return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +00001085 }
Chris Lattner5c377c52001-10-14 23:29:15 +00001086 }
1087 return false;
1088}
1089
Chris Lattner8166e6e2003-05-13 21:33:43 +00001090// LinkAppendingVars - If there were any appending global variables, link them
1091// together now. Return true on error.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001092static bool LinkAppendingVars(Module *M,
1093 std::multimap<std::string, GlobalVariable *> &AppendingVars,
1094 std::string *ErrorMsg) {
1095 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukmanf976c852005-04-21 22:55:34 +00001096
Chris Lattner8166e6e2003-05-13 21:33:43 +00001097 // Loop over the multimap of appending vars, processing any variables with the
1098 // same name, forming a new appending global variable with both of the
1099 // initializers merged together, then rewrite references to the old variables
1100 // and delete them.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001101 std::vector<Constant*> Inits;
1102 while (AppendingVars.size() > 1) {
1103 // Get the first two elements in the map...
1104 std::multimap<std::string,
1105 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
1106
1107 // If the first two elements are for different names, there is no pair...
1108 // Otherwise there is a pair, so link them together...
1109 if (First->first == Second->first) {
1110 GlobalVariable *G1 = First->second, *G2 = Second->second;
1111 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
1112 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukmanf976c852005-04-21 22:55:34 +00001113
Chris Lattner8166e6e2003-05-13 21:33:43 +00001114 // Check to see that they two arrays agree on type...
1115 if (T1->getElementType() != T2->getElementType())
1116 return Error(ErrorMsg,
1117 "Appending variables with different element types need to be linked!");
1118 if (G1->isConstant() != G2->isConstant())
1119 return Error(ErrorMsg,
1120 "Appending variables linked with different const'ness!");
1121
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001122 if (G1->getAlignment() != G2->getAlignment())
1123 return Error(ErrorMsg,
1124 "Appending variables with different alignment need to be linked!");
1125
1126 if (G1->getVisibility() != G2->getVisibility())
1127 return Error(ErrorMsg,
1128 "Appending variables with different visibility need to be linked!");
1129
1130 if (G1->getSection() != G2->getSection())
1131 return Error(ErrorMsg,
1132 "Appending variables with different section name need to be linked!");
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001133
Chris Lattner8166e6e2003-05-13 21:33:43 +00001134 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
1135 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
1136
Chris Lattnered74a4e2005-12-06 17:30:58 +00001137 G1->setName(""); // Clear G1's name in case of a conflict!
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001138
Chris Lattner8166e6e2003-05-13 21:33:43 +00001139 // Create the new global variable...
1140 GlobalVariable *NG =
1141 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Chris Lattnera534b0f2008-06-27 03:10:24 +00001142 /*init*/0, First->first, M, G1->isThreadLocal(),
1143 G1->getType()->getAddressSpace());
Chris Lattner8166e6e2003-05-13 21:33:43 +00001144
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001145 // Propagate alignment, visibility and section info.
1146 CopyGVAttributes(NG, G1);
1147
Chris Lattner8166e6e2003-05-13 21:33:43 +00001148 // Merge the initializer...
1149 Inits.reserve(NewSize);
Chris Lattnerde512b52004-02-15 05:55:15 +00001150 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
1151 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001152 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001153 } else {
1154 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
1155 Constant *CV = Constant::getNullValue(T1->getElementType());
1156 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1157 Inits.push_back(CV);
1158 }
1159 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
1160 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001161 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001162 } else {
1163 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
1164 Constant *CV = Constant::getNullValue(T2->getElementType());
1165 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1166 Inits.push_back(CV);
1167 }
Chris Lattner8166e6e2003-05-13 21:33:43 +00001168 NG->setInitializer(ConstantArray::get(NewType, Inits));
1169 Inits.clear();
1170
1171 // Replace any uses of the two global variables with uses of the new
1172 // global...
1173
1174 // FIXME: This should rewrite simple/straight-forward uses such as
1175 // getelementptr instructions to not use the Cast!
Reid Spencer4da49122006-12-12 05:05:00 +00001176 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
1177 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Chris Lattner8166e6e2003-05-13 21:33:43 +00001178
1179 // Remove the two globals from the module now...
1180 M->getGlobalList().erase(G1);
1181 M->getGlobalList().erase(G2);
1182
1183 // Put the new global into the AppendingVars map so that we can handle
1184 // linking of more than two vars...
1185 Second->second = NG;
1186 }
1187 AppendingVars.erase(First);
1188 }
1189
1190 return false;
1191}
Chris Lattner52f7e902001-10-13 07:03:50 +00001192
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001193static bool ResolveAliases(Module *Dest) {
1194 for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end();
Anton Korobeynikov52419572008-03-11 22:51:09 +00001195 I != E; ++I)
Anton Korobeynikov19e861a2008-09-09 20:05:04 +00001196 if (const GlobalValue *GV = I->resolveAliasedGlobal())
Anton Korobeynikov832b2a92008-09-09 18:23:48 +00001197 if (GV != I && !GV->isDeclaration())
Anton Korobeynikov52419572008-03-11 22:51:09 +00001198 I->replaceAllUsesWith(const_cast<GlobalValue*>(GV));
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001199
1200 return false;
1201}
Chris Lattner52f7e902001-10-13 07:03:50 +00001202
1203// LinkModules - This function links two modules together, with the resulting
1204// left module modified to be the composite of the two input modules. If an
1205// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +00001206// the problem. Upon failure, the Dest module could be in a modified state, and
1207// shouldn't be relied on to be consistent.
Misha Brukmanf976c852005-04-21 22:55:34 +00001208bool
Reid Spencer0ba9e212004-12-13 03:00:16 +00001209Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer57a0efa2004-09-11 04:25:17 +00001210 assert(Dest != 0 && "Invalid Destination module");
1211 assert(Src != 0 && "Invalid Source Module");
1212
Chris Lattnerc36357c2007-01-29 00:21:34 +00001213 if (Dest->getDataLayout().empty()) {
1214 if (!Src->getDataLayout().empty()) {
Chris Lattnerec9bfdc2007-01-29 02:18:13 +00001215 Dest->setDataLayout(Src->getDataLayout());
Chris Lattnerc36357c2007-01-29 00:21:34 +00001216 } else {
1217 std::string DataLayout;
Reid Spencer26f23852007-01-26 08:11:39 +00001218
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001219 if (Dest->getEndianness() == Module::AnyEndianness) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001220 if (Src->getEndianness() == Module::BigEndian)
1221 DataLayout.append("E");
1222 else if (Src->getEndianness() == Module::LittleEndian)
1223 DataLayout.append("e");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001224 }
1225
1226 if (Dest->getPointerSize() == Module::AnyPointerSize) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001227 if (Src->getPointerSize() == Module::Pointer64)
1228 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
1229 else if (Src->getPointerSize() == Module::Pointer32)
1230 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001231 }
Chris Lattnerc36357c2007-01-29 00:21:34 +00001232 Dest->setDataLayout(DataLayout);
1233 }
1234 }
1235
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001236 // Copy the target triple from the source to dest if the dest's is empty.
Chris Lattnerc36357c2007-01-29 00:21:34 +00001237 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattner152f19a2004-12-10 20:26:15 +00001238 Dest->setTargetTriple(Src->getTargetTriple());
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001239
Chris Lattnerc36357c2007-01-29 00:21:34 +00001240 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
1241 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer26f23852007-01-26 08:11:39 +00001242 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattner152f19a2004-12-10 20:26:15 +00001243 if (!Src->getTargetTriple().empty() &&
1244 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlinge8156192006-12-07 01:30:32 +00001245 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukmanf976c852005-04-21 22:55:34 +00001246
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001247 // Append the module inline asm string.
Chris Lattner66316012006-01-24 04:14:29 +00001248 if (!Src->getModuleInlineAsm().empty()) {
1249 if (Dest->getModuleInlineAsm().empty())
1250 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001251 else
Chris Lattner66316012006-01-24 04:14:29 +00001252 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
1253 Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001254 }
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001255
Reid Spencer719012d2004-11-25 09:29:44 +00001256 // Update the destination module's dependent libraries list with the libraries
Reid Spencer57a0efa2004-09-11 04:25:17 +00001257 // from the source module. There's no opportunity for duplicates here as the
1258 // Module ensures that duplicate insertions are discarded.
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001259 for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end();
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001260 SI != SE; ++SI)
Reid Spencer57a0efa2004-09-11 04:25:17 +00001261 Dest->addLibrary(*SI);
Reid Spencer57a0efa2004-09-11 04:25:17 +00001262
Chris Lattner2c236f32001-11-03 05:18:24 +00001263 // LinkTypes - Go through the symbol table of the Src module and see if any
1264 // types are named in the src module that are not named in the Dst module.
1265 // Make sure there are no type name conflicts.
Mikhail Glushenkoveba2cb02009-03-03 07:22:23 +00001266 if (LinkTypes(Dest, Src, ErrorMsg))
Reid Spencer619f0242007-02-04 04:43:17 +00001267 return true;
Chris Lattner2c236f32001-11-03 05:18:24 +00001268
Chris Lattner5c377c52001-10-14 23:29:15 +00001269 // ValueMap - Mapping of values from what they used to be in Src, to what they
1270 // are now in Dest.
Chris Lattner5c2d3352003-01-30 19:53:34 +00001271 std::map<const Value*, Value*> ValueMap;
Chris Lattner5c377c52001-10-14 23:29:15 +00001272
Chris Lattner8166e6e2003-05-13 21:33:43 +00001273 // AppendingVars - Keep track of global variables in the destination module
1274 // with appending linkage. After the module is linked together, they are
1275 // appended and the module is rewritten.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001276 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner11273152006-06-16 01:24:04 +00001277 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1278 I != E; ++I) {
Chris Lattner5a837de2004-08-04 07:44:58 +00001279 // Add all of the appending globals already in the Dest module to
1280 // AppendingVars.
Chris Lattnerf4146462003-05-14 12:11:51 +00001281 if (I->hasAppendingLinkage())
1282 AppendingVars.insert(std::make_pair(I->getName(), I));
Chris Lattner5a837de2004-08-04 07:44:58 +00001283 }
1284
Chris Lattner8166e6e2003-05-13 21:33:43 +00001285 // Insert all of the globals in src into the Dest module... without linking
1286 // initializers (which could refer to functions not yet mapped over).
Reid Spenceref9b9a72007-02-05 20:47:22 +00001287 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001288 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001289
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001290 // Link the functions together between the two modules, without doing function
1291 // bodies... this just adds external function prototypes to the Dest
1292 // function... We do this so that when we begin processing function bodies,
1293 // all of the global values that may be referenced are available in our
1294 // ValueMap.
Reid Spenceref9b9a72007-02-05 20:47:22 +00001295 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001296 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001297
Anton Korobeynikov4fb28732008-03-05 15:27:21 +00001298 // If there were any alias, link them now. We really need to do this now,
1299 // because all of the aliases that may be referenced need to be available in
1300 // ValueMap
1301 if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true;
1302
Chris Lattner6cdf1972002-07-18 00:13:08 +00001303 // Update the initializers in the Dest module now that all globals that may
1304 // be referenced are in Dest.
Chris Lattner6cdf1972002-07-18 00:13:08 +00001305 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1306
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001307 // Link in the function bodies that are defined in the source module into the
1308 // DestModule. This consists basically of copying the function over and
1309 // fixing up references to values.
Chris Lattner79df7c02002-03-26 18:01:55 +00001310 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +00001311
Chris Lattner8166e6e2003-05-13 21:33:43 +00001312 // If there were any appending global variables, link them together now.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001313 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1314
Anton Korobeynikov3db91912008-03-05 23:08:47 +00001315 // Resolve all uses of aliases with aliasees
1316 if (ResolveAliases(Dest)) return true;
1317
Reid Spencer57a0efa2004-09-11 04:25:17 +00001318 // If the source library's module id is in the dependent library list of the
1319 // destination library, remove it since that module is now linked in.
1320 sys::Path modId;
Reid Spencerdd04df02005-07-07 23:21:43 +00001321 modId.set(Src->getModuleIdentifier());
Reid Spencer07adb282004-11-05 22:15:36 +00001322 if (!modId.isEmpty())
1323 Dest->removeLibrary(modId.getBasename());
Reid Spencer57a0efa2004-09-11 04:25:17 +00001324
Chris Lattner52f7e902001-10-13 07:03:50 +00001325 return false;
1326}
Vikram S. Adve9466f512001-10-28 21:38:02 +00001327
Reid Spencer567bc2c2004-05-25 08:52:20 +00001328// vim: sw=2