blob: 6753f51657c78cb522e6fd64442755c939748ae7 [file] [log] [blame]
Chris Lattner52f7e902001-10-13 07:03:50 +00001//===- Linker.cpp - Module Linker Implementation --------------------------===//
2//
3// This file implements the LLVM module linker.
4//
5// Specifically, this:
Chris Lattner8d2de8a2001-10-15 03:12:52 +00006// * Merges global variables between the two modules
7// * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +00008// * Merges functions between two modules
Chris Lattner52f7e902001-10-13 07:03:50 +00009//
10//===----------------------------------------------------------------------===//
11
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +000012#include "llvm/Transforms/Utils/Linker.h"
Chris Lattner5c377c52001-10-14 23:29:15 +000013#include "llvm/Module.h"
Chris Lattner5c377c52001-10-14 23:29:15 +000014#include "llvm/SymbolTable.h"
15#include "llvm/DerivedTypes.h"
16#include "llvm/iOther.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000017#include "llvm/Constants.h"
Chris Lattner697954c2002-01-20 22:54:45 +000018using std::cerr;
19using std::string;
20using std::map;
Chris Lattner5c377c52001-10-14 23:29:15 +000021
22// Error - Simple wrapper function to conditionally assign to E and return true.
23// This just makes error return conditions a little bit simpler...
24//
25static inline bool Error(string *E, string Message) {
26 if (E) *E = Message;
27 return true;
28}
29
Chris Lattner2c236f32001-11-03 05:18:24 +000030// LinkTypes - Go through the symbol table of the Src module and see if any
31// types are named in the src module that are not named in the Dst module.
32// Make sure there are no type name conflicts.
33//
34static bool LinkTypes(Module *Dest, const Module *Src, string *Err = 0) {
35 // No symbol table? Can't have named types.
36 if (!Src->hasSymbolTable()) return false;
37
38 SymbolTable *DestST = Dest->getSymbolTableSure();
39 const SymbolTable *SrcST = Src->getSymbolTable();
40
41 // Look for a type plane for Type's...
42 SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy);
43 if (PI == SrcST->end()) return false; // No named types, do nothing.
44
45 const SymbolTable::VarMap &VM = PI->second;
46 for (SymbolTable::type_const_iterator I = VM.begin(), E = VM.end();
47 I != E; ++I) {
48 const string &Name = I->first;
49 const Type *RHS = cast<Type>(I->second);
50
51 // Check to see if this type name is already in the dest module...
52 const Type *Entry = cast_or_null<Type>(DestST->lookup(Type::TypeTy, Name));
53 if (Entry) { // Yup, the value already exists...
54 if (Entry != RHS) // If it's the same, noop. Otherwise, error.
55 return Error(Err, "Type named '" + Name +
56 "' of different shape in modules.\n Src='" +
Chris Lattner9b638012002-03-15 20:21:29 +000057 Entry->getDescription() + "'.\n Dst='" +
Chris Lattner2c236f32001-11-03 05:18:24 +000058 RHS->getDescription() + "'");
59 } else { // Type not in dest module. Add it now.
60 // TODO: FIXME WHEN TYPES AREN'T CONST
61 DestST->insert(Name, const_cast<Type*>(RHS));
62 }
63 }
64 return false;
65}
66
Chris Lattner2d3e8bb2001-11-03 03:27:29 +000067static void PrintMap(const map<const Value*, Value*> &M) {
68 for (map<const Value*, Value*>::const_iterator I = M.begin(), E = M.end();
69 I != E; ++I) {
Chris Lattner87182ae2002-04-07 22:31:23 +000070 cerr << " Fr: " << (void*)I->first << " ";
71 I->first->dump();
72 cerr << " To: " << (void*)I->second << " ";
73 I->second->dump();
74 cerr << "\n";
Chris Lattner2d3e8bb2001-11-03 03:27:29 +000075 }
76}
77
78
Chris Lattner5c377c52001-10-14 23:29:15 +000079// RemapOperand - Use LocalMap and GlobalMap to convert references from one
80// module to another. This is somewhat sophisticated in that it can
81// automatically handle constant references correctly as well...
82//
Chris Lattner8d2de8a2001-10-15 03:12:52 +000083static Value *RemapOperand(const Value *In, map<const Value*, Value*> &LocalMap,
Chris Lattnerd149c052002-09-23 18:14:15 +000084 map<const Value*, Value*> *GlobalMap = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +000085 map<const Value*,Value*>::const_iterator I = LocalMap.find(In);
86 if (I != LocalMap.end()) return I->second;
87
88 if (GlobalMap) {
89 I = GlobalMap->find(In);
90 if (I != GlobalMap->end()) return I->second;
91 }
92
Chris Lattner8d2de8a2001-10-15 03:12:52 +000093 // Check to see if it's a constant that we are interesting in transforming...
Chris Lattner18961502002-06-25 16:12:52 +000094 if (const Constant *CPV = dyn_cast<Constant>(In)) {
Chris Lattner6cdf1972002-07-18 00:13:08 +000095 if (!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV))
Chris Lattner18961502002-06-25 16:12:52 +000096 return const_cast<Constant*>(CPV); // Simple constants stay identical...
Chris Lattner8d2de8a2001-10-15 03:12:52 +000097
Chris Lattnere9bb2df2001-12-03 22:26:30 +000098 Constant *Result = 0;
Chris Lattner8d2de8a2001-10-15 03:12:52 +000099
Chris Lattner18961502002-06-25 16:12:52 +0000100 if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
Chris Lattner697954c2002-01-20 22:54:45 +0000101 const std::vector<Use> &Ops = CPA->getValues();
102 std::vector<Constant*> Operands(Ops.size());
Chris Lattnere306d942002-07-18 02:31:03 +0000103 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000104 Operands[i] =
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000105 cast<Constant>(RemapOperand(Ops[i], LocalMap, GlobalMap));
106 Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
Chris Lattner18961502002-06-25 16:12:52 +0000107 } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
Chris Lattner697954c2002-01-20 22:54:45 +0000108 const std::vector<Use> &Ops = CPS->getValues();
109 std::vector<Constant*> Operands(Ops.size());
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000110 for (unsigned i = 0; i < Ops.size(); ++i)
111 Operands[i] =
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000112 cast<Constant>(RemapOperand(Ops[i], LocalMap, GlobalMap));
113 Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
114 } else if (isa<ConstantPointerNull>(CPV)) {
Chris Lattner18961502002-06-25 16:12:52 +0000115 Result = const_cast<Constant*>(CPV);
116 } else if (const ConstantPointerRef *CPR =
117 dyn_cast<ConstantPointerRef>(CPV)) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000118 Value *V = RemapOperand(CPR->getValue(), LocalMap, GlobalMap);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000119 Result = ConstantPointerRef::get(cast<GlobalValue>(V));
Chris Lattner6cdf1972002-07-18 00:13:08 +0000120 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
Chris Lattnerb319faf2002-08-20 19:35:11 +0000121 if (CE->getOpcode() == Instruction::GetElementPtr) {
122 Value *Ptr = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
123 std::vector<Constant*> Indices;
124 Indices.reserve(CE->getNumOperands()-1);
125 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
126 Indices.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),
127 LocalMap, GlobalMap)));
128
129 Result = ConstantExpr::getGetElementPtr(cast<Constant>(Ptr), Indices);
130 } else if (CE->getNumOperands() == 1) {
Chris Lattnerad333482002-08-14 18:24:09 +0000131 // Cast instruction
132 assert(CE->getOpcode() == Instruction::Cast);
Chris Lattner6cdf1972002-07-18 00:13:08 +0000133 Value *V = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
Chris Lattnerad333482002-08-14 18:24:09 +0000134 Result = ConstantExpr::getCast(cast<Constant>(V), CE->getType());
Chris Lattner6cdf1972002-07-18 00:13:08 +0000135 } else if (CE->getNumOperands() == 2) {
136 // Binary operator...
137 Value *V1 = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
138 Value *V2 = RemapOperand(CE->getOperand(1), LocalMap, GlobalMap);
139
140 Result = ConstantExpr::get(CE->getOpcode(), cast<Constant>(V1),
Chris Lattnere8e46052002-07-30 18:54:22 +0000141 cast<Constant>(V2));
Chris Lattner6cdf1972002-07-18 00:13:08 +0000142 } else {
Chris Lattnerb319faf2002-08-20 19:35:11 +0000143 assert(0 && "Unknown constant expr type!");
Chris Lattner6cdf1972002-07-18 00:13:08 +0000144 }
145
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000146 } else {
147 assert(0 && "Unknown type of derived type constant value!");
148 }
149
150 // Cache the mapping in our local map structure...
Chris Lattnerd149c052002-09-23 18:14:15 +0000151 if (GlobalMap)
152 GlobalMap->insert(std::make_pair(In, Result));
153 else
154 LocalMap.insert(std::make_pair(In, Result));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000155 return Result;
156 }
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000157
158 cerr << "XXX LocalMap: \n";
159 PrintMap(LocalMap);
160
161 if (GlobalMap) {
162 cerr << "XXX GlobalMap: \n";
163 PrintMap(*GlobalMap);
164 }
165
Chris Lattner6cdf1972002-07-18 00:13:08 +0000166 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000167 assert(0 && "Couldn't remap value!");
168 return 0;
Chris Lattner5c377c52001-10-14 23:29:15 +0000169}
170
171
172// LinkGlobals - Loop through the global variables in the src module and merge
173// them into the dest module...
174//
175static bool LinkGlobals(Module *Dest, const Module *Src,
176 map<const Value*, Value*> &ValueMap, string *Err = 0) {
177 // We will need a module level symbol table if the src module has a module
178 // level symbol table...
179 SymbolTable *ST = Src->getSymbolTable() ? Dest->getSymbolTableSure() : 0;
180
181 // Loop over all of the globals in the src module, mapping them over as we go
182 //
183 for (Module::const_giterator I = Src->gbegin(), E = Src->gend(); I != E; ++I){
Chris Lattner18961502002-06-25 16:12:52 +0000184 const GlobalVariable *SGV = I;
Chris Lattner5c377c52001-10-14 23:29:15 +0000185 Value *V;
186
187 // If the global variable has a name, and that name is already in use in the
188 // Dest module, make sure that the name is a compatible global variable...
189 //
Chris Lattnere4d25aa2001-11-26 18:59:18 +0000190 if (SGV->hasExternalLinkage() && SGV->hasName() &&
191 (V = ST->lookup(SGV->getType(), SGV->getName())) &&
192 cast<GlobalVariable>(V)->hasExternalLinkage()) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000193 // The same named thing is a global variable, because the only two things
Chris Lattner79df7c02002-03-26 18:01:55 +0000194 // that may be in a module level symbol table are Global Vars and
195 // Functions, and they both have distinct, nonoverlapping, possible types.
Chris Lattner5c377c52001-10-14 23:29:15 +0000196 //
197 GlobalVariable *DGV = cast<GlobalVariable>(V);
198
199 // Check to see if the two GV's have the same Const'ness...
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000200 if (SGV->isConstant() != DGV->isConstant())
Chris Lattner5c377c52001-10-14 23:29:15 +0000201 return Error(Err, "Global Variable Collision on '" +
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000202 SGV->getType()->getDescription() + "':%" + SGV->getName() +
Chris Lattner5c377c52001-10-14 23:29:15 +0000203 " - Global variables differ in const'ness");
204
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000205 // Okay, everything is cool, remember the mapping...
Chris Lattner697954c2002-01-20 22:54:45 +0000206 ValueMap.insert(std::make_pair(SGV, DGV));
Chris Lattner5c377c52001-10-14 23:29:15 +0000207 } else {
208 // No linking to be performed, simply create an identical version of the
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000209 // symbol over in the dest module... the initializer will be filled in
210 // later by LinkGlobalInits...
211 //
212 GlobalVariable *DGV =
Chris Lattner7a176752001-12-04 00:03:30 +0000213 new GlobalVariable(SGV->getType()->getElementType(), SGV->isConstant(),
Chris Lattnere4d25aa2001-11-26 18:59:18 +0000214 SGV->hasInternalLinkage(), 0, SGV->getName());
Chris Lattner5c377c52001-10-14 23:29:15 +0000215
216 // Add the new global to the dest module
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000217 Dest->getGlobalList().push_back(DGV);
Chris Lattner5c377c52001-10-14 23:29:15 +0000218
219 // Make sure to remember this mapping...
Chris Lattner697954c2002-01-20 22:54:45 +0000220 ValueMap.insert(std::make_pair(SGV, DGV));
Chris Lattner5c377c52001-10-14 23:29:15 +0000221 }
222 }
223 return false;
224}
225
226
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000227// LinkGlobalInits - Update the initializers in the Dest module now that all
228// globals that may be referenced are in Dest.
229//
230static bool LinkGlobalInits(Module *Dest, const Module *Src,
231 map<const Value*, Value*> &ValueMap,
232 string *Err = 0) {
233
234 // Loop over all of the globals in the src module, mapping them over as we go
235 //
236 for (Module::const_giterator I = Src->gbegin(), E = Src->gend(); I != E; ++I){
Chris Lattner18961502002-06-25 16:12:52 +0000237 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000238
239 if (SGV->hasInitializer()) { // Only process initialized GV's
240 // Figure out what the initializer looks like in the dest module...
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000241 Constant *DInit =
242 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000243
244 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]);
Chris Lattnere4d25aa2001-11-26 18:59:18 +0000245 if (DGV->hasInitializer() && SGV->hasExternalLinkage() &&
246 DGV->hasExternalLinkage()) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000247 if (DGV->getInitializer() != DInit)
248 return Error(Err, "Global Variable Collision on '" +
249 SGV->getType()->getDescription() + "':%" +SGV->getName()+
250 " - Global variables have different initializers");
251 } else {
252 // Copy the initializer over now...
253 DGV->setInitializer(DInit);
254 }
255 }
256 }
257 return false;
258}
Chris Lattner5c377c52001-10-14 23:29:15 +0000259
Chris Lattner79df7c02002-03-26 18:01:55 +0000260// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000261// without doing function bodies... this just adds external function prototypes
262// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000263//
Chris Lattner79df7c02002-03-26 18:01:55 +0000264static bool LinkFunctionProtos(Module *Dest, const Module *Src,
265 map<const Value*, Value*> &ValueMap,
266 string *Err = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000267 // We will need a module level symbol table if the src module has a module
268 // level symbol table...
269 SymbolTable *ST = Src->getSymbolTable() ? Dest->getSymbolTableSure() : 0;
270
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000271 // Loop over all of the functions in the src module, mapping them over as we
272 // go
Chris Lattner5c377c52001-10-14 23:29:15 +0000273 //
274 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000275 const Function *SF = I; // SrcFunction
Chris Lattner5c377c52001-10-14 23:29:15 +0000276 Value *V;
277
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000278 // If the function has a name, and that name is already in use in the Dest
279 // module, make sure that the name is a compatible function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000280 //
Chris Lattner18961502002-06-25 16:12:52 +0000281 if (SF->hasExternalLinkage() && SF->hasName() &&
282 (V = ST->lookup(SF->getType(), SF->getName())) &&
Chris Lattner79df7c02002-03-26 18:01:55 +0000283 cast<Function>(V)->hasExternalLinkage()) {
284 // The same named thing is a Function, because the only two things
285 // that may be in a module level symbol table are Global Vars and
286 // Functions, and they both have distinct, nonoverlapping, possible types.
Chris Lattner5c377c52001-10-14 23:29:15 +0000287 //
Chris Lattner18961502002-06-25 16:12:52 +0000288 Function *DF = cast<Function>(V); // DestFunction
Chris Lattner5c377c52001-10-14 23:29:15 +0000289
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000290 // Check to make sure the function is not defined in both modules...
Chris Lattner18961502002-06-25 16:12:52 +0000291 if (!SF->isExternal() && !DF->isExternal())
Chris Lattner79df7c02002-03-26 18:01:55 +0000292 return Error(Err, "Function '" +
Chris Lattner18961502002-06-25 16:12:52 +0000293 SF->getFunctionType()->getDescription() + "':\"" +
294 SF->getName() + "\" - Function is already defined!");
Chris Lattner5c377c52001-10-14 23:29:15 +0000295
296 // Otherwise, just remember this mapping...
Chris Lattner18961502002-06-25 16:12:52 +0000297 ValueMap.insert(std::make_pair(SF, DF));
Chris Lattner5c377c52001-10-14 23:29:15 +0000298 } else {
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000299 // Function does not already exist, simply insert an external function
Chris Lattner18961502002-06-25 16:12:52 +0000300 // signature identical to SF into the dest module...
301 Function *DF = new Function(SF->getFunctionType(),
302 SF->hasInternalLinkage(),
303 SF->getName());
Chris Lattner5c377c52001-10-14 23:29:15 +0000304
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000305 // Add the function signature to the dest module...
Chris Lattner18961502002-06-25 16:12:52 +0000306 Dest->getFunctionList().push_back(DF);
Chris Lattner5c377c52001-10-14 23:29:15 +0000307
308 // ... and remember this mapping...
Chris Lattner18961502002-06-25 16:12:52 +0000309 ValueMap.insert(std::make_pair(SF, DF));
Chris Lattner5c377c52001-10-14 23:29:15 +0000310 }
311 }
312 return false;
313}
314
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000315// LinkFunctionBody - Copy the source function over into the dest function and
316// fix up references to values. At this point we know that Dest is an external
317// function, and that Src is not.
Chris Lattner5c377c52001-10-14 23:29:15 +0000318//
Chris Lattner79df7c02002-03-26 18:01:55 +0000319static bool LinkFunctionBody(Function *Dest, const Function *Src,
Chris Lattnerd149c052002-09-23 18:14:15 +0000320 map<const Value*, Value*> &GlobalMap,
Chris Lattner79df7c02002-03-26 18:01:55 +0000321 string *Err = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000322 assert(Src && Dest && Dest->isExternal() && !Src->isExternal());
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000323 map<const Value*, Value*> LocalMap; // Map for function local values
Chris Lattner5c377c52001-10-14 23:29:15 +0000324
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000325 // Go through and convert function arguments over...
Chris Lattner18961502002-06-25 16:12:52 +0000326 for (Function::const_aiterator I = Src->abegin(), E = Src->aend();
327 I != E; ++I) {
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000328 // Create the new function argument and add to the dest function...
Chris Lattner18961502002-06-25 16:12:52 +0000329 Argument *DFA = new Argument(I->getType(), I->getName());
330 Dest->getArgumentList().push_back(DFA);
Chris Lattner5c377c52001-10-14 23:29:15 +0000331
332 // Add a mapping to our local map
Chris Lattner18961502002-06-25 16:12:52 +0000333 LocalMap.insert(std::make_pair(I, DFA));
Chris Lattner5c377c52001-10-14 23:29:15 +0000334 }
335
336 // Loop over all of the basic blocks, copying the instructions over...
337 //
Chris Lattner79df7c02002-03-26 18:01:55 +0000338 for (Function::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000339 // Create new basic block and add to mapping and the Dest function...
Chris Lattner18961502002-06-25 16:12:52 +0000340 BasicBlock *DBB = new BasicBlock(I->getName(), Dest);
341 LocalMap.insert(std::make_pair(I, DBB));
Chris Lattner5c377c52001-10-14 23:29:15 +0000342
343 // Loop over all of the instructions in the src basic block, copying them
344 // over. Note that this is broken in a strict sense because the cloned
345 // instructions will still be referencing values in the Src module, not
346 // the remapped values. In our case, however, we will not get caught and
347 // so we can delay patching the values up until later...
348 //
Chris Lattner18961502002-06-25 16:12:52 +0000349 for (BasicBlock::const_iterator II = I->begin(), IE = I->end();
Chris Lattner5c377c52001-10-14 23:29:15 +0000350 II != IE; ++II) {
Chris Lattner18961502002-06-25 16:12:52 +0000351 Instruction *DI = II->clone();
352 DI->setName(II->getName());
Chris Lattner5c377c52001-10-14 23:29:15 +0000353 DBB->getInstList().push_back(DI);
Chris Lattner18961502002-06-25 16:12:52 +0000354 LocalMap.insert(std::make_pair(II, DI));
Chris Lattner5c377c52001-10-14 23:29:15 +0000355 }
356 }
357
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000358 // At this point, all of the instructions and values of the function are now
359 // copied over. The only problem is that they are still referencing values in
360 // the Source function as operands. Loop through all of the operands of the
361 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +0000362 //
Chris Lattner18961502002-06-25 16:12:52 +0000363 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
364 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
365 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +0000366 OI != OE; ++OI)
367 *OI = RemapOperand(*OI, LocalMap, &GlobalMap);
Chris Lattner5c377c52001-10-14 23:29:15 +0000368
369 return false;
370}
371
372
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000373// LinkFunctionBodies - Link in the function bodies that are defined in the
374// source module into the DestModule. This consists basically of copying the
375// function over and fixing up references to values.
Chris Lattner5c377c52001-10-14 23:29:15 +0000376//
Chris Lattner79df7c02002-03-26 18:01:55 +0000377static bool LinkFunctionBodies(Module *Dest, const Module *Src,
378 map<const Value*, Value*> &ValueMap,
379 string *Err = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000380
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000381 // Loop over all of the functions in the src module, mapping them over as we
382 // go
Chris Lattner5c377c52001-10-14 23:29:15 +0000383 //
Chris Lattner18961502002-06-25 16:12:52 +0000384 for (Module::const_iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF){
385 if (!SF->isExternal()) { // No body if function is external
386 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +0000387
Chris Lattner18961502002-06-25 16:12:52 +0000388 // DF not external SF external?
389 if (!DF->isExternal()) {
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000390 if (Err)
Chris Lattner18961502002-06-25 16:12:52 +0000391 *Err = "Function '" + (SF->hasName() ? SF->getName() : string("")) +
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000392 "' body multiply defined!";
393 return true;
394 }
395
Chris Lattner18961502002-06-25 16:12:52 +0000396 if (LinkFunctionBody(DF, SF, ValueMap, Err)) return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000397 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000398 }
399 return false;
400}
401
Chris Lattner52f7e902001-10-13 07:03:50 +0000402
403
404// LinkModules - This function links two modules together, with the resulting
405// left module modified to be the composite of the two input modules. If an
406// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +0000407// the problem. Upon failure, the Dest module could be in a modified state, and
408// shouldn't be relied on to be consistent.
Chris Lattner52f7e902001-10-13 07:03:50 +0000409//
Chris Lattnerb1443b12002-07-24 22:40:39 +0000410bool LinkModules(Module *Dest, const Module *Src, string *ErrorMsg) {
Chris Lattner2c236f32001-11-03 05:18:24 +0000411
412 // LinkTypes - Go through the symbol table of the Src module and see if any
413 // types are named in the src module that are not named in the Dst module.
414 // Make sure there are no type name conflicts.
415 //
416 if (LinkTypes(Dest, Src, ErrorMsg)) return true;
417
Chris Lattner5c377c52001-10-14 23:29:15 +0000418 // ValueMap - Mapping of values from what they used to be in Src, to what they
419 // are now in Dest.
420 //
421 map<const Value*, Value*> ValueMap;
422
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000423 // Insert all of the globals in src into the Dest module... without
424 // initializers
Chris Lattner5c377c52001-10-14 23:29:15 +0000425 if (LinkGlobals(Dest, Src, ValueMap, ErrorMsg)) return true;
426
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000427 // Link the functions together between the two modules, without doing function
428 // bodies... this just adds external function prototypes to the Dest
429 // function... We do this so that when we begin processing function bodies,
430 // all of the global values that may be referenced are available in our
431 // ValueMap.
Chris Lattner5c377c52001-10-14 23:29:15 +0000432 //
Chris Lattner79df7c02002-03-26 18:01:55 +0000433 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner5c377c52001-10-14 23:29:15 +0000434
Chris Lattner6cdf1972002-07-18 00:13:08 +0000435 // Update the initializers in the Dest module now that all globals that may
436 // be referenced are in Dest.
437 //
438 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
439
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000440 // Link in the function bodies that are defined in the source module into the
441 // DestModule. This consists basically of copying the function over and
442 // fixing up references to values.
Chris Lattner5c377c52001-10-14 23:29:15 +0000443 //
Chris Lattner79df7c02002-03-26 18:01:55 +0000444 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +0000445
446 return false;
447}
Vikram S. Adve9466f512001-10-28 21:38:02 +0000448