blob: e36fbafc6faf2fbeb5b4b16d2c2263ed33828a76 [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.
John Criswell700867b2003-11-04 15:22:26 +000055//
56// Outputs:
57// DestST - The symbol table in which the new type should be placed.
58//
59// Return value:
60// true - There is an error and the types cannot yet be linked.
61// false - No errors.
Chris Lattner4c00e532003-05-15 16:30:55 +000062//
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000063static bool ResolveTypes(const Type *DestTy, const Type *SrcTy) {
Chris Lattnere76c57a2003-08-22 06:07:12 +000064 if (DestTy == SrcTy) return false; // If already equal, noop
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000065 assert(DestTy && SrcTy && "Can't handle null types");
Chris Lattnere76c57a2003-08-22 06:07:12 +000066
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000067 if (const OpaqueType *OT = dyn_cast<OpaqueType>(DestTy)) {
68 // Type _is_ in module, just opaque...
69 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(SrcTy);
70 } else if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) {
71 const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy);
72 } else {
73 return true; // Cannot link types... not-equal and neither is opaque.
Chris Lattner4c00e532003-05-15 16:30:55 +000074 }
75 return false;
76}
77
Chris Lattner43f4ba82003-08-22 19:12:55 +000078static const FunctionType *getFT(const PATypeHolder &TH) {
79 return cast<FunctionType>(TH.get());
80}
Chris Lattner9732be72003-08-22 20:16:48 +000081static const StructType *getST(const PATypeHolder &TH) {
Chris Lattner43f4ba82003-08-22 19:12:55 +000082 return cast<StructType>(TH.get());
83}
Chris Lattnere76c57a2003-08-22 06:07:12 +000084
85// RecursiveResolveTypes - This is just like ResolveTypes, except that it
86// recurses down into derived types, merging the used types if the parent types
87// are compatible.
Chris Lattnere3092c92003-08-23 21:25:54 +000088static bool RecursiveResolveTypesI(const PATypeHolder &DestTy,
89 const PATypeHolder &SrcTy,
Chris Lattnere3092c92003-08-23 21:25:54 +000090 std::vector<std::pair<PATypeHolder, PATypeHolder> > &Pointers) {
Chris Lattner43f4ba82003-08-22 19:12:55 +000091 const Type *SrcTyT = SrcTy.get();
92 const Type *DestTyT = DestTy.get();
93 if (DestTyT == SrcTyT) return false; // If already equal, noop
Misha Brukmanf976c852005-04-21 22:55:34 +000094
Chris Lattnere76c57a2003-08-22 06:07:12 +000095 // If we found our opaque type, resolve it now!
Chris Lattner43f4ba82003-08-22 19:12:55 +000096 if (isa<OpaqueType>(DestTyT) || isa<OpaqueType>(SrcTyT))
Chris Lattnerbc1c82a2008-06-16 18:19:05 +000097 return ResolveTypes(DestTyT, SrcTyT);
Misha Brukmanf976c852005-04-21 22:55:34 +000098
Chris Lattnere76c57a2003-08-22 06:07:12 +000099 // Two types cannot be resolved together if they are of different primitive
100 // type. For example, we cannot resolve an int to a float.
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000101 if (DestTyT->getTypeID() != SrcTyT->getTypeID()) return true;
Chris Lattnere76c57a2003-08-22 06:07:12 +0000102
103 // Otherwise, resolve the used type used by this derived type...
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000104 switch (DestTyT->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000105 case Type::IntegerTyID: {
106 if (cast<IntegerType>(DestTyT)->getBitWidth() !=
107 cast<IntegerType>(SrcTyT)->getBitWidth())
108 return true;
109 return false;
110 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000111 case Type::FunctionTyID: {
Chris Lattner43f4ba82003-08-22 19:12:55 +0000112 if (cast<FunctionType>(DestTyT)->isVarArg() !=
Chris Lattner841e00b2003-08-28 16:42:50 +0000113 cast<FunctionType>(SrcTyT)->isVarArg() ||
114 cast<FunctionType>(DestTyT)->getNumContainedTypes() !=
115 cast<FunctionType>(SrcTyT)->getNumContainedTypes())
Chris Lattner43f4ba82003-08-22 19:12:55 +0000116 return true;
117 for (unsigned i = 0, e = getFT(DestTy)->getNumContainedTypes(); i != e; ++i)
Chris Lattnere3092c92003-08-23 21:25:54 +0000118 if (RecursiveResolveTypesI(getFT(DestTy)->getContainedType(i),
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000119 getFT(SrcTy)->getContainedType(i), Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000120 return true;
121 return false;
122 }
123 case Type::StructTyID: {
Misha Brukmanf976c852005-04-21 22:55:34 +0000124 if (getST(DestTy)->getNumContainedTypes() !=
Chris Lattner43f4ba82003-08-22 19:12:55 +0000125 getST(SrcTy)->getNumContainedTypes()) return 1;
126 for (unsigned i = 0, e = getST(DestTy)->getNumContainedTypes(); i != e; ++i)
Chris Lattnere3092c92003-08-23 21:25:54 +0000127 if (RecursiveResolveTypesI(getST(DestTy)->getContainedType(i),
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000128 getST(SrcTy)->getContainedType(i), Pointers))
Chris Lattnere76c57a2003-08-22 06:07:12 +0000129 return true;
130 return false;
131 }
132 case Type::ArrayTyID: {
Chris Lattner43f4ba82003-08-22 19:12:55 +0000133 const ArrayType *DAT = cast<ArrayType>(DestTy.get());
134 const ArrayType *SAT = cast<ArrayType>(SrcTy.get());
Chris Lattnere76c57a2003-08-22 06:07:12 +0000135 if (DAT->getNumElements() != SAT->getNumElements()) return true;
Chris Lattnere3092c92003-08-23 21:25:54 +0000136 return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(),
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000137 Pointers);
Chris Lattnere76c57a2003-08-22 06:07:12 +0000138 }
Chris Lattnere3092c92003-08-23 21:25:54 +0000139 case Type::PointerTyID: {
140 // If this is a pointer type, check to see if we have already seen it. If
141 // so, we are in a recursive branch. Cut off the search now. We cannot use
142 // an associative container for this search, because the type pointers (keys
143 // in the container) change whenever types get resolved...
Chris Lattnere3092c92003-08-23 21:25:54 +0000144 for (unsigned i = 0, e = Pointers.size(); i != e; ++i)
145 if (Pointers[i].first == DestTy)
146 return Pointers[i].second != SrcTy;
147
148 // Otherwise, add the current pointers to the vector to stop recursion on
149 // this pair.
150 Pointers.push_back(std::make_pair(DestTyT, SrcTyT));
151 bool Result =
152 RecursiveResolveTypesI(cast<PointerType>(DestTy.get())->getElementType(),
153 cast<PointerType>(SrcTy.get())->getElementType(),
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000154 Pointers);
Chris Lattnere3092c92003-08-23 21:25:54 +0000155 Pointers.pop_back();
156 return Result;
157 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000158 default: assert(0 && "Unexpected type!"); return true;
Misha Brukmanf976c852005-04-21 22:55:34 +0000159 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000160}
161
Chris Lattnere3092c92003-08-23 21:25:54 +0000162static bool RecursiveResolveTypes(const PATypeHolder &DestTy,
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000163 const PATypeHolder &SrcTy) {
Chris Lattnere3092c92003-08-23 21:25:54 +0000164 std::vector<std::pair<PATypeHolder, PATypeHolder> > PointerTypes;
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000165 return RecursiveResolveTypesI(DestTy, SrcTy, PointerTypes);
Chris Lattnere3092c92003-08-23 21:25:54 +0000166}
167
Chris Lattnere76c57a2003-08-22 06:07:12 +0000168
Chris Lattner2c236f32001-11-03 05:18:24 +0000169// LinkTypes - Go through the symbol table of the Src module and see if any
170// types are named in the src module that are not named in the Dst module.
171// Make sure there are no type name conflicts.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000172static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000173 TypeSymbolTable *DestST = &Dest->getTypeSymbolTable();
174 const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable();
Chris Lattner2c236f32001-11-03 05:18:24 +0000175
176 // Look for a type plane for Type's...
Reid Spencer78d033e2007-01-06 07:24:44 +0000177 TypeSymbolTable::const_iterator TI = SrcST->begin();
178 TypeSymbolTable::const_iterator TE = SrcST->end();
Reid Spencer567bc2c2004-05-25 08:52:20 +0000179 if (TI == TE) return false; // No named types, do nothing.
Chris Lattner2c236f32001-11-03 05:18:24 +0000180
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000181 // Some types cannot be resolved immediately because they depend on other
182 // types being resolved to each other first. This contains a list of types we
183 // are waiting to recheck.
Chris Lattner4c00e532003-05-15 16:30:55 +0000184 std::vector<std::string> DelayedTypesToResolve;
185
Reid Spencer567bc2c2004-05-25 08:52:20 +0000186 for ( ; TI != TE; ++TI ) {
187 const std::string &Name = TI->first;
Reid Spencerc28a2242004-07-04 11:52:49 +0000188 const Type *RHS = TI->second;
Chris Lattner2c236f32001-11-03 05:18:24 +0000189
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000190 // Check to see if this type name is already in the dest module.
Reid Spencer78d033e2007-01-06 07:24:44 +0000191 Type *Entry = DestST->lookup(Name);
Chris Lattner2f6bb2b2003-01-30 20:53:43 +0000192
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000193 // If the name is just in the source module, bring it over to the dest.
194 if (Entry == 0) {
195 if (!Name.empty())
196 DestST->insert(Name, const_cast<Type*>(RHS));
197 } else if (ResolveTypes(Entry, RHS)) {
Chris Lattner4c00e532003-05-15 16:30:55 +0000198 // They look different, save the types 'till later to resolve.
199 DelayedTypesToResolve.push_back(Name);
Chris Lattner2c236f32001-11-03 05:18:24 +0000200 }
201 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000202
203 // Iteratively resolve types while we can...
204 while (!DelayedTypesToResolve.empty()) {
205 // Loop over all of the types, attempting to resolve them if possible...
206 unsigned OldSize = DelayedTypesToResolve.size();
207
Chris Lattnere76c57a2003-08-22 06:07:12 +0000208 // Try direct resolution by name...
Chris Lattner4c00e532003-05-15 16:30:55 +0000209 for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) {
210 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer78d033e2007-01-06 07:24:44 +0000211 Type *T1 = SrcST->lookup(Name);
212 Type *T2 = DestST->lookup(Name);
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000213 if (!ResolveTypes(T2, T1)) {
Chris Lattner4c00e532003-05-15 16:30:55 +0000214 // We are making progress!
215 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
216 --i;
217 }
218 }
219
220 // Did we not eliminate any types?
221 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000222 // Attempt to resolve subelements of types. This allows us to merge these
223 // two types: { int* } and { opaque* }
Chris Lattner4c00e532003-05-15 16:30:55 +0000224 for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) {
225 const std::string &Name = DelayedTypesToResolve[i];
Reid Spencer78d033e2007-01-06 07:24:44 +0000226 PATypeHolder T1(SrcST->lookup(Name));
227 PATypeHolder T2(DestST->lookup(Name));
Chris Lattnere76c57a2003-08-22 06:07:12 +0000228
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000229 if (!RecursiveResolveTypes(T2, T1)) {
Chris Lattnere76c57a2003-08-22 06:07:12 +0000230 // We are making progress!
231 DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i);
Misha Brukmanf976c852005-04-21 22:55:34 +0000232
Chris Lattnere76c57a2003-08-22 06:07:12 +0000233 // Go back to the main loop, perhaps we can resolve directly by name
234 // now...
235 break;
236 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000237 }
Chris Lattnere76c57a2003-08-22 06:07:12 +0000238
239 // If we STILL cannot resolve the types, then there is something wrong.
Chris Lattnere76c57a2003-08-22 06:07:12 +0000240 if (DelayedTypesToResolve.size() == OldSize) {
Chris Lattneraeb18ce2003-10-21 22:46:38 +0000241 // Remove the symbol name from the destination.
242 DelayedTypesToResolve.pop_back();
Chris Lattnere76c57a2003-08-22 06:07:12 +0000243 }
Chris Lattner4c00e532003-05-15 16:30:55 +0000244 }
245 }
246
247
Chris Lattner2c236f32001-11-03 05:18:24 +0000248 return false;
249}
250
Chris Lattner5c2d3352003-01-30 19:53:34 +0000251static void PrintMap(const std::map<const Value*, Value*> &M) {
252 for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end();
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000253 I != E; ++I) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000254 cerr << " Fr: " << (void*)I->first << " ";
Chris Lattner87182ae2002-04-07 22:31:23 +0000255 I->first->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000256 cerr << " To: " << (void*)I->second << " ";
Chris Lattner87182ae2002-04-07 22:31:23 +0000257 I->second->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000258 cerr << "\n";
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000259 }
260}
261
262
Reid Spencer619f0242007-02-04 04:43:17 +0000263// RemapOperand - Use ValueMap to convert constants from one module to another.
Chris Lattner5c2d3352003-01-30 19:53:34 +0000264static Value *RemapOperand(const Value *In,
Chris Lattner0033baf2004-11-16 17:12:38 +0000265 std::map<const Value*, Value*> &ValueMap) {
266 std::map<const Value*,Value*>::const_iterator I = ValueMap.find(In);
Reid Spenceref9b9a72007-02-05 20:47:22 +0000267 if (I != ValueMap.end())
268 return I->second;
Chris Lattner5c377c52001-10-14 23:29:15 +0000269
Reid Spencer619f0242007-02-04 04:43:17 +0000270 // Check to see if it's a constant that we are interested in transforming.
Chris Lattner620fd682006-06-01 19:14:22 +0000271 Value *Result = 0;
Chris Lattner18961502002-06-25 16:12:52 +0000272 if (const Constant *CPV = dyn_cast<Constant>(In)) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000273 if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) ||
Reid Spencera54b7cb2007-01-12 07:05:14 +0000274 isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV))
Chris Lattner0033baf2004-11-16 17:12:38 +0000275 return const_cast<Constant*>(CPV); // Simple constants stay identical.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000276
Chris Lattner18961502002-06-25 16:12:52 +0000277 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000278 std::vector<Constant*> Operands(CPA->getNumOperands());
279 for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i)
Chris Lattner0033baf2004-11-16 17:12:38 +0000280 Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap));
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000281 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
Chris Lattner18961502002-06-25 16:12:52 +0000282 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +0000283 std::vector<Constant*> Operands(CPS->getNumOperands());
284 for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i)
Chris Lattner0033baf2004-11-16 17:12:38 +0000285 Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap));
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000286 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
Chris Lattnerb976e662004-10-16 18:08:06 +0000287 } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) {
Chris Lattner18961502002-06-25 16:12:52 +0000288 Result = const_cast<Constant*>(CPV);
Reid Spencer9d6565a2007-02-15 02:26:10 +0000289 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CPV)) {
Chris Lattnera88eb922006-01-19 23:15:58 +0000290 std::vector<Constant*> Operands(CP->getNumOperands());
291 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
292 Operands[i] = cast<Constant>(RemapOperand(CP->getOperand(i), ValueMap));
Reid Spencer9d6565a2007-02-15 02:26:10 +0000293 Result = ConstantVector::get(Operands);
Chris Lattner6cdf1972002-07-18 00:13:08 +0000294 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
Chris Lattner27d67212006-07-14 22:21:31 +0000295 std::vector<Constant*> Ops;
296 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
297 Ops.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),ValueMap)));
298 Result = CE->getWithOperands(Ops);
Reid Spencer619f0242007-02-04 04:43:17 +0000299 } else if (isa<GlobalValue>(CPV)) {
300 assert(0 && "Unmapped global?");
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000301 } else {
302 assert(0 && "Unknown type of derived type constant value!");
303 }
Chris Lattner620fd682006-06-01 19:14:22 +0000304 } else if (isa<InlineAsm>(In)) {
305 Result = const_cast<Value*>(In);
306 }
307
Reid Spencer619f0242007-02-04 04:43:17 +0000308 // Cache the mapping in our local map structure
Chris Lattner620fd682006-06-01 19:14:22 +0000309 if (Result) {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000310 ValueMap[In] = Result;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000311 return Result;
312 }
Reid Spencer8bef0372007-02-04 04:29:21 +0000313
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000314
Bill Wendlinge8156192006-12-07 01:30:32 +0000315 cerr << "LinkModules ValueMap: \n";
Chris Lattner0033baf2004-11-16 17:12:38 +0000316 PrintMap(ValueMap);
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000317
Bill Wendlinge8156192006-12-07 01:30:32 +0000318 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000319 assert(0 && "Couldn't remap value!");
320 return 0;
Chris Lattner5c377c52001-10-14 23:29:15 +0000321}
322
Reid Spencer8bef0372007-02-04 04:29:21 +0000323/// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict
324/// in the symbol table. This is good for all clients except for us. Go
325/// through the trouble to force this back.
Chris Lattnerc0036282004-08-04 07:05:54 +0000326static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
327 assert(GV->getName() != Name && "Can't force rename to self");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000328 ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable();
Chris Lattnerc0036282004-08-04 07:05:54 +0000329
330 // If there is a conflict, rename the conflict.
Chris Lattner33f29492007-02-11 00:39:38 +0000331 if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000332 assert(ConflictGV->hasInternalLinkage() &&
333 "Not conflicting with a static global, should link instead!");
Chris Lattner33f29492007-02-11 00:39:38 +0000334 GV->takeName(ConflictGV);
335 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Reid Spenceref9b9a72007-02-05 20:47:22 +0000336 assert(ConflictGV->getName() != Name && "ForceRenaming didn't work");
Chris Lattner33f29492007-02-11 00:39:38 +0000337 } else {
338 GV->setName(Name); // Force the name back
Reid Spenceref9b9a72007-02-05 20:47:22 +0000339 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000340}
Reid Spencer8bef0372007-02-04 04:29:21 +0000341
Reid Spenceref9b9a72007-02-05 20:47:22 +0000342/// CopyGVAttributes - copy additional attributes (those not needed to construct
343/// a GlobalValue) from the SrcGV to the DestGV.
344static void CopyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sands28c3cff2008-05-26 19:58:59 +0000345 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
346 unsigned Alignment = std::max(DestGV->getAlignment(), SrcGV->getAlignment());
347 DestGV->copyAttributesFrom(SrcGV);
348 DestGV->setAlignment(Alignment);
Chris Lattnerc0036282004-08-04 07:05:54 +0000349}
350
Chris Lattneraee38ea2004-12-03 22:18:41 +0000351/// GetLinkageResult - This analyzes the two global values and determines what
352/// the result will look like in the destination module. In particular, it
353/// computes the resultant linkage type, computes whether the global in the
354/// source should be copied over to the destination (replacing the existing
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000355/// one), and computes whether this linkage is an error or not. It also performs
356/// visibility checks: we cannot link together two symbols with different
357/// visibilities.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000358static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Chris Lattneraee38ea2004-12-03 22:18:41 +0000359 GlobalValue::LinkageTypes &LT, bool &LinkFromSrc,
360 std::string *Err) {
361 assert((!Dest || !Src->hasInternalLinkage()) &&
362 "If Src has internal linkage, Dest shouldn't be set!");
363 if (!Dest) {
364 // Linking something to nothing.
365 LinkFromSrc = true;
366 LT = Src->getLinkage();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000367 } else if (Src->isDeclaration()) {
Anton Korobeynikov2b48ef02008-03-10 22:33:22 +0000368 // If Src is external or if both Src & Dest are external.. Just link the
Chris Lattneraee38ea2004-12-03 22:18:41 +0000369 // external globals, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000370 if (Src->hasDLLImportLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000371 // If one of GVs has DLLImport linkage, result should be dllimport'ed.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000372 if (Dest->isDeclaration()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000373 LinkFromSrc = true;
374 LT = Src->getLinkage();
375 }
Andrew Lenharth8753c442006-12-15 17:35:32 +0000376 } else if (Dest->hasExternalWeakLinkage()) {
377 //If the Dest is weak, use the source linkage
378 LinkFromSrc = true;
379 LT = Src->getLinkage();
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000380 } else {
381 LinkFromSrc = false;
382 LT = Dest->getLinkage();
383 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000384 } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000385 // If Dest is external but Src is not:
386 LinkFromSrc = true;
387 LT = Src->getLinkage();
388 } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) {
389 if (Src->getLinkage() != Dest->getLinkage())
390 return Error(Err, "Linking globals named '" + Src->getName() +
391 "': can only link appending global with another appending global!");
392 LinkFromSrc = true; // Special cased.
393 LT = Src->getLinkage();
Dale Johannesenaafce772008-05-14 20:12:51 +0000394 } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage() ||
395 Src->hasCommonLinkage()) {
396 // At this point we know that Dest has LinkOnce, External*, Weak, Common,
397 // or DLL* linkage.
398 if ((Dest->hasLinkOnceLinkage() &&
399 (Src->hasWeakLinkage() || Src->hasCommonLinkage())) ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000400 Dest->hasExternalWeakLinkage()) {
Chris Lattneraee38ea2004-12-03 22:18:41 +0000401 LinkFromSrc = true;
402 LT = Src->getLinkage();
403 } else {
404 LinkFromSrc = false;
405 LT = Dest->getLinkage();
406 }
Dale Johannesenaafce772008-05-14 20:12:51 +0000407 } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage() ||
408 Dest->hasCommonLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000409 // At this point we know that Src has External* or DLL* linkage.
410 if (Src->hasExternalWeakLinkage()) {
411 LinkFromSrc = false;
412 LT = Dest->getLinkage();
413 } else {
414 LinkFromSrc = true;
415 LT = GlobalValue::ExternalLinkage;
416 }
Chris Lattneraee38ea2004-12-03 22:18:41 +0000417 } else {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000418 assert((Dest->hasExternalLinkage() ||
419 Dest->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000420 Dest->hasDLLExportLinkage() ||
421 Dest->hasExternalWeakLinkage()) &&
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000422 (Src->hasExternalLinkage() ||
423 Src->hasDLLImportLinkage() ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000424 Src->hasDLLExportLinkage() ||
425 Src->hasExternalWeakLinkage()) &&
Chris Lattneraee38ea2004-12-03 22:18:41 +0000426 "Unexpected linkage type!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000427 return Error(Err, "Linking globals named '" + Src->getName() +
Chris Lattneraee38ea2004-12-03 22:18:41 +0000428 "': symbol multiply defined!");
429 }
Anton Korobeynikov9cd3ccf2007-04-29 20:56:48 +0000430
431 // Check visibility
432 if (Dest && Src->getVisibility() != Dest->getVisibility())
Chris Lattner97f8b092007-08-19 22:22:54 +0000433 if (!Src->isDeclaration() && !Dest->isDeclaration())
434 return Error(Err, "Linking globals named '" + Src->getName() +
435 "': symbols have different visibilities!");
Chris Lattneraee38ea2004-12-03 22:18:41 +0000436 return false;
437}
Chris Lattner5c377c52001-10-14 23:29:15 +0000438
439// LinkGlobals - Loop through the global variables in the src module and merge
Chris Lattner8166e6e2003-05-13 21:33:43 +0000440// them into the dest module.
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000441static bool LinkGlobals(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000442 std::map<const Value*, Value*> &ValueMap,
Chris Lattner8166e6e2003-05-13 21:33:43 +0000443 std::multimap<std::string, GlobalVariable *> &AppendingVars,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000444 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000445 // Loop over all of the globals in the src module, mapping them over as we go
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000446 for (Module::const_global_iterator I = Src->global_begin(), E = Src->global_end();
Chris Lattner11273152006-06-16 01:24:04 +0000447 I != E; ++I) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000448 const GlobalVariable *SGV = I;
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000449 GlobalValue *DGV = 0;
450
451 // Check to see if may have to link the global with the global
Reid Spenceref9b9a72007-02-05 20:47:22 +0000452 if (SGV->hasName() && !SGV->hasInternalLinkage()) {
453 DGV = Dest->getGlobalVariable(SGV->getName());
454 if (DGV && DGV->getType() != SGV->getType())
455 // If types don't agree due to opaque types, try to resolve them.
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000456 RecursiveResolveTypes(SGV->getType(), DGV->getType());
Reid Spenceref9b9a72007-02-05 20:47:22 +0000457 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000458
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000459 // Check to see if may have to link the global with the alias
Anton Korobeynikovaeb09962008-03-10 22:35:31 +0000460 if (!DGV && SGV->hasName() && !SGV->hasInternalLinkage()) {
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000461 DGV = Dest->getNamedAlias(SGV->getName());
462 if (DGV && DGV->getType() != SGV->getType())
463 // If types don't agree due to opaque types, try to resolve them.
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000464 RecursiveResolveTypes(SGV->getType(), DGV->getType());
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000465 }
466
Chris Lattneraee38ea2004-12-03 22:18:41 +0000467 if (DGV && DGV->hasInternalLinkage())
468 DGV = 0;
469
Dan Gohmanc3183292007-10-08 15:13:30 +0000470 assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() ||
471 SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) &&
Chris Lattner4ad02e72003-04-16 20:28:45 +0000472 "Global must either be external or have an initializer!");
473
Chris Lattnerb324bd72006-11-09 05:18:12 +0000474 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
475 bool LinkFromSrc = false;
Chris Lattneraee38ea2004-12-03 22:18:41 +0000476 if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err))
477 return true;
Chris Lattner0fec08e2003-04-21 21:07:05 +0000478
Chris Lattneraee38ea2004-12-03 22:18:41 +0000479 if (!DGV) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000480 // No linking to be performed, simply create an identical version of the
481 // symbol over in the dest module... the initializer will be filled in
482 // later by LinkGlobalInits...
Chris Lattner2719bac2003-04-21 21:15:04 +0000483 GlobalVariable *NewDGV =
484 new GlobalVariable(SGV->getType()->getElementType(),
485 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Anton Korobeynikove20c8142008-03-07 18:32:18 +0000486 SGV->getName(), Dest);
Reid Spencer471feac2007-02-04 04:30:33 +0000487 // Propagate alignment, visibility and section info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000488 CopyGVAttributes(NewDGV, SGV);
Andrew Lenharth5dfbaf12007-02-01 17:12:54 +0000489
Chris Lattner2719bac2003-04-21 21:15:04 +0000490 // If the LLVM runtime renamed the global, but it is an externally visible
491 // symbol, DGV must be an existing global with internal linkage. Rename
492 // it.
Chris Lattnerc0036282004-08-04 07:05:54 +0000493 if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage())
494 ForceRenaming(NewDGV, SGV->getName());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000495
496 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000497 ValueMap[SGV] = NewDGV;
498
Chris Lattner8166e6e2003-05-13 21:33:43 +0000499 if (SGV->hasAppendingLinkage())
500 // Keep track that this is an appending variable...
501 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Chris Lattneraee38ea2004-12-03 22:18:41 +0000502 } else if (DGV->hasAppendingLinkage()) {
Chris Lattner8166e6e2003-05-13 21:33:43 +0000503 // No linking is performed yet. Just insert a new copy of the global, and
504 // keep track of the fact that it is an appending variable in the
505 // AppendingVars map. The name is cleared out so that no linkage is
506 // performed.
507 GlobalVariable *NewDGV =
508 new GlobalVariable(SGV->getType()->getElementType(),
509 SGV->isConstant(), SGV->getLinkage(), /*init*/0,
Anton Korobeynikove20c8142008-03-07 18:32:18 +0000510 "", Dest);
Chris Lattner8166e6e2003-05-13 21:33:43 +0000511
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000512 // Set alignment allowing CopyGVAttributes merge it with alignment of SGV.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000513 NewDGV->setAlignment(DGV->getAlignment());
Anton Korobeynikov75c79152008-03-07 18:34:50 +0000514 // Propagate alignment, section and visibility info.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000515 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...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000518 ValueMap[SGV] = NewDGV;
Chris Lattner8166e6e2003-05-13 21:33:43 +0000519
520 // Keep track that this is an appending variable...
521 AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV));
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000522 } else if (GlobalAlias *DGA = dyn_cast<GlobalAlias>(DGV)) {
523 // SGV is global, but DGV is alias. The only valid mapping is when SGV is
524 // external declaration, which is effectively a no-op. Also make sure
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000525 // linkage calculation was correct.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000526 if (SGV->isDeclaration() && !LinkFromSrc) {
527 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000528 ValueMap[SGV] = DGA;
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000529 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000530 return Error(Err, "Global-Alias Collision on '" + SGV->getName() +
531 "': symbol multiple defined");
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000532 } else if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000533 // Otherwise, perform the global-global mapping as instructed by
534 // GetLinkageResult.
Chris Lattneraee38ea2004-12-03 22:18:41 +0000535 if (LinkFromSrc) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000536 // Propagate alignment, section, and visibility info.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000537 CopyGVAttributes(DGVar, SGV);
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000538
539 // If the types don't match, and if we are to link from the source, nuke
540 // DGV and create a new one of the appropriate type.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000541 if (SGV->getType() != DGVar->getType()) {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000542 GlobalVariable *NewDGV =
543 new GlobalVariable(SGV->getType()->getElementType(),
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000544 DGVar->isConstant(), DGVar->getLinkage(),
545 /*init*/0, DGVar->getName(), Dest);
546 CopyGVAttributes(NewDGV, DGVar);
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000547 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV,
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000548 DGVar->getType()));
549 // DGVar will conflict with NewDGV because they both had the same
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000550 // name. We must erase this now so ForceRenaming doesn't assert
551 // because DGV might not have internal linkage.
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000552 DGVar->eraseFromParent();
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000553
554 // If the symbol table renamed the global, but it is an externally
555 // visible symbol, DGV must be an existing global with internal
556 // linkage. Rename it.
557 if (NewDGV->getName() != SGV->getName() &&
558 !NewDGV->hasInternalLinkage())
559 ForceRenaming(NewDGV, SGV->getName());
560
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000561 DGVar = NewDGV;
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000562 }
563
Chris Lattneraee38ea2004-12-03 22:18:41 +0000564 // Inherit const as appropriate
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000565 DGVar->setConstant(SGV->isConstant());
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000566
567 // Set initializer to zero, so we can link the stuff later
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000568 DGVar->setInitializer(0);
Chris Lattneraee38ea2004-12-03 22:18:41 +0000569 } else {
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000570 // Special case for const propagation
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000571 if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant())
572 DGVar->setConstant(true);
Chris Lattneraee38ea2004-12-03 22:18:41 +0000573 }
574
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000575 // Set calculated linkage
Anton Korobeynikov01f69392008-03-10 22:34:28 +0000576 DGVar->setLinkage(NewLinkage);
Anton Korobeynikov968e39a2008-03-10 22:33:53 +0000577
578 // Make sure to remember this mapping...
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000579 ValueMap[SGV] = ConstantExpr::getBitCast(DGVar, SGV->getType());
Chris Lattner5c377c52001-10-14 23:29:15 +0000580 }
581 }
582 return false;
583}
584
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000585static GlobalValue::LinkageTypes
586CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) {
587 if (SGV->hasExternalLinkage() || DGV->hasExternalLinkage())
588 return GlobalValue::ExternalLinkage;
589 else if (SGV->hasWeakLinkage() || DGV->hasWeakLinkage())
590 return GlobalValue::WeakLinkage;
591 else {
592 assert(SGV->hasInternalLinkage() && DGV->hasInternalLinkage() &&
593 "Unexpected linkage type");
594 return GlobalValue::InternalLinkage;
595 }
596}
597
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000598// LinkAlias - Loop through the alias in the src module and link them into the
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000599// dest module. We're assuming, that all functions/global variables were already
600// linked in.
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000601static bool LinkAlias(Module *Dest, const Module *Src,
602 std::map<const Value*, Value*> &ValueMap,
603 std::string *Err) {
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000604 // Loop over all alias in the src module
605 for (Module::const_alias_iterator I = Src->alias_begin(),
606 E = Src->alias_end(); I != E; ++I) {
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000607 const GlobalAlias *SGA = I;
608 const GlobalValue *SAliasee = SGA->getAliasedGlobal();
609 GlobalAlias *NewGA = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000610
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000611 // Globals were already linked, thus we can just query ValueMap for variant
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000612 // of SAliasee in Dest.
Ted Kremenek58d5e052008-03-09 18:32:50 +0000613 std::map<const Value*,Value*>::const_iterator VMI = ValueMap.find(SAliasee);
614 assert(VMI != ValueMap.end() && "Aliasee not linked");
615 GlobalValue* DAliasee = cast<GlobalValue>(VMI->second);
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000616 GlobalValue* DGV = NULL;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000617
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000618 // Try to find something 'similar' to SGA in destination module.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000619 if (!DGV && !SGA->hasInternalLinkage()) {
620 DGV = Dest->getNamedAlias(SGA->getName());
Anton Korobeynikov4fb28732008-03-05 15:27:21 +0000621
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000622 // If types don't agree due to opaque types, try to resolve them.
623 if (DGV && DGV->getType() != SGA->getType())
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000624 if (RecursiveResolveTypes(SGA->getType(), DGV->getType()))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000625 return Error(Err, "Alias Collision on '" + SGA->getName()+
626 "': aliases have different types");
627 }
628
629 if (!DGV && !SGA->hasInternalLinkage()) {
630 DGV = Dest->getGlobalVariable(SGA->getName());
631
632 // If types don't agree due to opaque types, try to resolve them.
633 if (DGV && DGV->getType() != SGA->getType())
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000634 if (RecursiveResolveTypes(SGA->getType(), DGV->getType()))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000635 return Error(Err, "Alias Collision on '" + SGA->getName()+
636 "': aliases have different types");
637 }
638
639 if (!DGV && !SGA->hasInternalLinkage()) {
640 DGV = Dest->getFunction(SGA->getName());
641
642 // If types don't agree due to opaque types, try to resolve them.
643 if (DGV && DGV->getType() != SGA->getType())
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000644 if (RecursiveResolveTypes(SGA->getType(), DGV->getType()))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000645 return Error(Err, "Alias Collision on '" + SGA->getName()+
646 "': aliases have different types");
647 }
648
649 // No linking to be performed on internal stuff.
650 if (DGV && DGV->hasInternalLinkage())
651 DGV = NULL;
652
653 if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) {
654 // Types are known to be the same, check whether aliasees equal. As
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000655 // globals are already linked we just need query ValueMap to find the
656 // mapping.
657 if (DAliasee == DGA->getAliasedGlobal()) {
658 // This is just two copies of the same alias. Propagate linkage, if
659 // necessary.
660 DGA->setLinkage(CalculateAliasLinkage(SGA, DGA));
661
662 NewGA = DGA;
663 // Proceed to 'common' steps
664 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000665 return Error(Err, "Alias Collision on '" + SGA->getName()+
666 "': aliases have different aliasees");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000667 } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) {
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000668 // The only allowed way is to link alias with external declaration.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000669 if (DGVar->isDeclaration()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000670 // But only if aliasee is global too...
671 if (!isa<GlobalVariable>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000672 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
673 "': aliasee is not global variable");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000674
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000675 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
676 SGA->getName(), DAliasee, Dest);
677 CopyGVAttributes(NewGA, SGA);
678
679 // Any uses of DGV need to change to NewGA, with cast, if needed.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000680 if (SGA->getType() != DGVar->getType())
681 DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
682 DGVar->getType()));
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000683 else
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000684 DGVar->replaceAllUsesWith(NewGA);
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000685
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000686 // DGVar will conflict with NewGA because they both had the same
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000687 // name. We must erase this now so ForceRenaming doesn't assert
688 // because DGV might not have internal linkage.
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000689 DGVar->eraseFromParent();
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000690
691 // Proceed to 'common' steps
692 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000693 return Error(Err, "Global-Alias Collision on '" + SGA->getName() +
694 "': symbol multiple defined");
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000695 } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) {
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000696 // The only allowed way is to link alias with external declaration.
697 if (DF->isDeclaration()) {
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000698 // But only if aliasee is function too...
699 if (!isa<Function>(DAliasee))
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000700 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
701 "': aliasee is not function");
Anton Korobeynikoved61c0b2008-03-10 22:36:53 +0000702
Anton Korobeynikovb5a4bd82008-03-05 23:08:16 +0000703 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
704 SGA->getName(), DAliasee, Dest);
705 CopyGVAttributes(NewGA, SGA);
706
707 // Any uses of DF need to change to NewGA, with cast, if needed.
708 if (SGA->getType() != DF->getType())
709 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA,
710 DF->getType()));
711 else
712 DF->replaceAllUsesWith(NewGA);
713
714 // DF will conflict with NewGA because they both had the same
715 // name. We must erase this now so ForceRenaming doesn't assert
716 // because DF might not have internal linkage.
717 DF->eraseFromParent();
718
719 // Proceed to 'common' steps
720 } else
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000721 return Error(Err, "Function-Alias Collision on '" + SGA->getName() +
722 "': symbol multiple defined");
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000723 } else {
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000724 // No linking to be performed, simply create an identical version of the
725 // alias over in the dest module...
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000726
727 NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(),
728 SGA->getName(), DAliasee, Dest);
729 CopyGVAttributes(NewGA, SGA);
730
731 // Proceed to 'common' steps
732 }
733
734 assert(NewGA && "No alias was created in destination module!");
735
Anton Korobeynikovb8cdaf72008-03-10 22:36:35 +0000736 // If the symbol table renamed the alias, but it is an externally visible
Anton Korobeynikovcaa8ae82008-05-10 14:41:43 +0000737 // symbol, DGA must be an global value with internal linkage. Rename it.
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000738 if (NewGA->getName() != SGA->getName() &&
739 !NewGA->hasInternalLinkage())
740 ForceRenaming(NewGA, SGA->getName());
741
742 // Remember this mapping so uses in the source module get remapped
743 // later by RemapOperand.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000744 ValueMap[SGA] = NewGA;
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000745 }
Anton Korobeynikov58887bc2008-03-05 22:22:46 +0000746
Lauro Ramos Venancio31ed0fb2007-06-28 19:02:54 +0000747 return false;
748}
749
Chris Lattner5c377c52001-10-14 23:29:15 +0000750
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000751// LinkGlobalInits - Update the initializers in the Dest module now that all
752// globals that may be referenced are in Dest.
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000753static bool LinkGlobalInits(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000754 std::map<const Value*, Value*> &ValueMap,
755 std::string *Err) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000756
757 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattner11273152006-06-16 01:24:04 +0000758 for (Module::const_global_iterator I = Src->global_begin(),
759 E = Src->global_end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000760 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000761
762 if (SGV->hasInitializer()) { // Only process initialized GV's
763 // Figure out what the initializer looks like in the dest module...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000764 Constant *SInit =
Chris Lattner0033baf2004-11-16 17:12:38 +0000765 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000766
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +0000767 GlobalVariable *DGV =
768 cast<GlobalVariable>(ValueMap[SGV]->stripPointerCasts());
Chris Lattner4ad02e72003-04-16 20:28:45 +0000769 if (DGV->hasInitializer()) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000770 if (SGV->hasExternalLinkage()) {
771 if (DGV->getInitializer() != SInit)
Anton Korobeynikov1438b9d2008-03-10 22:34:46 +0000772 return Error(Err, "Global Variable Collision on '" + SGV->getName() +
773 "': global variables have different initializers");
Dale Johannesenaafce772008-05-14 20:12:51 +0000774 } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage() ||
775 DGV->hasCommonLinkage()) {
Chris Lattner4ad02e72003-04-16 20:28:45 +0000776 // Nothing is required, mapped values will take the new global
777 // automatically.
Dale Johannesenaafce772008-05-14 20:12:51 +0000778 } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage() ||
779 SGV->hasCommonLinkage()) {
Chris Lattner57cb9882004-02-17 21:56:04 +0000780 // Nothing is required, mapped values will take the new global
781 // automatically.
Chris Lattner4ad02e72003-04-16 20:28:45 +0000782 } else if (DGV->hasAppendingLinkage()) {
783 assert(0 && "Appending linkage unimplemented!");
784 } else {
785 assert(0 && "Unknown linkage!");
786 }
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000787 } else {
788 // Copy the initializer over now...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000789 DGV->setInitializer(SInit);
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000790 }
791 }
792 }
793 return false;
794}
Chris Lattner5c377c52001-10-14 23:29:15 +0000795
Chris Lattner79df7c02002-03-26 18:01:55 +0000796// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000797// without doing function bodies... this just adds external function prototypes
798// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000799//
Chris Lattner79df7c02002-03-26 18:01:55 +0000800static bool LinkFunctionProtos(Module *Dest, const Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000801 std::map<const Value*, Value*> &ValueMap,
802 std::string *Err) {
Reid Spencer619f0242007-02-04 04:43:17 +0000803 // Loop over all of the functions in the src module, mapping them over
Chris Lattner5c377c52001-10-14 23:29:15 +0000804 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000805 const Function *SF = I; // SrcFunction
Chris Lattner82468492008-06-09 07:36:11 +0000806
Chris Lattner4ad02e72003-04-16 20:28:45 +0000807 Function *DF = 0;
Chris Lattner82468492008-06-09 07:36:11 +0000808
809 // If this function is internal or has no name, it doesn't participate in
810 // linkage.
Reid Spencer8bef0372007-02-04 04:29:21 +0000811 if (SF->hasName() && !SF->hasInternalLinkage()) {
812 // Check to see if may have to link the function.
Reid Spenceref9b9a72007-02-05 20:47:22 +0000813 DF = Dest->getFunction(SF->getName());
Chris Lattner82468492008-06-09 07:36:11 +0000814 if (DF && DF->hasInternalLinkage())
815 DF = 0;
Reid Spencer8bef0372007-02-04 04:29:21 +0000816 }
Chris Lattnerbc3d1c72008-06-09 07:25:28 +0000817
Chris Lattner82468492008-06-09 07:36:11 +0000818 // If there is no linkage to be performed, just bring over SF without
819 // modifying it.
820 if (DF == 0) {
821 // Function does not already exist, simply insert an function signature
822 // identical to SF into the dest module.
823 Function *NewDF = Function::Create(SF->getFunctionType(),
824 SF->getLinkage(),
825 SF->getName(), Dest);
826 CopyGVAttributes(NewDF, SF);
827
828 // If the LLVM runtime renamed the function, but it is an externally
829 // visible symbol, DF must be an existing function with internal linkage.
830 // Rename it.
831 if (!NewDF->hasInternalLinkage() && NewDF->getName() != SF->getName())
832 ForceRenaming(NewDF, SF->getName());
833
834 // ... and remember this mapping...
835 ValueMap[SF] = NewDF;
836 continue;
837 }
838
839
840 // If types don't agree because of opaque, try to resolve them.
841 if (SF->getType() != DF->getType())
Chris Lattnerbc1c82a2008-06-16 18:19:05 +0000842 RecursiveResolveTypes(SF->getType(), DF->getType());
Chris Lattner82468492008-06-09 07:36:11 +0000843
844 // Check visibility, merging if a definition overrides a prototype.
845 if (SF->getVisibility() != DF->getVisibility()) {
Chris Lattner97f8b092007-08-19 22:22:54 +0000846 // If one is a prototype, ignore its visibility. Prototypes are always
847 // overridden by the definition.
848 if (!SF->isDeclaration() && !DF->isDeclaration())
849 return Error(Err, "Linking functions named '" + SF->getName() +
850 "': symbols have different visibilities!");
Chris Lattnerbc3d1c72008-06-09 07:25:28 +0000851
852 // Otherwise, replace the visibility of DF if DF is a prototype.
853 if (DF->isDeclaration())
854 DF->setVisibility(SF->getVisibility());
Chris Lattner97f8b092007-08-19 22:22:54 +0000855 }
Reid Spenceref9b9a72007-02-05 20:47:22 +0000856
Chris Lattner82468492008-06-09 07:36:11 +0000857 if (DF->getType() != SF->getType()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000858 if (DF->isDeclaration() && !SF->isDeclaration()) {
859 // We have a definition of the same name but different type in the
860 // source module. Copy the prototype to the destination and replace
861 // uses of the destination's prototype with the new prototype.
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000862 Function *NewDF = Function::Create(SF->getFunctionType(),
863 SF->getLinkage(),
Gabor Greif051a9502008-04-06 20:25:17 +0000864 SF->getName(), Dest);
Reid Spenceref9b9a72007-02-05 20:47:22 +0000865 CopyGVAttributes(NewDF, SF);
Chris Lattner5c377c52001-10-14 23:29:15 +0000866
Reid Spenceref9b9a72007-02-05 20:47:22 +0000867 // Any uses of DF need to change to NewDF, with cast
868 DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType()));
869
870 // DF will conflict with NewDF because they both had the same. We must
871 // erase this now so ForceRenaming doesn't assert because DF might
872 // not have internal linkage.
873 DF->eraseFromParent();
874
875 // If the symbol table renamed the function, but it is an externally
876 // visible symbol, DF must be an existing function with internal
877 // linkage. Rename it.
878 if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
879 ForceRenaming(NewDF, SF->getName());
880
881 // Remember this mapping so uses in the source module get remapped
882 // later by RemapOperand.
883 ValueMap[SF] = NewDF;
884 } else if (SF->isDeclaration()) {
885 // We have two functions of the same name but different type and the
886 // source is a declaration while the destination is not. Any use of
887 // the source must be mapped to the destination, with a cast.
888 ValueMap[SF] = ConstantExpr::getBitCast(DF, SF->getType());
889 } else {
890 // We have two functions of the same name but different types and they
891 // are both definitions. This is an error.
892 return Error(Err, "Function '" + DF->getName() + "' defined as both '" +
893 ToStr(SF->getFunctionType(), Src) + "' and '" +
894 ToStr(DF->getFunctionType(), Dest) + "'");
895 }
Chris Lattner82468492008-06-09 07:36:11 +0000896 continue;
897 }
898
899 if (SF->isDeclaration()) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000900 // If SF is a declaration or if both SF & DF are declarations, just link
901 // the declarations, we aren't adding anything.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000902 if (SF->hasDLLImportLinkage()) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000903 if (DF->isDeclaration()) {
Chris Lattner822143e2008-06-09 07:47:34 +0000904 ValueMap[SF] = DF;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000905 DF->setLinkage(SF->getLinkage());
Chris Lattner822143e2008-06-09 07:47:34 +0000906 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000907 } else {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000908 ValueMap[SF] = DF;
Chris Lattner822143e2008-06-09 07:47:34 +0000909 }
910 continue;
911 }
912
913 // If DF is external but SF is not, link the external functions, update
914 // linkage qualifiers.
915 if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) {
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000916 ValueMap.insert(std::make_pair(SF, DF));
917 DF->setLinkage(SF->getLinkage());
Chris Lattner822143e2008-06-09 07:47:34 +0000918 continue;
919 }
920
921 // At this point we know that DF has LinkOnce, Weak, or External* linkage.
922 if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage() ||
923 SF->hasCommonLinkage()) {
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000924 ValueMap[SF] = DF;
Chris Lattner72ac148d2003-10-16 18:29:00 +0000925
Chris Lattner35956552003-10-27 16:39:39 +0000926 // Linkonce+Weak = Weak
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000927 // *+External Weak = *
Dale Johannesenaafce772008-05-14 20:12:51 +0000928 if ((DF->hasLinkOnceLinkage() &&
929 (SF->hasWeakLinkage() || SF->hasCommonLinkage())) ||
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000930 DF->hasExternalWeakLinkage())
Chris Lattner35956552003-10-27 16:39:39 +0000931 DF->setLinkage(SF->getLinkage());
Chris Lattner822143e2008-06-09 07:47:34 +0000932 continue;
933 }
934
935 if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage() ||
936 DF->hasCommonLinkage()) {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000937 // At this point we know that SF has LinkOnce or External* linkage.
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000938 ValueMap[SF] = DF;
Chris Lattner822143e2008-06-09 07:47:34 +0000939
940 // If the source function has stronger linkage than the destination,
941 // its body and linkage should override ours.
942 if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage()) {
943 // Don't inherit linkonce & external weak linkage.
Chris Lattner72ac148d2003-10-16 18:29:00 +0000944 DF->setLinkage(SF->getLinkage());
Chris Lattner822143e2008-06-09 07:47:34 +0000945 DF->deleteBody();
946 }
947 continue;
948 }
949
950 if (SF->getLinkage() != DF->getLinkage())
951 return Error(Err, "Functions named '" + SF->getName() +
952 "' have different linkage specifiers!");
953
954 // The function is defined identically in both modules!
955 if (SF->hasExternalLinkage())
Misha Brukmanf976c852005-04-21 22:55:34 +0000956 return Error(Err, "Function '" +
957 ToStr(SF->getFunctionType(), Src) + "':\"" +
Chris Lattnerc2b97d42003-04-23 18:38:39 +0000958 SF->getName() + "\" - Function is already defined!");
Chris Lattner822143e2008-06-09 07:47:34 +0000959 assert(0 && "Unknown linkage configuration found!");
Chris Lattner5c377c52001-10-14 23:29:15 +0000960 }
961 return false;
962}
963
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000964// LinkFunctionBody - Copy the source function over into the dest function and
965// fix up references to values. At this point we know that Dest is an external
966// function, and that Src is not.
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000967static bool LinkFunctionBody(Function *Dest, Function *Src,
Reid Spenceref9b9a72007-02-05 20:47:22 +0000968 std::map<const Value*, Value*> &ValueMap,
Chris Lattner5c2d3352003-01-30 19:53:34 +0000969 std::string *Err) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000970 assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration());
Chris Lattner5c377c52001-10-14 23:29:15 +0000971
Chris Lattner0033baf2004-11-16 17:12:38 +0000972 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000973 Function::arg_iterator DI = Dest->arg_begin();
974 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Chris Lattner69da5cf2002-10-13 20:57:00 +0000975 I != E; ++I, ++DI) {
Owen Anderson6bc41e82008-04-14 17:38:21 +0000976 DI->setName(I->getName()); // Copy the name information over...
Chris Lattner5c377c52001-10-14 23:29:15 +0000977
978 // Add a mapping to our local map
Anton Korobeynikov817bf2a2008-03-10 22:36:08 +0000979 ValueMap[I] = DI;
Chris Lattner5c377c52001-10-14 23:29:15 +0000980 }
981
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000982 // Splice the body of the source function into the dest function.
983 Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList());
Chris Lattner5c377c52001-10-14 23:29:15 +0000984
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000985 // At this point, all of the instructions and values of the function are now
986 // copied over. The only problem is that they are still referencing values in
987 // the Source function as operands. Loop through all of the operands of the
988 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +0000989 //
Chris Lattner18961502002-06-25 16:12:52 +0000990 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
991 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
992 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +0000993 OI != OE; ++OI)
Chris Lattner4bbfbff2004-11-16 07:31:51 +0000994 if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI))
Reid Spenceref9b9a72007-02-05 20:47:22 +0000995 *OI = RemapOperand(*OI, ValueMap);
Chris Lattner0033baf2004-11-16 17:12:38 +0000996
997 // There is no need to map the arguments anymore.
Chris Lattner11273152006-06-16 01:24:04 +0000998 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
999 I != E; ++I)
Reid Spenceref9b9a72007-02-05 20:47:22 +00001000 ValueMap.erase(I);
Chris Lattner5c377c52001-10-14 23:29:15 +00001001
1002 return false;
1003}
1004
1005
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001006// LinkFunctionBodies - Link in the function bodies that are defined in the
1007// source module into the DestModule. This consists basically of copying the
1008// function over and fixing up references to values.
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001009static bool LinkFunctionBodies(Module *Dest, Module *Src,
Chris Lattner5c2d3352003-01-30 19:53:34 +00001010 std::map<const Value*, Value*> &ValueMap,
1011 std::string *Err) {
Chris Lattner5c377c52001-10-14 23:29:15 +00001012
Reid Spencer8bef0372007-02-04 04:29:21 +00001013 // Loop over all of the functions in the src module, mapping them over as we
1014 // go
Chris Lattner4bbfbff2004-11-16 07:31:51 +00001015 for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) {
Reid Spencer619f0242007-02-04 04:43:17 +00001016 if (!SF->isDeclaration()) { // No body if function is external
Chris Lattner18961502002-06-25 16:12:52 +00001017 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +00001018
Chris Lattner18961502002-06-25 16:12:52 +00001019 // DF not external SF external?
Reid Spenceref9b9a72007-02-05 20:47:22 +00001020 if (DF->isDeclaration())
Chris Lattner35956552003-10-27 16:39:39 +00001021 // Only provide the function body if there isn't one already.
1022 if (LinkFunctionBody(DF, SF, ValueMap, Err))
1023 return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +00001024 }
Chris Lattner5c377c52001-10-14 23:29:15 +00001025 }
1026 return false;
1027}
1028
Chris Lattner8166e6e2003-05-13 21:33:43 +00001029// LinkAppendingVars - If there were any appending global variables, link them
1030// together now. Return true on error.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001031static bool LinkAppendingVars(Module *M,
1032 std::multimap<std::string, GlobalVariable *> &AppendingVars,
1033 std::string *ErrorMsg) {
1034 if (AppendingVars.empty()) return false; // Nothing to do.
Misha Brukmanf976c852005-04-21 22:55:34 +00001035
Chris Lattner8166e6e2003-05-13 21:33:43 +00001036 // Loop over the multimap of appending vars, processing any variables with the
1037 // same name, forming a new appending global variable with both of the
1038 // initializers merged together, then rewrite references to the old variables
1039 // and delete them.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001040 std::vector<Constant*> Inits;
1041 while (AppendingVars.size() > 1) {
1042 // Get the first two elements in the map...
1043 std::multimap<std::string,
1044 GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++;
1045
1046 // If the first two elements are for different names, there is no pair...
1047 // Otherwise there is a pair, so link them together...
1048 if (First->first == Second->first) {
1049 GlobalVariable *G1 = First->second, *G2 = Second->second;
1050 const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType());
1051 const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType());
Misha Brukmanf976c852005-04-21 22:55:34 +00001052
Chris Lattner8166e6e2003-05-13 21:33:43 +00001053 // Check to see that they two arrays agree on type...
1054 if (T1->getElementType() != T2->getElementType())
1055 return Error(ErrorMsg,
1056 "Appending variables with different element types need to be linked!");
1057 if (G1->isConstant() != G2->isConstant())
1058 return Error(ErrorMsg,
1059 "Appending variables linked with different const'ness!");
1060
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001061 if (G1->getAlignment() != G2->getAlignment())
1062 return Error(ErrorMsg,
1063 "Appending variables with different alignment need to be linked!");
1064
1065 if (G1->getVisibility() != G2->getVisibility())
1066 return Error(ErrorMsg,
1067 "Appending variables with different visibility need to be linked!");
1068
1069 if (G1->getSection() != G2->getSection())
1070 return Error(ErrorMsg,
1071 "Appending variables with different section name need to be linked!");
1072
Chris Lattner8166e6e2003-05-13 21:33:43 +00001073 unsigned NewSize = T1->getNumElements() + T2->getNumElements();
1074 ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize);
1075
Chris Lattnered74a4e2005-12-06 17:30:58 +00001076 G1->setName(""); // Clear G1's name in case of a conflict!
1077
Chris Lattner8166e6e2003-05-13 21:33:43 +00001078 // Create the new global variable...
1079 GlobalVariable *NG =
1080 new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(),
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001081 /*init*/0, First->first, M, G1->isThreadLocal());
Chris Lattner8166e6e2003-05-13 21:33:43 +00001082
Lauro Ramos Venancio9613e872007-06-06 22:01:12 +00001083 // Propagate alignment, visibility and section info.
1084 CopyGVAttributes(NG, G1);
1085
Chris Lattner8166e6e2003-05-13 21:33:43 +00001086 // Merge the initializer...
1087 Inits.reserve(NewSize);
Chris Lattnerde512b52004-02-15 05:55:15 +00001088 if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) {
1089 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001090 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001091 } else {
1092 assert(isa<ConstantAggregateZero>(G1->getInitializer()));
1093 Constant *CV = Constant::getNullValue(T1->getElementType());
1094 for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i)
1095 Inits.push_back(CV);
1096 }
1097 if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) {
1098 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
Alkis Evlogimenoscc7ba492004-08-04 08:08:13 +00001099 Inits.push_back(I->getOperand(i));
Chris Lattnerde512b52004-02-15 05:55:15 +00001100 } else {
1101 assert(isa<ConstantAggregateZero>(G2->getInitializer()));
1102 Constant *CV = Constant::getNullValue(T2->getElementType());
1103 for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i)
1104 Inits.push_back(CV);
1105 }
Chris Lattner8166e6e2003-05-13 21:33:43 +00001106 NG->setInitializer(ConstantArray::get(NewType, Inits));
1107 Inits.clear();
1108
1109 // Replace any uses of the two global variables with uses of the new
1110 // global...
1111
1112 // FIXME: This should rewrite simple/straight-forward uses such as
1113 // getelementptr instructions to not use the Cast!
Reid Spencer4da49122006-12-12 05:05:00 +00001114 G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType()));
1115 G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType()));
Chris Lattner8166e6e2003-05-13 21:33:43 +00001116
1117 // Remove the two globals from the module now...
1118 M->getGlobalList().erase(G1);
1119 M->getGlobalList().erase(G2);
1120
1121 // Put the new global into the AppendingVars map so that we can handle
1122 // linking of more than two vars...
1123 Second->second = NG;
1124 }
1125 AppendingVars.erase(First);
1126 }
1127
1128 return false;
1129}
Chris Lattner52f7e902001-10-13 07:03:50 +00001130
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001131static bool ResolveAliases(Module *Dest) {
1132 for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end();
Anton Korobeynikov52419572008-03-11 22:51:09 +00001133 I != E; ++I)
1134 if (const GlobalValue *GV = I->resolveAliasedGlobal())
1135 if (!GV->isDeclaration())
1136 I->replaceAllUsesWith(const_cast<GlobalValue*>(GV));
Anton Korobeynikov9f2ee702008-03-05 23:21:39 +00001137
1138 return false;
1139}
Chris Lattner52f7e902001-10-13 07:03:50 +00001140
1141// LinkModules - This function links two modules together, with the resulting
1142// left module modified to be the composite of the two input modules. If an
1143// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +00001144// the problem. Upon failure, the Dest module could be in a modified state, and
1145// shouldn't be relied on to be consistent.
Misha Brukmanf976c852005-04-21 22:55:34 +00001146bool
Reid Spencer0ba9e212004-12-13 03:00:16 +00001147Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
Reid Spencer57a0efa2004-09-11 04:25:17 +00001148 assert(Dest != 0 && "Invalid Destination module");
1149 assert(Src != 0 && "Invalid Source Module");
1150
Chris Lattnerc36357c2007-01-29 00:21:34 +00001151 if (Dest->getDataLayout().empty()) {
1152 if (!Src->getDataLayout().empty()) {
Chris Lattnerec9bfdc2007-01-29 02:18:13 +00001153 Dest->setDataLayout(Src->getDataLayout());
Chris Lattnerc36357c2007-01-29 00:21:34 +00001154 } else {
1155 std::string DataLayout;
Reid Spencer26f23852007-01-26 08:11:39 +00001156
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001157 if (Dest->getEndianness() == Module::AnyEndianness) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001158 if (Src->getEndianness() == Module::BigEndian)
1159 DataLayout.append("E");
1160 else if (Src->getEndianness() == Module::LittleEndian)
1161 DataLayout.append("e");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001162 }
1163
1164 if (Dest->getPointerSize() == Module::AnyPointerSize) {
Chris Lattnerc36357c2007-01-29 00:21:34 +00001165 if (Src->getPointerSize() == Module::Pointer64)
1166 DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64");
1167 else if (Src->getPointerSize() == Module::Pointer32)
1168 DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32");
Anton Korobeynikova27694d2008-02-20 11:27:04 +00001169 }
Chris Lattnerc36357c2007-01-29 00:21:34 +00001170 Dest->setDataLayout(DataLayout);
1171 }
1172 }
1173
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001174 // Copy the target triple from the source to dest if the dest's is empty.
Chris Lattnerc36357c2007-01-29 00:21:34 +00001175 if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty())
Chris Lattner152f19a2004-12-10 20:26:15 +00001176 Dest->setTargetTriple(Src->getTargetTriple());
Chris Lattnerc36357c2007-01-29 00:21:34 +00001177
1178 if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() &&
1179 Src->getDataLayout() != Dest->getDataLayout())
Reid Spencer26f23852007-01-26 08:11:39 +00001180 cerr << "WARNING: Linking two modules of different data layouts!\n";
Chris Lattner152f19a2004-12-10 20:26:15 +00001181 if (!Src->getTargetTriple().empty() &&
1182 Dest->getTargetTriple() != Src->getTargetTriple())
Bill Wendlinge8156192006-12-07 01:30:32 +00001183 cerr << "WARNING: Linking two modules of different target triples!\n";
Misha Brukmanf976c852005-04-21 22:55:34 +00001184
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001185 // Append the module inline asm string.
Chris Lattner66316012006-01-24 04:14:29 +00001186 if (!Src->getModuleInlineAsm().empty()) {
1187 if (Dest->getModuleInlineAsm().empty())
1188 Dest->setModuleInlineAsm(Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001189 else
Chris Lattner66316012006-01-24 04:14:29 +00001190 Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+
1191 Src->getModuleInlineAsm());
Chris Lattnere1b2e142006-01-23 23:08:37 +00001192 }
1193
Reid Spencer719012d2004-11-25 09:29:44 +00001194 // Update the destination module's dependent libraries list with the libraries
Reid Spencer57a0efa2004-09-11 04:25:17 +00001195 // from the source module. There's no opportunity for duplicates here as the
1196 // Module ensures that duplicate insertions are discarded.
Chris Lattnerf27dfcb2008-02-19 18:49:08 +00001197 for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end();
1198 SI != SE; ++SI)
Reid Spencer57a0efa2004-09-11 04:25:17 +00001199 Dest->addLibrary(*SI);
Reid Spencer57a0efa2004-09-11 04:25:17 +00001200
Chris Lattner2c236f32001-11-03 05:18:24 +00001201 // LinkTypes - Go through the symbol table of the Src module and see if any
1202 // types are named in the src module that are not named in the Dst module.
1203 // Make sure there are no type name conflicts.
Reid Spencer619f0242007-02-04 04:43:17 +00001204 if (LinkTypes(Dest, Src, ErrorMsg))
1205 return true;
Chris Lattner2c236f32001-11-03 05:18:24 +00001206
Chris Lattner5c377c52001-10-14 23:29:15 +00001207 // ValueMap - Mapping of values from what they used to be in Src, to what they
1208 // are now in Dest.
Chris Lattner5c2d3352003-01-30 19:53:34 +00001209 std::map<const Value*, Value*> ValueMap;
Chris Lattner5c377c52001-10-14 23:29:15 +00001210
Chris Lattner8166e6e2003-05-13 21:33:43 +00001211 // AppendingVars - Keep track of global variables in the destination module
1212 // with appending linkage. After the module is linked together, they are
1213 // appended and the module is rewritten.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001214 std::multimap<std::string, GlobalVariable *> AppendingVars;
Chris Lattner11273152006-06-16 01:24:04 +00001215 for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end();
1216 I != E; ++I) {
Chris Lattner5a837de2004-08-04 07:44:58 +00001217 // Add all of the appending globals already in the Dest module to
1218 // AppendingVars.
Chris Lattnerf4146462003-05-14 12:11:51 +00001219 if (I->hasAppendingLinkage())
1220 AppendingVars.insert(std::make_pair(I->getName(), I));
Chris Lattner5a837de2004-08-04 07:44:58 +00001221 }
1222
Chris Lattner8166e6e2003-05-13 21:33:43 +00001223 // Insert all of the globals in src into the Dest module... without linking
1224 // initializers (which could refer to functions not yet mapped over).
Reid Spenceref9b9a72007-02-05 20:47:22 +00001225 if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001226 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001227
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001228 // Link the functions together between the two modules, without doing function
1229 // bodies... this just adds external function prototypes to the Dest
1230 // function... We do this so that when we begin processing function bodies,
1231 // all of the global values that may be referenced are available in our
1232 // ValueMap.
Reid Spenceref9b9a72007-02-05 20:47:22 +00001233 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg))
Chris Lattner5a837de2004-08-04 07:44:58 +00001234 return true;
Chris Lattner5c377c52001-10-14 23:29:15 +00001235
Anton Korobeynikov4fb28732008-03-05 15:27:21 +00001236 // If there were any alias, link them now. We really need to do this now,
1237 // because all of the aliases that may be referenced need to be available in
1238 // ValueMap
1239 if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true;
1240
Chris Lattner6cdf1972002-07-18 00:13:08 +00001241 // Update the initializers in the Dest module now that all globals that may
1242 // be referenced are in Dest.
Chris Lattner6cdf1972002-07-18 00:13:08 +00001243 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
1244
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00001245 // Link in the function bodies that are defined in the source module into the
1246 // DestModule. This consists basically of copying the function over and
1247 // fixing up references to values.
Chris Lattner79df7c02002-03-26 18:01:55 +00001248 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +00001249
Chris Lattner8166e6e2003-05-13 21:33:43 +00001250 // If there were any appending global variables, link them together now.
Chris Lattner8166e6e2003-05-13 21:33:43 +00001251 if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true;
1252
Anton Korobeynikov3db91912008-03-05 23:08:47 +00001253 // Resolve all uses of aliases with aliasees
1254 if (ResolveAliases(Dest)) return true;
1255
Reid Spencer57a0efa2004-09-11 04:25:17 +00001256 // If the source library's module id is in the dependent library list of the
1257 // destination library, remove it since that module is now linked in.
1258 sys::Path modId;
Reid Spencerdd04df02005-07-07 23:21:43 +00001259 modId.set(Src->getModuleIdentifier());
Reid Spencer07adb282004-11-05 22:15:36 +00001260 if (!modId.isEmpty())
1261 Dest->removeLibrary(modId.getBasename());
Reid Spencer57a0efa2004-09-11 04:25:17 +00001262
Chris Lattner52f7e902001-10-13 07:03:50 +00001263 return false;
1264}
Vikram S. Adve9466f512001-10-28 21:38:02 +00001265
Reid Spencer567bc2c2004-05-25 08:52:20 +00001266// vim: sw=2