Remove support for Not ConstantExpr. This simplifies the unary case to only
[oota-llvm.git] / lib / Linker / LinkModules.cpp
1 //===- Linker.cpp - Module Linker Implementation --------------------------===//
2 //
3 // This file implements the LLVM module linker.
4 //
5 // Specifically, this:
6 //  * Merges global variables between the two modules
7 //    * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if !=
8 //  * Merges functions between two modules
9 //
10 //===----------------------------------------------------------------------===//
11
12 #include "llvm/Transforms/Utils/Linker.h"
13 #include "llvm/Module.h"
14 #include "llvm/SymbolTable.h"
15 #include "llvm/DerivedTypes.h"
16 #include "llvm/iOther.h"
17 #include "llvm/Constants.h"
18 using std::cerr;
19 using std::string;
20 using std::map;
21
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 //
25 static inline bool Error(string *E, string Message) {
26   if (E) *E = Message;
27   return true;
28 }
29
30 // 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 //
34 static 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='" + 
57                      Entry->getDescription() + "'.\n  Dst='" + 
58                      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
67 static 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) {
70     cerr << " Fr: " << (void*)I->first << " ";
71     I->first->dump();
72     cerr << " To: " << (void*)I->second << " ";
73     I->second->dump();
74     cerr << "\n";
75   }
76 }
77
78
79 // 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 //
83 static Value *RemapOperand(const Value *In, map<const Value*, Value*> &LocalMap,
84                            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
93   // Check to see if it's a constant that we are interesting in transforming...
94   if (const Constant *CPV = dyn_cast<Constant>(In)) {
95     if (!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV))
96       return const_cast<Constant*>(CPV);   // Simple constants stay identical...
97
98     Constant *Result = 0;
99
100     if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) {
101       const std::vector<Use> &Ops = CPA->getValues();
102       std::vector<Constant*> Operands(Ops.size());
103       for (unsigned i = 0, e = Ops.size(); i != e; ++i)
104         Operands[i] = 
105           cast<Constant>(RemapOperand(Ops[i], LocalMap, GlobalMap));
106       Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands);
107     } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) {
108       const std::vector<Use> &Ops = CPS->getValues();
109       std::vector<Constant*> Operands(Ops.size());
110       for (unsigned i = 0; i < Ops.size(); ++i)
111         Operands[i] = 
112           cast<Constant>(RemapOperand(Ops[i], LocalMap, GlobalMap));
113       Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands);
114     } else if (isa<ConstantPointerNull>(CPV)) {
115       Result = const_cast<Constant*>(CPV);
116     } else if (const ConstantPointerRef *CPR =
117                       dyn_cast<ConstantPointerRef>(CPV)) {
118       Value *V = RemapOperand(CPR->getValue(), LocalMap, GlobalMap);
119       Result = ConstantPointerRef::get(cast<GlobalValue>(V));
120     } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
121       if (CE->getNumOperands() == 1) {
122         // Cast instruction
123         assert(CE->getOpcode() == Instruction::Cast);
124         Value *V = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap);
125         Result = ConstantExpr::getCast(cast<Constant>(V), 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),
132                                    cast<Constant>(V2));        
133       } 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
143         Result = ConstantExpr::getGetElementPtr(cast<Constant>(Ptr), Indices);
144       }
145
146     } else {
147       assert(0 && "Unknown type of derived type constant value!");
148     }
149
150     // Cache the mapping in our local map structure...
151     LocalMap.insert(std::make_pair(In, Result));
152     return Result;
153   }
154
155   cerr << "XXX LocalMap: \n";
156   PrintMap(LocalMap);
157
158   if (GlobalMap) {
159     cerr << "XXX GlobalMap: \n";
160     PrintMap(*GlobalMap);
161   }
162
163   cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
164   assert(0 && "Couldn't remap value!");
165   return 0;
166 }
167
168
169 // LinkGlobals - Loop through the global variables in the src module and merge
170 // them into the dest module...
171 //
172 static 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){
181     const GlobalVariable *SGV = I;
182     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     //
187     if (SGV->hasExternalLinkage() && SGV->hasName() &&
188         (V = ST->lookup(SGV->getType(), SGV->getName())) &&
189         cast<GlobalVariable>(V)->hasExternalLinkage()) {
190       // The same named thing is a global variable, because the only two things
191       // that may be in a module level symbol table are Global Vars and
192       // Functions, and they both have distinct, nonoverlapping, possible types.
193       // 
194       GlobalVariable *DGV = cast<GlobalVariable>(V);
195
196       // Check to see if the two GV's have the same Const'ness...
197       if (SGV->isConstant() != DGV->isConstant())
198         return Error(Err, "Global Variable Collision on '" + 
199                      SGV->getType()->getDescription() + "':%" + SGV->getName() +
200                      " - Global variables differ in const'ness");
201
202       // Okay, everything is cool, remember the mapping...
203       ValueMap.insert(std::make_pair(SGV, DGV));
204     } else {
205       // No linking to be performed, simply create an identical version of the
206       // symbol over in the dest module... the initializer will be filled in
207       // later by LinkGlobalInits...
208       //
209       GlobalVariable *DGV = 
210         new GlobalVariable(SGV->getType()->getElementType(), SGV->isConstant(),
211                            SGV->hasInternalLinkage(), 0, SGV->getName());
212
213       // Add the new global to the dest module
214       Dest->getGlobalList().push_back(DGV);
215
216       // Make sure to remember this mapping...
217       ValueMap.insert(std::make_pair(SGV, DGV));
218     }
219   }
220   return false;
221 }
222
223
224 // LinkGlobalInits - Update the initializers in the Dest module now that all
225 // globals that may be referenced are in Dest.
226 //
227 static 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){
234     const GlobalVariable *SGV = I;
235
236     if (SGV->hasInitializer()) {      // Only process initialized GV's
237       // Figure out what the initializer looks like in the dest module...
238       Constant *DInit =
239         cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap));
240
241       GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]);    
242       if (DGV->hasInitializer() && SGV->hasExternalLinkage() &&
243           DGV->hasExternalLinkage()) {
244         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 }
256
257 // LinkFunctionProtos - Link the functions together between the two modules,
258 // without doing function bodies... this just adds external function prototypes
259 // to the Dest function...
260 //
261 static bool LinkFunctionProtos(Module *Dest, const Module *Src,
262                                map<const Value*, Value*> &ValueMap,
263                                string *Err = 0) {
264   // 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   
268   // Loop over all of the functions in the src module, mapping them over as we
269   // go
270   //
271   for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
272     const Function *SF = I;   // SrcFunction
273     Value *V;
274
275     // 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...
277     //
278     if (SF->hasExternalLinkage() && SF->hasName() &&
279         (V = ST->lookup(SF->getType(), SF->getName())) &&
280         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.
284       // 
285       Function *DF = cast<Function>(V);   // DestFunction
286
287       // Check to make sure the function is not defined in both modules...
288       if (!SF->isExternal() && !DF->isExternal())
289         return Error(Err, "Function '" + 
290                      SF->getFunctionType()->getDescription() + "':\"" + 
291                      SF->getName() + "\" - Function is already defined!");
292
293       // Otherwise, just remember this mapping...
294       ValueMap.insert(std::make_pair(SF, DF));
295     } else {
296       // Function does not already exist, simply insert an external function
297       // signature identical to SF into the dest module...
298       Function *DF = new Function(SF->getFunctionType(),
299                                   SF->hasInternalLinkage(),
300                                   SF->getName());
301
302       // Add the function signature to the dest module...
303       Dest->getFunctionList().push_back(DF);
304
305       // ... and remember this mapping...
306       ValueMap.insert(std::make_pair(SF, DF));
307     }
308   }
309   return false;
310 }
311
312 // 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.
315 //
316 static bool LinkFunctionBody(Function *Dest, const Function *Src,
317                              const map<const Value*, Value*> &GlobalMap,
318                              string *Err = 0) {
319   assert(Src && Dest && Dest->isExternal() && !Src->isExternal());
320   map<const Value*, Value*> LocalMap;   // Map for function local values
321
322   // Go through and convert function arguments over...
323   for (Function::const_aiterator I = Src->abegin(), E = Src->aend();
324        I != E; ++I) {
325     // Create the new function argument and add to the dest function...
326     Argument *DFA = new Argument(I->getType(), I->getName());
327     Dest->getArgumentList().push_back(DFA);
328
329     // Add a mapping to our local map
330     LocalMap.insert(std::make_pair(I, DFA));
331   }
332
333   // Loop over all of the basic blocks, copying the instructions over...
334   //
335   for (Function::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) {
336     // Create new basic block and add to mapping and the Dest function...
337     BasicBlock *DBB = new BasicBlock(I->getName(), Dest);
338     LocalMap.insert(std::make_pair(I, DBB));
339
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     //
346     for (BasicBlock::const_iterator II = I->begin(), IE = I->end(); 
347          II != IE; ++II) {
348       Instruction *DI = II->clone();
349       DI->setName(II->getName());
350       DBB->getInstList().push_back(DI);
351       LocalMap.insert(std::make_pair(II, DI));
352     }
353   }
354
355   // 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...
359   //
360   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();
363            OI != OE; ++OI)
364         *OI = RemapOperand(*OI, LocalMap, &GlobalMap);
365
366   return false;
367 }
368
369
370 // 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.
373 //
374 static bool LinkFunctionBodies(Module *Dest, const Module *Src,
375                                map<const Value*, Value*> &ValueMap,
376                                string *Err = 0) {
377
378   // Loop over all of the functions in the src module, mapping them over as we
379   // go
380   //
381   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
384
385       // DF not external SF external?
386       if (!DF->isExternal()) {
387         if (Err)
388           *Err = "Function '" + (SF->hasName() ? SF->getName() : string("")) +
389                  "' body multiply defined!";
390         return true;
391       }
392
393       if (LinkFunctionBody(DF, SF, ValueMap, Err)) return true;
394     }
395   }
396   return false;
397 }
398
399
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
404 // the problem.  Upon failure, the Dest module could be in a modified state, and
405 // shouldn't be relied on to be consistent.
406 //
407 bool LinkModules(Module *Dest, const Module *Src, string *ErrorMsg) {
408
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
415   // 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
420   // Insert all of the globals in src into the Dest module... without
421   // initializers
422   if (LinkGlobals(Dest, Src, ValueMap, ErrorMsg)) return true;
423
424   // 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.
429   //
430   if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg)) return true;
431
432   // 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
437   // 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.
440   //
441   if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true;
442
443   return false;
444 }
445