blob: 85caa20464c7cf800b440fd3ce87b61007220868 [file] [log] [blame]
Reid Spencer7f496022004-11-12 20:37:43 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
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 Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner52f7e902001-10-13 07:03:50 +00009//
10// This file implements the LLVM module linker.
11//
12// Specifically, this:
Chris Lattner8d2de8a2001-10-15 03:12:52 +000013// * Merges global variables between the two modules
14// * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +000015// * Merges functions between two modules
Chris Lattner52f7e902001-10-13 07:03:50 +000016//
17//===----------------------------------------------------------------------===//
18
Reid Spencer7cc371a2004-11-14 23:27:04 +000019#include "llvm/Linker.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
Chris Lattner5c377c52001-10-14 23:29:15 +000022#include "llvm/Module.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000023#include "llvm/TypeSymbolTable.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000024#include "llvm/ValueSymbolTable.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000025#include "llvm/Instructions.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000026#include "llvm/Assembly/Writer.h"
Bill Wendling41edad72006-11-27 10:09:12 +000027#include "llvm/Support/Streams.h"
Reid Spencer57a0efa2004-09-11 04:25:17 +000028#include "llvm/System/Path.h"
Bill Wendling1a097e32006-12-07 23:41:45 +000029#include <sstream>
Chris Lattnerf7703df2004-01-09 06:12:26 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Chris Lattner5c377c52001-10-14 23:29:15 +000032// Error - Simple wrapper function to conditionally assign to E and return true.
33// This just makes error return conditions a little bit simpler...
Chris Lattner8166e6e2003-05-13 21:33:43 +000034static inline bool Error(std::string *E, const std::string &Message) {
Chris Lattner5c377c52001-10-14 23:29:15 +000035 if (E) *E = Message;
36 return true;
37}
38
Reid Spencer719012d2004-11-25 09:29:44 +000039// ToStr - Simple wrapper function to convert a type to a string.
Chris Lattner72cf7df2004-08-21 00:50:59 +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
John Criswell700867b2003-11-04 15:22:26 +000046//
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.
Chris Lattner4c00e532003-05-15 16:30:55 +000063//
Chris Lattnere76c57a2003-08-22 06:07:12 +000064static bool ResolveTypes(const Type *DestTy, const Type *SrcTy,
Reid Spencer78d033e2007-01-06 07:24:44 +000065 TypeSymbolTable *DestST, const std::string &Name) {
Chris Lattnere76c57a2003-08-22 06:07:12 +000066 if (DestTy == SrcTy) return false; // If already equal, noop
67
Chris Lattner4c00e532003-05-15 16:30:55 +000068 // Does the type already exist in the module?
69 if (DestTy && !isa<OpaqueType>(DestTy)) { // Yup, the type already exists...
Chris Lattnere76c57a2003-08-22 06:07:12 +000070 if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) {
71 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy);
Chris Lattner4c00e532003-05-15 16:30:55 +000072 } 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...
Chris Lattnere76c57a2003-08-22 06:07:12 +000077 const_cast<OpaqueType*>(cast<OpaqueType>(DestTy))
78 ->refineAbstractTypeTo(SrcTy);
Chris Lattnerfcd02342003-08-23 20:31:10 +000079 else if (!Name.empty())
Chris Lattnere76c57a2003-08-22 06:07:12 +000080 DestST->insert(Name, const_cast<Type*>(SrcTy));
Chris Lattner4c00e532003-05-15 16:30:55 +000081 }
82 return false;
83}
84
Chris Lattner43f4ba82003-08-22 19:12:55 +000085static const FunctionType *getFT(const PATypeHolder &TH) {
86 return cast<FunctionType>(TH.get());
87}
Chris Lattner9732be72003-08-22 20:16:48 +000088static const StructType *getST(const PATypeHolder &TH) {
Chris Lattner43f4ba82003-08-22 19:12:55 +000089 return cast<StructType>(TH.get());
90}
Chris Lattnere76c57a2003-08-22 06:07:12 +000091
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.
Chris Lattnere3092c92003-08-23 21:25:54 +000095static bool RecursiveResolveTypesI(const PATypeHolder &DestTy,
96 const PATypeHolder &SrcTy,
Reid Spencer78d033e2007-01-06 07:24:44 +000097 TypeSymbolTable *DestST,
98 const std::string &Name,
Chris Lattnere3092c92003-08-23 21:25:54 +000099 std::vector<std::pair<PATypeHolder, PATypeHolder> > &Pointers) {
Chris Lattner43f4ba82003-08-22 19:12:55 +0000100 const Type *SrcTyT = SrcTy.get();
101 const Type *DestTyT = DestTy.get();
102 if (DestTyT == SrcTyT) return false; // If already equal, noop
Misha Brukmanf976c852005-04-21 22:55:34 +0000103
Chris Lattnere76c57a2003-08-22 06:07:12 +0000104 // If we found our opaque type, resolve it now!
Chris Lattner43f4ba82003-08-22 19:12:55 +0000105 if (isa<OpaqueType>(DestTyT) || isa<OpaqueType>(SrcTyT))
106 return ResolveTypes(DestTyT, SrcTyT, DestST, Name);
Misha Brukmanf976c852005-04-21 22:55:34 +0000107
Chris Lattnere76c57a2003-08-22 06:07:12 +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.
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000110 if (DestTyT->getTypeID() != SrcTyT->getTypeID()) return true;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000111
112 // Otherwise, resolve the used type used by this derived type...
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000113 switch (DestTyT->getTypeID()) {
Reid Spencera54b7cb2007-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 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000120 case Type::FunctionTyID: {
Chris Lattner43f4ba82003-08-22 19:12:55 +0000121 if (cast<FunctionType>(DestTyT)->isVarArg() !=
Chris Lattner841e00b2003-08-28 16:42:50 +0000122 cast<FunctionType>(SrcTyT)->isVarArg() ||
123 cast<FunctionType>(DestTyT)->getNumContainedTypes() !=
124 cast<FunctionType>(SrcTyT)->getNumContainedTypes())
Chris Lattner43f4ba82003-08-22 19:12:55 +0000125 return true;
126 for (unsigned i = 0, e = getFT(DestTy)->getNumContainedTypes(); i != e; ++i)
Chris Lattnere3092c92003-08-23 21:25:54 +0000127 if (RecursiveResolveTypesI(getFT(DestTy)->getContainedType(i),
128 getFT(SrcTy)->getContainedType(i), DestST, "",
129 Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000130 return true;
131 return false;
132 }
133 case Type::StructTyID: {
Misha Brukmanf976c852005-04-21 22:55:34 +0000134 if (getST(DestTy)->getNumContainedTypes() !=
Chris Lattner43f4ba82003-08-22 19:12:55 +0000135 getST(SrcTy)->getNumContainedTypes()) return 1;
136 for (unsigned i = 0, e = getST(DestTy)->getNumContainedTypes(); i != e; ++i)
Chris Lattnere3092c92003-08-23 21:25:54 +0000137 if (RecursiveResolveTypesI(getST(DestTy)->getContainedType(i),
138 getST(SrcTy)->getContainedType(i), DestST, "",
139 Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000140 return true;
141 return false;
142 }
143 case Type::ArrayTyID: {
Chris Lattner43f4ba82003-08-22 19:12:55 +0000144 const ArrayType *DAT = cast<ArrayType>(DestTy.get());
145 const ArrayType *SAT = cast<ArrayType>(SrcTy.get());
Chris Lattnere76c57a2003-08-22 06:07:12 +0000146 if (DAT->getNumElements() != SAT->getNumElements()) return true;
Chris Lattnere3092c92003-08-23 21:25:54 +0000147 return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(),
148 DestST, "", Pointers);
Chris Lattnere76c57a2003-08-22 06:07:12 +0000149 }
Chris Lattnere3092c92003-08-23 21:25:54 +0000150 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...
Chris Lattnere3092c92003-08-23 21:25:54 +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 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000169 default: assert(0 && "Unexpected type!"); return true;
Misha Brukmanf976c852005-04-21 22:55:34 +0000170 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000171}
172
Chris Lattnere3092c92003-08-23 21:25:54 +0000173static bool RecursiveResolveTypes(const PATypeHolder &DestTy,
174 const PATypeHolder &SrcTy,
Reid Spencer78d033e2007-01-06 07:24:44 +0000175 TypeSymbolTable *DestST,
176 const std::string &Name){
Chris Lattnere3092c92003-08-23 21:25:54 +0000177 std::vector<std::pair<PATypeHolder, PATypeHolder> > PointerTypes;
178 return RecursiveResolveTypesI(DestTy, SrcTy, DestST, Name, PointerTypes);
179}
180
Chris Lattnere76c57a2003-08-22 06:07:12 +0000181
Chris Lattner2c236f32001-11-03 05:18:24 +0000182// 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.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000185static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000186 TypeSymbolTable *DestST = &Dest->getTypeSymbolTable();
187 const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable();
Chris Lattner2c236f32001-11-03 05:18:24 +0000188
189 // Look for a type plane for Type's...
Reid Spencer78d033e2007-01-06 07:24:44 +0000190 TypeSymbolTable::const_iterator TI = SrcST->begin();
191 TypeSymbolTable::const_iterator TE = SrcST->end();
Reid Spencer567bc2c2004-05-25 08:52:20 +0000192 if (TI == TE) return false; // No named types, do nothing.
Chris Lattner2c236f32001-11-03 05:18:24 +0000193
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000194 // 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.
Chris Lattner4c00e532003-05-15 16:30:55 +0000197 std::vector<std::string> DelayedTypesToResolve;
198
Reid Spencer567bc2c2004-05-25 08:52:20 +0000199 for ( ; TI != TE; ++TI ) {
200 const std::string &Name = TI->first;
Reid Spencerc28a2242004-07-04 11:52:49 +0000201 const Type *RHS = TI->second;
Chris Lattner2c236f32001-11-03 05:18:24 +0000202
203 // Check to see if this type name is already in the dest module...
Reid Spencer78d033e2007-01-06 07:24:44 +0000204 Type *Entry = DestST->lookup(Name);
Chris Lattner2f6bb2b2003-01-30 20:53:43 +0000205
Chris Lattner4c00e532003-05-15 16:30:55 +0000206 if (ResolveTypes(Entry, RHS, DestST, Name)) {
207 // They look different, save the types 'till later to resolve.
208 DelayedTypesToResolve.push_back(Name);
Chris Lattner2c236f32001-11-03 05:18:24 +0000209 }
210 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000211
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
Chris Lattnere76c57a2003-08-22 06:07:12 +0000217 // Try direct resolution by name...
Chris Lattner4c00e532003-05-15 16:30:55 +0000218 for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) {
219 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer78d033e2007-01-06 07:24:44 +0000220 Type *T1 = SrcST->lookup(Name);
221 Type *T2 = DestST->lookup(Name);
Chris Lattner4c00e532003-05-15 16:30:55 +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) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000231 // Attempt to resolve subelements of types. This allows us to merge these
232 // two types: { int* } and { opaque* }
Chris Lattner4c00e532003-05-15 16:30:55 +0000233 for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) {
234 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer78d033e2007-01-06 07:24:44 +0000235 PATypeHolder T1(SrcST->lookup(Name));
236 PATypeHolder T2(DestST->lookup(Name));
Chris Lattnere76c57a2003-08-22 06:07:12 +0000237
238 if (!RecursiveResolveTypes(T2, T1, DestST, Name)) {
239 // We are making progress!
240 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
Misha Brukmanf976c852005-04-21 22:55:34 +0000241
Chris Lattnere76c57a2003-08-22 06:07:12 +0000242 // Go back to the main loop, perhaps we can resolve directly by name
243 // now...
244 break;
245 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000246 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000247
248 // If we STILL cannot resolve the types, then there is something wrong.
Chris Lattnere76c57a2003-08-22 06:07:12 +0000249 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattneraeb18ce2003-10-21 22:46:38 +0000250 // Remove the symbol name from the destination.
251 DelayedTypesToResolve.pop_back();
Chris Lattnere76c57a2003-08-22 06:07:12 +0000252 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000253 }
254 }
255
256
Chris Lattner2c236f32001-11-03 05:18:24 +0000257 return false;
258}
259
Chris Lattner5c2d3352003-01-30 19:53:34 +0000260static void PrintMap(const std::map<const Value*, Value*> &M) {
261 for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end();
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000262 I != E; ++I) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000263 cerr << " Fr: " << (void*)I->first << " ";
Chris Lattner87182ae2002-04-07 22:31:23 +0000264 I->first->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000265 cerr << " To: " << (void*)I->second << " ";
Chris Lattner87182ae2002-04-07 22:31:23 +0000266 I->second->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000267 cerr << "\n";
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000268 }
269}
270
271
Reid Spencer619f0242007-02-04 04:43:17 +0000272// RemapOperand - Use ValueMap to convert constants from one module to another.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000273static Value *RemapOperand(const Value *In,
Chris Lattner0033baf2004-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 Spenceref9b9a72007-02-05 20:47:22 +0000276 if (I != ValueMap.end())
277 return I->second;
Chris Lattner5c377c52001-10-14 23:29:15 +0000278
Reid Spencer619f0242007-02-04 04:43:17 +0000279 // Check to see if it's a constant that we are interested in transforming.
Chris Lattner620fd682006-06-01 19:14:22 +0000280 Value *Result = 0;
Chris Lattner18961502002-06-25 16:12:52 +0000281 if (const Constant *CPV = dyn_cast<Constant>(In)) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000282 if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) ||
Reid Spencera54b7cb2007-01-12 07:05:14 +0000283 isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV))
Chris Lattner0033baf2004-11-16 17:12:38 +0000284 return const_cast<Constant*>(CPV); // Simple constants stay identical.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000285
Chris Lattner18961502002-06-25 16:12:52 +0000286 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000287 std::vector<Constant*> Operands(CPA->getNumOperands());
288 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
Chris Lattner0033baf2004-11-16 17:12:38 +0000289 Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap));
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000290 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
Chris Lattner18961502002-06-25 16:12:52 +0000291 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000292 std::vector<Constant*> Operands(CPS->getNumOperands());
293 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattner0033baf2004-11-16 17:12:38 +0000294 Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap));
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000295 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
Chris Lattnerb976e662004-10-16 18:08:06 +0000296 } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) {
Chris Lattner18961502002-06-25 16:12:52 +0000297 Result = const_cast<Constant*>(CPV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000298 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CPV)) {
Chris Lattnera88eb922006-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 Spencer9d6565a2007-02-15 02:26:10 +0000302 Result = ConstantVector::get(Operands);
Chris Lattner6cdf1972002-07-18 00:13:08 +0000303 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
Chris Lattner27d67212006-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 Spencer619f0242007-02-04 04:43:17 +0000308 } else if (isa<GlobalValue>(CPV)) {
309 assert(0 && "Unmapped global?");
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000310 } else {
311 assert(0 && "Unknown type of derived type constant value!");
312 }
Chris Lattner620fd682006-06-01 19:14:22 +0000313 } else if (isa<InlineAsm>(In)) {
314 Result = const_cast<Value*>(In);
315 }
316
Reid Spencer619f0242007-02-04 04:43:17 +0000317 // Cache the mapping in our local map structure
Chris Lattner620fd682006-06-01 19:14:22 +0000318 if (Result) {
Chris Lattner0033baf2004-11-16 17:12:38 +0000319 ValueMap.insert(std::make_pair(In, Result));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000320 return Result;
321 }
Reid Spencer8bef0372007-02-04 04:29:21 +0000322
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000323
Bill Wendlinge8156192006-12-07 01:30:32 +0000324 cerr << "LinkModules ValueMap: \n";
Chris Lattner0033baf2004-11-16 17:12:38 +0000325 PrintMap(ValueMap);
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000326
Bill Wendlinge8156192006-12-07 01:30:32 +0000327 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000328 assert(0 && "Couldn't remap value!");
329 return 0;
Chris Lattner5c377c52001-10-14 23:29:15 +0000330}
331
Reid Spencer8bef0372007-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.
Chris Lattnerc0036282004-08-04 07:05:54 +0000335static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
336 assert(GV->getName() != Name && "Can't force rename to self");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000337 ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable();
Chris Lattnerc0036282004-08-04 07:05:54 +0000338
339 // If there is a conflict, rename the conflict.
Chris Lattner33f29492007-02-11 00:39:38 +0000340 if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000341 assert(ConflictGV->hasInternalLinkage() &&
342 "Not conflicting with a static global, should link instead!");
Chris Lattner33f29492007-02-11 00:39:38 +0000343 GV->takeName(ConflictGV);
344 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Reid Spenceref9b9a72007-02-05 20:47:22 +0000345 assert(ConflictGV->getName() != Name && "ForceRenaming didn't work");
Chris Lattner33f29492007-02-11 00:39:38 +0000346 } else {
347 GV->setName(Name); // Force the name back
Reid Spenceref9b9a72007-02-05 20:47:22 +0000348 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000349}
Reid Spencer8bef0372007-02-04 04:29:21 +0000350
Reid Spenceref9b9a72007-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 }
Chris Lattnerc0036282004-08-04 07:05:54 +0000362}
363
Chris Lattneraee38ea2004-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 Korobeynikov9cd3ccf2007-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 Lattneraee38ea2004-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 Spencer5cbf9852007-01-30 20:08:39 +0000380 } else if (Src->isDeclaration()) {
Chris Lattneraee38ea2004-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 Korobeynikovb74ed072006-09-14 18:23:27 +0000383 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000384 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000385 if (Dest->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000386 LinkFromSrc = true;
387 LT = Src->getLinkage();
388 }
Andrew Lenharth8753c442006-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 Korobeynikovb74ed072006-09-14 18:23:27 +0000393 } else {
394 LinkFromSrc = false;
395 LT = Dest->getLinkage();
396 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000397 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattneraee38ea2004-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 Spencer619f0242007-02-04 04:43:17 +0000408 // At this point we know that Dest has LinkOnce, External*, Weak, or
409 // DLL* linkage.
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000410 if ((Dest->hasLinkOnceLinkage() && Src->hasWeakLinkage()) ||
411 Dest->hasExternalWeakLinkage()) {
Chris Lattneraee38ea2004-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 Korobeynikov78ee7b72006-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 Lattneraee38ea2004-12-03 22:18:41 +0000427 } else {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000428 assert((Dest->hasExternalLinkage() ||
429 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000430 Dest->hasDLLExportLinkage() ||
431 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000432 (Src->hasExternalLinkage() ||
433 Src->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000434 Src->hasDLLExportLinkage() ||
435 Src->hasExternalWeakLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000436 "Unexpected linkage type!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000437 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattneraee38ea2004-12-03 22:18:41 +0000438 "': symbol multiply defined!");
439 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000440
441 // Check visibility
442 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattner97f8b092007-08-19 22:22:54 +0000443 if (!Src->isDeclaration() && !Dest->isDeclaration())
444 return Error(Err, "Linking globals named '" + Src->getName() +
445 "': symbols have different visibilities!");
Chris Lattneraee38ea2004-12-03 22:18:41 +0000446 return false;
447}
Chris Lattner5c377c52001-10-14 23:29:15 +0000448
449// LinkGlobals - Loop through the global variables in the src module and merge
Chris Lattner8166e6e2003-05-13 21:33:43 +0000450// them into the dest module.
Chris Lattneraee38ea2004-12-03 22:18:41 +0000451static bool LinkGlobals(Module *Dest, Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000452 std::map<const Value*, Value*> &ValueMap,
Chris Lattner8166e6e2003-05-13 21:33:43 +0000453 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000454 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000455 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner11273152006-06-16 01:24:04 +0000456 for (Module::global_iterator I = Src->global_begin(), E = Src->global_end();
457 I != E; ++I) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000458 GlobalVariable *SGV = I;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000459 GlobalVariable *DGV = 0;
Chris Lattner5a837de2004-08-04 07:44:58 +0000460 // Check to see if may have to link the global.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000461 if (SGV->hasName() && !SGV->hasInternalLinkage()) {
462 DGV = Dest->getGlobalVariable(SGV->getName());
463 if (DGV && DGV->getType() != SGV->getType())
464 // If types don't agree due to opaque types, try to resolve them.
465 RecursiveResolveTypes(SGV->getType(), DGV->getType(),
466 &Dest->getTypeSymbolTable(), "");
467 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000468
Chris Lattneraee38ea2004-12-03 22:18:41 +0000469 if (DGV && DGV->hasInternalLinkage())
470 DGV = 0;
471
Andrew Lenharth8753c442006-12-15 17:35:32 +0000472 assert(SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000473 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage() &&
Chris Lattner4ad02e72003-04-16 20:28:45 +0000474 "Global must either be external or have an initializer!");
475
Chris Lattnerb324bd72006-11-09 05:18:12 +0000476 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
477 bool LinkFromSrc = false;
Chris Lattneraee38ea2004-12-03 22:18:41 +0000478 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
479 return true;
Chris Lattner0fec08e2003-04-21 21:07:05 +0000480
Chris Lattneraee38ea2004-12-03 22:18:41 +0000481 if (!DGV) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000482 // No linking to be performed, simply create an identical version of the
483 // symbol over in the dest module... the initializer will be filled in
484 // later by LinkGlobalInits...
Chris Lattner2719bac2003-04-21 21:15:04 +0000485 GlobalVariable *NewDGV =
486 new GlobalVariable(SGV->getType()->getElementType(),
487 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000488 SGV->getName(), Dest, SGV->isThreadLocal());
Reid Spencer471feac2007-02-04 04:30:33 +0000489 // Propagate alignment, visibility and section info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000490 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000491
Chris Lattner2719bac2003-04-21 21:15:04 +0000492 // If the LLVM runtime renamed the global, but it is an externally visible
493 // symbol, DGV must be an existing global with internal linkage. Rename
494 // it.
Chris Lattnerc0036282004-08-04 07:05:54 +0000495 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
496 ForceRenaming(NewDGV, SGV->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000497
498 // Make sure to remember this mapping...
Chris Lattner2719bac2003-04-21 21:15:04 +0000499 ValueMap.insert(std::make_pair(SGV, NewDGV));
Chris Lattner8166e6e2003-05-13 21:33:43 +0000500 if (SGV->hasAppendingLinkage())
501 // Keep track that this is an appending variable...
502 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattneraee38ea2004-12-03 22:18:41 +0000503 } else if (DGV->hasAppendingLinkage()) {
Chris Lattner8166e6e2003-05-13 21:33:43 +0000504 // No linking is performed yet. Just insert a new copy of the global, and
505 // keep track of the fact that it is an appending variable in the
506 // AppendingVars map. The name is cleared out so that no linkage is
507 // performed.
508 GlobalVariable *NewDGV =
509 new GlobalVariable(SGV->getType()->getElementType(),
510 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000511 "", Dest, SGV->isThreadLocal());
Chris Lattner8166e6e2003-05-13 21:33:43 +0000512
Reid Spencer471feac2007-02-04 04:30:33 +0000513 // Propagate alignment, section and visibility info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000514 NewDGV->setAlignment(DGV->getAlignment());
515 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000516
Chris Lattner8166e6e2003-05-13 21:33:43 +0000517 // Make sure to remember this mapping...
518 ValueMap.insert(std::make_pair(SGV, NewDGV));
519
520 // Keep track that this is an appending variable...
521 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattner5c377c52001-10-14 23:29:15 +0000522 } else {
Reid Spencer471feac2007-02-04 04:30:33 +0000523 // Propagate alignment, section, and visibility info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000524 CopyGVAttributes(DGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000525
Chris Lattneraee38ea2004-12-03 22:18:41 +0000526 // Otherwise, perform the mapping as instructed by GetLinkageResult. If
527 // the types don't match, and if we are to link from the source, nuke DGV
528 // and create a new one of the appropriate type.
529 if (SGV->getType() != DGV->getType() && LinkFromSrc) {
530 GlobalVariable *NewDGV =
531 new GlobalVariable(SGV->getType()->getElementType(),
532 DGV->isConstant(), DGV->getLinkage());
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000533 NewDGV->setThreadLocal(DGV->isThreadLocal());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000534 CopyGVAttributes(NewDGV, DGV);
Chris Lattneraee38ea2004-12-03 22:18:41 +0000535 Dest->getGlobalList().insert(DGV, NewDGV);
Reid Spencer4da49122006-12-12 05:05:00 +0000536 DGV->replaceAllUsesWith(
537 ConstantExpr::getBitCast(NewDGV, DGV->getType()));
Chris Lattneraee38ea2004-12-03 22:18:41 +0000538 DGV->eraseFromParent();
539 NewDGV->setName(SGV->getName());
540 DGV = NewDGV;
541 }
542
543 DGV->setLinkage(NewLinkage);
544
545 if (LinkFromSrc) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000546 // Inherit const as appropriate
Chris Lattnere6f8c5a2005-02-12 19:20:28 +0000547 DGV->setConstant(SGV->isConstant());
Chris Lattneraee38ea2004-12-03 22:18:41 +0000548 DGV->setInitializer(0);
549 } else {
550 if (SGV->isConstant() && !DGV->isConstant()) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000551 if (DGV->isDeclaration())
Chris Lattneraee38ea2004-12-03 22:18:41 +0000552 DGV->setConstant(true);
553 }
Chris Lattnerc8ef1ed2004-12-04 18:54:48 +0000554 SGV->setLinkage(GlobalValue::ExternalLinkage);
555 SGV->setInitializer(0);
Chris Lattneraee38ea2004-12-03 22:18:41 +0000556 }
557
Reid Spencer4da49122006-12-12 05:05:00 +0000558 ValueMap.insert(
559 std::make_pair(SGV, ConstantExpr::getBitCast(DGV, SGV->getType())));
Chris Lattner5c377c52001-10-14 23:29:15 +0000560 }
561 }
562 return false;
563}
564
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000565// LinkAlias - Loop through the alias in the src module and link them into the
566// dest module.
567static bool LinkAlias(Module *Dest, const Module *Src, std::string *Err) {
568 // Loop over all alias in the src module
569 for (Module::const_alias_iterator I = Src->alias_begin(),
570 E = Src->alias_end(); I != E; ++I) {
571 const GlobalAlias *GA = I;
572
573 GlobalValue *NewAliased = NULL;
574 const GlobalValue *Aliased = GA->getAliasedGlobal();
575 if (isa<GlobalVariable>(*Aliased))
576 NewAliased = Dest->getGlobalVariable(Aliased->getName());
577 else if (isa<Function>(*Aliased))
578 NewAliased = Dest->getFunction(Aliased->getName());
579 // FIXME: we should handle the bitcast alias.
580 assert(NewAliased && "Can't find the aliased GV.");
581
Lauro Ramos Venancio00d8a842007-06-28 20:06:38 +0000582 GlobalAlias *NewGA = new GlobalAlias(GA->getType(), GA->getLinkage(),
583 GA->getName(), NewAliased, Dest);
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000584 CopyGVAttributes(NewGA, GA);
585 }
586 return false;
587}
588
Chris Lattner5c377c52001-10-14 23:29:15 +0000589
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000590// LinkGlobalInits - Update the initializers in the Dest module now that all
591// globals that may be referenced are in Dest.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000592static bool LinkGlobalInits(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000593 std::map<const Value*, Value*> &ValueMap,
594 std::string *Err) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000595
596 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner11273152006-06-16 01:24:04 +0000597 for (Module::const_global_iterator I = Src->global_begin(),
598 E = Src->global_end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000599 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000600
601 if (SGV->hasInitializer()) { // Only process initialized GV's
602 // Figure out what the initializer looks like in the dest module...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000603 Constant *SInit =
Chris Lattner0033baf2004-11-16 17:12:38 +0000604 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000605
Misha Brukmanf976c852005-04-21 22:55:34 +0000606 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]);
Chris Lattner4ad02e72003-04-16 20:28:45 +0000607 if (DGV->hasInitializer()) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000608 if (SGV->hasExternalLinkage()) {
609 if (DGV->getInitializer() != SInit)
Misha Brukmanf976c852005-04-21 22:55:34 +0000610 return Error(Err, "Global Variable Collision on '" +
Chris Lattner72cf7df2004-08-21 00:50:59 +0000611 ToStr(SGV->getType(), Src) +"':%"+SGV->getName()+
Chris Lattner4ad02e72003-04-16 20:28:45 +0000612 " - Global variables have different initializers");
Chris Lattner72ac148d2003-10-16 18:29:00 +0000613 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage()) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000614 // Nothing is required, mapped values will take the new global
615 // automatically.
Chris Lattner57cb9882004-02-17 21:56:04 +0000616 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage()) {
617 // Nothing is required, mapped values will take the new global
618 // automatically.
Chris Lattner4ad02e72003-04-16 20:28:45 +0000619 } else if (DGV->hasAppendingLinkage()) {
620 assert(0 && "Appending linkage unimplemented!");
621 } else {
622 assert(0 && "Unknown linkage!");
623 }
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000624 } else {
625 // Copy the initializer over now...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000626 DGV->setInitializer(SInit);
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000627 }
628 }
629 }
630 return false;
631}
Chris Lattner5c377c52001-10-14 23:29:15 +0000632
Chris Lattner79df7c02002-03-26 18:01:55 +0000633// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000634// without doing function bodies... this just adds external function prototypes
635// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000636//
Chris Lattner79df7c02002-03-26 18:01:55 +0000637static bool LinkFunctionProtos(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000638 std::map<const Value*, Value*> &ValueMap,
639 std::string *Err) {
Reid Spencer619f0242007-02-04 04:43:17 +0000640 // Loop over all of the functions in the src module, mapping them over
Chris Lattner5c377c52001-10-14 23:29:15 +0000641 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000642 const Function *SF = I; // SrcFunction
Chris Lattner4ad02e72003-04-16 20:28:45 +0000643 Function *DF = 0;
Reid Spencer8bef0372007-02-04 04:29:21 +0000644 if (SF->hasName() && !SF->hasInternalLinkage()) {
645 // Check to see if may have to link the function.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000646 DF = Dest->getFunction(SF->getName());
647 if (DF && SF->getType() != DF->getType())
648 // If types don't agree because of opaque, try to resolve them
649 RecursiveResolveTypes(SF->getType(), DF->getType(),
650 &Dest->getTypeSymbolTable(), "");
Reid Spencer8bef0372007-02-04 04:29:21 +0000651 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000652
653 // Check visibility
654 if (DF && !DF->hasInternalLinkage() &&
Chris Lattner97f8b092007-08-19 22:22:54 +0000655 SF->getVisibility() != DF->getVisibility()) {
656 // If one is a prototype, ignore its visibility. Prototypes are always
657 // overridden by the definition.
658 if (!SF->isDeclaration() && !DF->isDeclaration())
659 return Error(Err, "Linking functions named '" + SF->getName() +
660 "': symbols have different visibilities!");
661 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000662
663 if (DF && DF->getType() != SF->getType()) {
664 if (DF->isDeclaration() && !SF->isDeclaration()) {
665 // We have a definition of the same name but different type in the
666 // source module. Copy the prototype to the destination and replace
667 // uses of the destination's prototype with the new prototype.
668 Function *NewDF = new Function(SF->getFunctionType(), SF->getLinkage(),
669 SF->getName(), Dest);
670 CopyGVAttributes(NewDF, SF);
Chris Lattner5c377c52001-10-14 23:29:15 +0000671
Reid Spenceref9b9a72007-02-05 20:47:22 +0000672 // Any uses of DF need to change to NewDF, with cast
673 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType()));
674
675 // DF will conflict with NewDF because they both had the same. We must
676 // erase this now so ForceRenaming doesn't assert because DF might
677 // not have internal linkage.
678 DF->eraseFromParent();
679
680 // If the symbol table renamed the function, but it is an externally
681 // visible symbol, DF must be an existing function with internal
682 // linkage. Rename it.
683 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
684 ForceRenaming(NewDF, SF->getName());
685
686 // Remember this mapping so uses in the source module get remapped
687 // later by RemapOperand.
688 ValueMap[SF] = NewDF;
689 } else if (SF->isDeclaration()) {
690 // We have two functions of the same name but different type and the
691 // source is a declaration while the destination is not. Any use of
692 // the source must be mapped to the destination, with a cast.
693 ValueMap[SF] = ConstantExpr::getBitCast(DF, SF->getType());
694 } else {
695 // We have two functions of the same name but different types and they
696 // are both definitions. This is an error.
697 return Error(Err, "Function '" + DF->getName() + "' defined as both '" +
698 ToStr(SF->getFunctionType(), Src) + "' and '" +
699 ToStr(DF->getFunctionType(), Dest) + "'");
700 }
701 } else if (!DF || SF->hasInternalLinkage() || DF->hasInternalLinkage()) {
Chris Lattner0fec08e2003-04-21 21:07:05 +0000702 // Function does not already exist, simply insert an function signature
Chris Lattner97f8b092007-08-19 22:22:54 +0000703 // identical to SF into the dest module.
Chris Lattner2719bac2003-04-21 21:15:04 +0000704 Function *NewDF = new Function(SF->getFunctionType(), SF->getLinkage(),
705 SF->getName(), Dest);
Reid Spenceref9b9a72007-02-05 20:47:22 +0000706 CopyGVAttributes(NewDF, SF);
Chris Lattner2719bac2003-04-21 21:15:04 +0000707
708 // If the LLVM runtime renamed the function, but it is an externally
709 // visible symbol, DF must be an existing function with internal linkage.
710 // Rename it.
Chris Lattnerc0036282004-08-04 07:05:54 +0000711 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
Chris Lattner82b5b212004-08-04 22:29:05 +0000712 ForceRenaming(NewDF, SF->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000713
714 // ... and remember this mapping...
Chris Lattner2719bac2003-04-21 21:15:04 +0000715 ValueMap.insert(std::make_pair(SF, NewDF));
Reid Spencer5cbf9852007-01-30 20:08:39 +0000716 } else if (SF->isDeclaration()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000717 // If SF is a declaration or if both SF & DF are declarations, just link
718 // the declarations, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000719 if (SF->hasDLLImportLinkage()) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000720 if (DF->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000721 ValueMap.insert(std::make_pair(SF, DF));
722 DF->setLinkage(SF->getLinkage());
723 }
724 } else {
725 ValueMap.insert(std::make_pair(SF, DF));
Reid Spencer8bef0372007-02-04 04:29:21 +0000726 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000727 } else if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000728 // If DF is external but SF is not...
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000729 // Link the external functions, update linkage qualifiers
730 ValueMap.insert(std::make_pair(SF, DF));
731 DF->setLinkage(SF->getLinkage());
Chris Lattner97f8b092007-08-19 22:22:54 +0000732 // Visibility of prototype is overridden by vis of definition.
733 DF->setVisibility(SF->getVisibility());
Chris Lattner35956552003-10-27 16:39:39 +0000734 } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000735 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
Chris Lattner72ac148d2003-10-16 18:29:00 +0000736 ValueMap.insert(std::make_pair(SF, DF));
737
Chris Lattner35956552003-10-27 16:39:39 +0000738 // Linkonce+Weak = Weak
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000739 // *+External Weak = *
740 if ((DF->hasLinkOnceLinkage() && SF->hasWeakLinkage()) ||
741 DF->hasExternalWeakLinkage())
Chris Lattner35956552003-10-27 16:39:39 +0000742 DF->setLinkage(SF->getLinkage());
Chris Lattner35956552003-10-27 16:39:39 +0000743 } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000744 // At this point we know that SF has LinkOnce or External* linkage.
Chris Lattner72ac148d2003-10-16 18:29:00 +0000745 ValueMap.insert(std::make_pair(SF, DF));
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000746 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage())
747 // Don't inherit linkonce & external weak linkage
Chris Lattner72ac148d2003-10-16 18:29:00 +0000748 DF->setLinkage(SF->getLinkage());
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000749 } else if (SF->getLinkage() != DF->getLinkage()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000750 return Error(Err, "Functions named '" + SF->getName() +
751 "' have different linkage specifiers!");
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000752 } else if (SF->hasExternalLinkage()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000753 // The function is defined identically in both modules!!
Misha Brukmanf976c852005-04-21 22:55:34 +0000754 return Error(Err, "Function '" +
755 ToStr(SF->getFunctionType(), Src) + "':\"" +
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000756 SF->getName() + "\" - Function is already defined!");
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000757 } else {
758 assert(0 && "Unknown linkage configuration found!");
Chris Lattner5c377c52001-10-14 23:29:15 +0000759 }
760 }
761 return false;
762}
763
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000764// LinkFunctionBody - Copy the source function over into the dest function and
765// fix up references to values. At this point we know that Dest is an external
766// function, and that Src is not.
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000767static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spenceref9b9a72007-02-05 20:47:22 +0000768 std::map<const Value*, Value*> &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000769 std::string *Err) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000770 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Chris Lattner5c377c52001-10-14 23:29:15 +0000771
Chris Lattner0033baf2004-11-16 17:12:38 +0000772 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000773 Function::arg_iterator DI = Dest->arg_begin();
774 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000775 I != E; ++I, ++DI) {
776 DI->setName(I->getName()); // Copy the name information over...
Chris Lattner5c377c52001-10-14 23:29:15 +0000777
778 // Add a mapping to our local map
Reid Spenceref9b9a72007-02-05 20:47:22 +0000779 ValueMap.insert(std::make_pair(I, DI));
Chris Lattner5c377c52001-10-14 23:29:15 +0000780 }
781
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000782 // Splice the body of the source function into the dest function.
783 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Chris Lattner5c377c52001-10-14 23:29:15 +0000784
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000785 // At this point, all of the instructions and values of the function are now
786 // copied over. The only problem is that they are still referencing values in
787 // the Source function as operands. Loop through all of the operands of the
788 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +0000789 //
Chris Lattner18961502002-06-25 16:12:52 +0000790 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
791 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
792 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +0000793 OI != OE; ++OI)
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000794 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Reid Spenceref9b9a72007-02-05 20:47:22 +0000795 *OI = RemapOperand(*OI, ValueMap);
Chris Lattner0033baf2004-11-16 17:12:38 +0000796
797 // There is no need to map the arguments anymore.
Chris Lattner11273152006-06-16 01:24:04 +0000798 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
799 I != E; ++I)
Reid Spenceref9b9a72007-02-05 20:47:22 +0000800 ValueMap.erase(I);
Chris Lattner5c377c52001-10-14 23:29:15 +0000801
802 return false;
803}
804
805
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000806// LinkFunctionBodies - Link in the function bodies that are defined in the
807// source module into the DestModule. This consists basically of copying the
808// function over and fixing up references to values.
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000809static bool LinkFunctionBodies(Module *Dest, Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000810 std::map<const Value*, Value*> &ValueMap,
811 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000812
Reid Spencer8bef0372007-02-04 04:29:21 +0000813 // Loop over all of the functions in the src module, mapping them over as we
814 // go
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000815 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencer619f0242007-02-04 04:43:17 +0000816 if (!SF->isDeclaration()) { // No body if function is external
Chris Lattner18961502002-06-25 16:12:52 +0000817 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +0000818
Chris Lattner18961502002-06-25 16:12:52 +0000819 // DF not external SF external?
Reid Spenceref9b9a72007-02-05 20:47:22 +0000820 if (DF->isDeclaration())
Chris Lattner35956552003-10-27 16:39:39 +0000821 // Only provide the function body if there isn't one already.
822 if (LinkFunctionBody(DF, SF, ValueMap, Err))
823 return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000824 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000825 }
826 return false;
827}
828
Chris Lattner8166e6e2003-05-13 21:33:43 +0000829// LinkAppendingVars - If there were any appending global variables, link them
830// together now. Return true on error.
Chris Lattner8166e6e2003-05-13 21:33:43 +0000831static bool LinkAppendingVars(Module *M,
832 std::multimap<std::string, GlobalVariable *> &AppendingVars,
833 std::string *ErrorMsg) {
834 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukmanf976c852005-04-21 22:55:34 +0000835
Chris Lattner8166e6e2003-05-13 21:33:43 +0000836 // Loop over the multimap of appending vars, processing any variables with the
837 // same name, forming a new appending global variable with both of the
838 // initializers merged together, then rewrite references to the old variables
839 // and delete them.
Chris Lattner8166e6e2003-05-13 21:33:43 +0000840 std::vector<Constant*> Inits;
841 while (AppendingVars.size() > 1) {
842 // Get the first two elements in the map...
843 std::multimap<std::string,
844 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
845
846 // If the first two elements are for different names, there is no pair...
847 // Otherwise there is a pair, so link them together...
848 if (First->first == Second->first) {
849 GlobalVariable *G1 = First->second, *G2 = Second->second;
850 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
851 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukmanf976c852005-04-21 22:55:34 +0000852
Chris Lattner8166e6e2003-05-13 21:33:43 +0000853 // Check to see that they two arrays agree on type...
854 if (T1->getElementType() != T2->getElementType())
855 return Error(ErrorMsg,
856 "Appending variables with different element types need to be linked!");
857 if (G1->isConstant() != G2->isConstant())
858 return Error(ErrorMsg,
859 "Appending variables linked with different const'ness!");
860
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +0000861 if (G1->getAlignment() != G2->getAlignment())
862 return Error(ErrorMsg,
863 "Appending variables with different alignment need to be linked!");
864
865 if (G1->getVisibility() != G2->getVisibility())
866 return Error(ErrorMsg,
867 "Appending variables with different visibility need to be linked!");
868
869 if (G1->getSection() != G2->getSection())
870 return Error(ErrorMsg,
871 "Appending variables with different section name need to be linked!");
872
Chris Lattner8166e6e2003-05-13 21:33:43 +0000873 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
874 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
875
Chris Lattnered74a4e2005-12-06 17:30:58 +0000876 G1->setName(""); // Clear G1's name in case of a conflict!
877
Chris Lattner8166e6e2003-05-13 21:33:43 +0000878 // Create the new global variable...
879 GlobalVariable *NG =
880 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +0000881 /*init*/0, First->first, M, G1->isThreadLocal());
Chris Lattner8166e6e2003-05-13 21:33:43 +0000882
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +0000883 // Propagate alignment, visibility and section info.
884 CopyGVAttributes(NG, G1);
885
Chris Lattner8166e6e2003-05-13 21:33:43 +0000886 // Merge the initializer...
887 Inits.reserve(NewSize);
Chris Lattnerde512b52004-02-15 05:55:15 +0000888 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
889 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000890 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +0000891 } else {
892 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
893 Constant *CV = Constant::getNullValue(T1->getElementType());
894 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
895 Inits.push_back(CV);
896 }
897 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
898 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000899 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +0000900 } else {
901 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
902 Constant *CV = Constant::getNullValue(T2->getElementType());
903 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
904 Inits.push_back(CV);
905 }
Chris Lattner8166e6e2003-05-13 21:33:43 +0000906 NG->setInitializer(ConstantArray::get(NewType, Inits));
907 Inits.clear();
908
909 // Replace any uses of the two global variables with uses of the new
910 // global...
911
912 // FIXME: This should rewrite simple/straight-forward uses such as
913 // getelementptr instructions to not use the Cast!
Reid Spencer4da49122006-12-12 05:05:00 +0000914 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
915 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Chris Lattner8166e6e2003-05-13 21:33:43 +0000916
917 // Remove the two globals from the module now...
918 M->getGlobalList().erase(G1);
919 M->getGlobalList().erase(G2);
920
921 // Put the new global into the AppendingVars map so that we can handle
922 // linking of more than two vars...
923 Second->second = NG;
924 }
925 AppendingVars.erase(First);
926 }
927
928 return false;
929}
Chris Lattner52f7e902001-10-13 07:03:50 +0000930
931
932// LinkModules - This function links two modules together, with the resulting
933// left module modified to be the composite of the two input modules. If an
934// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +0000935// the problem. Upon failure, the Dest module could be in a modified state, and
936// shouldn't be relied on to be consistent.
Misha Brukmanf976c852005-04-21 22:55:34 +0000937bool
Reid Spencer0ba9e212004-12-13 03:00:16 +0000938Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer57a0efa2004-09-11 04:25:17 +0000939 assert(Dest != 0 && "Invalid Destination module");
940 assert(Src != 0 && "Invalid Source Module");
941
Chris Lattnerc36357c2007-01-29 00:21:34 +0000942 if (Dest->getDataLayout().empty()) {
943 if (!Src->getDataLayout().empty()) {
Chris Lattnerec9bfdc2007-01-29 02:18:13 +0000944 Dest->setDataLayout(Src->getDataLayout());
Chris Lattnerc36357c2007-01-29 00:21:34 +0000945 } else {
946 std::string DataLayout;
Reid Spencer26f23852007-01-26 08:11:39 +0000947
Chris Lattnerc36357c2007-01-29 00:21:34 +0000948 if (Dest->getEndianness() == Module::AnyEndianness)
949 if (Src->getEndianness() == Module::BigEndian)
950 DataLayout.append("E");
951 else if (Src->getEndianness() == Module::LittleEndian)
952 DataLayout.append("e");
953 if (Dest->getPointerSize() == Module::AnyPointerSize)
954 if (Src->getPointerSize() == Module::Pointer64)
955 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
956 else if (Src->getPointerSize() == Module::Pointer32)
957 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
958 Dest->setDataLayout(DataLayout);
959 }
960 }
961
Reid Spencer619f0242007-02-04 04:43:17 +0000962 // COpy the target triple from the source to dest if the dest's is empty
Chris Lattnerc36357c2007-01-29 00:21:34 +0000963 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattner152f19a2004-12-10 20:26:15 +0000964 Dest->setTargetTriple(Src->getTargetTriple());
Chris Lattnerc36357c2007-01-29 00:21:34 +0000965
966 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
967 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer26f23852007-01-26 08:11:39 +0000968 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattner152f19a2004-12-10 20:26:15 +0000969 if (!Src->getTargetTriple().empty() &&
970 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlinge8156192006-12-07 01:30:32 +0000971 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukmanf976c852005-04-21 22:55:34 +0000972
Reid Spencer619f0242007-02-04 04:43:17 +0000973 // Append the module inline asm string
Chris Lattner66316012006-01-24 04:14:29 +0000974 if (!Src->getModuleInlineAsm().empty()) {
975 if (Dest->getModuleInlineAsm().empty())
976 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +0000977 else
Chris Lattner66316012006-01-24 04:14:29 +0000978 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
979 Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +0000980 }
981
Reid Spencer719012d2004-11-25 09:29:44 +0000982 // Update the destination module's dependent libraries list with the libraries
Reid Spencer57a0efa2004-09-11 04:25:17 +0000983 // from the source module. There's no opportunity for duplicates here as the
984 // Module ensures that duplicate insertions are discarded.
985 Module::lib_iterator SI = Src->lib_begin();
986 Module::lib_iterator SE = Src->lib_end();
987 while ( SI != SE ) {
988 Dest->addLibrary(*SI);
989 ++SI;
990 }
991
Chris Lattner2c236f32001-11-03 05:18:24 +0000992 // LinkTypes - Go through the symbol table of the Src module and see if any
993 // types are named in the src module that are not named in the Dst module.
994 // Make sure there are no type name conflicts.
Reid Spencer619f0242007-02-04 04:43:17 +0000995 if (LinkTypes(Dest, Src, ErrorMsg))
996 return true;
Chris Lattner2c236f32001-11-03 05:18:24 +0000997
Chris Lattner5c377c52001-10-14 23:29:15 +0000998 // ValueMap - Mapping of values from what they used to be in Src, to what they
999 // are now in Dest.
Chris Lattner5c2d3352003-01-30 19:53:34 +00001000 std::map<const Value*, Value*> ValueMap;
Chris Lattner5c377c52001-10-14 23:29:15 +00001001
Chris Lattner8166e6e2003-05-13 21:33:43 +00001002 // AppendingVars - Keep track of global variables in the destination module
1003 // with appending linkage. After the module is linked together, they are
1004 // appended and the module is rewritten.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001005 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner11273152006-06-16 01:24:04 +00001006 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1007 I != E; ++I) {
Chris Lattner5a837de2004-08-04 07:44:58 +00001008 // Add all of the appending globals already in the Dest module to
1009 // AppendingVars.
Chris Lattnerf4146462003-05-14 12:11:51 +00001010 if (I->hasAppendingLinkage())
1011 AppendingVars.insert(std::make_pair(I->getName(), I));
Chris Lattner5a837de2004-08-04 07:44:58 +00001012 }
1013
Chris Lattner8166e6e2003-05-13 21:33:43 +00001014 // Insert all of the globals in src into the Dest module... without linking
1015 // initializers (which could refer to functions not yet mapped over).
Reid Spenceref9b9a72007-02-05 20:47:22 +00001016 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001017 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001018
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001019 // Link the functions together between the two modules, without doing function
1020 // bodies... this just adds external function prototypes to the Dest
1021 // function... We do this so that when we begin processing function bodies,
1022 // all of the global values that may be referenced are available in our
1023 // ValueMap.
Reid Spenceref9b9a72007-02-05 20:47:22 +00001024 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001025 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001026
Chris Lattner6cdf1972002-07-18 00:13:08 +00001027 // Update the initializers in the Dest module now that all globals that may
1028 // be referenced are in Dest.
Chris Lattner6cdf1972002-07-18 00:13:08 +00001029 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1030
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001031 // Link in the function bodies that are defined in the source module into the
1032 // DestModule. This consists basically of copying the function over and
1033 // fixing up references to values.
Chris Lattner79df7c02002-03-26 18:01:55 +00001034 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +00001035
Chris Lattner8166e6e2003-05-13 21:33:43 +00001036 // If there were any appending global variables, link them together now.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001037 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1038
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +00001039 // If there were any alias, link them now.
1040 if (LinkAlias(Dest, Src, ErrorMsg)) return true;
1041
Reid Spencer57a0efa2004-09-11 04:25:17 +00001042 // If the source library's module id is in the dependent library list of the
1043 // destination library, remove it since that module is now linked in.
1044 sys::Path modId;
Reid Spencerdd04df02005-07-07 23:21:43 +00001045 modId.set(Src->getModuleIdentifier());
Reid Spencer07adb282004-11-05 22:15:36 +00001046 if (!modId.isEmpty())
1047 Dest->removeLibrary(modId.getBasename());
Reid Spencer57a0efa2004-09-11 04:25:17 +00001048
Chris Lattner52f7e902001-10-13 07:03:50 +00001049 return false;
1050}
Vikram S. Adve9466f512001-10-28 21:38:02 +00001051
Reid Spencer567bc2c2004-05-25 08:52:20 +00001052// vim: sw=2