blob: 48e40d0b3d9f98203c21d5521c0b86b66d578618 [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 Lattner5c377c52001-10-14 23:29:15 +000084 const map<const Value*, Value*> *GlobalMap = 0) {
85 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)) {
121 if (CE->getNumOperands() == 1) {
122 // Cast instruction, unary operator
123 Value *V = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
124 Result = ConstantExpr::get(CE->getOpcode(), cast<Constant>(V),
125 CE->getType());
126 } else if (CE->getNumOperands() == 2) {
127 // Binary operator...
128 Value *V1 = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
129 Value *V2 = RemapOperand(CE->getOperand(1), LocalMap, GlobalMap);
130
131 Result = ConstantExpr::get(CE->getOpcode(), cast<Constant>(V1),
Chris Lattnere8e46052002-07-30 18:54:22 +0000132 cast<Constant>(V2));
Chris Lattner6cdf1972002-07-18 00:13:08 +0000133 } else {
134 // GetElementPtr Expression
135 assert(CE->getOpcode() == Instruction::GetElementPtr);
136 Value *Ptr = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
137 std::vector<Constant*> Indices;
138 Indices.reserve(CE->getNumOperands()-1);
139 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
140 Indices.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),
141 LocalMap, GlobalMap)));
142
Chris Lattnere8e46052002-07-30 18:54:22 +0000143 Result = ConstantExpr::getGetElementPtr(cast<Constant>(Ptr), Indices);
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 Lattnere306d942002-07-18 02:31:03 +0000151 LocalMap.insert(std::make_pair(In, Result));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000152 return Result;
153 }
Chris Lattner2d3e8bb2001-11-03 03:27:29 +0000154
155 cerr << "XXX LocalMap: \n";
156 PrintMap(LocalMap);
157
158 if (GlobalMap) {
159 cerr << "XXX GlobalMap: \n";
160 PrintMap(*GlobalMap);
161 }
162
Chris Lattner6cdf1972002-07-18 00:13:08 +0000163 cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000164 assert(0 && "Couldn't remap value!");
165 return 0;
Chris Lattner5c377c52001-10-14 23:29:15 +0000166}
167
168
169// LinkGlobals - Loop through the global variables in the src module and merge
170// them into the dest module...
171//
172static bool LinkGlobals(Module *Dest, const Module *Src,
173 map<const Value*, Value*> &ValueMap, string *Err = 0) {
174 // We will need a module level symbol table if the src module has a module
175 // level symbol table...
176 SymbolTable *ST = Src->getSymbolTable() ? Dest->getSymbolTableSure() : 0;
177
178 // Loop over all of the globals in the src module, mapping them over as we go
179 //
180 for (Module::const_giterator I = Src->gbegin(), E = Src->gend(); I != E; ++I){
Chris Lattner18961502002-06-25 16:12:52 +0000181 const GlobalVariable *SGV = I;
Chris Lattner5c377c52001-10-14 23:29:15 +0000182 Value *V;
183
184 // If the global variable has a name, and that name is already in use in the
185 // Dest module, make sure that the name is a compatible global variable...
186 //
Chris Lattnere4d25aa2001-11-26 18:59:18 +0000187 if (SGV->hasExternalLinkage() && SGV->hasName() &&
188 (V = ST->lookup(SGV->getType(), SGV->getName())) &&
189 cast<GlobalVariable>(V)->hasExternalLinkage()) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000190 // The same named thing is a global variable, because the only two things
Chris Lattner79df7c02002-03-26 18:01:55 +0000191 // that may be in a module level symbol table are Global Vars and
192 // Functions, and they both have distinct, nonoverlapping, possible types.
Chris Lattner5c377c52001-10-14 23:29:15 +0000193 //
194 GlobalVariable *DGV = cast<GlobalVariable>(V);
195
196 // Check to see if the two GV's have the same Const'ness...
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000197 if (SGV->isConstant() != DGV->isConstant())
Chris Lattner5c377c52001-10-14 23:29:15 +0000198 return Error(Err, "Global Variable Collision on '" +
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000199 SGV->getType()->getDescription() + "':%" + SGV->getName() +
Chris Lattner5c377c52001-10-14 23:29:15 +0000200 " - Global variables differ in const'ness");
201
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000202 // Okay, everything is cool, remember the mapping...
Chris Lattner697954c2002-01-20 22:54:45 +0000203 ValueMap.insert(std::make_pair(SGV, DGV));
Chris Lattner5c377c52001-10-14 23:29:15 +0000204 } else {
205 // No linking to be performed, simply create an identical version of the
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000206 // symbol over in the dest module... the initializer will be filled in
207 // later by LinkGlobalInits...
208 //
209 GlobalVariable *DGV =
Chris Lattner7a176752001-12-04 00:03:30 +0000210 new GlobalVariable(SGV->getType()->getElementType(), SGV->isConstant(),
Chris Lattnere4d25aa2001-11-26 18:59:18 +0000211 SGV->hasInternalLinkage(), 0, SGV->getName());
Chris Lattner5c377c52001-10-14 23:29:15 +0000212
213 // Add the new global to the dest module
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000214 Dest->getGlobalList().push_back(DGV);
Chris Lattner5c377c52001-10-14 23:29:15 +0000215
216 // Make sure to remember this mapping...
Chris Lattner697954c2002-01-20 22:54:45 +0000217 ValueMap.insert(std::make_pair(SGV, DGV));
Chris Lattner5c377c52001-10-14 23:29:15 +0000218 }
219 }
220 return false;
221}
222
223
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000224// LinkGlobalInits - Update the initializers in the Dest module now that all
225// globals that may be referenced are in Dest.
226//
227static bool LinkGlobalInits(Module *Dest, const Module *Src,
228 map<const Value*, Value*> &ValueMap,
229 string *Err = 0) {
230
231 // Loop over all of the globals in the src module, mapping them over as we go
232 //
233 for (Module::const_giterator I = Src->gbegin(), E = Src->gend(); I != E; ++I){
Chris Lattner18961502002-06-25 16:12:52 +0000234 const GlobalVariable *SGV = I;
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000235
236 if (SGV->hasInitializer()) { // Only process initialized GV's
237 // Figure out what the initializer looks like in the dest module...
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000238 Constant *DInit =
239 cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000240
241 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]);
Chris Lattnere4d25aa2001-11-26 18:59:18 +0000242 if (DGV->hasInitializer() && SGV->hasExternalLinkage() &&
243 DGV->hasExternalLinkage()) {
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000244 if (DGV->getInitializer() != DInit)
245 return Error(Err, "Global Variable Collision on '" +
246 SGV->getType()->getDescription() + "':%" +SGV->getName()+
247 " - Global variables have different initializers");
248 } else {
249 // Copy the initializer over now...
250 DGV->setInitializer(DInit);
251 }
252 }
253 }
254 return false;
255}
Chris Lattner5c377c52001-10-14 23:29:15 +0000256
Chris Lattner79df7c02002-03-26 18:01:55 +0000257// LinkFunctionProtos - Link the functions together between the two modules,
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000258// without doing function bodies... this just adds external function prototypes
259// to the Dest function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000260//
Chris Lattner79df7c02002-03-26 18:01:55 +0000261static bool LinkFunctionProtos(Module *Dest, const Module *Src,
262 map<const Value*, Value*> &ValueMap,
263 string *Err = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000264 // We will need a module level symbol table if the src module has a module
265 // level symbol table...
266 SymbolTable *ST = Src->getSymbolTable() ? Dest->getSymbolTableSure() : 0;
267
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000268 // Loop over all of the functions in the src module, mapping them over as we
269 // go
Chris Lattner5c377c52001-10-14 23:29:15 +0000270 //
271 for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattner18961502002-06-25 16:12:52 +0000272 const Function *SF = I; // SrcFunction
Chris Lattner5c377c52001-10-14 23:29:15 +0000273 Value *V;
274
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000275 // If the function has a name, and that name is already in use in the Dest
276 // module, make sure that the name is a compatible function...
Chris Lattner5c377c52001-10-14 23:29:15 +0000277 //
Chris Lattner18961502002-06-25 16:12:52 +0000278 if (SF->hasExternalLinkage() && SF->hasName() &&
279 (V = ST->lookup(SF->getType(), SF->getName())) &&
Chris Lattner79df7c02002-03-26 18:01:55 +0000280 cast<Function>(V)->hasExternalLinkage()) {
281 // The same named thing is a Function, because the only two things
282 // that may be in a module level symbol table are Global Vars and
283 // Functions, and they both have distinct, nonoverlapping, possible types.
Chris Lattner5c377c52001-10-14 23:29:15 +0000284 //
Chris Lattner18961502002-06-25 16:12:52 +0000285 Function *DF = cast<Function>(V); // DestFunction
Chris Lattner5c377c52001-10-14 23:29:15 +0000286
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000287 // Check to make sure the function is not defined in both modules...
Chris Lattner18961502002-06-25 16:12:52 +0000288 if (!SF->isExternal() && !DF->isExternal())
Chris Lattner79df7c02002-03-26 18:01:55 +0000289 return Error(Err, "Function '" +
Chris Lattner18961502002-06-25 16:12:52 +0000290 SF->getFunctionType()->getDescription() + "':\"" +
291 SF->getName() + "\" - Function is already defined!");
Chris Lattner5c377c52001-10-14 23:29:15 +0000292
293 // Otherwise, just remember this mapping...
Chris Lattner18961502002-06-25 16:12:52 +0000294 ValueMap.insert(std::make_pair(SF, DF));
Chris Lattner5c377c52001-10-14 23:29:15 +0000295 } else {
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000296 // Function does not already exist, simply insert an external function
Chris Lattner18961502002-06-25 16:12:52 +0000297 // signature identical to SF into the dest module...
298 Function *DF = new Function(SF->getFunctionType(),
299 SF->hasInternalLinkage(),
300 SF->getName());
Chris Lattner5c377c52001-10-14 23:29:15 +0000301
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000302 // Add the function signature to the dest module...
Chris Lattner18961502002-06-25 16:12:52 +0000303 Dest->getFunctionList().push_back(DF);
Chris Lattner5c377c52001-10-14 23:29:15 +0000304
305 // ... and remember this mapping...
Chris Lattner18961502002-06-25 16:12:52 +0000306 ValueMap.insert(std::make_pair(SF, DF));
Chris Lattner5c377c52001-10-14 23:29:15 +0000307 }
308 }
309 return false;
310}
311
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000312// LinkFunctionBody - Copy the source function over into the dest function and
313// fix up references to values. At this point we know that Dest is an external
314// function, and that Src is not.
Chris Lattner5c377c52001-10-14 23:29:15 +0000315//
Chris Lattner79df7c02002-03-26 18:01:55 +0000316static bool LinkFunctionBody(Function *Dest, const Function *Src,
317 const map<const Value*, Value*> &GlobalMap,
318 string *Err = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000319 assert(Src && Dest && Dest->isExternal() && !Src->isExternal());
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000320 map<const Value*, Value*> LocalMap; // Map for function local values
Chris Lattner5c377c52001-10-14 23:29:15 +0000321
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000322 // Go through and convert function arguments over...
Chris Lattner18961502002-06-25 16:12:52 +0000323 for (Function::const_aiterator I = Src->abegin(), E = Src->aend();
324 I != E; ++I) {
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000325 // Create the new function argument and add to the dest function...
Chris Lattner18961502002-06-25 16:12:52 +0000326 Argument *DFA = new Argument(I->getType(), I->getName());
327 Dest->getArgumentList().push_back(DFA);
Chris Lattner5c377c52001-10-14 23:29:15 +0000328
329 // Add a mapping to our local map
Chris Lattner18961502002-06-25 16:12:52 +0000330 LocalMap.insert(std::make_pair(I, DFA));
Chris Lattner5c377c52001-10-14 23:29:15 +0000331 }
332
333 // Loop over all of the basic blocks, copying the instructions over...
334 //
Chris Lattner79df7c02002-03-26 18:01:55 +0000335 for (Function::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000336 // Create new basic block and add to mapping and the Dest function...
Chris Lattner18961502002-06-25 16:12:52 +0000337 BasicBlock *DBB = new BasicBlock(I->getName(), Dest);
338 LocalMap.insert(std::make_pair(I, DBB));
Chris Lattner5c377c52001-10-14 23:29:15 +0000339
340 // Loop over all of the instructions in the src basic block, copying them
341 // over. Note that this is broken in a strict sense because the cloned
342 // instructions will still be referencing values in the Src module, not
343 // the remapped values. In our case, however, we will not get caught and
344 // so we can delay patching the values up until later...
345 //
Chris Lattner18961502002-06-25 16:12:52 +0000346 for (BasicBlock::const_iterator II = I->begin(), IE = I->end();
Chris Lattner5c377c52001-10-14 23:29:15 +0000347 II != IE; ++II) {
Chris Lattner18961502002-06-25 16:12:52 +0000348 Instruction *DI = II->clone();
349 DI->setName(II->getName());
Chris Lattner5c377c52001-10-14 23:29:15 +0000350 DBB->getInstList().push_back(DI);
Chris Lattner18961502002-06-25 16:12:52 +0000351 LocalMap.insert(std::make_pair(II, DI));
Chris Lattner5c377c52001-10-14 23:29:15 +0000352 }
353 }
354
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000355 // At this point, all of the instructions and values of the function are now
356 // copied over. The only problem is that they are still referencing values in
357 // the Source function as operands. Loop through all of the operands of the
358 // functions and patch them up to point to the local versions...
Chris Lattner5c377c52001-10-14 23:29:15 +0000359 //
Chris Lattner18961502002-06-25 16:12:52 +0000360 for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB)
361 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
362 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
Chris Lattner221d6882002-02-12 21:07:25 +0000363 OI != OE; ++OI)
364 *OI = RemapOperand(*OI, LocalMap, &GlobalMap);
Chris Lattner5c377c52001-10-14 23:29:15 +0000365
366 return false;
367}
368
369
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000370// LinkFunctionBodies - Link in the function bodies that are defined in the
371// source module into the DestModule. This consists basically of copying the
372// function over and fixing up references to values.
Chris Lattner5c377c52001-10-14 23:29:15 +0000373//
Chris Lattner79df7c02002-03-26 18:01:55 +0000374static bool LinkFunctionBodies(Module *Dest, const Module *Src,
375 map<const Value*, Value*> &ValueMap,
376 string *Err = 0) {
Chris Lattner5c377c52001-10-14 23:29:15 +0000377
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000378 // Loop over all of the functions in the src module, mapping them over as we
379 // go
Chris Lattner5c377c52001-10-14 23:29:15 +0000380 //
Chris Lattner18961502002-06-25 16:12:52 +0000381 for (Module::const_iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF){
382 if (!SF->isExternal()) { // No body if function is external
383 Function *DF = cast<Function>(ValueMap[SF]); // Destination function
Chris Lattner5c377c52001-10-14 23:29:15 +0000384
Chris Lattner18961502002-06-25 16:12:52 +0000385 // DF not external SF external?
386 if (!DF->isExternal()) {
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000387 if (Err)
Chris Lattner18961502002-06-25 16:12:52 +0000388 *Err = "Function '" + (SF->hasName() ? SF->getName() : string("")) +
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000389 "' body multiply defined!";
390 return true;
391 }
392
Chris Lattner18961502002-06-25 16:12:52 +0000393 if (LinkFunctionBody(DF, SF, ValueMap, Err)) return true;
Chris Lattnerc2d774b2001-10-23 20:43:42 +0000394 }
Chris Lattner5c377c52001-10-14 23:29:15 +0000395 }
396 return false;
397}
398
Chris Lattner52f7e902001-10-13 07:03:50 +0000399
400
401// LinkModules - This function links two modules together, with the resulting
402// left module modified to be the composite of the two input modules. If an
403// error occurs, true is returned and ErrorMsg (if not null) is set to indicate
Chris Lattner5c377c52001-10-14 23:29:15 +0000404// the problem. Upon failure, the Dest module could be in a modified state, and
405// shouldn't be relied on to be consistent.
Chris Lattner52f7e902001-10-13 07:03:50 +0000406//
Chris Lattnerb1443b12002-07-24 22:40:39 +0000407bool LinkModules(Module *Dest, const Module *Src, string *ErrorMsg) {
Chris Lattner2c236f32001-11-03 05:18:24 +0000408
409 // LinkTypes - Go through the symbol table of the Src module and see if any
410 // types are named in the src module that are not named in the Dst module.
411 // Make sure there are no type name conflicts.
412 //
413 if (LinkTypes(Dest, Src, ErrorMsg)) return true;
414
Chris Lattner5c377c52001-10-14 23:29:15 +0000415 // ValueMap - Mapping of values from what they used to be in Src, to what they
416 // are now in Dest.
417 //
418 map<const Value*, Value*> ValueMap;
419
Chris Lattner8d2de8a2001-10-15 03:12:52 +0000420 // Insert all of the globals in src into the Dest module... without
421 // initializers
Chris Lattner5c377c52001-10-14 23:29:15 +0000422 if (LinkGlobals(Dest, Src, ValueMap, ErrorMsg)) return true;
423
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000424 // Link the functions together between the two modules, without doing function
425 // bodies... this just adds external function prototypes to the Dest
426 // function... We do this so that when we begin processing function bodies,
427 // all of the global values that may be referenced are available in our
428 // ValueMap.
Chris Lattner5c377c52001-10-14 23:29:15 +0000429 //
Chris Lattner79df7c02002-03-26 18:01:55 +0000430 if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner5c377c52001-10-14 23:29:15 +0000431
Chris Lattner6cdf1972002-07-18 00:13:08 +0000432 // Update the initializers in the Dest module now that all globals that may
433 // be referenced are in Dest.
434 //
435 if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true;
436
Chris Lattnerc8cc4cb2002-05-07 18:36:35 +0000437 // Link in the function bodies that are defined in the source module into the
438 // DestModule. This consists basically of copying the function over and
439 // fixing up references to values.
Chris Lattner5c377c52001-10-14 23:29:15 +0000440 //
Chris Lattner79df7c02002-03-26 18:01:55 +0000441 if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
Chris Lattner52f7e902001-10-13 07:03:50 +0000442
443 return false;
444}
Vikram S. Adve9466f512001-10-28 21:38:02 +0000445