blob: 88bf62186fba1b1bdf265a3082fcd8ca4c5edfb6 [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 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) {
Chris Lattner7391dde2004-11-16 17:12:38 +0000319 ValueMap.insert(std::make_pair(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) {
354 // Propagate alignment, visibility and section info.
355 DestGV->setAlignment(std::max(DestGV->getAlignment(), SrcGV->getAlignment()));
356 DestGV->setSection(SrcGV->getSection());
357 DestGV->setVisibility(SrcGV->getVisibility());
358 if (const Function *SrcF = dyn_cast<Function>(SrcGV)) {
359 Function *DestF = cast<Function>(DestGV);
360 DestF->setCallingConv(SrcF->getCallingConv());
361 }
Reid Spencer361e5132004-11-12 20:37:43 +0000362}
363
Chris Lattnerfc61de32004-12-03 22:18:41 +0000364/// GetLinkageResult - This analyzes the two global values and determines what
365/// the result will look like in the destination module. In particular, it
366/// computes the resultant linkage type, computes whether the global in the
367/// source should be copied over to the destination (replacing the existing
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000368/// one), and computes whether this linkage is an error or not. It also performs
369/// visibility checks: we cannot link together two symbols with different
370/// visibilities.
Chris Lattnerfc61de32004-12-03 22:18:41 +0000371static bool GetLinkageResult(GlobalValue *Dest, GlobalValue *Src,
372 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
373 std::string *Err) {
374 assert((!Dest || !Src->hasInternalLinkage()) &&
375 "If Src has internal linkage, Dest shouldn't be set!");
376 if (!Dest) {
377 // Linking something to nothing.
378 LinkFromSrc = true;
379 LT = Src->getLinkage();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000380 } else if (Src->isDeclaration()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000381 // If Src is external or if both Src & Drc are external.. Just link the
382 // external globals, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000383 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000384 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000385 if (Dest->isDeclaration()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000386 LinkFromSrc = true;
387 LT = Src->getLinkage();
388 }
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000389 } else if (Dest->hasExternalWeakLinkage()) {
390 //If the Dest is weak, use the source linkage
391 LinkFromSrc = true;
392 LT = Src->getLinkage();
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000393 } else {
394 LinkFromSrc = false;
395 LT = Dest->getLinkage();
396 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000397 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000398 // If Dest is external but Src is not:
399 LinkFromSrc = true;
400 LT = Src->getLinkage();
401 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
402 if (Src->getLinkage() != Dest->getLinkage())
403 return Error(Err, "Linking globals named '" + Src->getName() +
404 "': can only link appending global with another appending global!");
405 LinkFromSrc = true; // Special cased.
406 LT = Src->getLinkage();
407 } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage()) {
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000408 // At this point we know that Dest has LinkOnce, External*, Weak, or
409 // DLL* linkage.
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000410 if ((Dest->hasLinkOnceLinkage() && Src->hasWeakLinkage()) ||
411 Dest->hasExternalWeakLinkage()) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000412 LinkFromSrc = true;
413 LT = Src->getLinkage();
414 } else {
415 LinkFromSrc = false;
416 LT = Dest->getLinkage();
417 }
418 } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000419 // At this point we know that Src has External* or DLL* linkage.
420 if (Src->hasExternalWeakLinkage()) {
421 LinkFromSrc = false;
422 LT = Dest->getLinkage();
423 } else {
424 LinkFromSrc = true;
425 LT = GlobalValue::ExternalLinkage;
426 }
Chris Lattnerfc61de32004-12-03 22:18:41 +0000427 } else {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000428 assert((Dest->hasExternalLinkage() ||
429 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000430 Dest->hasDLLExportLinkage() ||
431 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000432 (Src->hasExternalLinkage() ||
433 Src->hasDLLImportLinkage() ||
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000434 Src->hasDLLExportLinkage() ||
435 Src->hasExternalWeakLinkage()) &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000436 "Unexpected linkage type!");
Misha Brukman10468d82005-04-21 22:55:34 +0000437 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattnerfc61de32004-12-03 22:18:41 +0000438 "': symbol multiply defined!");
439 }
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000440
441 // Check visibility
442 if (Dest && Src->getVisibility() != Dest->getVisibility())
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.
Chris Lattnerfc61de32004-12-03 22:18:41 +0000450static bool LinkGlobals(Module *Dest, 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
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000455 for (Module::global_iterator I = Src->global_begin(), E = Src->global_end();
456 I != E; ++I) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000457 GlobalVariable *SGV = I;
Reid Spencer361e5132004-11-12 20:37:43 +0000458 GlobalVariable *DGV = 0;
459 // Check to see if may have to link the global.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000460 if (SGV->hasName() && !SGV->hasInternalLinkage()) {
461 DGV = Dest->getGlobalVariable(SGV->getName());
462 if (DGV && DGV->getType() != SGV->getType())
463 // If types don't agree due to opaque types, try to resolve them.
464 RecursiveResolveTypes(SGV->getType(), DGV->getType(),
465 &Dest->getTypeSymbolTable(), "");
466 }
Reid Spencer361e5132004-11-12 20:37:43 +0000467
Chris Lattnerfc61de32004-12-03 22:18:41 +0000468 if (DGV && DGV->hasInternalLinkage())
469 DGV = 0;
470
Andrew Lenharthe06036d2006-12-15 17:35:32 +0000471 assert(SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000472 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage() &&
Reid Spencer361e5132004-11-12 20:37:43 +0000473 "Global must either be external or have an initializer!");
474
Chris Lattner1b9633d2006-11-09 05:18:12 +0000475 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
476 bool LinkFromSrc = false;
Chris Lattnerfc61de32004-12-03 22:18:41 +0000477 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
478 return true;
Reid Spencer361e5132004-11-12 20:37:43 +0000479
Chris Lattnerfc61de32004-12-03 22:18:41 +0000480 if (!DGV) {
Reid Spencer361e5132004-11-12 20:37:43 +0000481 // No linking to be performed, simply create an identical version of the
482 // symbol over in the dest module... the initializer will be filled in
483 // later by LinkGlobalInits...
Reid Spencer361e5132004-11-12 20:37:43 +0000484 GlobalVariable *NewDGV =
485 new GlobalVariable(SGV->getType()->getElementType(),
486 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000487 SGV->getName(), Dest, SGV->isThreadLocal());
Reid Spencer2dc36532007-02-04 04:30:33 +0000488 // Propagate alignment, visibility and section info.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000489 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000490
Reid Spencer361e5132004-11-12 20:37:43 +0000491 // If the LLVM runtime renamed the global, but it is an externally visible
492 // symbol, DGV must be an existing global with internal linkage. Rename
493 // it.
494 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
495 ForceRenaming(NewDGV, SGV->getName());
496
497 // Make sure to remember this mapping...
498 ValueMap.insert(std::make_pair(SGV, NewDGV));
499 if (SGV->hasAppendingLinkage())
500 // Keep track that this is an appending variable...
501 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattnerfc61de32004-12-03 22:18:41 +0000502 } else if (DGV->hasAppendingLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000503 // No linking is performed yet. Just insert a new copy of the global, and
504 // keep track of the fact that it is an appending variable in the
505 // AppendingVars map. The name is cleared out so that no linkage is
506 // performed.
507 GlobalVariable *NewDGV =
508 new GlobalVariable(SGV->getType()->getElementType(),
509 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000510 "", Dest, SGV->isThreadLocal());
Reid Spencer361e5132004-11-12 20:37:43 +0000511
Reid Spencer2dc36532007-02-04 04:30:33 +0000512 // Propagate alignment, section and visibility info.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000513 NewDGV->setAlignment(DGV->getAlignment());
514 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000515
Reid Spencer361e5132004-11-12 20:37:43 +0000516 // Make sure to remember this mapping...
517 ValueMap.insert(std::make_pair(SGV, NewDGV));
518
519 // Keep track that this is an appending variable...
520 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
521 } else {
Reid Spencer2dc36532007-02-04 04:30:33 +0000522 // Propagate alignment, section, and visibility info.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000523 CopyGVAttributes(DGV, SGV);
Andrew Lenharthdd924e42007-02-01 17:12:54 +0000524
Chris Lattnerfc61de32004-12-03 22:18:41 +0000525 // Otherwise, perform the mapping as instructed by GetLinkageResult. If
526 // the types don't match, and if we are to link from the source, nuke DGV
527 // and create a new one of the appropriate type.
528 if (SGV->getType() != DGV->getType() && LinkFromSrc) {
529 GlobalVariable *NewDGV =
530 new GlobalVariable(SGV->getType()->getElementType(),
531 DGV->isConstant(), DGV->getLinkage());
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000532 NewDGV->setThreadLocal(DGV->isThreadLocal());
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000533 CopyGVAttributes(NewDGV, DGV);
Chris Lattnerfc61de32004-12-03 22:18:41 +0000534 Dest->getGlobalList().insert(DGV, NewDGV);
Reid Spencerb341b082006-12-12 05:05:00 +0000535 DGV->replaceAllUsesWith(
536 ConstantExpr::getBitCast(NewDGV, DGV->getType()));
Chris Lattnerfc61de32004-12-03 22:18:41 +0000537 DGV->eraseFromParent();
538 NewDGV->setName(SGV->getName());
539 DGV = NewDGV;
540 }
541
542 DGV->setLinkage(NewLinkage);
543
544 if (LinkFromSrc) {
Chris Lattnerfc61de32004-12-03 22:18:41 +0000545 // Inherit const as appropriate
Chris Lattner16277c12005-02-12 19:20:28 +0000546 DGV->setConstant(SGV->isConstant());
Chris Lattnerfc61de32004-12-03 22:18:41 +0000547 DGV->setInitializer(0);
548 } else {
549 if (SGV->isConstant() && !DGV->isConstant()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000550 if (DGV->isDeclaration())
Chris Lattnerfc61de32004-12-03 22:18:41 +0000551 DGV->setConstant(true);
552 }
Chris Lattnera57c1052004-12-04 18:54:48 +0000553 SGV->setLinkage(GlobalValue::ExternalLinkage);
554 SGV->setInitializer(0);
Chris Lattnerfc61de32004-12-03 22:18:41 +0000555 }
556
Reid Spencerb341b082006-12-12 05:05:00 +0000557 ValueMap.insert(
558 std::make_pair(SGV, ConstantExpr::getBitCast(DGV, SGV->getType())));
Reid Spencer361e5132004-11-12 20:37:43 +0000559 }
560 }
561 return false;
562}
563
564
565// LinkGlobalInits - Update the initializers in the Dest module now that all
566// globals that may be referenced are in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000567static bool LinkGlobalInits(Module *Dest, const Module *Src,
568 std::map<const Value*, Value*> &ValueMap,
569 std::string *Err) {
570
571 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000572 for (Module::const_global_iterator I = Src->global_begin(),
573 E = Src->global_end(); I != E; ++I) {
Reid Spencer361e5132004-11-12 20:37:43 +0000574 const GlobalVariable *SGV = I;
575
576 if (SGV->hasInitializer()) { // Only process initialized GV's
577 // Figure out what the initializer looks like in the dest module...
578 Constant *SInit =
Chris Lattner7391dde2004-11-16 17:12:38 +0000579 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Reid Spencer361e5132004-11-12 20:37:43 +0000580
Misha Brukman10468d82005-04-21 22:55:34 +0000581 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]);
Reid Spencer361e5132004-11-12 20:37:43 +0000582 if (DGV->hasInitializer()) {
583 if (SGV->hasExternalLinkage()) {
584 if (DGV->getInitializer() != SInit)
Misha Brukman10468d82005-04-21 22:55:34 +0000585 return Error(Err, "Global Variable Collision on '" +
Reid Spencer361e5132004-11-12 20:37:43 +0000586 ToStr(SGV->getType(), Src) +"':%"+SGV->getName()+
587 " - Global variables have different initializers");
588 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage()) {
589 // Nothing is required, mapped values will take the new global
590 // automatically.
591 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage()) {
592 // Nothing is required, mapped values will take the new global
593 // automatically.
594 } else if (DGV->hasAppendingLinkage()) {
595 assert(0 && "Appending linkage unimplemented!");
596 } else {
597 assert(0 && "Unknown linkage!");
598 }
599 } else {
600 // Copy the initializer over now...
601 DGV->setInitializer(SInit);
602 }
603 }
604 }
605 return false;
606}
607
608// LinkFunctionProtos - Link the functions together between the two modules,
609// without doing function bodies... this just adds external function prototypes
610// to the Dest function...
611//
612static bool LinkFunctionProtos(Module *Dest, const Module *Src,
613 std::map<const Value*, Value*> &ValueMap,
Reid Spencer361e5132004-11-12 20:37:43 +0000614 std::string *Err) {
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000615 // Loop over all of the functions in the src module, mapping them over
Reid Spencer361e5132004-11-12 20:37:43 +0000616 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
617 const Function *SF = I; // SrcFunction
618 Function *DF = 0;
Reid Spencer90246aa2007-02-04 04:29:21 +0000619 if (SF->hasName() && !SF->hasInternalLinkage()) {
620 // Check to see if may have to link the function.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000621 DF = Dest->getFunction(SF->getName());
622 if (DF && SF->getType() != DF->getType())
623 // If types don't agree because of opaque, try to resolve them
624 RecursiveResolveTypes(SF->getType(), DF->getType(),
625 &Dest->getTypeSymbolTable(), "");
Reid Spencer90246aa2007-02-04 04:29:21 +0000626 }
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000627
628 // Check visibility
629 if (DF && !DF->hasInternalLinkage() &&
630 SF->getVisibility() != DF->getVisibility())
631 return Error(Err, "Linking functions named '" + SF->getName() +
632 "': symbols have different visibilities!");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000633
634 if (DF && DF->getType() != SF->getType()) {
635 if (DF->isDeclaration() && !SF->isDeclaration()) {
636 // We have a definition of the same name but different type in the
637 // source module. Copy the prototype to the destination and replace
638 // uses of the destination's prototype with the new prototype.
639 Function *NewDF = new Function(SF->getFunctionType(), SF->getLinkage(),
640 SF->getName(), Dest);
641 CopyGVAttributes(NewDF, SF);
Reid Spencer361e5132004-11-12 20:37:43 +0000642
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000643 // Any uses of DF need to change to NewDF, with cast
644 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType()));
645
646 // DF will conflict with NewDF because they both had the same. We must
647 // erase this now so ForceRenaming doesn't assert because DF might
648 // not have internal linkage.
649 DF->eraseFromParent();
650
651 // If the symbol table renamed the function, but it is an externally
652 // visible symbol, DF must be an existing function with internal
653 // linkage. Rename it.
654 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
655 ForceRenaming(NewDF, SF->getName());
656
657 // Remember this mapping so uses in the source module get remapped
658 // later by RemapOperand.
659 ValueMap[SF] = NewDF;
660 } else if (SF->isDeclaration()) {
661 // We have two functions of the same name but different type and the
662 // source is a declaration while the destination is not. Any use of
663 // the source must be mapped to the destination, with a cast.
664 ValueMap[SF] = ConstantExpr::getBitCast(DF, SF->getType());
665 } else {
666 // We have two functions of the same name but different types and they
667 // are both definitions. This is an error.
668 return Error(Err, "Function '" + DF->getName() + "' defined as both '" +
669 ToStr(SF->getFunctionType(), Src) + "' and '" +
670 ToStr(DF->getFunctionType(), Dest) + "'");
671 }
672 } else if (!DF || SF->hasInternalLinkage() || DF->hasInternalLinkage()) {
Reid Spencer361e5132004-11-12 20:37:43 +0000673 // Function does not already exist, simply insert an function signature
674 // identical to SF into the dest module...
675 Function *NewDF = new Function(SF->getFunctionType(), SF->getLinkage(),
676 SF->getName(), Dest);
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000677 CopyGVAttributes(NewDF, SF);
Reid Spencer361e5132004-11-12 20:37:43 +0000678
679 // If the LLVM runtime renamed the function, but it is an externally
680 // visible symbol, DF must be an existing function with internal linkage.
681 // Rename it.
682 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
683 ForceRenaming(NewDF, SF->getName());
684
685 // ... and remember this mapping...
686 ValueMap.insert(std::make_pair(SF, NewDF));
Reid Spencer5301e7c2007-01-30 20:08:39 +0000687 } else if (SF->isDeclaration()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000688 // If SF is a declaration or if both SF & DF are declarations, just link
689 // the declarations, we aren't adding anything.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000690 if (SF->hasDLLImportLinkage()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000691 if (DF->isDeclaration()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000692 ValueMap.insert(std::make_pair(SF, DF));
693 DF->setLinkage(SF->getLinkage());
694 }
695 } else {
696 ValueMap.insert(std::make_pair(SF, DF));
Reid Spencer90246aa2007-02-04 04:29:21 +0000697 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000698 } else if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000699 // If DF is external but SF is not...
Reid Spencer361e5132004-11-12 20:37:43 +0000700 // Link the external functions, update linkage qualifiers
701 ValueMap.insert(std::make_pair(SF, DF));
702 DF->setLinkage(SF->getLinkage());
Reid Spencer361e5132004-11-12 20:37:43 +0000703 } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000704 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
Reid Spencer361e5132004-11-12 20:37:43 +0000705 ValueMap.insert(std::make_pair(SF, DF));
706
707 // Linkonce+Weak = Weak
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000708 // *+External Weak = *
709 if ((DF->hasLinkOnceLinkage() && SF->hasWeakLinkage()) ||
710 DF->hasExternalWeakLinkage())
Reid Spencer361e5132004-11-12 20:37:43 +0000711 DF->setLinkage(SF->getLinkage());
Reid Spencer361e5132004-11-12 20:37:43 +0000712 } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage()) {
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000713 // At this point we know that SF has LinkOnce or External* linkage.
Reid Spencer361e5132004-11-12 20:37:43 +0000714 ValueMap.insert(std::make_pair(SF, DF));
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000715 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage())
716 // Don't inherit linkonce & external weak linkage
Reid Spencer361e5132004-11-12 20:37:43 +0000717 DF->setLinkage(SF->getLinkage());
Reid Spencer361e5132004-11-12 20:37:43 +0000718 } else if (SF->getLinkage() != DF->getLinkage()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000719 return Error(Err, "Functions named '" + SF->getName() +
720 "' have different linkage specifiers!");
Reid Spencer361e5132004-11-12 20:37:43 +0000721 } else if (SF->hasExternalLinkage()) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000722 // The function is defined identically in both modules!!
Misha Brukman10468d82005-04-21 22:55:34 +0000723 return Error(Err, "Function '" +
724 ToStr(SF->getFunctionType(), Src) + "':\"" +
Reid Spencer361e5132004-11-12 20:37:43 +0000725 SF->getName() + "\" - Function is already defined!");
726 } else {
727 assert(0 && "Unknown linkage configuration found!");
728 }
729 }
730 return false;
731}
732
733// LinkFunctionBody - Copy the source function over into the dest function and
734// fix up references to values. At this point we know that Dest is an external
735// function, and that Src is not.
Chris Lattner2f0557d2004-11-16 07:31:51 +0000736static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000737 std::map<const Value*, Value*> &ValueMap,
Reid Spencer361e5132004-11-12 20:37:43 +0000738 std::string *Err) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000739 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +0000740
Chris Lattner7391dde2004-11-16 17:12:38 +0000741 // Go through and convert function arguments over, remembering the mapping.
Chris Lattner531f9e92005-03-15 04:54:21 +0000742 Function::arg_iterator DI = Dest->arg_begin();
743 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +0000744 I != E; ++I, ++DI) {
745 DI->setName(I->getName()); // Copy the name information over...
746
747 // Add a mapping to our local map
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000748 ValueMap.insert(std::make_pair(I, DI));
Reid Spencer361e5132004-11-12 20:37:43 +0000749 }
750
Chris Lattner2f0557d2004-11-16 07:31:51 +0000751 // Splice the body of the source function into the dest function.
752 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Reid Spencer361e5132004-11-12 20:37:43 +0000753
754 // At this point, all of the instructions and values of the function are now
755 // copied over. The only problem is that they are still referencing values in
756 // the Source function as operands. Loop through all of the operands of the
757 // functions and patch them up to point to the local versions...
758 //
759 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
760 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
761 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
762 OI != OE; ++OI)
Chris Lattner2f0557d2004-11-16 07:31:51 +0000763 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000764 *OI = RemapOperand(*OI, ValueMap);
Chris Lattner7391dde2004-11-16 17:12:38 +0000765
766 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000767 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
768 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000769 ValueMap.erase(I);
Reid Spencer361e5132004-11-12 20:37:43 +0000770
771 return false;
772}
773
774
775// LinkFunctionBodies - Link in the function bodies that are defined in the
776// source module into the DestModule. This consists basically of copying the
777// function over and fixing up references to values.
Chris Lattner2f0557d2004-11-16 07:31:51 +0000778static bool LinkFunctionBodies(Module *Dest, Module *Src,
Reid Spencer361e5132004-11-12 20:37:43 +0000779 std::map<const Value*, Value*> &ValueMap,
780 std::string *Err) {
781
Reid Spencer90246aa2007-02-04 04:29:21 +0000782 // Loop over all of the functions in the src module, mapping them over as we
783 // go
Chris Lattner2f0557d2004-11-16 07:31:51 +0000784 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000785 if (!SF->isDeclaration()) { // No body if function is external
Reid Spencer361e5132004-11-12 20:37:43 +0000786 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
787
788 // DF not external SF external?
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000789 if (DF->isDeclaration())
Reid Spencer361e5132004-11-12 20:37:43 +0000790 // Only provide the function body if there isn't one already.
791 if (LinkFunctionBody(DF, SF, ValueMap, Err))
792 return true;
Reid Spencer361e5132004-11-12 20:37:43 +0000793 }
794 }
795 return false;
796}
797
798// LinkAppendingVars - If there were any appending global variables, link them
799// together now. Return true on error.
Reid Spencer361e5132004-11-12 20:37:43 +0000800static bool LinkAppendingVars(Module *M,
801 std::multimap<std::string, GlobalVariable *> &AppendingVars,
802 std::string *ErrorMsg) {
803 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukman10468d82005-04-21 22:55:34 +0000804
Reid Spencer361e5132004-11-12 20:37:43 +0000805 // Loop over the multimap of appending vars, processing any variables with the
806 // same name, forming a new appending global variable with both of the
807 // initializers merged together, then rewrite references to the old variables
808 // and delete them.
Reid Spencer361e5132004-11-12 20:37:43 +0000809 std::vector<Constant*> Inits;
810 while (AppendingVars.size() > 1) {
811 // Get the first two elements in the map...
812 std::multimap<std::string,
813 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
814
815 // If the first two elements are for different names, there is no pair...
816 // Otherwise there is a pair, so link them together...
817 if (First->first == Second->first) {
818 GlobalVariable *G1 = First->second, *G2 = Second->second;
819 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
820 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukman10468d82005-04-21 22:55:34 +0000821
Reid Spencer361e5132004-11-12 20:37:43 +0000822 // Check to see that they two arrays agree on type...
823 if (T1->getElementType() != T2->getElementType())
824 return Error(ErrorMsg,
825 "Appending variables with different element types need to be linked!");
826 if (G1->isConstant() != G2->isConstant())
827 return Error(ErrorMsg,
828 "Appending variables linked with different const'ness!");
829
Lauro Ramos Venancio85703e32007-06-06 22:01:12 +0000830 if (G1->getAlignment() != G2->getAlignment())
831 return Error(ErrorMsg,
832 "Appending variables with different alignment need to be linked!");
833
834 if (G1->getVisibility() != G2->getVisibility())
835 return Error(ErrorMsg,
836 "Appending variables with different visibility need to be linked!");
837
838 if (G1->getSection() != G2->getSection())
839 return Error(ErrorMsg,
840 "Appending variables with different section name need to be linked!");
841
Reid Spencer361e5132004-11-12 20:37:43 +0000842 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
843 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
844
Chris Lattnerd490d4f2005-12-06 17:30:58 +0000845 G1->setName(""); // Clear G1's name in case of a conflict!
846
Reid Spencer361e5132004-11-12 20:37:43 +0000847 // Create the new global variable...
848 GlobalVariable *NG =
849 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000850 /*init*/0, First->first, M, G1->isThreadLocal());
Reid Spencer361e5132004-11-12 20:37:43 +0000851
Lauro Ramos Venancio85703e32007-06-06 22:01:12 +0000852 // Propagate alignment, visibility and section info.
853 CopyGVAttributes(NG, G1);
854
Reid Spencer361e5132004-11-12 20:37:43 +0000855 // Merge the initializer...
856 Inits.reserve(NewSize);
857 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
858 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
859 Inits.push_back(I->getOperand(i));
860 } else {
861 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
862 Constant *CV = Constant::getNullValue(T1->getElementType());
863 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
864 Inits.push_back(CV);
865 }
866 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
867 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
868 Inits.push_back(I->getOperand(i));
869 } else {
870 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
871 Constant *CV = Constant::getNullValue(T2->getElementType());
872 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
873 Inits.push_back(CV);
874 }
875 NG->setInitializer(ConstantArray::get(NewType, Inits));
876 Inits.clear();
877
878 // Replace any uses of the two global variables with uses of the new
879 // global...
880
881 // FIXME: This should rewrite simple/straight-forward uses such as
882 // getelementptr instructions to not use the Cast!
Reid Spencerb341b082006-12-12 05:05:00 +0000883 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
884 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Reid Spencer361e5132004-11-12 20:37:43 +0000885
886 // Remove the two globals from the module now...
887 M->getGlobalList().erase(G1);
888 M->getGlobalList().erase(G2);
889
890 // Put the new global into the AppendingVars map so that we can handle
891 // linking of more than two vars...
892 Second->second = NG;
893 }
894 AppendingVars.erase(First);
895 }
896
897 return false;
898}
899
900
901// LinkModules - This function links two modules together, with the resulting
902// left module modified to be the composite of the two input modules. If an
903// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
904// the problem. Upon failure, the Dest module could be in a modified state, and
905// shouldn't be relied on to be consistent.
Misha Brukman10468d82005-04-21 22:55:34 +0000906bool
Reid Spencerc4e31532004-12-13 03:00:16 +0000907Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer361e5132004-11-12 20:37:43 +0000908 assert(Dest != 0 && "Invalid Destination module");
909 assert(Src != 0 && "Invalid Source Module");
910
Chris Lattner7f3bd822007-01-29 00:21:34 +0000911 if (Dest->getDataLayout().empty()) {
912 if (!Src->getDataLayout().empty()) {
Chris Lattner78bddc32007-01-29 02:18:13 +0000913 Dest->setDataLayout(Src->getDataLayout());
Chris Lattner7f3bd822007-01-29 00:21:34 +0000914 } else {
915 std::string DataLayout;
Reid Spencer3ac38e92007-01-26 08:11:39 +0000916
Chris Lattner7f3bd822007-01-29 00:21:34 +0000917 if (Dest->getEndianness() == Module::AnyEndianness)
918 if (Src->getEndianness() == Module::BigEndian)
919 DataLayout.append("E");
920 else if (Src->getEndianness() == Module::LittleEndian)
921 DataLayout.append("e");
922 if (Dest->getPointerSize() == Module::AnyPointerSize)
923 if (Src->getPointerSize() == Module::Pointer64)
924 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
925 else if (Src->getPointerSize() == Module::Pointer32)
926 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
927 Dest->setDataLayout(DataLayout);
928 }
929 }
930
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000931 // COpy the target triple from the source to dest if the dest's is empty
Chris Lattner7f3bd822007-01-29 00:21:34 +0000932 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattnerb7f59162004-12-10 20:26:15 +0000933 Dest->setTargetTriple(Src->getTargetTriple());
Chris Lattner7f3bd822007-01-29 00:21:34 +0000934
935 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
936 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer3ac38e92007-01-26 08:11:39 +0000937 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattnerb7f59162004-12-10 20:26:15 +0000938 if (!Src->getTargetTriple().empty() &&
939 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlingf3baad32006-12-07 01:30:32 +0000940 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukman10468d82005-04-21 22:55:34 +0000941
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000942 // Append the module inline asm string
Chris Lattner8ebd2162006-01-24 04:14:29 +0000943 if (!Src->getModuleInlineAsm().empty()) {
944 if (Dest->getModuleInlineAsm().empty())
945 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnerdd2d3fa2006-01-23 23:08:37 +0000946 else
Chris Lattner8ebd2162006-01-24 04:14:29 +0000947 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
948 Src->getModuleInlineAsm());
Chris Lattnerdd2d3fa2006-01-23 23:08:37 +0000949 }
950
Reid Spencer2c4f9a42004-11-25 09:29:44 +0000951 // Update the destination module's dependent libraries list with the libraries
Reid Spencer361e5132004-11-12 20:37:43 +0000952 // from the source module. There's no opportunity for duplicates here as the
953 // Module ensures that duplicate insertions are discarded.
954 Module::lib_iterator SI = Src->lib_begin();
955 Module::lib_iterator SE = Src->lib_end();
956 while ( SI != SE ) {
957 Dest->addLibrary(*SI);
958 ++SI;
959 }
960
961 // LinkTypes - Go through the symbol table of the Src module and see if any
962 // types are named in the src module that are not named in the Dst module.
963 // Make sure there are no type name conflicts.
Reid Spencerd3ba7d92007-02-04 04:43:17 +0000964 if (LinkTypes(Dest, Src, ErrorMsg))
965 return true;
Reid Spencer361e5132004-11-12 20:37:43 +0000966
967 // ValueMap - Mapping of values from what they used to be in Src, to what they
968 // are now in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000969 std::map<const Value*, Value*> ValueMap;
970
971 // AppendingVars - Keep track of global variables in the destination module
972 // with appending linkage. After the module is linked together, they are
973 // appended and the module is rewritten.
Reid Spencer361e5132004-11-12 20:37:43 +0000974 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner44ab8ae2006-06-16 01:24:04 +0000975 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
976 I != E; ++I) {
Reid Spencer361e5132004-11-12 20:37:43 +0000977 // Add all of the appending globals already in the Dest module to
978 // AppendingVars.
979 if (I->hasAppendingLinkage())
980 AppendingVars.insert(std::make_pair(I->getName(), I));
Reid Spencer361e5132004-11-12 20:37:43 +0000981 }
982
Reid Spencer361e5132004-11-12 20:37:43 +0000983 // Insert all of the globals in src into the Dest module... without linking
984 // initializers (which could refer to functions not yet mapped over).
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000985 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Reid Spencer361e5132004-11-12 20:37:43 +0000986 return true;
987
988 // Link the functions together between the two modules, without doing function
989 // bodies... this just adds external function prototypes to the Dest
990 // function... We do this so that when we begin processing function bodies,
991 // all of the global values that may be referenced are available in our
992 // ValueMap.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000993 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Reid Spencer361e5132004-11-12 20:37:43 +0000994 return true;
995
996 // Update the initializers in the Dest module now that all globals that may
997 // be referenced are in Dest.
Reid Spencer361e5132004-11-12 20:37:43 +0000998 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
999
1000 // Link in the function bodies that are defined in the source module into the
1001 // DestModule. This consists basically of copying the function over and
1002 // fixing up references to values.
Reid Spencer361e5132004-11-12 20:37:43 +00001003 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
1004
1005 // If there were any appending global variables, link them together now.
Reid Spencer361e5132004-11-12 20:37:43 +00001006 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1007
1008 // If the source library's module id is in the dependent library list of the
1009 // destination library, remove it since that module is now linked in.
1010 sys::Path modId;
Reid Spencerc9c04732005-07-07 23:21:43 +00001011 modId.set(Src->getModuleIdentifier());
Reid Spencer361e5132004-11-12 20:37:43 +00001012 if (!modId.isEmpty())
1013 Dest->removeLibrary(modId.getBasename());
1014
1015 return false;
1016}
1017
1018// vim: sw=2