blob: a5e9a3e3e8f04f8822ed9addacf60a373cc58972 [file] [log] [blame]
Reid Spencer361e5132004-11-12 20:37:43 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Reid Spencer361e5132004-11-12 20:37:43 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Reid Spencer361e5132004-11-12 20:37:43 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM module linker.
11//
12// Specifically, this:
13// * Merges global variables between the two modules
14// * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
15// * Merges functions between two modules
16//
17//===----------------------------------------------------------------------===//
18
Reid Spencer9b0ddbb2004-11-14 23:27:04 +000019#include "llvm/Linker.h"
Reid Spencer361e5132004-11-12 20:37:43 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Module.h"
Reid Spencer32af9e82007-01-06 07:24:44 +000023#include "llvm/TypeSymbolTable.h"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000024#include "llvm/ValueSymbolTable.h"
Reid Spencer361e5132004-11-12 20:37:43 +000025#include "llvm/Instructions.h"
26#include "llvm/Assembly/Writer.h"
Bill Wendling7339b8d2006-11-27 10:09:12 +000027#include "llvm/Support/Streams.h"
Reid Spencer361e5132004-11-12 20:37:43 +000028#include "llvm/System/Path.h"
Bill Wendling30c0f332006-12-07 23:41:45 +000029#include <sstream>
Reid Spencer361e5132004-11-12 20:37:43 +000030using namespace llvm;
31
32// Error - Simple wrapper function to conditionally assign to E and return true.
33// This just makes error return conditions a little bit simpler...
Reid Spencer361e5132004-11-12 20:37:43 +000034static inline bool Error(std::string *E, const std::string &Message) {
35 if (E) *E = Message;
36 return true;
37}
38
Reid Spencer2c4f9a42004-11-25 09:29:44 +000039// ToStr - Simple wrapper function to convert a type to a string.
Reid Spencer361e5132004-11-12 20:37:43 +000040static std::string ToStr(const Type *Ty, const Module *M) {
41 std::ostringstream OS;
42 WriteTypeSymbolic(OS, Ty, M);
43 return OS.str();
44}
45
46//
47// Function: ResolveTypes()
48//
49// Description:
50// Attempt to link the two specified types together.
51//
52// Inputs:
53// DestTy - The type to which we wish to resolve.
54// SrcTy - The original type which we want to resolve.
55// Name - The name of the type.
56//
57// Outputs:
58// DestST - The symbol table in which the new type should be placed.
59//
60// Return value:
61// true - There is an error and the types cannot yet be linked.
62// false - No errors.
63//
64static bool ResolveTypes(const Type *DestTy, const Type *SrcTy,
Reid Spencer32af9e82007-01-06 07:24:44 +000065 TypeSymbolTable *DestST, const std::string &Name) {
Reid Spencer361e5132004-11-12 20:37:43 +000066 if (DestTy == SrcTy) return false; // If already equal, noop
67
68 // Does the type already exist in the module?
69 if (DestTy && !isa<OpaqueType>(DestTy)) { // Yup, the type already exists...
70 if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) {
71 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy);
72 } else {
73 return true; // Cannot link types... neither is opaque and not-equal
74 }
75 } else { // Type not in dest module. Add it now.
76 if (DestTy) // Type _is_ in module, just opaque...
77 const_cast<OpaqueType*>(cast<OpaqueType>(DestTy))
78 ->refineAbstractTypeTo(SrcTy);
79 else if (!Name.empty())
80 DestST->insert(Name, const_cast<Type*>(SrcTy));
81 }
82 return false;
83}
84
85static const FunctionType *getFT(const PATypeHolder &TH) {
86 return cast<FunctionType>(TH.get());
87}
88static const StructType *getST(const PATypeHolder &TH) {
89 return cast<StructType>(TH.get());
90}
91
92// RecursiveResolveTypes - This is just like ResolveTypes, except that it
93// recurses down into derived types, merging the used types if the parent types
94// are compatible.
Reid Spencer361e5132004-11-12 20:37:43 +000095static bool RecursiveResolveTypesI(const PATypeHolder &DestTy,
96 const PATypeHolder &SrcTy,
Reid Spencer32af9e82007-01-06 07:24:44 +000097 TypeSymbolTable *DestST,
98 const std::string &Name,
Reid Spencer361e5132004-11-12 20:37:43 +000099 std::vector<std::pair<PATypeHolder, PATypeHolder> > &Pointers) {
100 const Type *SrcTyT = SrcTy.get();
101 const Type *DestTyT = DestTy.get();
102 if (DestTyT == SrcTyT) return false; // If already equal, noop
Misha Brukman10468d82005-04-21 22:55:34 +0000103
Reid Spencer361e5132004-11-12 20:37:43 +0000104 // If we found our opaque type, resolve it now!
105 if (isa<OpaqueType>(DestTyT) || isa<OpaqueType>(SrcTyT))
106 return ResolveTypes(DestTyT, SrcTyT, DestST, Name);
Misha Brukman10468d82005-04-21 22:55:34 +0000107
Reid Spencer361e5132004-11-12 20:37:43 +0000108 // Two types cannot be resolved together if they are of different primitive
109 // type. For example, we cannot resolve an int to a float.
110 if (DestTyT->getTypeID() != SrcTyT->getTypeID()) return true;
111
112 // Otherwise, resolve the used type used by this derived type...
113 switch (DestTyT->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000114 case Type::IntegerTyID: {
115 if (cast<IntegerType>(DestTyT)->getBitWidth() !=
116 cast<IntegerType>(SrcTyT)->getBitWidth())
117 return true;
118 return false;
119 }
Reid Spencer361e5132004-11-12 20:37:43 +0000120 case Type::FunctionTyID: {
121 if (cast<FunctionType>(DestTyT)->isVarArg() !=
122 cast<FunctionType>(SrcTyT)->isVarArg() ||
123 cast<FunctionType>(DestTyT)->getNumContainedTypes() !=
124 cast<FunctionType>(SrcTyT)->getNumContainedTypes())
125 return true;
126 for (unsigned i = 0, e = getFT(DestTy)->getNumContainedTypes(); i != e; ++i)
127 if (RecursiveResolveTypesI(getFT(DestTy)->getContainedType(i),
128 getFT(SrcTy)->getContainedType(i), DestST, "",
129 Pointers))
130 return true;
131 return false;
132 }
133 case Type::StructTyID: {
Misha Brukman10468d82005-04-21 22:55:34 +0000134 if (getST(DestTy)->getNumContainedTypes() !=
Reid Spencer361e5132004-11-12 20:37:43 +0000135 getST(SrcTy)->getNumContainedTypes()) return 1;
136 for (unsigned i = 0, e = getST(DestTy)->getNumContainedTypes(); i != e; ++i)
137 if (RecursiveResolveTypesI(getST(DestTy)->getContainedType(i),
138 getST(SrcTy)->getContainedType(i), DestST, "",
139 Pointers))
140 return true;
141 return false;
142 }
143 case Type::ArrayTyID: {
144 const ArrayType *DAT = cast<ArrayType>(DestTy.get());
145 const ArrayType *SAT = cast<ArrayType>(SrcTy.get());
146 if (DAT->getNumElements() != SAT->getNumElements()) return true;
147 return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(),
148 DestST, "", Pointers);
149 }
150 case Type::PointerTyID: {
151 // If this is a pointer type, check to see if we have already seen it. If
152 // so, we are in a recursive branch. Cut off the search now. We cannot use
153 // an associative container for this search, because the type pointers (keys
154 // in the container) change whenever types get resolved...
Reid Spencer361e5132004-11-12 20:37:43 +0000155 for (unsigned i = 0, e = Pointers.size(); i != e; ++i)
156 if (Pointers[i].first == DestTy)
157 return Pointers[i].second != SrcTy;
158
159 // Otherwise, add the current pointers to the vector to stop recursion on
160 // this pair.
161 Pointers.push_back(std::make_pair(DestTyT, SrcTyT));
162 bool Result =
163 RecursiveResolveTypesI(cast<PointerType>(DestTy.get())->getElementType(),
164 cast<PointerType>(SrcTy.get())->getElementType(),
165 DestST, "", Pointers);
166 Pointers.pop_back();
167 return Result;
168 }
169 default: assert(0 && "Unexpected type!"); return true;
Misha Brukman10468d82005-04-21 22:55:34 +0000170 }
Reid Spencer361e5132004-11-12 20:37:43 +0000171}
172
173static bool RecursiveResolveTypes(const PATypeHolder &DestTy,
174 const PATypeHolder &SrcTy,
Reid Spencer32af9e82007-01-06 07:24:44 +0000175 TypeSymbolTable *DestST,
176 const std::string &Name){
Reid Spencer361e5132004-11-12 20:37:43 +0000177 std::vector<std::pair<PATypeHolder, PATypeHolder> > PointerTypes;
178 return RecursiveResolveTypesI(DestTy, SrcTy, DestST, Name, PointerTypes);
179}
180
181
182// LinkTypes - Go through the symbol table of the Src module and see if any
183// types are named in the src module that are not named in the Dst module.
184// Make sure there are no type name conflicts.
Reid Spencer361e5132004-11-12 20:37:43 +0000185static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
Reid Spencer32af9e82007-01-06 07:24:44 +0000186 TypeSymbolTable *DestST = &Dest->getTypeSymbolTable();
187 const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable();
Reid Spencer361e5132004-11-12 20:37:43 +0000188
189 // Look for a type plane for Type's...
Reid Spencer32af9e82007-01-06 07:24:44 +0000190 TypeSymbolTable::const_iterator TI = SrcST->begin();
191 TypeSymbolTable::const_iterator TE = SrcST->end();
Reid Spencer361e5132004-11-12 20:37:43 +0000192 if (TI == TE) return false; // No named types, do nothing.
193
194 // Some types cannot be resolved immediately because they depend on other
195 // types being resolved to each other first. This contains a list of types we
196 // are waiting to recheck.
197 std::vector<std::string> DelayedTypesToResolve;
198
199 for ( ; TI != TE; ++TI ) {
200 const std::string &Name = TI->first;
201 const Type *RHS = TI->second;
202
203 // Check to see if this type name is already in the dest module...
Reid Spencer32af9e82007-01-06 07:24:44 +0000204 Type *Entry = DestST->lookup(Name);
Reid Spencer361e5132004-11-12 20:37:43 +0000205
206 if (ResolveTypes(Entry, RHS, DestST, Name)) {
207 // They look different, save the types 'till later to resolve.
208 DelayedTypesToResolve.push_back(Name);
209 }
210 }
211
212 // Iteratively resolve types while we can...
213 while (!DelayedTypesToResolve.empty()) {
214 // Loop over all of the types, attempting to resolve them if possible...
215 unsigned OldSize = DelayedTypesToResolve.size();
216
217 // Try direct resolution by name...
218 for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) {
219 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer32af9e82007-01-06 07:24:44 +0000220 Type *T1 = SrcST->lookup(Name);
221 Type *T2 = DestST->lookup(Name);
Reid Spencer361e5132004-11-12 20:37:43 +0000222 if (!ResolveTypes(T2, T1, DestST, Name)) {
223 // We are making progress!
224 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
225 --i;
226 }
227 }
228
229 // Did we not eliminate any types?
230 if (DelayedTypesToResolve.size() == OldSize) {
231 // Attempt to resolve subelements of types. This allows us to merge these
232 // two types: { int* } and { opaque* }
233 for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) {
234 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer32af9e82007-01-06 07:24:44 +0000235 PATypeHolder T1(SrcST->lookup(Name));
236 PATypeHolder T2(DestST->lookup(Name));
Reid Spencer361e5132004-11-12 20:37:43 +0000237
238 if (!RecursiveResolveTypes(T2, T1, DestST, Name)) {
239 // We are making progress!
240 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
Misha Brukman10468d82005-04-21 22:55:34 +0000241
Reid Spencer361e5132004-11-12 20:37:43 +0000242 // Go back to the main loop, perhaps we can resolve directly by name
243 // now...
244 break;
245 }
246 }
247
248 // If we STILL cannot resolve the types, then there is something wrong.
Reid Spencer361e5132004-11-12 20:37:43 +0000249 if (DelayedTypesToResolve.size() == OldSize) {
Reid Spencer361e5132004-11-12 20:37:43 +0000250 // Remove the symbol name from the destination.
251 DelayedTypesToResolve.pop_back();
252 }
253 }
254 }
255
256
257 return false;
258}
259
260static void PrintMap(const std::map<const Value*, Value*> &M) {
261 for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end();
262 I != E; ++I) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000263 cerr << " Fr: " << (void*)I->first << " ";
Reid Spencer361e5132004-11-12 20:37:43 +0000264 I->first->dump();
Bill Wendlingf3baad32006-12-07 01:30:32 +0000265 cerr << " To: " << (void*)I->second << " ";
Reid Spencer361e5132004-11-12 20:37:43 +0000266 I->second->dump();
Bill Wendlingf3baad32006-12-07 01:30:32 +0000267 cerr << "\n";
Reid Spencer361e5132004-11-12 20:37:43 +0000268 }
269}
270
271
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000272// RemapOperand - Use ValueMap to convert constants from one module to another.
Reid Spencer361e5132004-11-12 20:37:43 +0000273static Value *RemapOperand(const Value *In,
Chris Lattner7391dde2004-11-16 17:12:38 +0000274 std::map<const Value*, Value*> &ValueMap) {
275 std::map<const Value*,Value*>::const_iterator I = ValueMap.find(In);
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000276 if (I != ValueMap.end())
277 return I->second;
Reid Spencer361e5132004-11-12 20:37:43 +0000278
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000279 // Check to see if it's a constant that we are interested in transforming.
Chris Lattnerc7745922006-06-01 19:14:22 +0000280 Value *Result = 0;
Reid Spencer361e5132004-11-12 20:37:43 +0000281 if (const Constant *CPV = dyn_cast<Constant>(In)) {
282 if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) ||
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000283 isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV))
Chris Lattner7391dde2004-11-16 17:12:38 +0000284 return const_cast<Constant*>(CPV); // Simple constants stay identical.
Reid Spencer361e5132004-11-12 20:37:43 +0000285
Reid Spencer361e5132004-11-12 20:37:43 +0000286 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
287 std::vector<Constant*> Operands(CPA->getNumOperands());
288 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
Chris Lattner7391dde2004-11-16 17:12:38 +0000289 Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000290 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
291 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
292 std::vector<Constant*> Operands(CPS->getNumOperands());
293 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattner7391dde2004-11-16 17:12:38 +0000294 Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000295 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
296 } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) {
297 Result = const_cast<Constant*>(CPV);
Reid Spencerd84d35b2007-02-15 02:26:10 +0000298 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CPV)) {
Chris Lattner93bde9c2006-01-19 23:15:58 +0000299 std::vector<Constant*> Operands(CP->getNumOperands());
300 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
301 Operands[i] = cast<Constant>(RemapOperand(CP->getOperand(i), ValueMap));
Reid Spencerd84d35b2007-02-15 02:26:10 +0000302 Result = ConstantVector::get(Operands);
Reid Spencer361e5132004-11-12 20:37:43 +0000303 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
Chris Lattner19247f32006-07-14 22:21:31 +0000304 std::vector<Constant*> Ops;
305 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
306 Ops.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),ValueMap)));
307 Result = CE->getWithOperands(Ops);
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000308 } else if (isa<GlobalValue>(CPV)) {
309 assert(0 && "Unmapped global?");
Reid Spencer361e5132004-11-12 20:37:43 +0000310 } else {
311 assert(0 && "Unknown type of derived type constant value!");
312 }
Chris Lattnerc7745922006-06-01 19:14:22 +0000313 } else if (isa<InlineAsm>(In)) {
314 Result = const_cast<Value*>(In);
315 }
316
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000317 // Cache the mapping in our local map structure
Chris Lattnerc7745922006-06-01 19:14:22 +0000318 if (Result) {
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000319 ValueMap[In] = Result;
Reid Spencer361e5132004-11-12 20:37:43 +0000320 return Result;
321 }
Reid Spencer90246aa2007-02-04 04:29:21 +0000322
Reid Spencer361e5132004-11-12 20:37:43 +0000323
Bill Wendlingf3baad32006-12-07 01:30:32 +0000324 cerr << "LinkModules ValueMap: \n";
Chris Lattner7391dde2004-11-16 17:12:38 +0000325 PrintMap(ValueMap);
Reid Spencer361e5132004-11-12 20:37:43 +0000326
Bill Wendlingf3baad32006-12-07 01:30:32 +0000327 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Reid Spencer361e5132004-11-12 20:37:43 +0000328 assert(0 && "Couldn't remap value!");
329 return 0;
330}
331
Reid Spencer90246aa2007-02-04 04:29:21 +0000332/// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict
333/// in the symbol table. This is good for all clients except for us. Go
334/// through the trouble to force this back.
Reid Spencer361e5132004-11-12 20:37:43 +0000335static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
336 assert(GV->getName() != Name && "Can't force rename to self");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000337 ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable();
Reid Spencer361e5132004-11-12 20:37:43 +0000338
339 // If there is a conflict, rename the conflict.
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000340 if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000341 assert(ConflictGV->hasInternalLinkage() &&
342 "Not conflicting with a static global, should link instead!");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000343 GV->takeName(ConflictGV);
344 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000345 assert(ConflictGV->getName() != Name && "ForceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000346 } else {
347 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000348 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000349}
Reid Spencer90246aa2007-02-04 04:29:21 +0000350
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000351/// CopyGVAttributes - copy additional attributes (those not needed to construct
352/// a GlobalValue) from the SrcGV to the DestGV.
353static void CopyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000354 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
355 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
356 DestGV->copyAttributesFrom(SrcGV);
357 DestGV->setAlignment(Alignment);
Reid Spencer361e5132004-11-12 20:37:43 +0000358}
359
Chris Lattnerfc61de32004-12-03 22:18:41 +0000360/// GetLinkageResult - This analyzes the two global values and determines what
361/// the result will look like in the destination module. In particular, it
362/// computes the resultant linkage type, computes whether the global in the
363/// source should be copied over to the destination (replacing the existing
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000364/// one), and computes whether this linkage is an error or not. It also performs
365/// visibility checks: we cannot link together two symbols with different
366/// visibilities.
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000367static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Chris Lattnerfc61de32004-12-03 22:18:41 +0000368 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
369 std::string *Err) {
370 assert((!Dest || !Src->hasInternalLinkage()) &&
371 "If Src has internal linkage, Dest shouldn't be set!");
372 if (!Dest) {
373 // Linking something to nothing.
374 LinkFromSrc = true;
375 LT = Src->getLinkage();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000376 } else if (Src->isDeclaration()) {
Anton Korobeynikov1f93c502008-03-10 22:33:22 +0000377 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattnerfc61de32004-12-03 22:18:41 +0000378 // external globals, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000379 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000380 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000381 if (Dest->isDeclaration()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000382 LinkFromSrc = true;
383 LT = Src->getLinkage();
384 }
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000385 } else if (Dest->hasExternalWeakLinkage()) {
386 //If the Dest is weak, use the source linkage
387 LinkFromSrc = true;
388 LT = Src->getLinkage();
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000389 } else {
390 LinkFromSrc = false;
391 LT = Dest->getLinkage();
392 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000393 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000394 // If Dest is external but Src is not:
395 LinkFromSrc = true;
396 LT = Src->getLinkage();
397 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
398 if (Src->getLinkage() != Dest->getLinkage())
399 return Error(Err, "Linking globals named '" + Src->getName() +
400 "': can only link appending global with another appending global!");
401 LinkFromSrc = true; // Special cased.
402 LT = Src->getLinkage();
Dale Johannesence4396b2008-05-14 20:12:51 +0000403 } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage() ||
404 Src->hasCommonLinkage()) {
405 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
406 // or DLL* linkage.
407 if ((Dest->hasLinkOnceLinkage() &&
408 (Src->hasWeakLinkage() || Src->hasCommonLinkage())) ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000409 Dest->hasExternalWeakLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000410 LinkFromSrc = true;
411 LT = Src->getLinkage();
412 } else {
413 LinkFromSrc = false;
414 LT = Dest->getLinkage();
415 }
Dale Johannesence4396b2008-05-14 20:12:51 +0000416 } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage() ||
417 Dest->hasCommonLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000418 // At this point we know that Src has External* or DLL* linkage.
419 if (Src->hasExternalWeakLinkage()) {
420 LinkFromSrc = false;
421 LT = Dest->getLinkage();
422 } else {
423 LinkFromSrc = true;
424 LT = GlobalValue::ExternalLinkage;
425 }
Chris Lattnerfc61de32004-12-03 22:18:41 +0000426 } else {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000427 assert((Dest->hasExternalLinkage() ||
428 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000429 Dest->hasDLLExportLinkage() ||
430 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000431 (Src->hasExternalLinkage() ||
432 Src->hasDLLImportLinkage() ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000433 Src->hasDLLExportLinkage() ||
434 Src->hasExternalWeakLinkage()) &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000435 "Unexpected linkage type!");
Misha Brukman10468d82005-04-21 22:55:34 +0000436 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattnerfc61de32004-12-03 22:18:41 +0000437 "': symbol multiply defined!");
438 }
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000439
440 // Check visibility
441 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattner1cc79982007-08-19 22:22:54 +0000442 if (!Src->isDeclaration() && !Dest->isDeclaration())
443 return Error(Err, "Linking globals named '" + Src->getName() +
444 "': symbols have different visibilities!");
Chris Lattnerfc61de32004-12-03 22:18:41 +0000445 return false;
446}
Reid Spencer361e5132004-11-12 20:37:43 +0000447
448// LinkGlobals - Loop through the global variables in the src module and merge
449// them into the dest module.
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000450static bool LinkGlobals(Module *Dest, const Module *Src,
Reid Spencer361e5132004-11-12 20:37:43 +0000451 std::map<const Value*, Value*> &ValueMap,
452 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Reid Spencer361e5132004-11-12 20:37:43 +0000453 std::string *Err) {
Reid Spencer361e5132004-11-12 20:37:43 +0000454 // Loop over all of the globals in the src module, mapping them over as we go
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000455 for (Module::const_global_iterator I = Src->global_begin(), E = Src->global_end();
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000456 I != E; ++I) {
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000457 const GlobalVariable *SGV = I;
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000458 GlobalValue *DGV = 0;
459
460 // Check to see if may have to link the global with the global
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000461 if (SGV->hasName() && !SGV->hasInternalLinkage()) {
462 DGV = Dest->getGlobalVariable(SGV->getName());
463 if (DGV && DGV->getType() != SGV->getType())
464 // If types don't agree due to opaque types, try to resolve them.
465 RecursiveResolveTypes(SGV->getType(), DGV->getType(),
466 &Dest->getTypeSymbolTable(), "");
467 }
Reid Spencer361e5132004-11-12 20:37:43 +0000468
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000469 // Check to see if may have to link the global with the alias
Anton Korobeynikov715ef432008-03-10 22:35:31 +0000470 if (!DGV && SGV->hasName() && !SGV->hasInternalLinkage()) {
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000471 DGV = Dest->getNamedAlias(SGV->getName());
472 if (DGV && DGV->getType() != SGV->getType())
473 // If types don't agree due to opaque types, try to resolve them.
474 RecursiveResolveTypes(SGV->getType(), DGV->getType(),
475 &Dest->getTypeSymbolTable(), "");
476 }
477
Chris Lattnerfc61de32004-12-03 22:18:41 +0000478 if (DGV && DGV->hasInternalLinkage())
479 DGV = 0;
480
Dan Gohman5e79a612007-10-08 15:13:30 +0000481 assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
482 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) &&
Reid Spencer361e5132004-11-12 20:37:43 +0000483 "Global must either be external or have an initializer!");
484
Chris Lattner1b9633d2006-11-09 05:18:12 +0000485 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
486 bool LinkFromSrc = false;
Chris Lattnerfc61de32004-12-03 22:18:41 +0000487 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
488 return true;
Reid Spencer361e5132004-11-12 20:37:43 +0000489
Chris Lattnerfc61de32004-12-03 22:18:41 +0000490 if (!DGV) {
Reid Spencer361e5132004-11-12 20:37:43 +0000491 // No linking to be performed, simply create an identical version of the
492 // symbol over in the dest module... the initializer will be filled in
493 // later by LinkGlobalInits...
Reid Spencer361e5132004-11-12 20:37:43 +0000494 GlobalVariable *NewDGV =
495 new GlobalVariable(SGV->getType()->getElementType(),
496 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Anton Korobeynikov0074ea32008-03-07 18:32:18 +0000497 SGV->getName(), Dest);
Reid Spencer2dc36532007-02-04 04:30:33 +0000498 // Propagate alignment, visibility and section info.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000499 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000500
Reid Spencer361e5132004-11-12 20:37:43 +0000501 // If the LLVM runtime renamed the global, but it is an externally visible
502 // symbol, DGV must be an existing global with internal linkage. Rename
503 // it.
504 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
505 ForceRenaming(NewDGV, SGV->getName());
506
507 // Make sure to remember this mapping...
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000508 ValueMap[SGV] = NewDGV;
509
Reid Spencer361e5132004-11-12 20:37:43 +0000510 if (SGV->hasAppendingLinkage())
511 // Keep track that this is an appending variable...
512 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattnerfc61de32004-12-03 22:18:41 +0000513 } else if (DGV->hasAppendingLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000514 // No linking is performed yet. Just insert a new copy of the global, and
515 // keep track of the fact that it is an appending variable in the
516 // AppendingVars map. The name is cleared out so that no linkage is
517 // performed.
518 GlobalVariable *NewDGV =
519 new GlobalVariable(SGV->getType()->getElementType(),
520 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Anton Korobeynikov0074ea32008-03-07 18:32:18 +0000521 "", Dest);
Reid Spencer361e5132004-11-12 20:37:43 +0000522
Anton Korobeynikove8a3e742008-03-07 18:34:50 +0000523 // Set alignment allowing CopyGVAttributes merge it with alignment of SGV.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000524 NewDGV->setAlignment(DGV->getAlignment());
Anton Korobeynikove8a3e742008-03-07 18:34:50 +0000525 // Propagate alignment, section and visibility info.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000526 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000527
Reid Spencer361e5132004-11-12 20:37:43 +0000528 // Make sure to remember this mapping...
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000529 ValueMap[SGV] = NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +0000530
531 // Keep track that this is an appending variable...
532 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000533 } else if (GlobalAlias *DGA = dyn_cast<GlobalAlias>(DGV)) {
534 // SGV is global, but DGV is alias. The only valid mapping is when SGV is
535 // external declaration, which is effectively a no-op. Also make sure
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000536 // linkage calculation was correct.
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000537 if (SGV->isDeclaration() && !LinkFromSrc) {
538 // Make sure to remember this mapping...
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000539 ValueMap[SGV] = DGA;
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000540 } else
Anton Korobeynikoveeb5ca62008-03-10 22:34:46 +0000541 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
542 "': symbol multiple defined");
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000543 } else if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000544 // Otherwise, perform the global-global mapping as instructed by
545 // GetLinkageResult.
Chris Lattnerfc61de32004-12-03 22:18:41 +0000546 if (LinkFromSrc) {
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000547 // Propagate alignment, section, and visibility info.
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000548 CopyGVAttributes(DGVar, SGV);
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000549
550 // If the types don't match, and if we are to link from the source, nuke
551 // DGV and create a new one of the appropriate type.
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000552 if (SGV->getType() != DGVar->getType()) {
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000553 GlobalVariable *NewDGV =
554 new GlobalVariable(SGV->getType()->getElementType(),
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000555 DGVar->isConstant(), DGVar->getLinkage(),
556 /*init*/0, DGVar->getName(), Dest);
557 CopyGVAttributes(NewDGV, DGVar);
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000558 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV,
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000559 DGVar->getType()));
560 // DGVar will conflict with NewDGV because they both had the same
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000561 // name. We must erase this now so ForceRenaming doesn't assert
562 // because DGV might not have internal linkage.
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000563 DGVar->eraseFromParent();
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000564
565 // If the symbol table renamed the global, but it is an externally
566 // visible symbol, DGV must be an existing global with internal
567 // linkage. Rename it.
568 if (NewDGV->getName() != SGV->getName() &&
569 !NewDGV->hasInternalLinkage())
570 ForceRenaming(NewDGV, SGV->getName());
571
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000572 DGVar = NewDGV;
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000573 }
574
Chris Lattnerfc61de32004-12-03 22:18:41 +0000575 // Inherit const as appropriate
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000576 DGVar->setConstant(SGV->isConstant());
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000577
578 // Set initializer to zero, so we can link the stuff later
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000579 DGVar->setInitializer(0);
Chris Lattnerfc61de32004-12-03 22:18:41 +0000580 } else {
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000581 // Special case for const propagation
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000582 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
583 DGVar->setConstant(true);
Chris Lattnerfc61de32004-12-03 22:18:41 +0000584 }
585
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000586 // Set calculated linkage
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000587 DGVar->setLinkage(NewLinkage);
Anton Korobeynikovf6439242008-03-10 22:33:53 +0000588
589 // Make sure to remember this mapping...
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000590 ValueMap[SGV] = ConstantExpr::getBitCast(DGVar, SGV->getType());
Reid Spencer361e5132004-11-12 20:37:43 +0000591 }
592 }
593 return false;
594}
595
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000596static GlobalValue::LinkageTypes
597CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) {
598 if (SGV->hasExternalLinkage() || DGV->hasExternalLinkage())
599 return GlobalValue::ExternalLinkage;
600 else if (SGV->hasWeakLinkage() || DGV->hasWeakLinkage())
601 return GlobalValue::WeakLinkage;
602 else {
603 assert(SGV->hasInternalLinkage() && DGV->hasInternalLinkage() &&
604 "Unexpected linkage type");
605 return GlobalValue::InternalLinkage;
606 }
607}
608
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000609// LinkAlias - Loop through the alias in the src module and link them into the
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000610// dest module. We're assuming, that all functions/global variables were already
611// linked in.
Anton Korobeynikov2e135972008-03-05 15:27:21 +0000612static bool LinkAlias(Module *Dest, const Module *Src,
613 std::map<const Value*, Value*> &ValueMap,
614 std::string *Err) {
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000615 // Loop over all alias in the src module
616 for (Module::const_alias_iterator I = Src->alias_begin(),
617 E = Src->alias_end(); I != E; ++I) {
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000618 const GlobalAlias *SGA = I;
619 const GlobalValue *SAliasee = SGA->getAliasedGlobal();
620 GlobalAlias *NewGA = NULL;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000621
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000622 // Globals were already linked, thus we can just query ValueMap for variant
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000623 // of SAliasee in Dest.
Ted Kremenekd48ed172008-03-09 18:32:50 +0000624 std::map<const Value*,Value*>::const_iterator VMI = ValueMap.find(SAliasee);
625 assert(VMI != ValueMap.end() && "Aliasee not linked");
626 GlobalValue* DAliasee = cast<GlobalValue>(VMI->second);
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000627 GlobalValue* DGV = NULL;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000628
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000629 // Try to find something 'similar' to SGA in destination module.
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000630 if (!DGV && !SGA->hasInternalLinkage()) {
631 DGV = Dest->getNamedAlias(SGA->getName());
Anton Korobeynikov2e135972008-03-05 15:27:21 +0000632
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000633 // If types don't agree due to opaque types, try to resolve them.
634 if (DGV && DGV->getType() != SGA->getType())
635 if (RecursiveResolveTypes(SGA->getType(), DGV->getType(),
636 &Dest->getTypeSymbolTable(), ""))
637 return Error(Err, "Alias Collision on '" + SGA->getName()+
638 "': aliases have different types");
639 }
640
641 if (!DGV && !SGA->hasInternalLinkage()) {
642 DGV = Dest->getGlobalVariable(SGA->getName());
643
644 // If types don't agree due to opaque types, try to resolve them.
645 if (DGV && DGV->getType() != SGA->getType())
646 if (RecursiveResolveTypes(SGA->getType(), DGV->getType(),
647 &Dest->getTypeSymbolTable(), ""))
648 return Error(Err, "Alias Collision on '" + SGA->getName()+
649 "': aliases have different types");
650 }
651
652 if (!DGV && !SGA->hasInternalLinkage()) {
653 DGV = Dest->getFunction(SGA->getName());
654
655 // If types don't agree due to opaque types, try to resolve them.
656 if (DGV && DGV->getType() != SGA->getType())
657 if (RecursiveResolveTypes(SGA->getType(), DGV->getType(),
658 &Dest->getTypeSymbolTable(), ""))
659 return Error(Err, "Alias Collision on '" + SGA->getName()+
660 "': aliases have different types");
661 }
662
663 // No linking to be performed on internal stuff.
664 if (DGV && DGV->hasInternalLinkage())
665 DGV = NULL;
666
667 if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) {
668 // Types are known to be the same, check whether aliasees equal. As
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000669 // globals are already linked we just need query ValueMap to find the
670 // mapping.
671 if (DAliasee == DGA->getAliasedGlobal()) {
672 // This is just two copies of the same alias. Propagate linkage, if
673 // necessary.
674 DGA->setLinkage(CalculateAliasLinkage(SGA, DGA));
675
676 NewGA = DGA;
677 // Proceed to 'common' steps
678 } else
Anton Korobeynikoveeb5ca62008-03-10 22:34:46 +0000679 return Error(Err, "Alias Collision on '" + SGA->getName()+
680 "': aliases have different aliasees");
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000681 } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) {
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000682 // The only allowed way is to link alias with external declaration.
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000683 if (DGVar->isDeclaration()) {
Anton Korobeynikov510fc322008-03-10 22:36:53 +0000684 // But only if aliasee is global too...
685 if (!isa<GlobalVariable>(DAliasee))
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000686 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
687 "': aliasee is not global variable");
Anton Korobeynikov510fc322008-03-10 22:36:53 +0000688
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000689 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
690 SGA->getName(), DAliasee, Dest);
691 CopyGVAttributes(NewGA, SGA);
692
693 // Any uses of DGV need to change to NewGA, with cast, if needed.
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000694 if (SGA->getType() != DGVar->getType())
695 DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
696 DGVar->getType()));
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000697 else
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000698 DGVar->replaceAllUsesWith(NewGA);
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000699
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000700 // DGVar will conflict with NewGA because they both had the same
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000701 // name. We must erase this now so ForceRenaming doesn't assert
702 // because DGV might not have internal linkage.
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000703 DGVar->eraseFromParent();
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000704
705 // Proceed to 'common' steps
706 } else
Anton Korobeynikoveeb5ca62008-03-10 22:34:46 +0000707 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
708 "': symbol multiple defined");
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000709 } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) {
Anton Korobeynikov24f65c3a2008-03-05 23:08:16 +0000710 // The only allowed way is to link alias with external declaration.
711 if (DF->isDeclaration()) {
Anton Korobeynikov510fc322008-03-10 22:36:53 +0000712 // But only if aliasee is function too...
713 if (!isa<Function>(DAliasee))
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000714 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
715 "': aliasee is not function");
Anton Korobeynikov510fc322008-03-10 22:36:53 +0000716
Anton Korobeynikov24f65c3a2008-03-05 23:08:16 +0000717 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
718 SGA->getName(), DAliasee, Dest);
719 CopyGVAttributes(NewGA, SGA);
720
721 // Any uses of DF need to change to NewGA, with cast, if needed.
722 if (SGA->getType() != DF->getType())
723 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
724 DF->getType()));
725 else
726 DF->replaceAllUsesWith(NewGA);
727
728 // DF will conflict with NewGA because they both had the same
729 // name. We must erase this now so ForceRenaming doesn't assert
730 // because DF might not have internal linkage.
731 DF->eraseFromParent();
732
733 // Proceed to 'common' steps
734 } else
Anton Korobeynikoveeb5ca62008-03-10 22:34:46 +0000735 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
736 "': symbol multiple defined");
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000737 } else {
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000738 // No linking to be performed, simply create an identical version of the
739 // alias over in the dest module...
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000740
741 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
742 SGA->getName(), DAliasee, Dest);
743 CopyGVAttributes(NewGA, SGA);
744
745 // Proceed to 'common' steps
746 }
747
748 assert(NewGA && "No alias was created in destination module!");
749
Anton Korobeynikovd5160da2008-03-10 22:36:35 +0000750 // If the symbol table renamed the alias, but it is an externally visible
Anton Korobeynikovacbdaa22008-05-10 14:41:43 +0000751 // symbol, DGA must be an global value with internal linkage. Rename it.
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000752 if (NewGA->getName() != SGA->getName() &&
753 !NewGA->hasInternalLinkage())
754 ForceRenaming(NewGA, SGA->getName());
755
756 // Remember this mapping so uses in the source module get remapped
757 // later by RemapOperand.
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000758 ValueMap[SGA] = NewGA;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000759 }
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +0000760
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +0000761 return false;
762}
763
Reid Spencer361e5132004-11-12 20:37:43 +0000764
765// LinkGlobalInits - Update the initializers in the Dest module now that all
766// globals that may be referenced are in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000767static bool LinkGlobalInits(Module *Dest, const Module *Src,
768 std::map<const Value*, Value*> &ValueMap,
769 std::string *Err) {
770
771 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000772 for (Module::const_global_iterator I = Src->global_begin(),
773 E = Src->global_end(); I != E; ++I) {
Reid Spencer361e5132004-11-12 20:37:43 +0000774 const GlobalVariable *SGV = I;
775
776 if (SGV->hasInitializer()) { // Only process initialized GV's
777 // Figure out what the initializer looks like in the dest module...
778 Constant *SInit =
Chris Lattner7391dde2004-11-16 17:12:38 +0000779 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000780
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000781 GlobalVariable *DGV =
782 cast<GlobalVariable>(ValueMap[SGV]->stripPointerCasts());
Reid Spencer361e5132004-11-12 20:37:43 +0000783 if (DGV->hasInitializer()) {
784 if (SGV->hasExternalLinkage()) {
785 if (DGV->getInitializer() != SInit)
Anton Korobeynikoveeb5ca62008-03-10 22:34:46 +0000786 return Error(Err, "Global Variable Collision on '" + SGV->getName() +
787 "': global variables have different initializers");
Dale Johannesence4396b2008-05-14 20:12:51 +0000788 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage() ||
789 DGV->hasCommonLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000790 // Nothing is required, mapped values will take the new global
791 // automatically.
Dale Johannesence4396b2008-05-14 20:12:51 +0000792 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage() ||
793 SGV->hasCommonLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000794 // Nothing is required, mapped values will take the new global
795 // automatically.
796 } else if (DGV->hasAppendingLinkage()) {
797 assert(0 && "Appending linkage unimplemented!");
798 } else {
799 assert(0 && "Unknown linkage!");
800 }
801 } else {
802 // Copy the initializer over now...
803 DGV->setInitializer(SInit);
804 }
805 }
806 }
807 return false;
808}
809
810// LinkFunctionProtos - Link the functions together between the two modules,
811// without doing function bodies... this just adds external function prototypes
812// to the Dest function...
813//
814static bool LinkFunctionProtos(Module *Dest, const Module *Src,
815 std::map<const Value*, Value*> &ValueMap,
Reid Spencer361e5132004-11-12 20:37:43 +0000816 std::string *Err) {
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000817 // Loop over all of the functions in the src module, mapping them over
Reid Spencer361e5132004-11-12 20:37:43 +0000818 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
819 const Function *SF = I; // SrcFunction
Chris Lattner228a5f12008-06-09 07:36:11 +0000820
Reid Spencer361e5132004-11-12 20:37:43 +0000821 Function *DF = 0;
Chris Lattner228a5f12008-06-09 07:36:11 +0000822
823 // If this function is internal or has no name, it doesn't participate in
824 // linkage.
Reid Spencer90246aa2007-02-04 04:29:21 +0000825 if (SF->hasName() && !SF->hasInternalLinkage()) {
826 // Check to see if may have to link the function.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000827 DF = Dest->getFunction(SF->getName());
Chris Lattner228a5f12008-06-09 07:36:11 +0000828 if (DF && DF->hasInternalLinkage())
829 DF = 0;
Reid Spencer90246aa2007-02-04 04:29:21 +0000830 }
Chris Lattnerec7441b2008-06-09 07:25:28 +0000831
Chris Lattner228a5f12008-06-09 07:36:11 +0000832 // If there is no linkage to be performed, just bring over SF without
833 // modifying it.
834 if (DF == 0) {
835 // Function does not already exist, simply insert an function signature
836 // identical to SF into the dest module.
837 Function *NewDF = Function::Create(SF->getFunctionType(),
838 SF->getLinkage(),
839 SF->getName(), Dest);
840 CopyGVAttributes(NewDF, SF);
841
842 // If the LLVM runtime renamed the function, but it is an externally
843 // visible symbol, DF must be an existing function with internal linkage.
844 // Rename it.
845 if (!NewDF->hasInternalLinkage() && NewDF->getName() != SF->getName())
846 ForceRenaming(NewDF, SF->getName());
847
848 // ... and remember this mapping...
849 ValueMap[SF] = NewDF;
850 continue;
851 }
852
853
854 // If types don't agree because of opaque, try to resolve them.
855 if (SF->getType() != DF->getType())
856 RecursiveResolveTypes(SF->getType(), DF->getType(),
857 &Dest->getTypeSymbolTable(), "");
858
859 // Check visibility, merging if a definition overrides a prototype.
860 if (SF->getVisibility() != DF->getVisibility()) {
Chris Lattner1cc79982007-08-19 22:22:54 +0000861 // If one is a prototype, ignore its visibility. Prototypes are always
862 // overridden by the definition.
863 if (!SF->isDeclaration() && !DF->isDeclaration())
864 return Error(Err, "Linking functions named '" + SF->getName() +
865 "': symbols have different visibilities!");
Chris Lattnerec7441b2008-06-09 07:25:28 +0000866
867 // Otherwise, replace the visibility of DF if DF is a prototype.
868 if (DF->isDeclaration())
869 DF->setVisibility(SF->getVisibility());
Chris Lattner1cc79982007-08-19 22:22:54 +0000870 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000871
Chris Lattner228a5f12008-06-09 07:36:11 +0000872 if (DF->getType() != SF->getType()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000873 if (DF->isDeclaration() && !SF->isDeclaration()) {
874 // We have a definition of the same name but different type in the
875 // source module. Copy the prototype to the destination and replace
876 // uses of the destination's prototype with the new prototype.
Gabor Greif697e94c2008-05-15 10:04:30 +0000877 Function *NewDF = Function::Create(SF->getFunctionType(),
878 SF->getLinkage(),
Gabor Greife9ecc682008-04-06 20:25:17 +0000879 SF->getName(), Dest);
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000880 CopyGVAttributes(NewDF, SF);
Reid Spencer361e5132004-11-12 20:37:43 +0000881
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000882 // Any uses of DF need to change to NewDF, with cast
883 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType()));
884
885 // DF will conflict with NewDF because they both had the same. We must
886 // erase this now so ForceRenaming doesn't assert because DF might
887 // not have internal linkage.
888 DF->eraseFromParent();
889
890 // If the symbol table renamed the function, but it is an externally
891 // visible symbol, DF must be an existing function with internal
892 // linkage. Rename it.
893 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
894 ForceRenaming(NewDF, SF->getName());
895
896 // Remember this mapping so uses in the source module get remapped
897 // later by RemapOperand.
898 ValueMap[SF] = NewDF;
899 } else if (SF->isDeclaration()) {
900 // We have two functions of the same name but different type and the
901 // source is a declaration while the destination is not. Any use of
902 // the source must be mapped to the destination, with a cast.
903 ValueMap[SF] = ConstantExpr::getBitCast(DF, SF->getType());
904 } else {
905 // We have two functions of the same name but different types and they
906 // are both definitions. This is an error.
907 return Error(Err, "Function '" + DF->getName() + "' defined as both '" +
908 ToStr(SF->getFunctionType(), Src) + "' and '" +
909 ToStr(DF->getFunctionType(), Dest) + "'");
910 }
Chris Lattner228a5f12008-06-09 07:36:11 +0000911 continue;
912 }
913
914 if (SF->isDeclaration()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000915 // If SF is a declaration or if both SF & DF are declarations, just link
916 // the declarations, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000917 if (SF->hasDLLImportLinkage()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000918 if (DF->isDeclaration()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000919 ValueMap.insert(std::make_pair(SF, DF));
920 DF->setLinkage(SF->getLinkage());
921 }
922 } else {
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000923 ValueMap[SF] = DF;
Reid Spencer90246aa2007-02-04 04:29:21 +0000924 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000925 } else if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000926 // If DF is external but SF is not...
Reid Spencer361e5132004-11-12 20:37:43 +0000927 // Link the external functions, update linkage qualifiers
928 ValueMap.insert(std::make_pair(SF, DF));
929 DF->setLinkage(SF->getLinkage());
Dale Johannesence4396b2008-05-14 20:12:51 +0000930 } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage() ||
931 SF->hasCommonLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000932 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000933 ValueMap[SF] = DF;
Reid Spencer361e5132004-11-12 20:37:43 +0000934
935 // Linkonce+Weak = Weak
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000936 // *+External Weak = *
Dale Johannesence4396b2008-05-14 20:12:51 +0000937 if ((DF->hasLinkOnceLinkage() &&
938 (SF->hasWeakLinkage() || SF->hasCommonLinkage())) ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000939 DF->hasExternalWeakLinkage())
Reid Spencer361e5132004-11-12 20:37:43 +0000940 DF->setLinkage(SF->getLinkage());
Dale Johannesence4396b2008-05-14 20:12:51 +0000941 } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage() ||
942 DF->hasCommonLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000943 // At this point we know that SF has LinkOnce or External* linkage.
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000944 ValueMap[SF] = DF;
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000945 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage())
946 // Don't inherit linkonce & external weak linkage
Reid Spencer361e5132004-11-12 20:37:43 +0000947 DF->setLinkage(SF->getLinkage());
Reid Spencer361e5132004-11-12 20:37:43 +0000948 } else if (SF->getLinkage() != DF->getLinkage()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000949 return Error(Err, "Functions named '" + SF->getName() +
950 "' have different linkage specifiers!");
Reid Spencer361e5132004-11-12 20:37:43 +0000951 } else if (SF->hasExternalLinkage()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000952 // The function is defined identically in both modules!!
Misha Brukman10468d82005-04-21 22:55:34 +0000953 return Error(Err, "Function '" +
954 ToStr(SF->getFunctionType(), Src) + "':\"" +
Reid Spencer361e5132004-11-12 20:37:43 +0000955 SF->getName() + "\" - Function is already defined!");
956 } else {
957 assert(0 && "Unknown linkage configuration found!");
958 }
959 }
960 return false;
961}
962
963// LinkFunctionBody - Copy the source function over into the dest function and
964// fix up references to values. At this point we know that Dest is an external
965// function, and that Src is not.
Chris Lattner2f0557d2004-11-16 07:31:51 +0000966static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000967 std::map<const Value*, Value*> &ValueMap,
Reid Spencer361e5132004-11-12 20:37:43 +0000968 std::string *Err) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000969 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +0000970
Chris Lattner7391dde2004-11-16 17:12:38 +0000971 // Go through and convert function arguments over, remembering the mapping.
Chris Lattner531f9e92005-03-15 04:54:21 +0000972 Function::arg_iterator DI = Dest->arg_begin();
973 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +0000974 I != E; ++I, ++DI) {
Owen Anderson7629b712008-04-14 17:38:21 +0000975 DI->setName(I->getName()); // Copy the name information over...
Reid Spencer361e5132004-11-12 20:37:43 +0000976
977 // Add a mapping to our local map
Anton Korobeynikov66a62712008-03-10 22:36:08 +0000978 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +0000979 }
980
Chris Lattner2f0557d2004-11-16 07:31:51 +0000981 // Splice the body of the source function into the dest function.
982 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Reid Spencer361e5132004-11-12 20:37:43 +0000983
984 // At this point, all of the instructions and values of the function are now
985 // copied over. The only problem is that they are still referencing values in
986 // the Source function as operands. Loop through all of the operands of the
987 // functions and patch them up to point to the local versions...
988 //
989 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
990 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
991 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
992 OI != OE; ++OI)
Chris Lattner2f0557d2004-11-16 07:31:51 +0000993 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000994 *OI = RemapOperand(*OI, ValueMap);
Chris Lattner7391dde2004-11-16 17:12:38 +0000995
996 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000997 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
998 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000999 ValueMap.erase(I);
Reid Spencer361e5132004-11-12 20:37:43 +00001000
1001 return false;
1002}
1003
1004
1005// LinkFunctionBodies - Link in the function bodies that are defined in the
1006// source module into the DestModule. This consists basically of copying the
1007// function over and fixing up references to values.
Chris Lattner2f0557d2004-11-16 07:31:51 +00001008static bool LinkFunctionBodies(Module *Dest, Module *Src,
Reid Spencer361e5132004-11-12 20:37:43 +00001009 std::map<const Value*, Value*> &ValueMap,
1010 std::string *Err) {
1011
Reid Spencer90246aa2007-02-04 04:29:21 +00001012 // Loop over all of the functions in the src module, mapping them over as we
1013 // go
Chris Lattner2f0557d2004-11-16 07:31:51 +00001014 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencerd3ba7d92007-02-04 04:43:17 +00001015 if (!SF->isDeclaration()) { // No body if function is external
Reid Spencer361e5132004-11-12 20:37:43 +00001016 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
1017
1018 // DF not external SF external?
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001019 if (DF->isDeclaration())
Reid Spencer361e5132004-11-12 20:37:43 +00001020 // Only provide the function body if there isn't one already.
1021 if (LinkFunctionBody(DF, SF, ValueMap, Err))
1022 return true;
Reid Spencer361e5132004-11-12 20:37:43 +00001023 }
1024 }
1025 return false;
1026}
1027
1028// LinkAppendingVars - If there were any appending global variables, link them
1029// together now. Return true on error.
Reid Spencer361e5132004-11-12 20:37:43 +00001030static bool LinkAppendingVars(Module *M,
1031 std::multimap<std::string, GlobalVariable *> &AppendingVars,
1032 std::string *ErrorMsg) {
1033 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukman10468d82005-04-21 22:55:34 +00001034
Reid Spencer361e5132004-11-12 20:37:43 +00001035 // Loop over the multimap of appending vars, processing any variables with the
1036 // same name, forming a new appending global variable with both of the
1037 // initializers merged together, then rewrite references to the old variables
1038 // and delete them.
Reid Spencer361e5132004-11-12 20:37:43 +00001039 std::vector<Constant*> Inits;
1040 while (AppendingVars.size() > 1) {
1041 // Get the first two elements in the map...
1042 std::multimap<std::string,
1043 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
1044
1045 // If the first two elements are for different names, there is no pair...
1046 // Otherwise there is a pair, so link them together...
1047 if (First->first == Second->first) {
1048 GlobalVariable *G1 = First->second, *G2 = Second->second;
1049 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
1050 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukman10468d82005-04-21 22:55:34 +00001051
Reid Spencer361e5132004-11-12 20:37:43 +00001052 // Check to see that they two arrays agree on type...
1053 if (T1->getElementType() != T2->getElementType())
1054 return Error(ErrorMsg,
1055 "Appending variables with different element types need to be linked!");
1056 if (G1->isConstant() != G2->isConstant())
1057 return Error(ErrorMsg,
1058 "Appending variables linked with different const'ness!");
1059
Lauro Ramos Venancio85703e32007-06-06 22:01:12 +00001060 if (G1->getAlignment() != G2->getAlignment())
1061 return Error(ErrorMsg,
1062 "Appending variables with different alignment need to be linked!");
1063
1064 if (G1->getVisibility() != G2->getVisibility())
1065 return Error(ErrorMsg,
1066 "Appending variables with different visibility need to be linked!");
1067
1068 if (G1->getSection() != G2->getSection())
1069 return Error(ErrorMsg,
1070 "Appending variables with different section name need to be linked!");
1071
Reid Spencer361e5132004-11-12 20:37:43 +00001072 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
1073 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
1074
Chris Lattnerd490d4f2005-12-06 17:30:58 +00001075 G1->setName(""); // Clear G1's name in case of a conflict!
1076
Reid Spencer361e5132004-11-12 20:37:43 +00001077 // Create the new global variable...
1078 GlobalVariable *NG =
1079 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001080 /*init*/0, First->first, M, G1->isThreadLocal());
Reid Spencer361e5132004-11-12 20:37:43 +00001081
Lauro Ramos Venancio85703e32007-06-06 22:01:12 +00001082 // Propagate alignment, visibility and section info.
1083 CopyGVAttributes(NG, G1);
1084
Reid Spencer361e5132004-11-12 20:37:43 +00001085 // Merge the initializer...
1086 Inits.reserve(NewSize);
1087 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
1088 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1089 Inits.push_back(I->getOperand(i));
1090 } else {
1091 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
1092 Constant *CV = Constant::getNullValue(T1->getElementType());
1093 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1094 Inits.push_back(CV);
1095 }
1096 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
1097 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1098 Inits.push_back(I->getOperand(i));
1099 } else {
1100 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
1101 Constant *CV = Constant::getNullValue(T2->getElementType());
1102 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1103 Inits.push_back(CV);
1104 }
1105 NG->setInitializer(ConstantArray::get(NewType, Inits));
1106 Inits.clear();
1107
1108 // Replace any uses of the two global variables with uses of the new
1109 // global...
1110
1111 // FIXME: This should rewrite simple/straight-forward uses such as
1112 // getelementptr instructions to not use the Cast!
Reid Spencerb341b082006-12-12 05:05:00 +00001113 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
1114 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Reid Spencer361e5132004-11-12 20:37:43 +00001115
1116 // Remove the two globals from the module now...
1117 M->getGlobalList().erase(G1);
1118 M->getGlobalList().erase(G2);
1119
1120 // Put the new global into the AppendingVars map so that we can handle
1121 // linking of more than two vars...
1122 Second->second = NG;
1123 }
1124 AppendingVars.erase(First);
1125 }
1126
1127 return false;
1128}
1129
Anton Korobeynikov26098882008-03-05 23:21:39 +00001130static bool ResolveAliases(Module *Dest) {
1131 for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end();
Anton Korobeynikove6d90f52008-03-11 22:51:09 +00001132 I != E; ++I)
1133 if (const GlobalValue *GV = I->resolveAliasedGlobal())
1134 if (!GV->isDeclaration())
1135 I->replaceAllUsesWith(const_cast<GlobalValue*>(GV));
Anton Korobeynikov26098882008-03-05 23:21:39 +00001136
1137 return false;
1138}
Reid Spencer361e5132004-11-12 20:37:43 +00001139
1140// LinkModules - This function links two modules together, with the resulting
1141// left module modified to be the composite of the two input modules. If an
1142// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
1143// the problem. Upon failure, the Dest module could be in a modified state, and
1144// shouldn't be relied on to be consistent.
Misha Brukman10468d82005-04-21 22:55:34 +00001145bool
Reid Spencerc4e31532004-12-13 03:00:16 +00001146Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer361e5132004-11-12 20:37:43 +00001147 assert(Dest != 0 && "Invalid Destination module");
1148 assert(Src != 0 && "Invalid Source Module");
1149
Chris Lattner7f3bd822007-01-29 00:21:34 +00001150 if (Dest->getDataLayout().empty()) {
1151 if (!Src->getDataLayout().empty()) {
Chris Lattner78bddc32007-01-29 02:18:13 +00001152 Dest->setDataLayout(Src->getDataLayout());
Chris Lattner7f3bd822007-01-29 00:21:34 +00001153 } else {
1154 std::string DataLayout;
Reid Spencer3ac38e92007-01-26 08:11:39 +00001155
Anton Korobeynikovbddf51b2008-02-20 11:27:04 +00001156 if (Dest->getEndianness() == Module::AnyEndianness) {
Chris Lattner7f3bd822007-01-29 00:21:34 +00001157 if (Src->getEndianness() == Module::BigEndian)
1158 DataLayout.append("E");
1159 else if (Src->getEndianness() == Module::LittleEndian)
1160 DataLayout.append("e");
Anton Korobeynikovbddf51b2008-02-20 11:27:04 +00001161 }
1162
1163 if (Dest->getPointerSize() == Module::AnyPointerSize) {
Chris Lattner7f3bd822007-01-29 00:21:34 +00001164 if (Src->getPointerSize() == Module::Pointer64)
1165 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
1166 else if (Src->getPointerSize() == Module::Pointer32)
1167 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
Anton Korobeynikovbddf51b2008-02-20 11:27:04 +00001168 }
Chris Lattner7f3bd822007-01-29 00:21:34 +00001169 Dest->setDataLayout(DataLayout);
1170 }
1171 }
1172
Chris Lattner90c2df52008-02-19 18:49:08 +00001173 // Copy the target triple from the source to dest if the dest's is empty.
Chris Lattner7f3bd822007-01-29 00:21:34 +00001174 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattnerb7f59162004-12-10 20:26:15 +00001175 Dest->setTargetTriple(Src->getTargetTriple());
Chris Lattner7f3bd822007-01-29 00:21:34 +00001176
1177 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
1178 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer3ac38e92007-01-26 08:11:39 +00001179 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattnerb7f59162004-12-10 20:26:15 +00001180 if (!Src->getTargetTriple().empty() &&
1181 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlingf3baad32006-12-07 01:30:32 +00001182 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukman10468d82005-04-21 22:55:34 +00001183
Chris Lattner90c2df52008-02-19 18:49:08 +00001184 // Append the module inline asm string.
Chris Lattner8ebd2162006-01-24 04:14:29 +00001185 if (!Src->getModuleInlineAsm().empty()) {
1186 if (Dest->getModuleInlineAsm().empty())
1187 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnerdd2d3fa2006-01-23 23:08:37 +00001188 else
Chris Lattner8ebd2162006-01-24 04:14:29 +00001189 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
1190 Src->getModuleInlineAsm());
Chris Lattnerdd2d3fa2006-01-23 23:08:37 +00001191 }
1192
Reid Spencer2c4f9a42004-11-25 09:29:44 +00001193 // Update the destination module's dependent libraries list with the libraries
Reid Spencer361e5132004-11-12 20:37:43 +00001194 // from the source module. There's no opportunity for duplicates here as the
1195 // Module ensures that duplicate insertions are discarded.
Chris Lattner90c2df52008-02-19 18:49:08 +00001196 for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end();
1197 SI != SE; ++SI)
Reid Spencer361e5132004-11-12 20:37:43 +00001198 Dest->addLibrary(*SI);
Reid Spencer361e5132004-11-12 20:37:43 +00001199
1200 // LinkTypes - Go through the symbol table of the Src module and see if any
1201 // types are named in the src module that are not named in the Dst module.
1202 // Make sure there are no type name conflicts.
Reid Spencerd3ba7d92007-02-04 04:43:17 +00001203 if (LinkTypes(Dest, Src, ErrorMsg))
1204 return true;
Reid Spencer361e5132004-11-12 20:37:43 +00001205
1206 // ValueMap - Mapping of values from what they used to be in Src, to what they
1207 // are now in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +00001208 std::map<const Value*, Value*> ValueMap;
1209
1210 // AppendingVars - Keep track of global variables in the destination module
1211 // with appending linkage. After the module is linked together, they are
1212 // appended and the module is rewritten.
Reid Spencer361e5132004-11-12 20:37:43 +00001213 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001214 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1215 I != E; ++I) {
Reid Spencer361e5132004-11-12 20:37:43 +00001216 // Add all of the appending globals already in the Dest module to
1217 // AppendingVars.
1218 if (I->hasAppendingLinkage())
1219 AppendingVars.insert(std::make_pair(I->getName(), I));
Reid Spencer361e5132004-11-12 20:37:43 +00001220 }
1221
Reid Spencer361e5132004-11-12 20:37:43 +00001222 // Insert all of the globals in src into the Dest module... without linking
1223 // initializers (which could refer to functions not yet mapped over).
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001224 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Reid Spencer361e5132004-11-12 20:37:43 +00001225 return true;
1226
1227 // Link the functions together between the two modules, without doing function
1228 // bodies... this just adds external function prototypes to the Dest
1229 // function... We do this so that when we begin processing function bodies,
1230 // all of the global values that may be referenced are available in our
1231 // ValueMap.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001232 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Reid Spencer361e5132004-11-12 20:37:43 +00001233 return true;
1234
Anton Korobeynikov2e135972008-03-05 15:27:21 +00001235 // If there were any alias, link them now. We really need to do this now,
1236 // because all of the aliases that may be referenced need to be available in
1237 // ValueMap
1238 if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true;
1239
Reid Spencer361e5132004-11-12 20:37:43 +00001240 // Update the initializers in the Dest module now that all globals that may
1241 // be referenced are in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +00001242 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1243
1244 // Link in the function bodies that are defined in the source module into the
1245 // DestModule. This consists basically of copying the function over and
1246 // fixing up references to values.
Reid Spencer361e5132004-11-12 20:37:43 +00001247 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
1248
1249 // If there were any appending global variables, link them together now.
Reid Spencer361e5132004-11-12 20:37:43 +00001250 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1251
Anton Korobeynikove43711d2008-03-05 23:08:47 +00001252 // Resolve all uses of aliases with aliasees
1253 if (ResolveAliases(Dest)) return true;
1254
Reid Spencer361e5132004-11-12 20:37:43 +00001255 // If the source library's module id is in the dependent library list of the
1256 // destination library, remove it since that module is now linked in.
1257 sys::Path modId;
Reid Spencerc9c04732005-07-07 23:21:43 +00001258 modId.set(Src->getModuleIdentifier());
Reid Spencer361e5132004-11-12 20:37:43 +00001259 if (!modId.isEmpty())
1260 Dest->removeLibrary(modId.getBasename());
1261
1262 return false;
1263}
1264
1265// vim: sw=2