blob: ba303125eb5e151c7bbe6a328b6f5a6a829e508b [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 Spencer90246aa2007-02-04 04:29:21 +000023#include "llvm/SymbolTable.h"
Reid Spencer32af9e82007-01-06 07:24:44 +000024#include "llvm/TypeSymbolTable.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
Chris Lattner7391dde2004-11-16 17:12:38 +0000272// RemapOperand - Use ValueMap to convert references from one module to another.
Reid Spencer90246aa2007-02-04 04:29:21 +0000273// This is somewhat sophisticated in that it can automatically handle constant
274// references correctly as well.
Reid Spencer361e5132004-11-12 20:37:43 +0000275static Value *RemapOperand(const Value *In,
Chris Lattner7391dde2004-11-16 17:12:38 +0000276 std::map<const Value*, Value*> &ValueMap) {
277 std::map<const Value*,Value*>::const_iterator I = ValueMap.find(In);
278 if (I != ValueMap.end()) return I->second;
Reid Spencer361e5132004-11-12 20:37:43 +0000279
Reid Spencer90246aa2007-02-04 04:29:21 +0000280 // Check to see if it's a constant that we are interesting in transforming.
Chris Lattnerc7745922006-06-01 19:14:22 +0000281 Value *Result = 0;
Reid Spencer361e5132004-11-12 20:37:43 +0000282 if (const Constant *CPV = dyn_cast<Constant>(In)) {
283 if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) ||
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000284 isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV))
Chris Lattner7391dde2004-11-16 17:12:38 +0000285 return const_cast<Constant*>(CPV); // Simple constants stay identical.
Reid Spencer361e5132004-11-12 20:37:43 +0000286
Reid Spencer361e5132004-11-12 20:37:43 +0000287 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
288 std::vector<Constant*> Operands(CPA->getNumOperands());
289 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
Chris Lattner7391dde2004-11-16 17:12:38 +0000290 Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000291 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
292 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
293 std::vector<Constant*> Operands(CPS->getNumOperands());
294 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattner7391dde2004-11-16 17:12:38 +0000295 Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000296 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
297 } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) {
298 Result = const_cast<Constant*>(CPV);
Reid Spencer90246aa2007-02-04 04:29:21 +0000299 } else if (isa<GlobalValue>(CPV)) {
300 Result = cast<Constant>(RemapOperand(CPV, ValueMap));
Chris Lattner93bde9c2006-01-19 23:15:58 +0000301 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CPV)) {
302 std::vector<Constant*> Operands(CP->getNumOperands());
303 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
304 Operands[i] = cast<Constant>(RemapOperand(CP->getOperand(i), ValueMap));
305 Result = ConstantPacked::get(Operands);
Reid Spencer361e5132004-11-12 20:37:43 +0000306 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
Chris Lattner19247f32006-07-14 22:21:31 +0000307 std::vector<Constant*> Ops;
308 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
309 Ops.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),ValueMap)));
310 Result = CE->getWithOperands(Ops);
Reid Spencer361e5132004-11-12 20:37:43 +0000311 } else {
312 assert(0 && "Unknown type of derived type constant value!");
313 }
Chris Lattnerc7745922006-06-01 19:14:22 +0000314 } else if (isa<InlineAsm>(In)) {
315 Result = const_cast<Value*>(In);
316 }
317
Reid Spencer90246aa2007-02-04 04:29:21 +0000318 // Cache the mapping in our local map structure...
Chris Lattnerc7745922006-06-01 19:14:22 +0000319 if (Result) {
Chris Lattner7391dde2004-11-16 17:12:38 +0000320 ValueMap.insert(std::make_pair(In, Result));
Reid Spencer361e5132004-11-12 20:37:43 +0000321 return Result;
322 }
Reid Spencer90246aa2007-02-04 04:29:21 +0000323
Reid Spencer361e5132004-11-12 20:37:43 +0000324
Bill Wendlingf3baad32006-12-07 01:30:32 +0000325 cerr << "LinkModules ValueMap: \n";
Chris Lattner7391dde2004-11-16 17:12:38 +0000326 PrintMap(ValueMap);
Reid Spencer361e5132004-11-12 20:37:43 +0000327
Bill Wendlingf3baad32006-12-07 01:30:32 +0000328 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Reid Spencer361e5132004-11-12 20:37:43 +0000329 assert(0 && "Couldn't remap value!");
330 return 0;
331}
332
Reid Spencer90246aa2007-02-04 04:29:21 +0000333/// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict
334/// in the symbol table. This is good for all clients except for us. Go
335/// through the trouble to force this back.
Reid Spencer361e5132004-11-12 20:37:43 +0000336static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
337 assert(GV->getName() != Name && "Can't force rename to self");
Reid Spencer90246aa2007-02-04 04:29:21 +0000338 SymbolTable &ST = GV->getParent()->getValueSymbolTable();
Reid Spencer361e5132004-11-12 20:37:43 +0000339
340 // If there is a conflict, rename the conflict.
Reid Spencer90246aa2007-02-04 04:29:21 +0000341 Value *ConflictVal = ST.lookup(GV->getType(), Name);
342 assert(ConflictVal&&"Why do we have to force rename if there is no conflic?");
343 GlobalValue *ConflictGV = cast<GlobalValue>(ConflictVal);
344 assert(ConflictGV->hasInternalLinkage() &&
345 "Not conflicting with a static global, should link instead!");
346
347 ConflictGV->setName(""); // Eliminate the conflict
348 GV->setName(Name); // Force the name back
349 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
350 assert(GV->getName() == Name && ConflictGV->getName() != Name &&
351 "ForceRenaming didn't work");
Reid Spencer361e5132004-11-12 20:37:43 +0000352}
353
Chris Lattnerfc61de32004-12-03 22:18:41 +0000354/// GetLinkageResult - This analyzes the two global values and determines what
355/// the result will look like in the destination module. In particular, it
356/// computes the resultant linkage type, computes whether the global in the
357/// source should be copied over to the destination (replacing the existing
358/// one), and computes whether this linkage is an error or not.
359static bool GetLinkageResult(GlobalValue *Dest, GlobalValue *Src,
360 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
361 std::string *Err) {
362 assert((!Dest || !Src->hasInternalLinkage()) &&
363 "If Src has internal linkage, Dest shouldn't be set!");
364 if (!Dest) {
365 // Linking something to nothing.
366 LinkFromSrc = true;
367 LT = Src->getLinkage();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000368 } else if (Src->isDeclaration()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000369 // If Src is external or if both Src & Drc are external.. Just link the
370 // external globals, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000371 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000372 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000373 if (Dest->isDeclaration()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000374 LinkFromSrc = true;
375 LT = Src->getLinkage();
376 }
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000377 } else if (Dest->hasExternalWeakLinkage()) {
378 //If the Dest is weak, use the source linkage
379 LinkFromSrc = true;
380 LT = Src->getLinkage();
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000381 } else {
382 LinkFromSrc = false;
383 LT = Dest->getLinkage();
384 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000385 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000386 // If Dest is external but Src is not:
387 LinkFromSrc = true;
388 LT = Src->getLinkage();
389 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
390 if (Src->getLinkage() != Dest->getLinkage())
391 return Error(Err, "Linking globals named '" + Src->getName() +
392 "': can only link appending global with another appending global!");
393 LinkFromSrc = true; // Special cased.
394 LT = Src->getLinkage();
395 } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage()) {
Reid Spencer90246aa2007-02-04 04:29:21 +0000396 // At this point we know that Dest has LinkOnce, External*, Weak, DLL* linkage.
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000397 if ((Dest->hasLinkOnceLinkage() && Src->hasWeakLinkage()) ||
398 Dest->hasExternalWeakLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000399 LinkFromSrc = true;
400 LT = Src->getLinkage();
401 } else {
402 LinkFromSrc = false;
403 LT = Dest->getLinkage();
404 }
405 } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000406 // At this point we know that Src has External* or DLL* linkage.
407 if (Src->hasExternalWeakLinkage()) {
408 LinkFromSrc = false;
409 LT = Dest->getLinkage();
410 } else {
411 LinkFromSrc = true;
412 LT = GlobalValue::ExternalLinkage;
413 }
Chris Lattnerfc61de32004-12-03 22:18:41 +0000414 } else {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000415 assert((Dest->hasExternalLinkage() ||
416 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000417 Dest->hasDLLExportLinkage() ||
418 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000419 (Src->hasExternalLinkage() ||
420 Src->hasDLLImportLinkage() ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000421 Src->hasDLLExportLinkage() ||
422 Src->hasExternalWeakLinkage()) &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000423 "Unexpected linkage type!");
Misha Brukman10468d82005-04-21 22:55:34 +0000424 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattnerfc61de32004-12-03 22:18:41 +0000425 "': symbol multiply defined!");
426 }
427 return false;
428}
Reid Spencer361e5132004-11-12 20:37:43 +0000429
430// LinkGlobals - Loop through the global variables in the src module and merge
431// them into the dest module.
Chris Lattnerfc61de32004-12-03 22:18:41 +0000432static bool LinkGlobals(Module *Dest, Module *Src,
Reid Spencer361e5132004-11-12 20:37:43 +0000433 std::map<const Value*, Value*> &ValueMap,
434 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Reid Spencer90246aa2007-02-04 04:29:21 +0000435 std::map<std::string, GlobalValue*> &GlobalsByName,
Reid Spencer361e5132004-11-12 20:37:43 +0000436 std::string *Err) {
437 // We will need a module level symbol table if the src module has a module
438 // level symbol table...
Reid Spencer90246aa2007-02-04 04:29:21 +0000439 TypeSymbolTable *TST = &Dest->getTypeSymbolTable();
Misha Brukman10468d82005-04-21 22:55:34 +0000440
Reid Spencer361e5132004-11-12 20:37:43 +0000441 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000442 for (Module::global_iterator I = Src->global_begin(), E = Src->global_end();
443 I != E; ++I) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000444 GlobalVariable *SGV = I;
Reid Spencer361e5132004-11-12 20:37:43 +0000445 GlobalVariable *DGV = 0;
446 // Check to see if may have to link the global.
Reid Spencer90246aa2007-02-04 04:29:21 +0000447 if (SGV->hasName() && !SGV->hasInternalLinkage())
448 if (!(DGV = Dest->getGlobalVariable(SGV->getName(),
449 SGV->getType()->getElementType()))) {
450 std::map<std::string, GlobalValue*>::iterator EGV =
451 GlobalsByName.find(SGV->getName());
452 if (EGV != GlobalsByName.end())
453 DGV = dyn_cast<GlobalVariable>(EGV->second);
454 if (DGV)
455 // If types don't agree due to opaque types, try to resolve them.
456 RecursiveResolveTypes(SGV->getType(), DGV->getType(), TST, "");
457 }
Reid Spencer361e5132004-11-12 20:37:43 +0000458
Chris Lattnerfc61de32004-12-03 22:18:41 +0000459 if (DGV && DGV->hasInternalLinkage())
460 DGV = 0;
461
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000462 assert(SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000463 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage() &&
Reid Spencer361e5132004-11-12 20:37:43 +0000464 "Global must either be external or have an initializer!");
465
Chris Lattner1b9633d2006-11-09 05:18:12 +0000466 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
467 bool LinkFromSrc = false;
Chris Lattnerfc61de32004-12-03 22:18:41 +0000468 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
469 return true;
Reid Spencer361e5132004-11-12 20:37:43 +0000470
Chris Lattnerfc61de32004-12-03 22:18:41 +0000471 if (!DGV) {
Reid Spencer361e5132004-11-12 20:37:43 +0000472 // No linking to be performed, simply create an identical version of the
473 // symbol over in the dest module... the initializer will be filled in
474 // later by LinkGlobalInits...
Reid Spencer361e5132004-11-12 20:37:43 +0000475 GlobalVariable *NewDGV =
476 new GlobalVariable(SGV->getType()->getElementType(),
477 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
478 SGV->getName(), Dest);
Reid Spencer2dc36532007-02-04 04:30:33 +0000479 // Propagate alignment, visibility and section info.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000480 NewDGV->setAlignment(SGV->getAlignment());
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000481 NewDGV->setSection(SGV->getSection());
Reid Spencer2dc36532007-02-04 04:30:33 +0000482 NewDGV->setVisibility(SGV->getVisibility());
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000483
Reid Spencer361e5132004-11-12 20:37:43 +0000484 // If the LLVM runtime renamed the global, but it is an externally visible
485 // symbol, DGV must be an existing global with internal linkage. Rename
486 // it.
487 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
488 ForceRenaming(NewDGV, SGV->getName());
489
490 // Make sure to remember this mapping...
491 ValueMap.insert(std::make_pair(SGV, NewDGV));
492 if (SGV->hasAppendingLinkage())
493 // Keep track that this is an appending variable...
494 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattnerfc61de32004-12-03 22:18:41 +0000495 } else if (DGV->hasAppendingLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000496 // No linking is performed yet. Just insert a new copy of the global, and
497 // keep track of the fact that it is an appending variable in the
498 // AppendingVars map. The name is cleared out so that no linkage is
499 // performed.
500 GlobalVariable *NewDGV =
501 new GlobalVariable(SGV->getType()->getElementType(),
502 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
503 "", Dest);
504
Reid Spencer2dc36532007-02-04 04:30:33 +0000505 // Propagate alignment, section and visibility info.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000506 NewDGV->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment()));
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000507 NewDGV->setSection(SGV->getSection());
Reid Spencer2dc36532007-02-04 04:30:33 +0000508 NewDGV->setVisibility(SGV->getVisibility());
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000509
Reid Spencer361e5132004-11-12 20:37:43 +0000510 // Make sure to remember this mapping...
511 ValueMap.insert(std::make_pair(SGV, NewDGV));
512
513 // Keep track that this is an appending variable...
514 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
515 } else {
Reid Spencer2dc36532007-02-04 04:30:33 +0000516 // Propagate alignment, section, and visibility info.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000517 DGV->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment()));
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000518 DGV->setSection(SGV->getSection());
Reid Spencer2dc36532007-02-04 04:30:33 +0000519 DGV->setVisibility(SGV->getVisibility());
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000520
Chris Lattnerfc61de32004-12-03 22:18:41 +0000521 // Otherwise, perform the mapping as instructed by GetLinkageResult. If
522 // the types don't match, and if we are to link from the source, nuke DGV
523 // and create a new one of the appropriate type.
524 if (SGV->getType() != DGV->getType() && LinkFromSrc) {
525 GlobalVariable *NewDGV =
526 new GlobalVariable(SGV->getType()->getElementType(),
527 DGV->isConstant(), DGV->getLinkage());
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000528 NewDGV->setAlignment(DGV->getAlignment());
Reid Spencer2dc36532007-02-04 04:30:33 +0000529 NewDGV->setSection(DGV->getSection());
530 NewDGV->setVisibility(DGV->getVisibility());
Chris Lattnerfc61de32004-12-03 22:18:41 +0000531 Dest->getGlobalList().insert(DGV, NewDGV);
Reid Spencerb341b082006-12-12 05:05:00 +0000532 DGV->replaceAllUsesWith(
533 ConstantExpr::getBitCast(NewDGV, DGV->getType()));
Chris Lattnerfc61de32004-12-03 22:18:41 +0000534 DGV->eraseFromParent();
535 NewDGV->setName(SGV->getName());
536 DGV = NewDGV;
537 }
538
539 DGV->setLinkage(NewLinkage);
540
541 if (LinkFromSrc) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000542 // Inherit const as appropriate
Chris Lattner16277c12005-02-12 19:20:28 +0000543 DGV->setConstant(SGV->isConstant());
Chris Lattnerfc61de32004-12-03 22:18:41 +0000544 DGV->setInitializer(0);
545 } else {
546 if (SGV->isConstant() && !DGV->isConstant()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000547 if (DGV->isDeclaration())
Chris Lattnerfc61de32004-12-03 22:18:41 +0000548 DGV->setConstant(true);
549 }
Chris Lattnera57c1052004-12-04 18:54:48 +0000550 SGV->setLinkage(GlobalValue::ExternalLinkage);
551 SGV->setInitializer(0);
Chris Lattnerfc61de32004-12-03 22:18:41 +0000552 }
553
Reid Spencerb341b082006-12-12 05:05:00 +0000554 ValueMap.insert(
555 std::make_pair(SGV, ConstantExpr::getBitCast(DGV, SGV->getType())));
Reid Spencer361e5132004-11-12 20:37:43 +0000556 }
557 }
558 return false;
559}
560
561
562// LinkGlobalInits - Update the initializers in the Dest module now that all
563// globals that may be referenced are in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000564static bool LinkGlobalInits(Module *Dest, const Module *Src,
565 std::map<const Value*, Value*> &ValueMap,
566 std::string *Err) {
567
568 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000569 for (Module::const_global_iterator I = Src->global_begin(),
570 E = Src->global_end(); I != E; ++I) {
Reid Spencer361e5132004-11-12 20:37:43 +0000571 const GlobalVariable *SGV = I;
572
573 if (SGV->hasInitializer()) { // Only process initialized GV's
574 // Figure out what the initializer looks like in the dest module...
575 Constant *SInit =
Chris Lattner7391dde2004-11-16 17:12:38 +0000576 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000577
Misha Brukman10468d82005-04-21 22:55:34 +0000578 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]);
Reid Spencer361e5132004-11-12 20:37:43 +0000579 if (DGV->hasInitializer()) {
580 if (SGV->hasExternalLinkage()) {
581 if (DGV->getInitializer() != SInit)
Misha Brukman10468d82005-04-21 22:55:34 +0000582 return Error(Err, "Global Variable Collision on '" +
Reid Spencer361e5132004-11-12 20:37:43 +0000583 ToStr(SGV->getType(), Src) +"':%"+SGV->getName()+
584 " - Global variables have different initializers");
585 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage()) {
586 // Nothing is required, mapped values will take the new global
587 // automatically.
588 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage()) {
589 // Nothing is required, mapped values will take the new global
590 // automatically.
591 } else if (DGV->hasAppendingLinkage()) {
592 assert(0 && "Appending linkage unimplemented!");
593 } else {
594 assert(0 && "Unknown linkage!");
595 }
596 } else {
597 // Copy the initializer over now...
598 DGV->setInitializer(SInit);
599 }
600 }
601 }
602 return false;
603}
604
605// LinkFunctionProtos - Link the functions together between the two modules,
606// without doing function bodies... this just adds external function prototypes
607// to the Dest function...
608//
609static bool LinkFunctionProtos(Module *Dest, const Module *Src,
610 std::map<const Value*, Value*> &ValueMap,
Reid Spencer90246aa2007-02-04 04:29:21 +0000611 std::map<std::string,
612 GlobalValue*> &GlobalsByName,
Reid Spencer361e5132004-11-12 20:37:43 +0000613 std::string *Err) {
Reid Spencer90246aa2007-02-04 04:29:21 +0000614 TypeSymbolTable *TST = &Dest->getTypeSymbolTable();
Misha Brukman10468d82005-04-21 22:55:34 +0000615
Reid Spencer361e5132004-11-12 20:37:43 +0000616 // Loop over all of the functions in the src module, mapping them over as we
617 // go
Reid Spencer361e5132004-11-12 20:37:43 +0000618 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
619 const Function *SF = I; // SrcFunction
620 Function *DF = 0;
Reid Spencer90246aa2007-02-04 04:29:21 +0000621 if (SF->hasName() && !SF->hasInternalLinkage()) {
622 // Check to see if may have to link the function.
623 if (!(DF = Dest->getFunction(SF->getName(), SF->getFunctionType()))) {
624 std::map<std::string, GlobalValue*>::iterator EF =
625 GlobalsByName.find(SF->getName());
626 if (EF != GlobalsByName.end())
627 DF = dyn_cast<Function>(EF->second);
628 if (DF && RecursiveResolveTypes(SF->getType(), DF->getType(), TST, ""))
629 DF = 0; // FIXME: gross.
Reid Spencer361e5132004-11-12 20:37:43 +0000630 }
Reid Spencer90246aa2007-02-04 04:29:21 +0000631 }
Reid Spencer361e5132004-11-12 20:37:43 +0000632
Reid Spencer90246aa2007-02-04 04:29:21 +0000633 if (!DF || SF->hasInternalLinkage() || DF->hasInternalLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000634 // Function does not already exist, simply insert an function signature
635 // identical to SF into the dest module...
636 Function *NewDF = new Function(SF->getFunctionType(), SF->getLinkage(),
637 SF->getName(), Dest);
Chris Lattnere251b5c2005-05-09 01:09:39 +0000638 NewDF->setCallingConv(SF->getCallingConv());
Reid Spencer361e5132004-11-12 20:37:43 +0000639
640 // If the LLVM runtime renamed the function, but it is an externally
641 // visible symbol, DF must be an existing function with internal linkage.
642 // Rename it.
643 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
644 ForceRenaming(NewDF, SF->getName());
645
646 // ... and remember this mapping...
647 ValueMap.insert(std::make_pair(SF, NewDF));
Reid Spencer5301e7c2007-01-30 20:08:39 +0000648 } else if (SF->isDeclaration()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000649 // If SF is external or if both SF & DF are external.. Just link the
650 // external functions, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000651 if (SF->hasDLLImportLinkage()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000652 if (DF->isDeclaration()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000653 ValueMap.insert(std::make_pair(SF, DF));
654 DF->setLinkage(SF->getLinkage());
655 }
656 } else {
657 ValueMap.insert(std::make_pair(SF, DF));
Reid Spencer90246aa2007-02-04 04:29:21 +0000658 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000659 } else if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000660 // If DF is external but SF is not...
Reid Spencer361e5132004-11-12 20:37:43 +0000661 // Link the external functions, update linkage qualifiers
662 ValueMap.insert(std::make_pair(SF, DF));
663 DF->setLinkage(SF->getLinkage());
Reid Spencer361e5132004-11-12 20:37:43 +0000664 } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000665 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
Reid Spencer361e5132004-11-12 20:37:43 +0000666 ValueMap.insert(std::make_pair(SF, DF));
667
668 // Linkonce+Weak = Weak
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000669 // *+External Weak = *
670 if ((DF->hasLinkOnceLinkage() && SF->hasWeakLinkage()) ||
671 DF->hasExternalWeakLinkage())
Reid Spencer361e5132004-11-12 20:37:43 +0000672 DF->setLinkage(SF->getLinkage());
Reid Spencer90246aa2007-02-04 04:29:21 +0000673
674
Reid Spencer361e5132004-11-12 20:37:43 +0000675 } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000676 // At this point we know that SF has LinkOnce or External* linkage.
Reid Spencer361e5132004-11-12 20:37:43 +0000677 ValueMap.insert(std::make_pair(SF, DF));
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000678 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage())
679 // Don't inherit linkonce & external weak linkage
Reid Spencer361e5132004-11-12 20:37:43 +0000680 DF->setLinkage(SF->getLinkage());
Reid Spencer361e5132004-11-12 20:37:43 +0000681 } else if (SF->getLinkage() != DF->getLinkage()) {
682 return Error(Err, "Functions named '" + SF->getName() +
683 "' have different linkage specifiers!");
684 } else if (SF->hasExternalLinkage()) {
685 // The function is defined in both modules!!
Misha Brukman10468d82005-04-21 22:55:34 +0000686 return Error(Err, "Function '" +
687 ToStr(SF->getFunctionType(), Src) + "':\"" +
Reid Spencer361e5132004-11-12 20:37:43 +0000688 SF->getName() + "\" - Function is already defined!");
689 } else {
690 assert(0 && "Unknown linkage configuration found!");
691 }
692 }
693 return false;
694}
695
696// LinkFunctionBody - Copy the source function over into the dest function and
697// fix up references to values. At this point we know that Dest is an external
698// function, and that Src is not.
Chris Lattner2f0557d2004-11-16 07:31:51 +0000699static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spencer361e5132004-11-12 20:37:43 +0000700 std::map<const Value*, Value*> &GlobalMap,
701 std::string *Err) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000702 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +0000703
Chris Lattner7391dde2004-11-16 17:12:38 +0000704 // Go through and convert function arguments over, remembering the mapping.
Chris Lattner531f9e92005-03-15 04:54:21 +0000705 Function::arg_iterator DI = Dest->arg_begin();
706 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +0000707 I != E; ++I, ++DI) {
708 DI->setName(I->getName()); // Copy the name information over...
709
710 // Add a mapping to our local map
Chris Lattner7391dde2004-11-16 17:12:38 +0000711 GlobalMap.insert(std::make_pair(I, DI));
Reid Spencer361e5132004-11-12 20:37:43 +0000712 }
713
Chris Lattner2f0557d2004-11-16 07:31:51 +0000714 // Splice the body of the source function into the dest function.
715 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Reid Spencer361e5132004-11-12 20:37:43 +0000716
717 // At this point, all of the instructions and values of the function are now
718 // copied over. The only problem is that they are still referencing values in
719 // the Source function as operands. Loop through all of the operands of the
720 // functions and patch them up to point to the local versions...
721 //
722 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
723 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
724 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
725 OI != OE; ++OI)
Chris Lattner2f0557d2004-11-16 07:31:51 +0000726 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Chris Lattner7391dde2004-11-16 17:12:38 +0000727 *OI = RemapOperand(*OI, GlobalMap);
728
729 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000730 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
731 I != E; ++I)
Chris Lattner7391dde2004-11-16 17:12:38 +0000732 GlobalMap.erase(I);
Reid Spencer361e5132004-11-12 20:37:43 +0000733
734 return false;
735}
736
737
738// LinkFunctionBodies - Link in the function bodies that are defined in the
739// source module into the DestModule. This consists basically of copying the
740// function over and fixing up references to values.
Chris Lattner2f0557d2004-11-16 07:31:51 +0000741static bool LinkFunctionBodies(Module *Dest, Module *Src,
Reid Spencer361e5132004-11-12 20:37:43 +0000742 std::map<const Value*, Value*> &ValueMap,
743 std::string *Err) {
744
Reid Spencer90246aa2007-02-04 04:29:21 +0000745 // Loop over all of the functions in the src module, mapping them over as we
746 // go
Chris Lattner2f0557d2004-11-16 07:31:51 +0000747 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencer90246aa2007-02-04 04:29:21 +0000748 if (!SF->isDeclaration()) { // No body if function is external
Reid Spencer361e5132004-11-12 20:37:43 +0000749 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
750
751 // DF not external SF external?
Reid Spencer90246aa2007-02-04 04:29:21 +0000752 if (DF->isDeclaration()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000753 // Only provide the function body if there isn't one already.
754 if (LinkFunctionBody(DF, SF, ValueMap, Err))
755 return true;
Reid Spencer90246aa2007-02-04 04:29:21 +0000756 }
Reid Spencer361e5132004-11-12 20:37:43 +0000757 }
758 }
759 return false;
760}
761
762// LinkAppendingVars - If there were any appending global variables, link them
763// together now. Return true on error.
Reid Spencer361e5132004-11-12 20:37:43 +0000764static bool LinkAppendingVars(Module *M,
765 std::multimap<std::string, GlobalVariable *> &AppendingVars,
766 std::string *ErrorMsg) {
767 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukman10468d82005-04-21 22:55:34 +0000768
Reid Spencer361e5132004-11-12 20:37:43 +0000769 // Loop over the multimap of appending vars, processing any variables with the
770 // same name, forming a new appending global variable with both of the
771 // initializers merged together, then rewrite references to the old variables
772 // and delete them.
Reid Spencer361e5132004-11-12 20:37:43 +0000773 std::vector<Constant*> Inits;
774 while (AppendingVars.size() > 1) {
775 // Get the first two elements in the map...
776 std::multimap<std::string,
777 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
778
779 // If the first two elements are for different names, there is no pair...
780 // Otherwise there is a pair, so link them together...
781 if (First->first == Second->first) {
782 GlobalVariable *G1 = First->second, *G2 = Second->second;
783 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
784 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukman10468d82005-04-21 22:55:34 +0000785
Reid Spencer361e5132004-11-12 20:37:43 +0000786 // Check to see that they two arrays agree on type...
787 if (T1->getElementType() != T2->getElementType())
788 return Error(ErrorMsg,
789 "Appending variables with different element types need to be linked!");
790 if (G1->isConstant() != G2->isConstant())
791 return Error(ErrorMsg,
792 "Appending variables linked with different const'ness!");
793
794 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
795 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
796
Chris Lattnerd490d4f2005-12-06 17:30:58 +0000797 G1->setName(""); // Clear G1's name in case of a conflict!
798
Reid Spencer361e5132004-11-12 20:37:43 +0000799 // Create the new global variable...
800 GlobalVariable *NG =
801 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
802 /*init*/0, First->first, M);
803
804 // Merge the initializer...
805 Inits.reserve(NewSize);
806 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
807 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
808 Inits.push_back(I->getOperand(i));
809 } else {
810 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
811 Constant *CV = Constant::getNullValue(T1->getElementType());
812 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
813 Inits.push_back(CV);
814 }
815 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
816 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
817 Inits.push_back(I->getOperand(i));
818 } else {
819 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
820 Constant *CV = Constant::getNullValue(T2->getElementType());
821 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
822 Inits.push_back(CV);
823 }
824 NG->setInitializer(ConstantArray::get(NewType, Inits));
825 Inits.clear();
826
827 // Replace any uses of the two global variables with uses of the new
828 // global...
829
830 // FIXME: This should rewrite simple/straight-forward uses such as
831 // getelementptr instructions to not use the Cast!
Reid Spencerb341b082006-12-12 05:05:00 +0000832 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
833 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Reid Spencer361e5132004-11-12 20:37:43 +0000834
835 // Remove the two globals from the module now...
836 M->getGlobalList().erase(G1);
837 M->getGlobalList().erase(G2);
838
839 // Put the new global into the AppendingVars map so that we can handle
840 // linking of more than two vars...
841 Second->second = NG;
842 }
843 AppendingVars.erase(First);
844 }
845
846 return false;
847}
848
849
850// LinkModules - This function links two modules together, with the resulting
851// left module modified to be the composite of the two input modules. If an
852// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
853// the problem. Upon failure, the Dest module could be in a modified state, and
854// shouldn't be relied on to be consistent.
Misha Brukman10468d82005-04-21 22:55:34 +0000855bool
Reid Spencerc4e31532004-12-13 03:00:16 +0000856Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer361e5132004-11-12 20:37:43 +0000857 assert(Dest != 0 && "Invalid Destination module");
858 assert(Src != 0 && "Invalid Source Module");
859
Chris Lattner7f3bd822007-01-29 00:21:34 +0000860 if (Dest->getDataLayout().empty()) {
861 if (!Src->getDataLayout().empty()) {
Chris Lattner78bddc32007-01-29 02:18:13 +0000862 Dest->setDataLayout(Src->getDataLayout());
Chris Lattner7f3bd822007-01-29 00:21:34 +0000863 } else {
864 std::string DataLayout;
Reid Spencer3ac38e92007-01-26 08:11:39 +0000865
Chris Lattner7f3bd822007-01-29 00:21:34 +0000866 if (Dest->getEndianness() == Module::AnyEndianness)
867 if (Src->getEndianness() == Module::BigEndian)
868 DataLayout.append("E");
869 else if (Src->getEndianness() == Module::LittleEndian)
870 DataLayout.append("e");
871 if (Dest->getPointerSize() == Module::AnyPointerSize)
872 if (Src->getPointerSize() == Module::Pointer64)
873 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
874 else if (Src->getPointerSize() == Module::Pointer32)
875 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
876 Dest->setDataLayout(DataLayout);
877 }
878 }
879
880 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattnerb7f59162004-12-10 20:26:15 +0000881 Dest->setTargetTriple(Src->getTargetTriple());
Chris Lattner7f3bd822007-01-29 00:21:34 +0000882
883 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
884 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer3ac38e92007-01-26 08:11:39 +0000885 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattnerb7f59162004-12-10 20:26:15 +0000886 if (!Src->getTargetTriple().empty() &&
887 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlingf3baad32006-12-07 01:30:32 +0000888 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukman10468d82005-04-21 22:55:34 +0000889
Chris Lattner8ebd2162006-01-24 04:14:29 +0000890 if (!Src->getModuleInlineAsm().empty()) {
891 if (Dest->getModuleInlineAsm().empty())
892 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnerdd2d3fa2006-01-23 23:08:37 +0000893 else
Chris Lattner8ebd2162006-01-24 04:14:29 +0000894 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
895 Src->getModuleInlineAsm());
Chris Lattnerdd2d3fa2006-01-23 23:08:37 +0000896 }
897
Reid Spencer2c4f9a42004-11-25 09:29:44 +0000898 // Update the destination module's dependent libraries list with the libraries
Reid Spencer361e5132004-11-12 20:37:43 +0000899 // from the source module. There's no opportunity for duplicates here as the
900 // Module ensures that duplicate insertions are discarded.
901 Module::lib_iterator SI = Src->lib_begin();
902 Module::lib_iterator SE = Src->lib_end();
903 while ( SI != SE ) {
904 Dest->addLibrary(*SI);
905 ++SI;
906 }
907
908 // LinkTypes - Go through the symbol table of the Src module and see if any
909 // types are named in the src module that are not named in the Dst module.
910 // Make sure there are no type name conflicts.
Reid Spencer90246aa2007-02-04 04:29:21 +0000911 if (LinkTypes(Dest, Src, ErrorMsg)) return true;
Reid Spencer361e5132004-11-12 20:37:43 +0000912
913 // ValueMap - Mapping of values from what they used to be in Src, to what they
914 // are now in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000915 std::map<const Value*, Value*> ValueMap;
916
917 // AppendingVars - Keep track of global variables in the destination module
918 // with appending linkage. After the module is linked together, they are
919 // appended and the module is rewritten.
Reid Spencer361e5132004-11-12 20:37:43 +0000920 std::multimap<std::string, GlobalVariable *> AppendingVars;
921
Reid Spencer90246aa2007-02-04 04:29:21 +0000922 // GlobalsByName - The LLVM SymbolTable class fights our best efforts at
923 // linking by separating globals by type. Until PR411 is fixed, we replicate
924 // it's functionality here.
925 std::map<std::string, GlobalValue*> GlobalsByName;
926
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000927 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
928 I != E; ++I) {
Reid Spencer361e5132004-11-12 20:37:43 +0000929 // Add all of the appending globals already in the Dest module to
930 // AppendingVars.
931 if (I->hasAppendingLinkage())
932 AppendingVars.insert(std::make_pair(I->getName(), I));
Reid Spencer90246aa2007-02-04 04:29:21 +0000933
934 // Keep track of all globals by name.
935 if (!I->hasInternalLinkage() && I->hasName())
936 GlobalsByName[I->getName()] = I;
Reid Spencer361e5132004-11-12 20:37:43 +0000937 }
938
Reid Spencer90246aa2007-02-04 04:29:21 +0000939 // Keep track of all globals by name.
940 for (Module::iterator I = Dest->begin(), E = Dest->end(); I != E; ++I)
941 if (!I->hasInternalLinkage() && I->hasName())
942 GlobalsByName[I->getName()] = I;
943
Reid Spencer361e5132004-11-12 20:37:43 +0000944 // Insert all of the globals in src into the Dest module... without linking
945 // initializers (which could refer to functions not yet mapped over).
Reid Spencer90246aa2007-02-04 04:29:21 +0000946 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, GlobalsByName, ErrorMsg))
Reid Spencer361e5132004-11-12 20:37:43 +0000947 return true;
948
949 // Link the functions together between the two modules, without doing function
950 // bodies... this just adds external function prototypes to the Dest
951 // function... We do this so that when we begin processing function bodies,
952 // all of the global values that may be referenced are available in our
953 // ValueMap.
Reid Spencer90246aa2007-02-04 04:29:21 +0000954 if (LinkFunctionProtos(Dest, Src, ValueMap, GlobalsByName, ErrorMsg))
Reid Spencer361e5132004-11-12 20:37:43 +0000955 return true;
956
957 // Update the initializers in the Dest module now that all globals that may
958 // be referenced are in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000959 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
960
961 // Link in the function bodies that are defined in the source module into the
962 // DestModule. This consists basically of copying the function over and
963 // fixing up references to values.
Reid Spencer361e5132004-11-12 20:37:43 +0000964 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
965
966 // If there were any appending global variables, link them together now.
Reid Spencer361e5132004-11-12 20:37:43 +0000967 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
968
969 // If the source library's module id is in the dependent library list of the
970 // destination library, remove it since that module is now linked in.
971 sys::Path modId;
Reid Spencerc9c04732005-07-07 23:21:43 +0000972 modId.set(Src->getModuleIdentifier());
Reid Spencer361e5132004-11-12 20:37:43 +0000973 if (!modId.isEmpty())
974 Dest->removeLibrary(modId.getBasename());
975
976 return false;
977}
978
979// vim: sw=2