Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 1 | //===- Linker.cpp - Module Linker Implementation --------------------------===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the LLVM module linker. |
| 11 | // |
| 12 | // Specifically, this: |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 13 | // * Merges global variables between the two modules |
| 14 | // * Uninit + Uninit = Init, Init + Uninit = Init, Init + Init = Error if != |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 15 | // * Merges functions between two modules |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
Misha Brukman | c837dd9 | 2004-06-23 17:24:31 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Linker.h" |
Chris Lattner | adbc0b5 | 2003-11-20 18:23:14 +0000 | [diff] [blame] | 20 | #include "llvm/Constants.h" |
| 21 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 22 | #include "llvm/Module.h" |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 23 | #include "llvm/SymbolTable.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 24 | #include "llvm/Instructions.h" |
Chris Lattner | adbc0b5 | 2003-11-20 18:23:14 +0000 | [diff] [blame] | 25 | #include "llvm/Assembly/Writer.h" |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 26 | #include "llvm/System/Path.h" |
Reid Spencer | c28a224 | 2004-07-04 11:52:49 +0000 | [diff] [blame] | 27 | #include <iostream> |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 28 | #include <sstream> |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 29 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 30 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 31 | // Error - Simple wrapper function to conditionally assign to E and return true. |
| 32 | // This just makes error return conditions a little bit simpler... |
| 33 | // |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 34 | static inline bool Error(std::string *E, const std::string &Message) { |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 35 | if (E) *E = Message; |
| 36 | return true; |
| 37 | } |
| 38 | |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 39 | static std::string ToStr(const Type *Ty, const Module *M) { |
| 40 | std::ostringstream OS; |
| 41 | WriteTypeSymbolic(OS, Ty, M); |
| 42 | return OS.str(); |
| 43 | } |
| 44 | |
John Criswell | 700867b | 2003-11-04 15:22:26 +0000 | [diff] [blame] | 45 | // |
| 46 | // Function: ResolveTypes() |
| 47 | // |
| 48 | // Description: |
| 49 | // Attempt to link the two specified types together. |
| 50 | // |
| 51 | // Inputs: |
| 52 | // DestTy - The type to which we wish to resolve. |
| 53 | // SrcTy - The original type which we want to resolve. |
| 54 | // Name - The name of the type. |
| 55 | // |
| 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 Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 62 | // |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 63 | static bool ResolveTypes(const Type *DestTy, const Type *SrcTy, |
| 64 | SymbolTable *DestST, const std::string &Name) { |
| 65 | if (DestTy == SrcTy) return false; // If already equal, noop |
| 66 | |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 67 | // Does the type already exist in the module? |
| 68 | if (DestTy && !isa<OpaqueType>(DestTy)) { // Yup, the type already exists... |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 69 | if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) { |
| 70 | const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy); |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 71 | } else { |
| 72 | return true; // Cannot link types... neither is opaque and not-equal |
| 73 | } |
| 74 | } else { // Type not in dest module. Add it now. |
| 75 | if (DestTy) // Type _is_ in module, just opaque... |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 76 | const_cast<OpaqueType*>(cast<OpaqueType>(DestTy)) |
| 77 | ->refineAbstractTypeTo(SrcTy); |
Chris Lattner | fcd0234 | 2003-08-23 20:31:10 +0000 | [diff] [blame] | 78 | else if (!Name.empty()) |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 79 | DestST->insert(Name, const_cast<Type*>(SrcTy)); |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 80 | } |
| 81 | return false; |
| 82 | } |
| 83 | |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 84 | static const FunctionType *getFT(const PATypeHolder &TH) { |
| 85 | return cast<FunctionType>(TH.get()); |
| 86 | } |
Chris Lattner | 9732be7 | 2003-08-22 20:16:48 +0000 | [diff] [blame] | 87 | static const StructType *getST(const PATypeHolder &TH) { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 88 | return cast<StructType>(TH.get()); |
| 89 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 90 | |
| 91 | // RecursiveResolveTypes - This is just like ResolveTypes, except that it |
| 92 | // recurses down into derived types, merging the used types if the parent types |
| 93 | // are compatible. |
| 94 | // |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 95 | static bool RecursiveResolveTypesI(const PATypeHolder &DestTy, |
| 96 | const PATypeHolder &SrcTy, |
| 97 | SymbolTable *DestST, const std::string &Name, |
| 98 | std::vector<std::pair<PATypeHolder, PATypeHolder> > &Pointers) { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 99 | const Type *SrcTyT = SrcTy.get(); |
| 100 | const Type *DestTyT = DestTy.get(); |
| 101 | if (DestTyT == SrcTyT) return false; // If already equal, noop |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 102 | |
| 103 | // If we found our opaque type, resolve it now! |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 104 | if (isa<OpaqueType>(DestTyT) || isa<OpaqueType>(SrcTyT)) |
| 105 | return ResolveTypes(DestTyT, SrcTyT, DestST, Name); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 106 | |
| 107 | // Two types cannot be resolved together if they are of different primitive |
| 108 | // type. For example, we cannot resolve an int to a float. |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 109 | if (DestTyT->getTypeID() != SrcTyT->getTypeID()) return true; |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 110 | |
| 111 | // Otherwise, resolve the used type used by this derived type... |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 112 | switch (DestTyT->getTypeID()) { |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 113 | case Type::FunctionTyID: { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 114 | if (cast<FunctionType>(DestTyT)->isVarArg() != |
Chris Lattner | 841e00b | 2003-08-28 16:42:50 +0000 | [diff] [blame] | 115 | cast<FunctionType>(SrcTyT)->isVarArg() || |
| 116 | cast<FunctionType>(DestTyT)->getNumContainedTypes() != |
| 117 | cast<FunctionType>(SrcTyT)->getNumContainedTypes()) |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 118 | return true; |
| 119 | for (unsigned i = 0, e = getFT(DestTy)->getNumContainedTypes(); i != e; ++i) |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 120 | if (RecursiveResolveTypesI(getFT(DestTy)->getContainedType(i), |
| 121 | getFT(SrcTy)->getContainedType(i), DestST, "", |
| 122 | Pointers)) |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 123 | return true; |
| 124 | return false; |
| 125 | } |
| 126 | case Type::StructTyID: { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 127 | if (getST(DestTy)->getNumContainedTypes() != |
| 128 | getST(SrcTy)->getNumContainedTypes()) return 1; |
| 129 | for (unsigned i = 0, e = getST(DestTy)->getNumContainedTypes(); i != e; ++i) |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 130 | if (RecursiveResolveTypesI(getST(DestTy)->getContainedType(i), |
| 131 | getST(SrcTy)->getContainedType(i), DestST, "", |
| 132 | Pointers)) |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 133 | return true; |
| 134 | return false; |
| 135 | } |
| 136 | case Type::ArrayTyID: { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 137 | const ArrayType *DAT = cast<ArrayType>(DestTy.get()); |
| 138 | const ArrayType *SAT = cast<ArrayType>(SrcTy.get()); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 139 | if (DAT->getNumElements() != SAT->getNumElements()) return true; |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 140 | return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(), |
| 141 | DestST, "", Pointers); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 142 | } |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 143 | case Type::PointerTyID: { |
| 144 | // If this is a pointer type, check to see if we have already seen it. If |
| 145 | // so, we are in a recursive branch. Cut off the search now. We cannot use |
| 146 | // an associative container for this search, because the type pointers (keys |
| 147 | // in the container) change whenever types get resolved... |
| 148 | // |
| 149 | for (unsigned i = 0, e = Pointers.size(); i != e; ++i) |
| 150 | if (Pointers[i].first == DestTy) |
| 151 | return Pointers[i].second != SrcTy; |
| 152 | |
| 153 | // Otherwise, add the current pointers to the vector to stop recursion on |
| 154 | // this pair. |
| 155 | Pointers.push_back(std::make_pair(DestTyT, SrcTyT)); |
| 156 | bool Result = |
| 157 | RecursiveResolveTypesI(cast<PointerType>(DestTy.get())->getElementType(), |
| 158 | cast<PointerType>(SrcTy.get())->getElementType(), |
| 159 | DestST, "", Pointers); |
| 160 | Pointers.pop_back(); |
| 161 | return Result; |
| 162 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 163 | default: assert(0 && "Unexpected type!"); return true; |
| 164 | } |
| 165 | } |
| 166 | |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 167 | static bool RecursiveResolveTypes(const PATypeHolder &DestTy, |
| 168 | const PATypeHolder &SrcTy, |
| 169 | SymbolTable *DestST, const std::string &Name){ |
| 170 | std::vector<std::pair<PATypeHolder, PATypeHolder> > PointerTypes; |
| 171 | return RecursiveResolveTypesI(DestTy, SrcTy, DestST, Name, PointerTypes); |
| 172 | } |
| 173 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 174 | |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 175 | // LinkTypes - Go through the symbol table of the Src module and see if any |
| 176 | // types are named in the src module that are not named in the Dst module. |
| 177 | // Make sure there are no type name conflicts. |
| 178 | // |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 179 | static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) { |
Chris Lattner | 6e6026b | 2002-11-20 18:36:02 +0000 | [diff] [blame] | 180 | SymbolTable *DestST = &Dest->getSymbolTable(); |
| 181 | const SymbolTable *SrcST = &Src->getSymbolTable(); |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 182 | |
| 183 | // Look for a type plane for Type's... |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 184 | SymbolTable::type_const_iterator TI = SrcST->type_begin(); |
| 185 | SymbolTable::type_const_iterator TE = SrcST->type_end(); |
| 186 | if (TI == TE) return false; // No named types, do nothing. |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 187 | |
Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 188 | // Some types cannot be resolved immediately because they depend on other |
| 189 | // types being resolved to each other first. This contains a list of types we |
| 190 | // are waiting to recheck. |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 191 | std::vector<std::string> DelayedTypesToResolve; |
| 192 | |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 193 | for ( ; TI != TE; ++TI ) { |
| 194 | const std::string &Name = TI->first; |
Reid Spencer | c28a224 | 2004-07-04 11:52:49 +0000 | [diff] [blame] | 195 | const Type *RHS = TI->second; |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 196 | |
| 197 | // Check to see if this type name is already in the dest module... |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 198 | Type *Entry = DestST->lookupType(Name); |
Chris Lattner | 2f6bb2b | 2003-01-30 20:53:43 +0000 | [diff] [blame] | 199 | |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 200 | if (ResolveTypes(Entry, RHS, DestST, Name)) { |
| 201 | // They look different, save the types 'till later to resolve. |
| 202 | DelayedTypesToResolve.push_back(Name); |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 203 | } |
| 204 | } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 205 | |
| 206 | // Iteratively resolve types while we can... |
| 207 | while (!DelayedTypesToResolve.empty()) { |
| 208 | // Loop over all of the types, attempting to resolve them if possible... |
| 209 | unsigned OldSize = DelayedTypesToResolve.size(); |
| 210 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 211 | // Try direct resolution by name... |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 212 | for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) { |
| 213 | const std::string &Name = DelayedTypesToResolve[i]; |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 214 | Type *T1 = SrcST->lookupType(Name); |
| 215 | Type *T2 = DestST->lookupType(Name); |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 216 | if (!ResolveTypes(T2, T1, DestST, Name)) { |
| 217 | // We are making progress! |
| 218 | DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i); |
| 219 | --i; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | // Did we not eliminate any types? |
| 224 | if (DelayedTypesToResolve.size() == OldSize) { |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 225 | // Attempt to resolve subelements of types. This allows us to merge these |
| 226 | // two types: { int* } and { opaque* } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 227 | for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) { |
| 228 | const std::string &Name = DelayedTypesToResolve[i]; |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 229 | PATypeHolder T1(SrcST->lookupType(Name)); |
| 230 | PATypeHolder T2(DestST->lookupType(Name)); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 231 | |
| 232 | if (!RecursiveResolveTypes(T2, T1, DestST, Name)) { |
| 233 | // We are making progress! |
| 234 | DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i); |
| 235 | |
| 236 | // Go back to the main loop, perhaps we can resolve directly by name |
| 237 | // now... |
| 238 | break; |
| 239 | } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 240 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 241 | |
| 242 | // If we STILL cannot resolve the types, then there is something wrong. |
Chris Lattner | aeb18ce | 2003-10-21 22:46:38 +0000 | [diff] [blame] | 243 | // Report the warning and delete one of the names. |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 244 | if (DelayedTypesToResolve.size() == OldSize) { |
Chris Lattner | aeb18ce | 2003-10-21 22:46:38 +0000 | [diff] [blame] | 245 | const std::string &Name = DelayedTypesToResolve.back(); |
| 246 | |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 247 | const Type *T1 = SrcST->lookupType(Name); |
| 248 | const Type *T2 = DestST->lookupType(Name); |
Chris Lattner | aeb18ce | 2003-10-21 22:46:38 +0000 | [diff] [blame] | 249 | std::cerr << "WARNING: Type conflict between types named '" << Name |
Chris Lattner | adbc0b5 | 2003-11-20 18:23:14 +0000 | [diff] [blame] | 250 | << "'.\n Src='"; |
| 251 | WriteTypeSymbolic(std::cerr, T1, Src); |
| 252 | std::cerr << "'.\n Dest='"; |
| 253 | WriteTypeSymbolic(std::cerr, T2, Dest); |
| 254 | std::cerr << "'\n"; |
Chris Lattner | aeb18ce | 2003-10-21 22:46:38 +0000 | [diff] [blame] | 255 | |
| 256 | // Remove the symbol name from the destination. |
| 257 | DelayedTypesToResolve.pop_back(); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 258 | } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 259 | } |
| 260 | } |
| 261 | |
| 262 | |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 263 | return false; |
| 264 | } |
| 265 | |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 266 | static void PrintMap(const std::map<const Value*, Value*> &M) { |
| 267 | for (std::map<const Value*, Value*>::const_iterator I = M.begin(), E =M.end(); |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 268 | I != E; ++I) { |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 269 | std::cerr << " Fr: " << (void*)I->first << " "; |
Chris Lattner | 87182ae | 2002-04-07 22:31:23 +0000 | [diff] [blame] | 270 | I->first->dump(); |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 271 | std::cerr << " To: " << (void*)I->second << " "; |
Chris Lattner | 87182ae | 2002-04-07 22:31:23 +0000 | [diff] [blame] | 272 | I->second->dump(); |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 273 | std::cerr << "\n"; |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 274 | } |
| 275 | } |
| 276 | |
| 277 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 278 | // RemapOperand - Use LocalMap and GlobalMap to convert references from one |
| 279 | // module to another. This is somewhat sophisticated in that it can |
| 280 | // automatically handle constant references correctly as well... |
| 281 | // |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 282 | static Value *RemapOperand(const Value *In, |
| 283 | std::map<const Value*, Value*> &LocalMap, |
| 284 | std::map<const Value*, Value*> *GlobalMap) { |
| 285 | std::map<const Value*,Value*>::const_iterator I = LocalMap.find(In); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 286 | if (I != LocalMap.end()) return I->second; |
| 287 | |
| 288 | if (GlobalMap) { |
| 289 | I = GlobalMap->find(In); |
| 290 | if (I != GlobalMap->end()) return I->second; |
| 291 | } |
| 292 | |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 293 | // Check to see if it's a constant that we are interesting in transforming... |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 294 | if (const Constant *CPV = dyn_cast<Constant>(In)) { |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 295 | if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) || |
| 296 | isa<ConstantAggregateZero>(CPV)) |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 297 | return const_cast<Constant*>(CPV); // Simple constants stay identical... |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 298 | |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 299 | Constant *Result = 0; |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 300 | |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 301 | if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) { |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 302 | std::vector<Constant*> Operands(CPA->getNumOperands()); |
| 303 | for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i) |
| 304 | Operands[i] = |
| 305 | cast<Constant>(RemapOperand(CPA->getOperand(i), LocalMap, GlobalMap)); |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 306 | Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 307 | } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) { |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 308 | std::vector<Constant*> Operands(CPS->getNumOperands()); |
| 309 | for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i) |
| 310 | Operands[i] = |
| 311 | cast<Constant>(RemapOperand(CPS->getOperand(i), LocalMap, GlobalMap)); |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 312 | Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands); |
Chris Lattner | b976e66 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 313 | } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 314 | Result = const_cast<Constant*>(CPV); |
Reid Spencer | 00dc479 | 2004-07-17 23:50:57 +0000 | [diff] [blame] | 315 | } else if (isa<GlobalValue>(CPV)) { |
| 316 | Result = cast<Constant>(RemapOperand(CPV, LocalMap, GlobalMap)); |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 317 | } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) { |
Chris Lattner | b319faf | 2002-08-20 19:35:11 +0000 | [diff] [blame] | 318 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 319 | Value *Ptr = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); |
| 320 | std::vector<Constant*> Indices; |
| 321 | Indices.reserve(CE->getNumOperands()-1); |
| 322 | for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i) |
| 323 | Indices.push_back(cast<Constant>(RemapOperand(CE->getOperand(i), |
| 324 | LocalMap, GlobalMap))); |
| 325 | |
| 326 | Result = ConstantExpr::getGetElementPtr(cast<Constant>(Ptr), Indices); |
| 327 | } else if (CE->getNumOperands() == 1) { |
Chris Lattner | ad33348 | 2002-08-14 18:24:09 +0000 | [diff] [blame] | 328 | // Cast instruction |
| 329 | assert(CE->getOpcode() == Instruction::Cast); |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 330 | Value *V = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); |
Chris Lattner | ad33348 | 2002-08-14 18:24:09 +0000 | [diff] [blame] | 331 | Result = ConstantExpr::getCast(cast<Constant>(V), CE->getType()); |
Chris Lattner | 1438102 | 2004-03-31 02:58:28 +0000 | [diff] [blame] | 332 | } else if (CE->getNumOperands() == 3) { |
| 333 | // Select instruction |
| 334 | assert(CE->getOpcode() == Instruction::Select); |
| 335 | Value *V1 = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); |
| 336 | Value *V2 = RemapOperand(CE->getOperand(1), LocalMap, GlobalMap); |
| 337 | Value *V3 = RemapOperand(CE->getOperand(2), LocalMap, GlobalMap); |
| 338 | Result = ConstantExpr::getSelect(cast<Constant>(V1), cast<Constant>(V2), |
| 339 | cast<Constant>(V3)); |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 340 | } else if (CE->getNumOperands() == 2) { |
| 341 | // Binary operator... |
| 342 | Value *V1 = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); |
| 343 | Value *V2 = RemapOperand(CE->getOperand(1), LocalMap, GlobalMap); |
| 344 | |
| 345 | Result = ConstantExpr::get(CE->getOpcode(), cast<Constant>(V1), |
Chris Lattner | d981f8a | 2003-11-05 20:37:01 +0000 | [diff] [blame] | 346 | cast<Constant>(V2)); |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 347 | } else { |
Chris Lattner | b319faf | 2002-08-20 19:35:11 +0000 | [diff] [blame] | 348 | assert(0 && "Unknown constant expr type!"); |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 349 | } |
| 350 | |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 351 | } else { |
| 352 | assert(0 && "Unknown type of derived type constant value!"); |
| 353 | } |
| 354 | |
| 355 | // Cache the mapping in our local map structure... |
Chris Lattner | d149c05 | 2002-09-23 18:14:15 +0000 | [diff] [blame] | 356 | if (GlobalMap) |
| 357 | GlobalMap->insert(std::make_pair(In, Result)); |
| 358 | else |
| 359 | LocalMap.insert(std::make_pair(In, Result)); |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 360 | return Result; |
| 361 | } |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 362 | |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 363 | std::cerr << "XXX LocalMap: \n"; |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 364 | PrintMap(LocalMap); |
| 365 | |
| 366 | if (GlobalMap) { |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 367 | std::cerr << "XXX GlobalMap: \n"; |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 368 | PrintMap(*GlobalMap); |
| 369 | } |
| 370 | |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 371 | std::cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n"; |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 372 | assert(0 && "Couldn't remap value!"); |
| 373 | return 0; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 374 | } |
| 375 | |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 376 | /// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict |
| 377 | /// in the symbol table. This is good for all clients except for us. Go |
| 378 | /// through the trouble to force this back. |
| 379 | static void ForceRenaming(GlobalValue *GV, const std::string &Name) { |
| 380 | assert(GV->getName() != Name && "Can't force rename to self"); |
| 381 | SymbolTable &ST = GV->getParent()->getSymbolTable(); |
| 382 | |
| 383 | // If there is a conflict, rename the conflict. |
| 384 | Value *ConflictVal = ST.lookup(GV->getType(), Name); |
| 385 | assert(ConflictVal&&"Why do we have to force rename if there is no conflic?"); |
| 386 | GlobalValue *ConflictGV = cast<GlobalValue>(ConflictVal); |
| 387 | assert(ConflictGV->hasInternalLinkage() && |
| 388 | "Not conflicting with a static global, should link instead!"); |
| 389 | |
| 390 | ConflictGV->setName(""); // Eliminate the conflict |
| 391 | GV->setName(Name); // Force the name back |
| 392 | ConflictGV->setName(Name); // This will cause ConflictGV to get renamed |
Chris Lattner | 7b0c84d | 2004-08-04 07:28:06 +0000 | [diff] [blame] | 393 | assert(GV->getName() == Name && ConflictGV->getName() != Name && |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 394 | "ForceRenaming didn't work"); |
| 395 | } |
| 396 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 397 | |
| 398 | // LinkGlobals - Loop through the global variables in the src module and merge |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 399 | // them into the dest module. |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 400 | // |
| 401 | static bool LinkGlobals(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 402 | std::map<const Value*, Value*> &ValueMap, |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 403 | std::multimap<std::string, GlobalVariable *> &AppendingVars, |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 404 | std::map<std::string, GlobalValue*> &GlobalsByName, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 405 | std::string *Err) { |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 406 | // We will need a module level symbol table if the src module has a module |
| 407 | // level symbol table... |
Chris Lattner | b91b657 | 2002-12-03 18:32:30 +0000 | [diff] [blame] | 408 | SymbolTable *ST = (SymbolTable*)&Dest->getSymbolTable(); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 409 | |
| 410 | // Loop over all of the globals in the src module, mapping them over as we go |
| 411 | // |
| 412 | for (Module::const_giterator I = Src->gbegin(), E = Src->gend(); I != E; ++I){ |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 413 | const GlobalVariable *SGV = I; |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 414 | GlobalVariable *DGV = 0; |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 415 | // Check to see if may have to link the global. |
Chris Lattner | aad2deb | 2004-08-04 22:39:54 +0000 | [diff] [blame] | 416 | if (SGV->hasName() && !SGV->hasInternalLinkage()) |
| 417 | if (!(DGV = Dest->getGlobalVariable(SGV->getName(), |
| 418 | SGV->getType()->getElementType()))) { |
| 419 | std::map<std::string, GlobalValue*>::iterator EGV = |
| 420 | GlobalsByName.find(SGV->getName()); |
| 421 | if (EGV != GlobalsByName.end()) |
| 422 | DGV = dyn_cast<GlobalVariable>(EGV->second); |
| 423 | if (DGV && RecursiveResolveTypes(SGV->getType(), DGV->getType(), ST, "")) |
| 424 | DGV = 0; // FIXME: gross. |
| 425 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 426 | |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 427 | assert(SGV->hasInitializer() || SGV->hasExternalLinkage() && |
| 428 | "Global must either be external or have an initializer!"); |
| 429 | |
Chris Lattner | 0fec08e | 2003-04-21 21:07:05 +0000 | [diff] [blame] | 430 | bool SGExtern = SGV->isExternal(); |
| 431 | bool DGExtern = DGV ? DGV->isExternal() : false; |
| 432 | |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 433 | if (!DGV || DGV->hasInternalLinkage() || SGV->hasInternalLinkage()) { |
| 434 | // No linking to be performed, simply create an identical version of the |
| 435 | // symbol over in the dest module... the initializer will be filled in |
| 436 | // later by LinkGlobalInits... |
| 437 | // |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 438 | GlobalVariable *NewDGV = |
| 439 | new GlobalVariable(SGV->getType()->getElementType(), |
| 440 | SGV->isConstant(), SGV->getLinkage(), /*init*/0, |
| 441 | SGV->getName(), Dest); |
| 442 | |
| 443 | // If the LLVM runtime renamed the global, but it is an externally visible |
| 444 | // symbol, DGV must be an existing global with internal linkage. Rename |
| 445 | // it. |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 446 | if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage()) |
| 447 | ForceRenaming(NewDGV, SGV->getName()); |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 448 | |
| 449 | // Make sure to remember this mapping... |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 450 | ValueMap.insert(std::make_pair(SGV, NewDGV)); |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 451 | if (SGV->hasAppendingLinkage()) |
| 452 | // Keep track that this is an appending variable... |
| 453 | AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV)); |
| 454 | |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 455 | } else if (SGV->isExternal()) { |
| 456 | // If SGV is external or if both SGV & DGV are external.. Just link the |
| 457 | // external globals, we aren't adding anything. |
| 458 | ValueMap.insert(std::make_pair(SGV, DGV)); |
| 459 | |
Chris Lattner | d4984cc | 2004-10-05 02:28:11 +0000 | [diff] [blame] | 460 | // Inherit 'const' information. |
| 461 | if (SGV->isConstant()) DGV->setConstant(true); |
| 462 | |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 463 | } else if (DGV->isExternal()) { // If DGV is external but SGV is not... |
| 464 | ValueMap.insert(std::make_pair(SGV, DGV)); |
| 465 | DGV->setLinkage(SGV->getLinkage()); // Inherit linkage! |
Chris Lattner | d4984cc | 2004-10-05 02:28:11 +0000 | [diff] [blame] | 466 | |
| 467 | if (DGV->isConstant() && !SGV->isConstant()) |
| 468 | return Error(Err, "Linking globals named '" + SGV->getName() + |
| 469 | "': declaration is const but definition is not!"); |
| 470 | |
| 471 | // Inherit 'const' information. |
| 472 | if (SGV->isConstant()) DGV->setConstant(true); |
| 473 | |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 474 | } else if (SGV->hasWeakLinkage() || SGV->hasLinkOnceLinkage()) { |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 475 | // At this point we know that DGV has LinkOnce, Appending, Weak, or |
| 476 | // External linkage. If DGV is Appending, this is an error. |
| 477 | if (DGV->hasAppendingLinkage()) |
| 478 | return Error(Err, "Linking globals named '" + SGV->getName() + |
Chris Lattner | d4984cc | 2004-10-05 02:28:11 +0000 | [diff] [blame] | 479 | "' with 'weak' and 'appending' linkage is not allowed!"); |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 480 | |
| 481 | if (SGV->isConstant() != DGV->isConstant()) |
| 482 | return Error(Err, "Global Variable Collision on '" + |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 483 | ToStr(SGV->getType(), Src) + " %" + SGV->getName() + |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 484 | "' - Global variables differ in const'ness"); |
| 485 | |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 486 | // Otherwise, just perform the link. |
| 487 | ValueMap.insert(std::make_pair(SGV, DGV)); |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 488 | |
| 489 | // Linkonce+Weak = Weak |
| 490 | if (DGV->hasLinkOnceLinkage() && SGV->hasWeakLinkage()) |
| 491 | DGV->setLinkage(SGV->getLinkage()); |
| 492 | |
| 493 | } else if (DGV->hasWeakLinkage() || DGV->hasLinkOnceLinkage()) { |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 494 | // At this point we know that SGV has LinkOnce, Appending, or External |
| 495 | // linkage. If SGV is Appending, this is an error. |
| 496 | if (SGV->hasAppendingLinkage()) |
| 497 | return Error(Err, "Linking globals named '" + SGV->getName() + |
| 498 | " ' with 'weak' and 'appending' linkage is not allowed!"); |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 499 | |
| 500 | if (SGV->isConstant() != DGV->isConstant()) |
| 501 | return Error(Err, "Global Variable Collision on '" + |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 502 | ToStr(SGV->getType(), Src) + " %" + SGV->getName() + |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 503 | "' - Global variables differ in const'ness"); |
| 504 | |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 505 | if (!SGV->hasLinkOnceLinkage()) |
| 506 | DGV->setLinkage(SGV->getLinkage()); // Inherit linkage! |
| 507 | ValueMap.insert(std::make_pair(SGV, DGV)); |
| 508 | |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 509 | } else if (SGV->getLinkage() != DGV->getLinkage()) { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 510 | return Error(Err, "Global variables named '" + SGV->getName() + |
| 511 | "' have different linkage specifiers!"); |
Chris Lattner | d4984cc | 2004-10-05 02:28:11 +0000 | [diff] [blame] | 512 | // Inherit 'const' information. |
| 513 | if (SGV->isConstant()) DGV->setConstant(true); |
| 514 | |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 515 | } else if (SGV->hasExternalLinkage()) { |
| 516 | // Allow linking two exactly identical external global variables... |
Chris Lattner | f85770c | 2003-10-21 21:52:20 +0000 | [diff] [blame] | 517 | if (SGV->isConstant() != DGV->isConstant()) |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 518 | return Error(Err, "Global Variable Collision on '" + |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 519 | ToStr(SGV->getType(), Src) + " %" + SGV->getName() + |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 520 | "' - Global variables differ in const'ness"); |
Chris Lattner | f85770c | 2003-10-21 21:52:20 +0000 | [diff] [blame] | 521 | |
| 522 | if (SGV->getInitializer() != DGV->getInitializer()) |
| 523 | return Error(Err, "Global Variable Collision on '" + |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 524 | ToStr(SGV->getType(), Src) + " %" + SGV->getName() + |
Chris Lattner | f85770c | 2003-10-21 21:52:20 +0000 | [diff] [blame] | 525 | "' - External linkage globals have different initializers"); |
| 526 | |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 527 | ValueMap.insert(std::make_pair(SGV, DGV)); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 528 | } else if (SGV->hasAppendingLinkage()) { |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 529 | // No linking is performed yet. Just insert a new copy of the global, and |
| 530 | // keep track of the fact that it is an appending variable in the |
| 531 | // AppendingVars map. The name is cleared out so that no linkage is |
| 532 | // performed. |
| 533 | GlobalVariable *NewDGV = |
| 534 | new GlobalVariable(SGV->getType()->getElementType(), |
| 535 | SGV->isConstant(), SGV->getLinkage(), /*init*/0, |
| 536 | "", Dest); |
| 537 | |
| 538 | // Make sure to remember this mapping... |
| 539 | ValueMap.insert(std::make_pair(SGV, NewDGV)); |
| 540 | |
| 541 | // Keep track that this is an appending variable... |
| 542 | AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV)); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 543 | } else { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 544 | assert(0 && "Unknown linkage!"); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 545 | } |
| 546 | } |
| 547 | return false; |
| 548 | } |
| 549 | |
| 550 | |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 551 | // LinkGlobalInits - Update the initializers in the Dest module now that all |
| 552 | // globals that may be referenced are in Dest. |
| 553 | // |
| 554 | static bool LinkGlobalInits(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 555 | std::map<const Value*, Value*> &ValueMap, |
| 556 | std::string *Err) { |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 557 | |
| 558 | // Loop over all of the globals in the src module, mapping them over as we go |
| 559 | // |
| 560 | for (Module::const_giterator I = Src->gbegin(), E = Src->gend(); I != E; ++I){ |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 561 | const GlobalVariable *SGV = I; |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 562 | |
| 563 | if (SGV->hasInitializer()) { // Only process initialized GV's |
| 564 | // Figure out what the initializer looks like in the dest module... |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 565 | Constant *SInit = |
Chris Lattner | 2f6bb2b | 2003-01-30 20:53:43 +0000 | [diff] [blame] | 566 | cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap, 0)); |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 567 | |
| 568 | GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[SGV]); |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 569 | if (DGV->hasInitializer()) { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 570 | if (SGV->hasExternalLinkage()) { |
| 571 | if (DGV->getInitializer() != SInit) |
| 572 | return Error(Err, "Global Variable Collision on '" + |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 573 | ToStr(SGV->getType(), Src) +"':%"+SGV->getName()+ |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 574 | " - Global variables have different initializers"); |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 575 | } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage()) { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 576 | // Nothing is required, mapped values will take the new global |
| 577 | // automatically. |
Chris Lattner | 57cb988 | 2004-02-17 21:56:04 +0000 | [diff] [blame] | 578 | } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage()) { |
| 579 | // Nothing is required, mapped values will take the new global |
| 580 | // automatically. |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 581 | } else if (DGV->hasAppendingLinkage()) { |
| 582 | assert(0 && "Appending linkage unimplemented!"); |
| 583 | } else { |
| 584 | assert(0 && "Unknown linkage!"); |
| 585 | } |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 586 | } else { |
| 587 | // Copy the initializer over now... |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 588 | DGV->setInitializer(SInit); |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 589 | } |
| 590 | } |
| 591 | } |
| 592 | return false; |
| 593 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 594 | |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 595 | // LinkFunctionProtos - Link the functions together between the two modules, |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 596 | // without doing function bodies... this just adds external function prototypes |
| 597 | // to the Dest function... |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 598 | // |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 599 | static bool LinkFunctionProtos(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 600 | std::map<const Value*, Value*> &ValueMap, |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 601 | std::map<std::string, GlobalValue*> &GlobalsByName, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 602 | std::string *Err) { |
Chris Lattner | b91b657 | 2002-12-03 18:32:30 +0000 | [diff] [blame] | 603 | SymbolTable *ST = (SymbolTable*)&Dest->getSymbolTable(); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 604 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 605 | // Loop over all of the functions in the src module, mapping them over as we |
| 606 | // go |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 607 | // |
| 608 | for (Module::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 609 | const Function *SF = I; // SrcFunction |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 610 | Function *DF = 0; |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 611 | if (SF->hasName() && !SF->hasInternalLinkage()) { |
| 612 | // Check to see if may have to link the function. |
Chris Lattner | aad2deb | 2004-08-04 22:39:54 +0000 | [diff] [blame] | 613 | if (!(DF = Dest->getFunction(SF->getName(), SF->getFunctionType()))) { |
| 614 | std::map<std::string, GlobalValue*>::iterator EF = |
| 615 | GlobalsByName.find(SF->getName()); |
| 616 | if (EF != GlobalsByName.end()) |
| 617 | DF = dyn_cast<Function>(EF->second); |
| 618 | if (DF && RecursiveResolveTypes(SF->getType(), DF->getType(), ST, "")) |
| 619 | DF = 0; // FIXME: gross. |
| 620 | } |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 621 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 622 | |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 623 | if (!DF || SF->hasInternalLinkage() || DF->hasInternalLinkage()) { |
Chris Lattner | 0fec08e | 2003-04-21 21:07:05 +0000 | [diff] [blame] | 624 | // Function does not already exist, simply insert an function signature |
| 625 | // identical to SF into the dest module... |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 626 | Function *NewDF = new Function(SF->getFunctionType(), SF->getLinkage(), |
| 627 | SF->getName(), Dest); |
| 628 | |
| 629 | // If the LLVM runtime renamed the function, but it is an externally |
| 630 | // visible symbol, DF must be an existing function with internal linkage. |
| 631 | // Rename it. |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 632 | if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage()) |
Chris Lattner | 82b5b21 | 2004-08-04 22:29:05 +0000 | [diff] [blame] | 633 | ForceRenaming(NewDF, SF->getName()); |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 634 | |
| 635 | // ... and remember this mapping... |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 636 | ValueMap.insert(std::make_pair(SF, NewDF)); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 637 | } else if (SF->isExternal()) { |
| 638 | // If SF is external or if both SF & DF are external.. Just link the |
| 639 | // external functions, we aren't adding anything. |
| 640 | ValueMap.insert(std::make_pair(SF, DF)); |
| 641 | } else if (DF->isExternal()) { // If DF is external but SF is not... |
| 642 | // Link the external functions, update linkage qualifiers |
| 643 | ValueMap.insert(std::make_pair(SF, DF)); |
| 644 | DF->setLinkage(SF->getLinkage()); |
| 645 | |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 646 | } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage()) { |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 647 | // At this point we know that DF has LinkOnce, Weak, or External linkage. |
| 648 | ValueMap.insert(std::make_pair(SF, DF)); |
| 649 | |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 650 | // Linkonce+Weak = Weak |
| 651 | if (DF->hasLinkOnceLinkage() && SF->hasWeakLinkage()) |
| 652 | DF->setLinkage(SF->getLinkage()); |
| 653 | |
| 654 | } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage()) { |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 655 | // At this point we know that SF has LinkOnce or External linkage. |
| 656 | ValueMap.insert(std::make_pair(SF, DF)); |
| 657 | if (!SF->hasLinkOnceLinkage()) // Don't inherit linkonce linkage |
| 658 | DF->setLinkage(SF->getLinkage()); |
| 659 | |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 660 | } else if (SF->getLinkage() != DF->getLinkage()) { |
Chris Lattner | 0fec08e | 2003-04-21 21:07:05 +0000 | [diff] [blame] | 661 | return Error(Err, "Functions named '" + SF->getName() + |
| 662 | "' have different linkage specifiers!"); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 663 | } else if (SF->hasExternalLinkage()) { |
| 664 | // The function is defined in both modules!! |
| 665 | return Error(Err, "Function '" + |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 666 | ToStr(SF->getFunctionType(), Src) + "':\"" + |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 667 | SF->getName() + "\" - Function is already defined!"); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 668 | } else { |
| 669 | assert(0 && "Unknown linkage configuration found!"); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | return false; |
| 673 | } |
| 674 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 675 | // LinkFunctionBody - Copy the source function over into the dest function and |
| 676 | // fix up references to values. At this point we know that Dest is an external |
| 677 | // function, and that Src is not. |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 678 | // |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 679 | static bool LinkFunctionBody(Function *Dest, const Function *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 680 | std::map<const Value*, Value*> &GlobalMap, |
| 681 | std::string *Err) { |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 682 | assert(Src && Dest && Dest->isExternal() && !Src->isExternal()); |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 683 | std::map<const Value*, Value*> LocalMap; // Map for function local values |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 684 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 685 | // Go through and convert function arguments over... |
Chris Lattner | 69da5cf | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 686 | Function::aiterator DI = Dest->abegin(); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 687 | for (Function::const_aiterator I = Src->abegin(), E = Src->aend(); |
Chris Lattner | 69da5cf | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 688 | I != E; ++I, ++DI) { |
| 689 | DI->setName(I->getName()); // Copy the name information over... |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 690 | |
| 691 | // Add a mapping to our local map |
Chris Lattner | 69da5cf | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 692 | LocalMap.insert(std::make_pair(I, DI)); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | // Loop over all of the basic blocks, copying the instructions over... |
| 696 | // |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 697 | for (Function::const_iterator I = Src->begin(), E = Src->end(); I != E; ++I) { |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 698 | // Create new basic block and add to mapping and the Dest function... |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 699 | BasicBlock *DBB = new BasicBlock(I->getName(), Dest); |
| 700 | LocalMap.insert(std::make_pair(I, DBB)); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 701 | |
| 702 | // Loop over all of the instructions in the src basic block, copying them |
| 703 | // over. Note that this is broken in a strict sense because the cloned |
| 704 | // instructions will still be referencing values in the Src module, not |
| 705 | // the remapped values. In our case, however, we will not get caught and |
| 706 | // so we can delay patching the values up until later... |
| 707 | // |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 708 | for (BasicBlock::const_iterator II = I->begin(), IE = I->end(); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 709 | II != IE; ++II) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 710 | Instruction *DI = II->clone(); |
| 711 | DI->setName(II->getName()); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 712 | DBB->getInstList().push_back(DI); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 713 | LocalMap.insert(std::make_pair(II, DI)); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 714 | } |
| 715 | } |
| 716 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 717 | // At this point, all of the instructions and values of the function are now |
| 718 | // copied over. The only problem is that they are still referencing values in |
| 719 | // the Source function as operands. Loop through all of the operands of the |
| 720 | // functions and patch them up to point to the local versions... |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 721 | // |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 722 | for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB) |
| 723 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 724 | for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end(); |
Chris Lattner | 221d688 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 725 | OI != OE; ++OI) |
| 726 | *OI = RemapOperand(*OI, LocalMap, &GlobalMap); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 727 | |
| 728 | return false; |
| 729 | } |
| 730 | |
| 731 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 732 | // LinkFunctionBodies - Link in the function bodies that are defined in the |
| 733 | // source module into the DestModule. This consists basically of copying the |
| 734 | // function over and fixing up references to values. |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 735 | // |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 736 | static bool LinkFunctionBodies(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 737 | std::map<const Value*, Value*> &ValueMap, |
| 738 | std::string *Err) { |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 739 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 740 | // Loop over all of the functions in the src module, mapping them over as we |
| 741 | // go |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 742 | // |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 743 | for (Module::const_iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF){ |
| 744 | if (!SF->isExternal()) { // No body if function is external |
| 745 | Function *DF = cast<Function>(ValueMap[SF]); // Destination function |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 746 | |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 747 | // DF not external SF external? |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 748 | if (DF->isExternal()) { |
| 749 | // Only provide the function body if there isn't one already. |
| 750 | if (LinkFunctionBody(DF, SF, ValueMap, Err)) |
| 751 | return true; |
Chris Lattner | c2d774b | 2001-10-23 20:43:42 +0000 | [diff] [blame] | 752 | } |
Chris Lattner | c2d774b | 2001-10-23 20:43:42 +0000 | [diff] [blame] | 753 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 754 | } |
| 755 | return false; |
| 756 | } |
| 757 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 758 | // LinkAppendingVars - If there were any appending global variables, link them |
| 759 | // together now. Return true on error. |
| 760 | // |
| 761 | static bool LinkAppendingVars(Module *M, |
| 762 | std::multimap<std::string, GlobalVariable *> &AppendingVars, |
| 763 | std::string *ErrorMsg) { |
| 764 | if (AppendingVars.empty()) return false; // Nothing to do. |
| 765 | |
| 766 | // Loop over the multimap of appending vars, processing any variables with the |
| 767 | // same name, forming a new appending global variable with both of the |
| 768 | // initializers merged together, then rewrite references to the old variables |
| 769 | // and delete them. |
| 770 | // |
| 771 | std::vector<Constant*> Inits; |
| 772 | while (AppendingVars.size() > 1) { |
| 773 | // Get the first two elements in the map... |
| 774 | std::multimap<std::string, |
| 775 | GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++; |
| 776 | |
| 777 | // If the first two elements are for different names, there is no pair... |
| 778 | // Otherwise there is a pair, so link them together... |
| 779 | if (First->first == Second->first) { |
| 780 | GlobalVariable *G1 = First->second, *G2 = Second->second; |
| 781 | const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType()); |
| 782 | const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType()); |
| 783 | |
| 784 | // Check to see that they two arrays agree on type... |
| 785 | if (T1->getElementType() != T2->getElementType()) |
| 786 | return Error(ErrorMsg, |
| 787 | "Appending variables with different element types need to be linked!"); |
| 788 | if (G1->isConstant() != G2->isConstant()) |
| 789 | return Error(ErrorMsg, |
| 790 | "Appending variables linked with different const'ness!"); |
| 791 | |
| 792 | unsigned NewSize = T1->getNumElements() + T2->getNumElements(); |
| 793 | ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize); |
| 794 | |
| 795 | // Create the new global variable... |
| 796 | GlobalVariable *NG = |
| 797 | new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(), |
| 798 | /*init*/0, First->first, M); |
| 799 | |
| 800 | // Merge the initializer... |
| 801 | Inits.reserve(NewSize); |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 802 | if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) { |
| 803 | for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i) |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 804 | Inits.push_back(I->getOperand(i)); |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 805 | } else { |
| 806 | assert(isa<ConstantAggregateZero>(G1->getInitializer())); |
| 807 | Constant *CV = Constant::getNullValue(T1->getElementType()); |
| 808 | for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i) |
| 809 | Inits.push_back(CV); |
| 810 | } |
| 811 | if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) { |
| 812 | for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i) |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 813 | Inits.push_back(I->getOperand(i)); |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 814 | } else { |
| 815 | assert(isa<ConstantAggregateZero>(G2->getInitializer())); |
| 816 | Constant *CV = Constant::getNullValue(T2->getElementType()); |
| 817 | for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i) |
| 818 | Inits.push_back(CV); |
| 819 | } |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 820 | NG->setInitializer(ConstantArray::get(NewType, Inits)); |
| 821 | Inits.clear(); |
| 822 | |
| 823 | // Replace any uses of the two global variables with uses of the new |
| 824 | // global... |
| 825 | |
| 826 | // FIXME: This should rewrite simple/straight-forward uses such as |
| 827 | // getelementptr instructions to not use the Cast! |
Reid Spencer | 00dc479 | 2004-07-17 23:50:57 +0000 | [diff] [blame] | 828 | G1->replaceAllUsesWith(ConstantExpr::getCast(NG, G1->getType())); |
| 829 | G2->replaceAllUsesWith(ConstantExpr::getCast(NG, G2->getType())); |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 830 | |
| 831 | // Remove the two globals from the module now... |
| 832 | M->getGlobalList().erase(G1); |
| 833 | M->getGlobalList().erase(G2); |
| 834 | |
| 835 | // Put the new global into the AppendingVars map so that we can handle |
| 836 | // linking of more than two vars... |
| 837 | Second->second = NG; |
| 838 | } |
| 839 | AppendingVars.erase(First); |
| 840 | } |
| 841 | |
| 842 | return false; |
| 843 | } |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 844 | |
| 845 | |
| 846 | // LinkModules - This function links two modules together, with the resulting |
| 847 | // left module modified to be the composite of the two input modules. If an |
| 848 | // error occurs, true is returned and ErrorMsg (if not null) is set to indicate |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 849 | // the problem. Upon failure, the Dest module could be in a modified state, and |
| 850 | // shouldn't be relied on to be consistent. |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 851 | // |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 852 | bool llvm::LinkModules(Module *Dest, const Module *Src, std::string *ErrorMsg) { |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 853 | assert(Dest != 0 && "Invalid Destination module"); |
| 854 | assert(Src != 0 && "Invalid Source Module"); |
| 855 | |
Chris Lattner | 873c5e7 | 2003-08-24 19:26:42 +0000 | [diff] [blame] | 856 | if (Dest->getEndianness() == Module::AnyEndianness) |
| 857 | Dest->setEndianness(Src->getEndianness()); |
| 858 | if (Dest->getPointerSize() == Module::AnyPointerSize) |
| 859 | Dest->setPointerSize(Src->getPointerSize()); |
| 860 | |
| 861 | if (Src->getEndianness() != Module::AnyEndianness && |
| 862 | Dest->getEndianness() != Src->getEndianness()) |
Chris Lattner | 43a9994 | 2003-04-22 19:13:20 +0000 | [diff] [blame] | 863 | std::cerr << "WARNING: Linking two modules of different endianness!\n"; |
Chris Lattner | 873c5e7 | 2003-08-24 19:26:42 +0000 | [diff] [blame] | 864 | if (Src->getPointerSize() != Module::AnyPointerSize && |
| 865 | Dest->getPointerSize() != Src->getPointerSize()) |
Chris Lattner | 43a9994 | 2003-04-22 19:13:20 +0000 | [diff] [blame] | 866 | std::cerr << "WARNING: Linking two modules of different pointer size!\n"; |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 867 | |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 868 | // Update the destination module's dependent libraries list with the libraries |
| 869 | // from the source module. There's no opportunity for duplicates here as the |
| 870 | // Module ensures that duplicate insertions are discarded. |
| 871 | Module::lib_iterator SI = Src->lib_begin(); |
| 872 | Module::lib_iterator SE = Src->lib_end(); |
| 873 | while ( SI != SE ) { |
| 874 | Dest->addLibrary(*SI); |
| 875 | ++SI; |
| 876 | } |
| 877 | |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 878 | // LinkTypes - Go through the symbol table of the Src module and see if any |
| 879 | // types are named in the src module that are not named in the Dst module. |
| 880 | // Make sure there are no type name conflicts. |
| 881 | // |
| 882 | if (LinkTypes(Dest, Src, ErrorMsg)) return true; |
| 883 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 884 | // ValueMap - Mapping of values from what they used to be in Src, to what they |
| 885 | // are now in Dest. |
| 886 | // |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 887 | std::map<const Value*, Value*> ValueMap; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 888 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 889 | // AppendingVars - Keep track of global variables in the destination module |
| 890 | // with appending linkage. After the module is linked together, they are |
| 891 | // appended and the module is rewritten. |
| 892 | // |
| 893 | std::multimap<std::string, GlobalVariable *> AppendingVars; |
| 894 | |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 895 | // GlobalsByName - The LLVM SymbolTable class fights our best efforts at |
| 896 | // linking by separating globals by type. Until PR411 is fixed, we replicate |
| 897 | // it's functionality here. |
| 898 | std::map<std::string, GlobalValue*> GlobalsByName; |
| 899 | |
| 900 | for (Module::giterator I = Dest->gbegin(), E = Dest->gend(); I != E; ++I) { |
| 901 | // Add all of the appending globals already in the Dest module to |
| 902 | // AppendingVars. |
Chris Lattner | f414646 | 2003-05-14 12:11:51 +0000 | [diff] [blame] | 903 | if (I->hasAppendingLinkage()) |
| 904 | AppendingVars.insert(std::make_pair(I->getName(), I)); |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 905 | |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 906 | // Keep track of all globals by name. |
| 907 | if (!I->hasInternalLinkage() && I->hasName()) |
| 908 | GlobalsByName[I->getName()] = I; |
| 909 | } |
| 910 | |
| 911 | // Keep track of all globals by name. |
| 912 | for (Module::iterator I = Dest->begin(), E = Dest->end(); I != E; ++I) |
| 913 | if (!I->hasInternalLinkage() && I->hasName()) |
| 914 | GlobalsByName[I->getName()] = I; |
| 915 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 916 | // Insert all of the globals in src into the Dest module... without linking |
| 917 | // initializers (which could refer to functions not yet mapped over). |
| 918 | // |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 919 | if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, GlobalsByName, ErrorMsg)) |
| 920 | return true; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 921 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 922 | // Link the functions together between the two modules, without doing function |
| 923 | // bodies... this just adds external function prototypes to the Dest |
| 924 | // function... We do this so that when we begin processing function bodies, |
| 925 | // all of the global values that may be referenced are available in our |
| 926 | // ValueMap. |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 927 | // |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 928 | if (LinkFunctionProtos(Dest, Src, ValueMap, GlobalsByName, ErrorMsg)) |
| 929 | return true; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 930 | |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 931 | // Update the initializers in the Dest module now that all globals that may |
| 932 | // be referenced are in Dest. |
| 933 | // |
| 934 | if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true; |
| 935 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 936 | // Link in the function bodies that are defined in the source module into the |
| 937 | // DestModule. This consists basically of copying the function over and |
| 938 | // fixing up references to values. |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 939 | // |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 940 | if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true; |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 941 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 942 | // If there were any appending global variables, link them together now. |
| 943 | // |
| 944 | if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true; |
| 945 | |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 946 | // If the source library's module id is in the dependent library list of the |
| 947 | // destination library, remove it since that module is now linked in. |
| 948 | sys::Path modId; |
| 949 | modId.set_file(Src->getModuleIdentifier()); |
| 950 | if (!modId.is_empty()) |
| 951 | Dest->removeLibrary(modId.get_basename()); |
| 952 | |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 953 | return false; |
| 954 | } |
Vikram S. Adve | 9466f51 | 2001-10-28 21:38:02 +0000 | [diff] [blame] | 955 | |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 956 | // vim: sw=2 |