blob: 3db5b0927c305b46f6a2314e5b86d7958567bf82 [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner52f7e902001-10-13 07:03:50 +00009//
10// This file implements the LLVM module linker.
11//
12// Specifically, this:
Chris Lattner8d2de8a2001-10-15 03:12:52 +000013// * Merges global variables between the two modules
14// * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +000015// * Merges functions between two modules
Chris Lattner52f7e902001-10-13 07:03:50 +000016//
17//===----------------------------------------------------------------------===//
18
Reid Spencer7cc371a2004-11-14 23:27:04 +000019#include "llvm/Linker.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
Chris Lattner5c377c52001-10-14 23:29:15 +000022#include "llvm/Module.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000023#include "llvm/TypeSymbolTable.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000024#include "llvm/ValueSymbolTable.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000025#include "llvm/Instructions.h"
Chris Lattneradbc0b52003-11-20 18:23:14 +000026#include "llvm/Assembly/Writer.h"
Bill Wendling41edad72006-11-27 10:09:12 +000027#include "llvm/Support/Streams.h"
Reid Spencer57a0efa2004-09-11 04:25:17 +000028#include "llvm/System/Path.h"
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) {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000319 ValueMap[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());
Duncan Sandsdc024672007-11-27 13:23:08 +0000361 DestF->setParamAttrs(SrcF->getParamAttrs());
Gordon Henriksen194c90e2007-12-25 22:16:06 +0000362 if (SrcF->hasCollector())
363 DestF->setCollector(SrcF->getCollector());
Anton Korobeynikove20c8142008-03-07 18:32:18 +0000364 } else if (const GlobalVariable *SrcVar = dyn_cast<GlobalVariable>(SrcGV)) {
365 GlobalVariable *DestVar = cast<GlobalVariable>(DestGV);
366 DestVar->setThreadLocal(SrcVar->isThreadLocal());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000367 }
Chris Lattnerc0036282004-08-04 07:05:54 +0000368}
369
Chris Lattneraee38ea2004-12-03 22:18:41 +0000370/// GetLinkageResult - This analyzes the two global values and determines what
371/// the result will look like in the destination module. In particular, it
372/// computes the resultant linkage type, computes whether the global in the
373/// source should be copied over to the destination (replacing the existing
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000374/// one), and computes whether this linkage is an error or not. It also performs
375/// visibility checks: we cannot link together two symbols with different
376/// visibilities.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000377static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Chris Lattneraee38ea2004-12-03 22:18:41 +0000378 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
379 std::string *Err) {
380 assert((!Dest || !Src->hasInternalLinkage()) &&
381 "If Src has internal linkage, Dest shouldn't be set!");
382 if (!Dest) {
383 // Linking something to nothing.
384 LinkFromSrc = true;
385 LT = Src->getLinkage();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000386 } else if (Src->isDeclaration()) {
Anton Korobeynikov2b48ef02008-03-10 22:33:22 +0000387 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattneraee38ea2004-12-03 22:18:41 +0000388 // external globals, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000389 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000390 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000391 if (Dest->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000392 LinkFromSrc = true;
393 LT = Src->getLinkage();
394 }
Andrew Lenharth8753c442006-12-15 17:35:32 +0000395 } else if (Dest->hasExternalWeakLinkage()) {
396 //If the Dest is weak, use the source linkage
397 LinkFromSrc = true;
398 LT = Src->getLinkage();
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000399 } else {
400 LinkFromSrc = false;
401 LT = Dest->getLinkage();
402 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000403 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000404 // If Dest is external but Src is not:
405 LinkFromSrc = true;
406 LT = Src->getLinkage();
407 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
408 if (Src->getLinkage() != Dest->getLinkage())
409 return Error(Err, "Linking globals named '" + Src->getName() +
410 "': can only link appending global with another appending global!");
411 LinkFromSrc = true; // Special cased.
412 LT = Src->getLinkage();
413 } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage()) {
Reid Spencer619f0242007-02-04 04:43:17 +0000414 // At this point we know that Dest has LinkOnce, External*, Weak, or
415 // DLL* linkage.
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000416 if ((Dest->hasLinkOnceLinkage() && Src->hasWeakLinkage()) ||
417 Dest->hasExternalWeakLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000418 LinkFromSrc = true;
419 LT = Src->getLinkage();
420 } else {
421 LinkFromSrc = false;
422 LT = Dest->getLinkage();
423 }
424 } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000425 // At this point we know that Src has External* or DLL* linkage.
426 if (Src->hasExternalWeakLinkage()) {
427 LinkFromSrc = false;
428 LT = Dest->getLinkage();
429 } else {
430 LinkFromSrc = true;
431 LT = GlobalValue::ExternalLinkage;
432 }
Chris Lattneraee38ea2004-12-03 22:18:41 +0000433 } else {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000434 assert((Dest->hasExternalLinkage() ||
435 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000436 Dest->hasDLLExportLinkage() ||
437 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000438 (Src->hasExternalLinkage() ||
439 Src->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000440 Src->hasDLLExportLinkage() ||
441 Src->hasExternalWeakLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000442 "Unexpected linkage type!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000443 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattneraee38ea2004-12-03 22:18:41 +0000444 "': symbol multiply defined!");
445 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000446
447 // Check visibility
448 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattner97f8b092007-08-19 22:22:54 +0000449 if (!Src->isDeclaration() && !Dest->isDeclaration())
450 return Error(Err, "Linking globals named '" + Src->getName() +
451 "': symbols have different visibilities!");
Chris Lattneraee38ea2004-12-03 22:18:41 +0000452 return false;
453}
Chris Lattner5c377c52001-10-14 23:29:15 +0000454
455// LinkGlobals - Loop through the global variables in the src module and merge
Chris Lattner8166e6e2003-05-13 21:33:43 +0000456// them into the dest module.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000457static bool LinkGlobals(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000458 std::map<const Value*, Value*> &ValueMap,
Chris Lattner8166e6e2003-05-13 21:33:43 +0000459 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000460 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000461 // Loop over all of the globals in the src module, mapping them over as we go
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000462 for (Module::const_global_iterator I = Src->global_begin(), E = Src->global_end();
Chris Lattner11273152006-06-16 01:24:04 +0000463 I != E; ++I) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000464 const GlobalVariable *SGV = I;
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000465 GlobalValue *DGV = 0;
466
467 // Check to see if may have to link the global with the global
Reid Spenceref9b9a72007-02-05 20:47:22 +0000468 if (SGV->hasName() && !SGV->hasInternalLinkage()) {
469 DGV = Dest->getGlobalVariable(SGV->getName());
470 if (DGV && DGV->getType() != SGV->getType())
471 // If types don't agree due to opaque types, try to resolve them.
472 RecursiveResolveTypes(SGV->getType(), DGV->getType(),
473 &Dest->getTypeSymbolTable(), "");
474 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000475
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000476 // Check to see if may have to link the global with the alias
Anton Korobeynikovaeb09962008-03-10 22:35:31 +0000477 if (!DGV && SGV->hasName() && !SGV->hasInternalLinkage()) {
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000478 DGV = Dest->getNamedAlias(SGV->getName());
479 if (DGV && DGV->getType() != SGV->getType())
480 // If types don't agree due to opaque types, try to resolve them.
481 RecursiveResolveTypes(SGV->getType(), DGV->getType(),
482 &Dest->getTypeSymbolTable(), "");
483 }
484
Chris Lattneraee38ea2004-12-03 22:18:41 +0000485 if (DGV && DGV->hasInternalLinkage())
486 DGV = 0;
487
Dan Gohmanc3183292007-10-08 15:13:30 +0000488 assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
489 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) &&
Chris Lattner4ad02e72003-04-16 20:28:45 +0000490 "Global must either be external or have an initializer!");
491
Chris Lattnerb324bd72006-11-09 05:18:12 +0000492 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
493 bool LinkFromSrc = false;
Chris Lattneraee38ea2004-12-03 22:18:41 +0000494 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
495 return true;
Chris Lattner0fec08e2003-04-21 21:07:05 +0000496
Chris Lattneraee38ea2004-12-03 22:18:41 +0000497 if (!DGV) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000498 // No linking to be performed, simply create an identical version of the
499 // symbol over in the dest module... the initializer will be filled in
500 // later by LinkGlobalInits...
Chris Lattner2719bac2003-04-21 21:15:04 +0000501 GlobalVariable *NewDGV =
502 new GlobalVariable(SGV->getType()->getElementType(),
503 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Anton Korobeynikove20c8142008-03-07 18:32:18 +0000504 SGV->getName(), Dest);
Reid Spencer471feac2007-02-04 04:30:33 +0000505 // Propagate alignment, visibility and section info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000506 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000507
Chris Lattner2719bac2003-04-21 21:15:04 +0000508 // If the LLVM runtime renamed the global, but it is an externally visible
509 // symbol, DGV must be an existing global with internal linkage. Rename
510 // it.
Chris Lattnerc0036282004-08-04 07:05:54 +0000511 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
512 ForceRenaming(NewDGV, SGV->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000513
514 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000515 ValueMap[SGV] = NewDGV;
516
Chris Lattner8166e6e2003-05-13 21:33:43 +0000517 if (SGV->hasAppendingLinkage())
518 // Keep track that this is an appending variable...
519 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattneraee38ea2004-12-03 22:18:41 +0000520 } else if (DGV->hasAppendingLinkage()) {
Chris Lattner8166e6e2003-05-13 21:33:43 +0000521 // No linking is performed yet. Just insert a new copy of the global, and
522 // keep track of the fact that it is an appending variable in the
523 // AppendingVars map. The name is cleared out so that no linkage is
524 // performed.
525 GlobalVariable *NewDGV =
526 new GlobalVariable(SGV->getType()->getElementType(),
527 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Anton Korobeynikove20c8142008-03-07 18:32:18 +0000528 "", Dest);
Chris Lattner8166e6e2003-05-13 21:33:43 +0000529
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000530 // Set alignment allowing CopyGVAttributes merge it with alignment of SGV.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000531 NewDGV->setAlignment(DGV->getAlignment());
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000532 // Propagate alignment, section and visibility info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000533 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000534
Chris Lattner8166e6e2003-05-13 21:33:43 +0000535 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000536 ValueMap[SGV] = NewDGV;
Chris Lattner8166e6e2003-05-13 21:33:43 +0000537
538 // Keep track that this is an appending variable...
539 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000540 } else if (GlobalAlias *DGA = dyn_cast<GlobalAlias>(DGV)) {
541 // SGV is global, but DGV is alias. The only valid mapping is when SGV is
542 // external declaration, which is effectively a no-op. Also make sure
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000543 // linkage calculation was correct.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000544 if (SGV->isDeclaration() && !LinkFromSrc) {
545 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000546 ValueMap[SGV] = DGA;
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000547 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000548 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
549 "': symbol multiple defined");
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000550 } else if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000551 // Otherwise, perform the global-global mapping as instructed by
552 // GetLinkageResult.
Chris Lattneraee38ea2004-12-03 22:18:41 +0000553 if (LinkFromSrc) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000554 // Propagate alignment, section, and visibility info.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000555 CopyGVAttributes(DGVar, SGV);
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000556
557 // If the types don't match, and if we are to link from the source, nuke
558 // DGV and create a new one of the appropriate type.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000559 if (SGV->getType() != DGVar->getType()) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000560 GlobalVariable *NewDGV =
561 new GlobalVariable(SGV->getType()->getElementType(),
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000562 DGVar->isConstant(), DGVar->getLinkage(),
563 /*init*/0, DGVar->getName(), Dest);
564 CopyGVAttributes(NewDGV, DGVar);
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000565 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV,
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000566 DGVar->getType()));
567 // DGVar will conflict with NewDGV because they both had the same
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000568 // name. We must erase this now so ForceRenaming doesn't assert
569 // because DGV might not have internal linkage.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000570 DGVar->eraseFromParent();
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000571
572 // If the symbol table renamed the global, but it is an externally
573 // visible symbol, DGV must be an existing global with internal
574 // linkage. Rename it.
575 if (NewDGV->getName() != SGV->getName() &&
576 !NewDGV->hasInternalLinkage())
577 ForceRenaming(NewDGV, SGV->getName());
578
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000579 DGVar = NewDGV;
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000580 }
581
Chris Lattneraee38ea2004-12-03 22:18:41 +0000582 // Inherit const as appropriate
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000583 DGVar->setConstant(SGV->isConstant());
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000584
585 // Set initializer to zero, so we can link the stuff later
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000586 DGVar->setInitializer(0);
Chris Lattneraee38ea2004-12-03 22:18:41 +0000587 } else {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000588 // Special case for const propagation
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000589 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
590 DGVar->setConstant(true);
Chris Lattneraee38ea2004-12-03 22:18:41 +0000591 }
592
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000593 // Set calculated linkage
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000594 DGVar->setLinkage(NewLinkage);
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000595
596 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000597 ValueMap[SGV] = ConstantExpr::getBitCast(DGVar, SGV->getType());
Chris Lattner5c377c52001-10-14 23:29:15 +0000598 }
599 }
600 return false;
601}
602
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000603static GlobalValue::LinkageTypes
604CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) {
605 if (SGV->hasExternalLinkage() || DGV->hasExternalLinkage())
606 return GlobalValue::ExternalLinkage;
607 else if (SGV->hasWeakLinkage() || DGV->hasWeakLinkage())
608 return GlobalValue::WeakLinkage;
609 else {
610 assert(SGV->hasInternalLinkage() && DGV->hasInternalLinkage() &&
611 "Unexpected linkage type");
612 return GlobalValue::InternalLinkage;
613 }
614}
615
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000616// LinkAlias - Loop through the alias in the src module and link them into the
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000617// dest module. We're assuming, that all functions/global variables were already
618// linked in.
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000619static bool LinkAlias(Module *Dest, const Module *Src,
620 std::map<const Value*, Value*> &ValueMap,
621 std::string *Err) {
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000622 // Loop over all alias in the src module
623 for (Module::const_alias_iterator I = Src->alias_begin(),
624 E = Src->alias_end(); I != E; ++I) {
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000625 const GlobalAlias *SGA = I;
626 const GlobalValue *SAliasee = SGA->getAliasedGlobal();
627 GlobalAlias *NewGA = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000628
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000629 // Globals were already linked, thus we can just query ValueMap for variant
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000630 // of SAliasee in Dest.
Ted Kremenek58d5e052008-03-09 18:32:50 +0000631 std::map<const Value*,Value*>::const_iterator VMI = ValueMap.find(SAliasee);
632 assert(VMI != ValueMap.end() && "Aliasee not linked");
633 GlobalValue* DAliasee = cast<GlobalValue>(VMI->second);
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000634 GlobalValue* DGV = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000635
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000636 // Try to find something 'similar' to SGA in destination module.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000637 if (!DGV && !SGA->hasInternalLinkage()) {
638 DGV = Dest->getNamedAlias(SGA->getName());
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000639
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000640 // If types don't agree due to opaque types, try to resolve them.
641 if (DGV && DGV->getType() != SGA->getType())
642 if (RecursiveResolveTypes(SGA->getType(), DGV->getType(),
643 &Dest->getTypeSymbolTable(), ""))
644 return Error(Err, "Alias Collision on '" + SGA->getName()+
645 "': aliases have different types");
646 }
647
648 if (!DGV && !SGA->hasInternalLinkage()) {
649 DGV = Dest->getGlobalVariable(SGA->getName());
650
651 // If types don't agree due to opaque types, try to resolve them.
652 if (DGV && DGV->getType() != SGA->getType())
653 if (RecursiveResolveTypes(SGA->getType(), DGV->getType(),
654 &Dest->getTypeSymbolTable(), ""))
655 return Error(Err, "Alias Collision on '" + SGA->getName()+
656 "': aliases have different types");
657 }
658
659 if (!DGV && !SGA->hasInternalLinkage()) {
660 DGV = Dest->getFunction(SGA->getName());
661
662 // If types don't agree due to opaque types, try to resolve them.
663 if (DGV && DGV->getType() != SGA->getType())
664 if (RecursiveResolveTypes(SGA->getType(), DGV->getType(),
665 &Dest->getTypeSymbolTable(), ""))
666 return Error(Err, "Alias Collision on '" + SGA->getName()+
667 "': aliases have different types");
668 }
669
670 // No linking to be performed on internal stuff.
671 if (DGV && DGV->hasInternalLinkage())
672 DGV = NULL;
673
674 if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) {
675 // Types are known to be the same, check whether aliasees equal. As
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000676 // globals are already linked we just need query ValueMap to find the
677 // mapping.
678 if (DAliasee == DGA->getAliasedGlobal()) {
679 // This is just two copies of the same alias. Propagate linkage, if
680 // necessary.
681 DGA->setLinkage(CalculateAliasLinkage(SGA, DGA));
682
683 NewGA = DGA;
684 // Proceed to 'common' steps
685 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000686 return Error(Err, "Alias Collision on '" + SGA->getName()+
687 "': aliases have different aliasees");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000688 } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) {
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000689 // The only allowed way is to link alias with external declaration.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000690 if (DGVar->isDeclaration()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000691 // But only if aliasee is global too...
692 if (!isa<GlobalVariable>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000693 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
694 "': aliasee is not global variable");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000695
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000696 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
697 SGA->getName(), DAliasee, Dest);
698 CopyGVAttributes(NewGA, SGA);
699
700 // Any uses of DGV need to change to NewGA, with cast, if needed.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000701 if (SGA->getType() != DGVar->getType())
702 DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
703 DGVar->getType()));
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000704 else
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000705 DGVar->replaceAllUsesWith(NewGA);
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000706
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000707 // DGVar will conflict with NewGA because they both had the same
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000708 // name. We must erase this now so ForceRenaming doesn't assert
709 // because DGV might not have internal linkage.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000710 DGVar->eraseFromParent();
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000711
712 // Proceed to 'common' steps
713 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000714 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
715 "': symbol multiple defined");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000716 } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) {
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000717 // The only allowed way is to link alias with external declaration.
718 if (DF->isDeclaration()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000719 // But only if aliasee is function too...
720 if (!isa<Function>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000721 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
722 "': aliasee is not function");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000723
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000724 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
725 SGA->getName(), DAliasee, Dest);
726 CopyGVAttributes(NewGA, SGA);
727
728 // Any uses of DF need to change to NewGA, with cast, if needed.
729 if (SGA->getType() != DF->getType())
730 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
731 DF->getType()));
732 else
733 DF->replaceAllUsesWith(NewGA);
734
735 // DF will conflict with NewGA because they both had the same
736 // name. We must erase this now so ForceRenaming doesn't assert
737 // because DF might not have internal linkage.
738 DF->eraseFromParent();
739
740 // Proceed to 'common' steps
741 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000742 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
743 "': symbol multiple defined");
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000744 } else {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000745 // No linking to be performed, simply create an identical version of the
746 // alias over in the dest module...
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000747
748 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
749 SGA->getName(), DAliasee, Dest);
750 CopyGVAttributes(NewGA, SGA);
751
752 // Proceed to 'common' steps
753 }
754
755 assert(NewGA && "No alias was created in destination module!");
756
Anton Korobeynikovb8cdaf72008-03-10 22:36:35 +0000757 // If the symbol table renamed the alias, but it is an externally visible
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000758 // symbol, DGA must be an global value with internal linkage. Rename it.
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000759 if (NewGA->getName() != SGA->getName() &&
760 !NewGA->hasInternalLinkage())
761 ForceRenaming(NewGA, SGA->getName());
762
763 // Remember this mapping so uses in the source module get remapped
764 // later by RemapOperand.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000765 ValueMap[SGA] = NewGA;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000766 }
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000767
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000768 return false;
769}
770
Chris Lattner5c377c52001-10-14 23:29:15 +0000771
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000772// LinkGlobalInits - Update the initializers in the Dest module now that all
773// globals that may be referenced are in Dest.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000774static bool LinkGlobalInits(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000775 std::map<const Value*, Value*> &ValueMap,
776 std::string *Err) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000777
778 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner11273152006-06-16 01:24:04 +0000779 for (Module::const_global_iterator I = Src->global_begin(),
780 E = Src->global_end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000781 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000782
783 if (SGV->hasInitializer()) { // Only process initialized GV's
784 // Figure out what the initializer looks like in the dest module...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000785 Constant *SInit =
Chris Lattner0033baf2004-11-16 17:12:38 +0000786 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000787
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +0000788 GlobalVariable *DGV =
789 cast<GlobalVariable>(ValueMap[SGV]->stripPointerCasts());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000790 if (DGV->hasInitializer()) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000791 if (SGV->hasExternalLinkage()) {
792 if (DGV->getInitializer() != SInit)
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000793 return Error(Err, "Global Variable Collision on '" + SGV->getName() +
794 "': global variables have different initializers");
Chris Lattner72ac148d2003-10-16 18:29:00 +0000795 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage()) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000796 // Nothing is required, mapped values will take the new global
797 // automatically.
Chris Lattner57cb9882004-02-17 21:56:04 +0000798 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage()) {
799 // Nothing is required, mapped values will take the new global
800 // automatically.
Chris Lattner4ad02e72003-04-16 20:28:45 +0000801 } else if (DGV->hasAppendingLinkage()) {
802 assert(0 && "Appending linkage unimplemented!");
803 } else {
804 assert(0 && "Unknown linkage!");
805 }
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000806 } else {
807 // Copy the initializer over now...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000808 DGV->setInitializer(SInit);
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000809 }
810 }
811 }
812 return false;
813}
Chris Lattner5c377c52001-10-14 23:29:15 +0000814
Chris Lattner79df7c02002-03-26 18:01:55 +0000815// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000816// without doing function bodies... this just adds external function prototypes
817// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000818//
Chris Lattner79df7c02002-03-26 18:01:55 +0000819static bool LinkFunctionProtos(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000820 std::map<const Value*, Value*> &ValueMap,
821 std::string *Err) {
Reid Spencer619f0242007-02-04 04:43:17 +0000822 // Loop over all of the functions in the src module, mapping them over
Chris Lattner5c377c52001-10-14 23:29:15 +0000823 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000824 const Function *SF = I; // SrcFunction
Chris Lattner4ad02e72003-04-16 20:28:45 +0000825 Function *DF = 0;
Reid Spencer8bef0372007-02-04 04:29:21 +0000826 if (SF->hasName() && !SF->hasInternalLinkage()) {
827 // Check to see if may have to link the function.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000828 DF = Dest->getFunction(SF->getName());
829 if (DF && SF->getType() != DF->getType())
830 // If types don't agree because of opaque, try to resolve them
831 RecursiveResolveTypes(SF->getType(), DF->getType(),
832 &Dest->getTypeSymbolTable(), "");
Reid Spencer8bef0372007-02-04 04:29:21 +0000833 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000834
835 // Check visibility
836 if (DF && !DF->hasInternalLinkage() &&
Chris Lattner97f8b092007-08-19 22:22:54 +0000837 SF->getVisibility() != DF->getVisibility()) {
838 // If one is a prototype, ignore its visibility. Prototypes are always
839 // overridden by the definition.
840 if (!SF->isDeclaration() && !DF->isDeclaration())
841 return Error(Err, "Linking functions named '" + SF->getName() +
842 "': symbols have different visibilities!");
843 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000844
Anton Korobeynikov650d5052007-12-27 23:21:57 +0000845 if (DF && DF->hasInternalLinkage())
846 DF = NULL;
847
Reid Spenceref9b9a72007-02-05 20:47:22 +0000848 if (DF && DF->getType() != SF->getType()) {
849 if (DF->isDeclaration() && !SF->isDeclaration()) {
850 // We have a definition of the same name but different type in the
851 // source module. Copy the prototype to the destination and replace
852 // uses of the destination's prototype with the new prototype.
Gabor Greif051a9502008-04-06 20:25:17 +0000853 Function *NewDF = Function::Create(SF->getFunctionType(), SF->getLinkage(),
854 SF->getName(), Dest);
Reid Spenceref9b9a72007-02-05 20:47:22 +0000855 CopyGVAttributes(NewDF, SF);
Chris Lattner5c377c52001-10-14 23:29:15 +0000856
Reid Spenceref9b9a72007-02-05 20:47:22 +0000857 // Any uses of DF need to change to NewDF, with cast
858 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType()));
859
860 // DF will conflict with NewDF because they both had the same. We must
861 // erase this now so ForceRenaming doesn't assert because DF might
862 // not have internal linkage.
863 DF->eraseFromParent();
864
865 // If the symbol table renamed the function, but it is an externally
866 // visible symbol, DF must be an existing function with internal
867 // linkage. Rename it.
868 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
869 ForceRenaming(NewDF, SF->getName());
870
871 // Remember this mapping so uses in the source module get remapped
872 // later by RemapOperand.
873 ValueMap[SF] = NewDF;
874 } else if (SF->isDeclaration()) {
875 // We have two functions of the same name but different type and the
876 // source is a declaration while the destination is not. Any use of
877 // the source must be mapped to the destination, with a cast.
878 ValueMap[SF] = ConstantExpr::getBitCast(DF, SF->getType());
879 } else {
880 // We have two functions of the same name but different types and they
881 // are both definitions. This is an error.
882 return Error(Err, "Function '" + DF->getName() + "' defined as both '" +
883 ToStr(SF->getFunctionType(), Src) + "' and '" +
884 ToStr(DF->getFunctionType(), Dest) + "'");
885 }
886 } else if (!DF || SF->hasInternalLinkage() || DF->hasInternalLinkage()) {
Chris Lattner0fec08e2003-04-21 21:07:05 +0000887 // Function does not already exist, simply insert an function signature
Chris Lattner97f8b092007-08-19 22:22:54 +0000888 // identical to SF into the dest module.
Gabor Greif051a9502008-04-06 20:25:17 +0000889 Function *NewDF = Function::Create(SF->getFunctionType(), SF->getLinkage(),
890 SF->getName(), Dest);
Reid Spenceref9b9a72007-02-05 20:47:22 +0000891 CopyGVAttributes(NewDF, SF);
Chris Lattner2719bac2003-04-21 21:15:04 +0000892
893 // If the LLVM runtime renamed the function, but it is an externally
894 // visible symbol, DF must be an existing function with internal linkage.
895 // Rename it.
Chris Lattnerc0036282004-08-04 07:05:54 +0000896 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
Chris Lattner82b5b212004-08-04 22:29:05 +0000897 ForceRenaming(NewDF, SF->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000898
899 // ... and remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000900 ValueMap[SF] = NewDF;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000901 } else if (SF->isDeclaration()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000902 // If SF is a declaration or if both SF & DF are declarations, just link
903 // the declarations, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000904 if (SF->hasDLLImportLinkage()) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000905 if (DF->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000906 ValueMap.insert(std::make_pair(SF, DF));
907 DF->setLinkage(SF->getLinkage());
908 }
909 } else {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000910 ValueMap[SF] = DF;
Reid Spencer8bef0372007-02-04 04:29:21 +0000911 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000912 } else if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000913 // If DF is external but SF is not...
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000914 // Link the external functions, update linkage qualifiers
915 ValueMap.insert(std::make_pair(SF, DF));
916 DF->setLinkage(SF->getLinkage());
Chris Lattner97f8b092007-08-19 22:22:54 +0000917 // Visibility of prototype is overridden by vis of definition.
918 DF->setVisibility(SF->getVisibility());
Chris Lattner35956552003-10-27 16:39:39 +0000919 } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000920 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000921 ValueMap[SF] = DF;
Chris Lattner72ac148d2003-10-16 18:29:00 +0000922
Chris Lattner35956552003-10-27 16:39:39 +0000923 // Linkonce+Weak = Weak
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000924 // *+External Weak = *
925 if ((DF->hasLinkOnceLinkage() && SF->hasWeakLinkage()) ||
926 DF->hasExternalWeakLinkage())
Chris Lattner35956552003-10-27 16:39:39 +0000927 DF->setLinkage(SF->getLinkage());
Chris Lattner35956552003-10-27 16:39:39 +0000928 } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000929 // At this point we know that SF has LinkOnce or External* linkage.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000930 ValueMap[SF] = DF;
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000931 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage())
932 // Don't inherit linkonce & external weak linkage
Chris Lattner72ac148d2003-10-16 18:29:00 +0000933 DF->setLinkage(SF->getLinkage());
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000934 } else if (SF->getLinkage() != DF->getLinkage()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000935 return Error(Err, "Functions named '" + SF->getName() +
936 "' have different linkage specifiers!");
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000937 } else if (SF->hasExternalLinkage()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000938 // The function is defined identically in both modules!!
Misha Brukmanf976c852005-04-21 22:55:34 +0000939 return Error(Err, "Function '" +
940 ToStr(SF->getFunctionType(), Src) + "':\"" +
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000941 SF->getName() + "\" - Function is already defined!");
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000942 } else {
943 assert(0 && "Unknown linkage configuration found!");
Chris Lattner5c377c52001-10-14 23:29:15 +0000944 }
945 }
946 return false;
947}
948
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000949// LinkFunctionBody - Copy the source function over into the dest function and
950// fix up references to values. At this point we know that Dest is an external
951// function, and that Src is not.
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000952static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spenceref9b9a72007-02-05 20:47:22 +0000953 std::map<const Value*, Value*> &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000954 std::string *Err) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000955 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Chris Lattner5c377c52001-10-14 23:29:15 +0000956
Chris Lattner0033baf2004-11-16 17:12:38 +0000957 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000958 Function::arg_iterator DI = Dest->arg_begin();
959 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000960 I != E; ++I, ++DI) {
Owen Anderson6bc41e82008-04-14 17:38:21 +0000961 DI->setName(I->getName()); // Copy the name information over...
Chris Lattner5c377c52001-10-14 23:29:15 +0000962
963 // Add a mapping to our local map
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000964 ValueMap[I] = DI;
Chris Lattner5c377c52001-10-14 23:29:15 +0000965 }
966
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000967 // Splice the body of the source function into the dest function.
968 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Chris Lattner5c377c52001-10-14 23:29:15 +0000969
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000970 // At this point, all of the instructions and values of the function are now
971 // copied over. The only problem is that they are still referencing values in
972 // the Source function as operands. Loop through all of the operands of the
973 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +0000974 //
Chris Lattner18961502002-06-25 16:12:52 +0000975 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
976 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
977 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +0000978 OI != OE; ++OI)
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000979 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Reid Spenceref9b9a72007-02-05 20:47:22 +0000980 *OI = RemapOperand(*OI, ValueMap);
Chris Lattner0033baf2004-11-16 17:12:38 +0000981
982 // There is no need to map the arguments anymore.
Chris Lattner11273152006-06-16 01:24:04 +0000983 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
984 I != E; ++I)
Reid Spenceref9b9a72007-02-05 20:47:22 +0000985 ValueMap.erase(I);
Chris Lattner5c377c52001-10-14 23:29:15 +0000986
987 return false;
988}
989
990
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000991// LinkFunctionBodies - Link in the function bodies that are defined in the
992// source module into the DestModule. This consists basically of copying the
993// function over and fixing up references to values.
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000994static bool LinkFunctionBodies(Module *Dest, Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000995 std::map<const Value*, Value*> &ValueMap,
996 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000997
Reid Spencer8bef0372007-02-04 04:29:21 +0000998 // Loop over all of the functions in the src module, mapping them over as we
999 // go
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001000 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencer619f0242007-02-04 04:43:17 +00001001 if (!SF->isDeclaration()) { // No body if function is external
Chris Lattner18961502002-06-25 16:12:52 +00001002 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +00001003
Chris Lattner18961502002-06-25 16:12:52 +00001004 // DF not external SF external?
Reid Spenceref9b9a72007-02-05 20:47:22 +00001005 if (DF->isDeclaration())
Chris Lattner35956552003-10-27 16:39:39 +00001006 // Only provide the function body if there isn't one already.
1007 if (LinkFunctionBody(DF, SF, ValueMap, Err))
1008 return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +00001009 }
Chris Lattner5c377c52001-10-14 23:29:15 +00001010 }
1011 return false;
1012}
1013
Chris Lattner8166e6e2003-05-13 21:33:43 +00001014// LinkAppendingVars - If there were any appending global variables, link them
1015// together now. Return true on error.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001016static bool LinkAppendingVars(Module *M,
1017 std::multimap<std::string, GlobalVariable *> &AppendingVars,
1018 std::string *ErrorMsg) {
1019 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukmanf976c852005-04-21 22:55:34 +00001020
Chris Lattner8166e6e2003-05-13 21:33:43 +00001021 // Loop over the multimap of appending vars, processing any variables with the
1022 // same name, forming a new appending global variable with both of the
1023 // initializers merged together, then rewrite references to the old variables
1024 // and delete them.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001025 std::vector<Constant*> Inits;
1026 while (AppendingVars.size() > 1) {
1027 // Get the first two elements in the map...
1028 std::multimap<std::string,
1029 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
1030
1031 // If the first two elements are for different names, there is no pair...
1032 // Otherwise there is a pair, so link them together...
1033 if (First->first == Second->first) {
1034 GlobalVariable *G1 = First->second, *G2 = Second->second;
1035 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
1036 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukmanf976c852005-04-21 22:55:34 +00001037
Chris Lattner8166e6e2003-05-13 21:33:43 +00001038 // Check to see that they two arrays agree on type...
1039 if (T1->getElementType() != T2->getElementType())
1040 return Error(ErrorMsg,
1041 "Appending variables with different element types need to be linked!");
1042 if (G1->isConstant() != G2->isConstant())
1043 return Error(ErrorMsg,
1044 "Appending variables linked with different const'ness!");
1045
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001046 if (G1->getAlignment() != G2->getAlignment())
1047 return Error(ErrorMsg,
1048 "Appending variables with different alignment need to be linked!");
1049
1050 if (G1->getVisibility() != G2->getVisibility())
1051 return Error(ErrorMsg,
1052 "Appending variables with different visibility need to be linked!");
1053
1054 if (G1->getSection() != G2->getSection())
1055 return Error(ErrorMsg,
1056 "Appending variables with different section name need to be linked!");
1057
Chris Lattner8166e6e2003-05-13 21:33:43 +00001058 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
1059 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
1060
Chris Lattnered74a4e2005-12-06 17:30:58 +00001061 G1->setName(""); // Clear G1's name in case of a conflict!
1062
Chris Lattner8166e6e2003-05-13 21:33:43 +00001063 // Create the new global variable...
1064 GlobalVariable *NG =
1065 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001066 /*init*/0, First->first, M, G1->isThreadLocal());
Chris Lattner8166e6e2003-05-13 21:33:43 +00001067
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001068 // Propagate alignment, visibility and section info.
1069 CopyGVAttributes(NG, G1);
1070
Chris Lattner8166e6e2003-05-13 21:33:43 +00001071 // Merge the initializer...
1072 Inits.reserve(NewSize);
Chris Lattnerde512b52004-02-15 05:55:15 +00001073 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
1074 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001075 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001076 } else {
1077 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
1078 Constant *CV = Constant::getNullValue(T1->getElementType());
1079 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1080 Inits.push_back(CV);
1081 }
1082 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
1083 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001084 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001085 } else {
1086 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
1087 Constant *CV = Constant::getNullValue(T2->getElementType());
1088 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1089 Inits.push_back(CV);
1090 }
Chris Lattner8166e6e2003-05-13 21:33:43 +00001091 NG->setInitializer(ConstantArray::get(NewType, Inits));
1092 Inits.clear();
1093
1094 // Replace any uses of the two global variables with uses of the new
1095 // global...
1096
1097 // FIXME: This should rewrite simple/straight-forward uses such as
1098 // getelementptr instructions to not use the Cast!
Reid Spencer4da49122006-12-12 05:05:00 +00001099 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
1100 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Chris Lattner8166e6e2003-05-13 21:33:43 +00001101
1102 // Remove the two globals from the module now...
1103 M->getGlobalList().erase(G1);
1104 M->getGlobalList().erase(G2);
1105
1106 // Put the new global into the AppendingVars map so that we can handle
1107 // linking of more than two vars...
1108 Second->second = NG;
1109 }
1110 AppendingVars.erase(First);
1111 }
1112
1113 return false;
1114}
Chris Lattner52f7e902001-10-13 07:03:50 +00001115
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001116static bool ResolveAliases(Module *Dest) {
1117 for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end();
Anton Korobeynikov52419572008-03-11 22:51:09 +00001118 I != E; ++I)
1119 if (const GlobalValue *GV = I->resolveAliasedGlobal())
1120 if (!GV->isDeclaration())
1121 I->replaceAllUsesWith(const_cast<GlobalValue*>(GV));
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001122
1123 return false;
1124}
Chris Lattner52f7e902001-10-13 07:03:50 +00001125
1126// LinkModules - This function links two modules together, with the resulting
1127// left module modified to be the composite of the two input modules. If an
1128// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +00001129// the problem. Upon failure, the Dest module could be in a modified state, and
1130// shouldn't be relied on to be consistent.
Misha Brukmanf976c852005-04-21 22:55:34 +00001131bool
Reid Spencer0ba9e212004-12-13 03:00:16 +00001132Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer57a0efa2004-09-11 04:25:17 +00001133 assert(Dest != 0 && "Invalid Destination module");
1134 assert(Src != 0 && "Invalid Source Module");
1135
Chris Lattnerc36357c2007-01-29 00:21:34 +00001136 if (Dest->getDataLayout().empty()) {
1137 if (!Src->getDataLayout().empty()) {
Chris Lattnerec9bfdc2007-01-29 02:18:13 +00001138 Dest->setDataLayout(Src->getDataLayout());
Chris Lattnerc36357c2007-01-29 00:21:34 +00001139 } else {
1140 std::string DataLayout;
Reid Spencer26f23852007-01-26 08:11:39 +00001141
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001142 if (Dest->getEndianness() == Module::AnyEndianness) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001143 if (Src->getEndianness() == Module::BigEndian)
1144 DataLayout.append("E");
1145 else if (Src->getEndianness() == Module::LittleEndian)
1146 DataLayout.append("e");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001147 }
1148
1149 if (Dest->getPointerSize() == Module::AnyPointerSize) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001150 if (Src->getPointerSize() == Module::Pointer64)
1151 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
1152 else if (Src->getPointerSize() == Module::Pointer32)
1153 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001154 }
Chris Lattnerc36357c2007-01-29 00:21:34 +00001155 Dest->setDataLayout(DataLayout);
1156 }
1157 }
1158
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001159 // Copy the target triple from the source to dest if the dest's is empty.
Chris Lattnerc36357c2007-01-29 00:21:34 +00001160 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattner152f19a2004-12-10 20:26:15 +00001161 Dest->setTargetTriple(Src->getTargetTriple());
Chris Lattnerc36357c2007-01-29 00:21:34 +00001162
1163 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
1164 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer26f23852007-01-26 08:11:39 +00001165 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattner152f19a2004-12-10 20:26:15 +00001166 if (!Src->getTargetTriple().empty() &&
1167 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlinge8156192006-12-07 01:30:32 +00001168 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukmanf976c852005-04-21 22:55:34 +00001169
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001170 // Append the module inline asm string.
Chris Lattner66316012006-01-24 04:14:29 +00001171 if (!Src->getModuleInlineAsm().empty()) {
1172 if (Dest->getModuleInlineAsm().empty())
1173 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001174 else
Chris Lattner66316012006-01-24 04:14:29 +00001175 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
1176 Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001177 }
1178
Reid Spencer719012d2004-11-25 09:29:44 +00001179 // Update the destination module's dependent libraries list with the libraries
Reid Spencer57a0efa2004-09-11 04:25:17 +00001180 // from the source module. There's no opportunity for duplicates here as the
1181 // Module ensures that duplicate insertions are discarded.
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001182 for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end();
1183 SI != SE; ++SI)
Reid Spencer57a0efa2004-09-11 04:25:17 +00001184 Dest->addLibrary(*SI);
Reid Spencer57a0efa2004-09-11 04:25:17 +00001185
Chris Lattner2c236f32001-11-03 05:18:24 +00001186 // LinkTypes - Go through the symbol table of the Src module and see if any
1187 // types are named in the src module that are not named in the Dst module.
1188 // Make sure there are no type name conflicts.
Reid Spencer619f0242007-02-04 04:43:17 +00001189 if (LinkTypes(Dest, Src, ErrorMsg))
1190 return true;
Chris Lattner2c236f32001-11-03 05:18:24 +00001191
Chris Lattner5c377c52001-10-14 23:29:15 +00001192 // ValueMap - Mapping of values from what they used to be in Src, to what they
1193 // are now in Dest.
Chris Lattner5c2d3352003-01-30 19:53:34 +00001194 std::map<const Value*, Value*> ValueMap;
Chris Lattner5c377c52001-10-14 23:29:15 +00001195
Chris Lattner8166e6e2003-05-13 21:33:43 +00001196 // AppendingVars - Keep track of global variables in the destination module
1197 // with appending linkage. After the module is linked together, they are
1198 // appended and the module is rewritten.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001199 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner11273152006-06-16 01:24:04 +00001200 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1201 I != E; ++I) {
Chris Lattner5a837de2004-08-04 07:44:58 +00001202 // Add all of the appending globals already in the Dest module to
1203 // AppendingVars.
Chris Lattnerf4146462003-05-14 12:11:51 +00001204 if (I->hasAppendingLinkage())
1205 AppendingVars.insert(std::make_pair(I->getName(), I));
Chris Lattner5a837de2004-08-04 07:44:58 +00001206 }
1207
Chris Lattner8166e6e2003-05-13 21:33:43 +00001208 // Insert all of the globals in src into the Dest module... without linking
1209 // initializers (which could refer to functions not yet mapped over).
Reid Spenceref9b9a72007-02-05 20:47:22 +00001210 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001211 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001212
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001213 // Link the functions together between the two modules, without doing function
1214 // bodies... this just adds external function prototypes to the Dest
1215 // function... We do this so that when we begin processing function bodies,
1216 // all of the global values that may be referenced are available in our
1217 // ValueMap.
Reid Spenceref9b9a72007-02-05 20:47:22 +00001218 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001219 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001220
Anton Korobeynikov4fb28732008-03-05 15:27:21 +00001221 // If there were any alias, link them now. We really need to do this now,
1222 // because all of the aliases that may be referenced need to be available in
1223 // ValueMap
1224 if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true;
1225
Chris Lattner6cdf1972002-07-18 00:13:08 +00001226 // Update the initializers in the Dest module now that all globals that may
1227 // be referenced are in Dest.
Chris Lattner6cdf1972002-07-18 00:13:08 +00001228 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1229
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001230 // Link in the function bodies that are defined in the source module into the
1231 // DestModule. This consists basically of copying the function over and
1232 // fixing up references to values.
Chris Lattner79df7c02002-03-26 18:01:55 +00001233 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +00001234
Chris Lattner8166e6e2003-05-13 21:33:43 +00001235 // If there were any appending global variables, link them together now.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001236 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1237
Anton Korobeynikov3db91912008-03-05 23:08:47 +00001238 // Resolve all uses of aliases with aliasees
1239 if (ResolveAliases(Dest)) return true;
1240
Reid Spencer57a0efa2004-09-11 04:25:17 +00001241 // If the source library's module id is in the dependent library list of the
1242 // destination library, remove it since that module is now linked in.
1243 sys::Path modId;
Reid Spencerdd04df02005-07-07 23:21:43 +00001244 modId.set(Src->getModuleIdentifier());
Reid Spencer07adb282004-11-05 22:15:36 +00001245 if (!modId.isEmpty())
1246 Dest->removeLibrary(modId.getBasename());
Reid Spencer57a0efa2004-09-11 04:25:17 +00001247
Chris Lattner52f7e902001-10-13 07:03:50 +00001248 return false;
1249}
Vikram S. Adve9466f512001-10-28 21:38:02 +00001250
Reid Spencer567bc2c2004-05-25 08:52:20 +00001251// vim: sw=2