Reid Spencer | 7f49602 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1 | //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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 | |
Reid Spencer | 7cc371a | 2004-11-14 23:27:04 +0000 | [diff] [blame] | 19 | #include "llvm/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" |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 23 | #include "llvm/TypeSymbolTable.h" |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 24 | #include "llvm/ValueSymbolTable.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 25 | #include "llvm/Instructions.h" |
Chris Lattner | adbc0b5 | 2003-11-20 18:23:14 +0000 | [diff] [blame] | 26 | #include "llvm/Assembly/Writer.h" |
Bill Wendling | 41edad7 | 2006-11-27 10:09:12 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Streams.h" |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 28 | #include "llvm/System/Path.h" |
Bill Wendling | 1a097e3 | 2006-12-07 23:41:45 +0000 | [diff] [blame] | 29 | #include <sstream> |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 32 | // Error - Simple wrapper function to conditionally assign to E and return true. |
| 33 | // This just makes error return conditions a little bit simpler... |
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 | |
Reid Spencer | 719012d | 2004-11-25 09:29:44 +0000 | [diff] [blame] | 39 | // ToStr - Simple wrapper function to convert a type to a string. |
Chris Lattner | 72cf7df | 2004-08-21 00:50:59 +0000 | [diff] [blame] | 40 | static std::string ToStr(const Type *Ty, const Module *M) { |
| 41 | std::ostringstream OS; |
| 42 | WriteTypeSymbolic(OS, Ty, M); |
| 43 | return OS.str(); |
| 44 | } |
| 45 | |
John Criswell | 700867b | 2003-11-04 15:22:26 +0000 | [diff] [blame] | 46 | // |
| 47 | // Function: ResolveTypes() |
| 48 | // |
| 49 | // Description: |
| 50 | // Attempt to link the two specified types together. |
| 51 | // |
| 52 | // Inputs: |
| 53 | // DestTy - The type to which we wish to resolve. |
| 54 | // SrcTy - The original type which we want to resolve. |
| 55 | // Name - The name of the type. |
| 56 | // |
| 57 | // Outputs: |
| 58 | // DestST - The symbol table in which the new type should be placed. |
| 59 | // |
| 60 | // Return value: |
| 61 | // true - There is an error and the types cannot yet be linked. |
| 62 | // false - No errors. |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 63 | // |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 64 | static bool ResolveTypes(const Type *DestTy, const Type *SrcTy, |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 65 | TypeSymbolTable *DestST, const std::string &Name) { |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 66 | if (DestTy == SrcTy) return false; // If already equal, noop |
| 67 | |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 68 | // Does the type already exist in the module? |
| 69 | if (DestTy && !isa<OpaqueType>(DestTy)) { // Yup, the type already exists... |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 70 | if (const OpaqueType *OT = dyn_cast<OpaqueType>(SrcTy)) { |
| 71 | const_cast<OpaqueType*>(OT)->refineAbstractTypeTo(DestTy); |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 72 | } else { |
| 73 | return true; // Cannot link types... neither is opaque and not-equal |
| 74 | } |
| 75 | } else { // Type not in dest module. Add it now. |
| 76 | if (DestTy) // Type _is_ in module, just opaque... |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 77 | const_cast<OpaqueType*>(cast<OpaqueType>(DestTy)) |
| 78 | ->refineAbstractTypeTo(SrcTy); |
Chris Lattner | fcd0234 | 2003-08-23 20:31:10 +0000 | [diff] [blame] | 79 | else if (!Name.empty()) |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 80 | DestST->insert(Name, const_cast<Type*>(SrcTy)); |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 81 | } |
| 82 | return false; |
| 83 | } |
| 84 | |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 85 | static const FunctionType *getFT(const PATypeHolder &TH) { |
| 86 | return cast<FunctionType>(TH.get()); |
| 87 | } |
Chris Lattner | 9732be7 | 2003-08-22 20:16:48 +0000 | [diff] [blame] | 88 | static const StructType *getST(const PATypeHolder &TH) { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 89 | return cast<StructType>(TH.get()); |
| 90 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 91 | |
| 92 | // RecursiveResolveTypes - This is just like ResolveTypes, except that it |
| 93 | // recurses down into derived types, merging the used types if the parent types |
| 94 | // are compatible. |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 95 | static bool RecursiveResolveTypesI(const PATypeHolder &DestTy, |
| 96 | const PATypeHolder &SrcTy, |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 97 | TypeSymbolTable *DestST, |
| 98 | const std::string &Name, |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 99 | std::vector<std::pair<PATypeHolder, PATypeHolder> > &Pointers) { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 100 | const Type *SrcTyT = SrcTy.get(); |
| 101 | const Type *DestTyT = DestTy.get(); |
| 102 | if (DestTyT == SrcTyT) return false; // If already equal, noop |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 103 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 104 | // If we found our opaque type, resolve it now! |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 105 | if (isa<OpaqueType>(DestTyT) || isa<OpaqueType>(SrcTyT)) |
| 106 | return ResolveTypes(DestTyT, SrcTyT, DestST, Name); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 107 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 108 | // Two types cannot be resolved together if they are of different primitive |
| 109 | // type. For example, we cannot resolve an int to a float. |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 110 | if (DestTyT->getTypeID() != SrcTyT->getTypeID()) return true; |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 111 | |
| 112 | // Otherwise, resolve the used type used by this derived type... |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 113 | switch (DestTyT->getTypeID()) { |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 114 | case Type::IntegerTyID: { |
| 115 | if (cast<IntegerType>(DestTyT)->getBitWidth() != |
| 116 | cast<IntegerType>(SrcTyT)->getBitWidth()) |
| 117 | return true; |
| 118 | return false; |
| 119 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 120 | case Type::FunctionTyID: { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 121 | if (cast<FunctionType>(DestTyT)->isVarArg() != |
Chris Lattner | 841e00b | 2003-08-28 16:42:50 +0000 | [diff] [blame] | 122 | cast<FunctionType>(SrcTyT)->isVarArg() || |
| 123 | cast<FunctionType>(DestTyT)->getNumContainedTypes() != |
| 124 | cast<FunctionType>(SrcTyT)->getNumContainedTypes()) |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 125 | return true; |
| 126 | for (unsigned i = 0, e = getFT(DestTy)->getNumContainedTypes(); i != e; ++i) |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 127 | if (RecursiveResolveTypesI(getFT(DestTy)->getContainedType(i), |
| 128 | getFT(SrcTy)->getContainedType(i), DestST, "", |
| 129 | Pointers)) |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 130 | return true; |
| 131 | return false; |
| 132 | } |
| 133 | case Type::StructTyID: { |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 134 | if (getST(DestTy)->getNumContainedTypes() != |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 135 | getST(SrcTy)->getNumContainedTypes()) return 1; |
| 136 | for (unsigned i = 0, e = getST(DestTy)->getNumContainedTypes(); i != e; ++i) |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 137 | if (RecursiveResolveTypesI(getST(DestTy)->getContainedType(i), |
| 138 | getST(SrcTy)->getContainedType(i), DestST, "", |
| 139 | Pointers)) |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 140 | return true; |
| 141 | return false; |
| 142 | } |
| 143 | case Type::ArrayTyID: { |
Chris Lattner | 43f4ba8 | 2003-08-22 19:12:55 +0000 | [diff] [blame] | 144 | const ArrayType *DAT = cast<ArrayType>(DestTy.get()); |
| 145 | const ArrayType *SAT = cast<ArrayType>(SrcTy.get()); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 146 | if (DAT->getNumElements() != SAT->getNumElements()) return true; |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 147 | return RecursiveResolveTypesI(DAT->getElementType(), SAT->getElementType(), |
| 148 | DestST, "", Pointers); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 149 | } |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 150 | case Type::PointerTyID: { |
| 151 | // If this is a pointer type, check to see if we have already seen it. If |
| 152 | // so, we are in a recursive branch. Cut off the search now. We cannot use |
| 153 | // an associative container for this search, because the type pointers (keys |
| 154 | // in the container) change whenever types get resolved... |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 155 | for (unsigned i = 0, e = Pointers.size(); i != e; ++i) |
| 156 | if (Pointers[i].first == DestTy) |
| 157 | return Pointers[i].second != SrcTy; |
| 158 | |
| 159 | // Otherwise, add the current pointers to the vector to stop recursion on |
| 160 | // this pair. |
| 161 | Pointers.push_back(std::make_pair(DestTyT, SrcTyT)); |
| 162 | bool Result = |
| 163 | RecursiveResolveTypesI(cast<PointerType>(DestTy.get())->getElementType(), |
| 164 | cast<PointerType>(SrcTy.get())->getElementType(), |
| 165 | DestST, "", Pointers); |
| 166 | Pointers.pop_back(); |
| 167 | return Result; |
| 168 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 169 | default: assert(0 && "Unexpected type!"); return true; |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 170 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 171 | } |
| 172 | |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 173 | static bool RecursiveResolveTypes(const PATypeHolder &DestTy, |
| 174 | const PATypeHolder &SrcTy, |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 175 | TypeSymbolTable *DestST, |
| 176 | const std::string &Name){ |
Chris Lattner | e3092c9 | 2003-08-23 21:25:54 +0000 | [diff] [blame] | 177 | std::vector<std::pair<PATypeHolder, PATypeHolder> > PointerTypes; |
| 178 | return RecursiveResolveTypesI(DestTy, SrcTy, DestST, Name, PointerTypes); |
| 179 | } |
| 180 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 181 | |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 182 | // LinkTypes - Go through the symbol table of the Src module and see if any |
| 183 | // types are named in the src module that are not named in the Dst module. |
| 184 | // Make sure there are no type name conflicts. |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 185 | static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) { |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 186 | TypeSymbolTable *DestST = &Dest->getTypeSymbolTable(); |
| 187 | const TypeSymbolTable *SrcST = &Src->getTypeSymbolTable(); |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 188 | |
| 189 | // Look for a type plane for Type's... |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 190 | TypeSymbolTable::const_iterator TI = SrcST->begin(); |
| 191 | TypeSymbolTable::const_iterator TE = SrcST->end(); |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 192 | if (TI == TE) return false; // No named types, do nothing. |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 193 | |
Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 194 | // Some types cannot be resolved immediately because they depend on other |
| 195 | // types being resolved to each other first. This contains a list of types we |
| 196 | // are waiting to recheck. |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 197 | std::vector<std::string> DelayedTypesToResolve; |
| 198 | |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 199 | for ( ; TI != TE; ++TI ) { |
| 200 | const std::string &Name = TI->first; |
Reid Spencer | c28a224 | 2004-07-04 11:52:49 +0000 | [diff] [blame] | 201 | const Type *RHS = TI->second; |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 202 | |
| 203 | // Check to see if this type name is already in the dest module... |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 204 | Type *Entry = DestST->lookup(Name); |
Chris Lattner | 2f6bb2b | 2003-01-30 20:53:43 +0000 | [diff] [blame] | 205 | |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 206 | if (ResolveTypes(Entry, RHS, DestST, Name)) { |
| 207 | // They look different, save the types 'till later to resolve. |
| 208 | DelayedTypesToResolve.push_back(Name); |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 209 | } |
| 210 | } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 211 | |
| 212 | // Iteratively resolve types while we can... |
| 213 | while (!DelayedTypesToResolve.empty()) { |
| 214 | // Loop over all of the types, attempting to resolve them if possible... |
| 215 | unsigned OldSize = DelayedTypesToResolve.size(); |
| 216 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 217 | // Try direct resolution by name... |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 218 | for (unsigned i = 0; i != DelayedTypesToResolve.size(); ++i) { |
| 219 | const std::string &Name = DelayedTypesToResolve[i]; |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 220 | Type *T1 = SrcST->lookup(Name); |
| 221 | Type *T2 = DestST->lookup(Name); |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 222 | if (!ResolveTypes(T2, T1, DestST, Name)) { |
| 223 | // We are making progress! |
| 224 | DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i); |
| 225 | --i; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | // Did we not eliminate any types? |
| 230 | if (DelayedTypesToResolve.size() == OldSize) { |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 231 | // Attempt to resolve subelements of types. This allows us to merge these |
| 232 | // two types: { int* } and { opaque* } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 233 | for (unsigned i = 0, e = DelayedTypesToResolve.size(); i != e; ++i) { |
| 234 | const std::string &Name = DelayedTypesToResolve[i]; |
Reid Spencer | 78d033e | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 235 | PATypeHolder T1(SrcST->lookup(Name)); |
| 236 | PATypeHolder T2(DestST->lookup(Name)); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 237 | |
| 238 | if (!RecursiveResolveTypes(T2, T1, DestST, Name)) { |
| 239 | // We are making progress! |
| 240 | DelayedTypesToResolve.erase(DelayedTypesToResolve.begin()+i); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 241 | |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 242 | // Go back to the main loop, perhaps we can resolve directly by name |
| 243 | // now... |
| 244 | break; |
| 245 | } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 246 | } |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 247 | |
| 248 | // If we STILL cannot resolve the types, then there is something wrong. |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 249 | if (DelayedTypesToResolve.size() == OldSize) { |
Chris Lattner | aeb18ce | 2003-10-21 22:46:38 +0000 | [diff] [blame] | 250 | // Remove the symbol name from the destination. |
| 251 | DelayedTypesToResolve.pop_back(); |
Chris Lattner | e76c57a | 2003-08-22 06:07:12 +0000 | [diff] [blame] | 252 | } |
Chris Lattner | 4c00e53 | 2003-05-15 16:30:55 +0000 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | |
| 256 | |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 257 | return false; |
| 258 | } |
| 259 | |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 260 | static void PrintMap(const std::map<const Value*, Value*> &M) { |
| 261 | 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] | 262 | I != E; ++I) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 263 | cerr << " Fr: " << (void*)I->first << " "; |
Chris Lattner | 87182ae | 2002-04-07 22:31:23 +0000 | [diff] [blame] | 264 | I->first->dump(); |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 265 | cerr << " To: " << (void*)I->second << " "; |
Chris Lattner | 87182ae | 2002-04-07 22:31:23 +0000 | [diff] [blame] | 266 | I->second->dump(); |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 267 | cerr << "\n"; |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 268 | } |
| 269 | } |
| 270 | |
| 271 | |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 272 | // RemapOperand - Use ValueMap to convert constants from one module to another. |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 273 | static Value *RemapOperand(const Value *In, |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 274 | std::map<const Value*, Value*> &ValueMap) { |
| 275 | std::map<const Value*,Value*>::const_iterator I = ValueMap.find(In); |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 276 | if (I != ValueMap.end()) |
| 277 | return I->second; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 278 | |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 279 | // Check to see if it's a constant that we are interested in transforming. |
Chris Lattner | 620fd68 | 2006-06-01 19:14:22 +0000 | [diff] [blame] | 280 | Value *Result = 0; |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 281 | if (const Constant *CPV = dyn_cast<Constant>(In)) { |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 282 | if ((!isa<DerivedType>(CPV->getType()) && !isa<ConstantExpr>(CPV)) || |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 283 | isa<ConstantInt>(CPV) || isa<ConstantAggregateZero>(CPV)) |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 284 | return const_cast<Constant*>(CPV); // Simple constants stay identical. |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 285 | |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 286 | if (const ConstantArray *CPA = dyn_cast<ConstantArray>(CPV)) { |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 287 | std::vector<Constant*> Operands(CPA->getNumOperands()); |
| 288 | for (unsigned i = 0, e = CPA->getNumOperands(); i != e; ++i) |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 289 | Operands[i] =cast<Constant>(RemapOperand(CPA->getOperand(i), ValueMap)); |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 290 | Result = ConstantArray::get(cast<ArrayType>(CPA->getType()), Operands); |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 291 | } else if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(CPV)) { |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 292 | std::vector<Constant*> Operands(CPS->getNumOperands()); |
| 293 | for (unsigned i = 0, e = CPS->getNumOperands(); i != e; ++i) |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 294 | Operands[i] =cast<Constant>(RemapOperand(CPS->getOperand(i), ValueMap)); |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 295 | Result = ConstantStruct::get(cast<StructType>(CPS->getType()), Operands); |
Chris Lattner | b976e66 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 296 | } else if (isa<ConstantPointerNull>(CPV) || isa<UndefValue>(CPV)) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 297 | Result = const_cast<Constant*>(CPV); |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 298 | } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CPV)) { |
Chris Lattner | a88eb92 | 2006-01-19 23:15:58 +0000 | [diff] [blame] | 299 | std::vector<Constant*> Operands(CP->getNumOperands()); |
| 300 | for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) |
| 301 | Operands[i] = cast<Constant>(RemapOperand(CP->getOperand(i), ValueMap)); |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 302 | Result = ConstantVector::get(Operands); |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 303 | } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) { |
Chris Lattner | 27d6721 | 2006-07-14 22:21:31 +0000 | [diff] [blame] | 304 | std::vector<Constant*> Ops; |
| 305 | for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i) |
| 306 | Ops.push_back(cast<Constant>(RemapOperand(CE->getOperand(i),ValueMap))); |
| 307 | Result = CE->getWithOperands(Ops); |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 308 | } else if (isa<GlobalValue>(CPV)) { |
| 309 | assert(0 && "Unmapped global?"); |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 310 | } else { |
| 311 | assert(0 && "Unknown type of derived type constant value!"); |
| 312 | } |
Chris Lattner | 620fd68 | 2006-06-01 19:14:22 +0000 | [diff] [blame] | 313 | } else if (isa<InlineAsm>(In)) { |
| 314 | Result = const_cast<Value*>(In); |
| 315 | } |
| 316 | |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 317 | // Cache the mapping in our local map structure |
Chris Lattner | 620fd68 | 2006-06-01 19:14:22 +0000 | [diff] [blame] | 318 | if (Result) { |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 319 | ValueMap[In] = Result; |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 320 | return Result; |
| 321 | } |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 322 | |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 323 | |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 324 | cerr << "LinkModules ValueMap: \n"; |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 325 | PrintMap(ValueMap); |
Chris Lattner | 2d3e8bb | 2001-11-03 03:27:29 +0000 | [diff] [blame] | 326 | |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 327 | cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n"; |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 328 | assert(0 && "Couldn't remap value!"); |
| 329 | return 0; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 332 | /// ForceRenaming - The LLVM SymbolTable class autorenames globals that conflict |
| 333 | /// in the symbol table. This is good for all clients except for us. Go |
| 334 | /// through the trouble to force this back. |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 335 | static void ForceRenaming(GlobalValue *GV, const std::string &Name) { |
| 336 | assert(GV->getName() != Name && "Can't force rename to self"); |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 337 | ValueSymbolTable &ST = GV->getParent()->getValueSymbolTable(); |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 338 | |
| 339 | // If there is a conflict, rename the conflict. |
Chris Lattner | 33f2949 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 340 | if (GlobalValue *ConflictGV = cast_or_null<GlobalValue>(ST.lookup(Name))) { |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 341 | assert(ConflictGV->hasInternalLinkage() && |
| 342 | "Not conflicting with a static global, should link instead!"); |
Chris Lattner | 33f2949 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 343 | GV->takeName(ConflictGV); |
| 344 | ConflictGV->setName(Name); // This will cause ConflictGV to get renamed |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 345 | assert(ConflictGV->getName() != Name && "ForceRenaming didn't work"); |
Chris Lattner | 33f2949 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 346 | } else { |
| 347 | GV->setName(Name); // Force the name back |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 348 | } |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 349 | } |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 350 | |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 351 | /// CopyGVAttributes - copy additional attributes (those not needed to construct |
| 352 | /// a GlobalValue) from the SrcGV to the DestGV. |
| 353 | static void CopyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) { |
| 354 | // Propagate alignment, visibility and section info. |
| 355 | DestGV->setAlignment(std::max(DestGV->getAlignment(), SrcGV->getAlignment())); |
| 356 | DestGV->setSection(SrcGV->getSection()); |
| 357 | DestGV->setVisibility(SrcGV->getVisibility()); |
| 358 | if (const Function *SrcF = dyn_cast<Function>(SrcGV)) { |
| 359 | Function *DestF = cast<Function>(DestGV); |
| 360 | DestF->setCallingConv(SrcF->getCallingConv()); |
Duncan Sands | dc02467 | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 361 | DestF->setParamAttrs(SrcF->getParamAttrs()); |
Gordon Henriksen | 194c90e | 2007-12-25 22:16:06 +0000 | [diff] [blame] | 362 | if (SrcF->hasCollector()) |
| 363 | DestF->setCollector(SrcF->getCollector()); |
Anton Korobeynikov | e20c814 | 2008-03-07 18:32:18 +0000 | [diff] [blame] | 364 | } else if (const GlobalVariable *SrcVar = dyn_cast<GlobalVariable>(SrcGV)) { |
| 365 | GlobalVariable *DestVar = cast<GlobalVariable>(DestGV); |
| 366 | DestVar->setThreadLocal(SrcVar->isThreadLocal()); |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 367 | } |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 370 | /// GetLinkageResult - This analyzes the two global values and determines what |
| 371 | /// the result will look like in the destination module. In particular, it |
| 372 | /// computes the resultant linkage type, computes whether the global in the |
| 373 | /// source should be copied over to the destination (replacing the existing |
Anton Korobeynikov | 9cd3ccf | 2007-04-29 20:56:48 +0000 | [diff] [blame] | 374 | /// one), and computes whether this linkage is an error or not. It also performs |
| 375 | /// visibility checks: we cannot link together two symbols with different |
| 376 | /// visibilities. |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 377 | static bool GetLinkageResult(GlobalValue *Dest, const GlobalValue *Src, |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 378 | GlobalValue::LinkageTypes <, bool &LinkFromSrc, |
| 379 | std::string *Err) { |
| 380 | assert((!Dest || !Src->hasInternalLinkage()) && |
| 381 | "If Src has internal linkage, Dest shouldn't be set!"); |
| 382 | if (!Dest) { |
| 383 | // Linking something to nothing. |
| 384 | LinkFromSrc = true; |
| 385 | LT = Src->getLinkage(); |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 386 | } else if (Src->isDeclaration()) { |
Anton Korobeynikov | 2b48ef0 | 2008-03-10 22:33:22 +0000 | [diff] [blame] | 387 | // If Src is external or if both Src & Dest are external.. Just link the |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 388 | // external globals, we aren't adding anything. |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 389 | if (Src->hasDLLImportLinkage()) { |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 390 | // If one of GVs has DLLImport linkage, result should be dllimport'ed. |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 391 | if (Dest->isDeclaration()) { |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 392 | LinkFromSrc = true; |
| 393 | LT = Src->getLinkage(); |
| 394 | } |
Andrew Lenharth | 8753c44 | 2006-12-15 17:35:32 +0000 | [diff] [blame] | 395 | } else if (Dest->hasExternalWeakLinkage()) { |
| 396 | //If the Dest is weak, use the source linkage |
| 397 | LinkFromSrc = true; |
| 398 | LT = Src->getLinkage(); |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 399 | } else { |
| 400 | LinkFromSrc = false; |
| 401 | LT = Dest->getLinkage(); |
| 402 | } |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 403 | } else if (Dest->isDeclaration() && !Dest->hasDLLImportLinkage()) { |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 404 | // If Dest is external but Src is not: |
| 405 | LinkFromSrc = true; |
| 406 | LT = Src->getLinkage(); |
| 407 | } else if (Src->hasAppendingLinkage() || Dest->hasAppendingLinkage()) { |
| 408 | if (Src->getLinkage() != Dest->getLinkage()) |
| 409 | return Error(Err, "Linking globals named '" + Src->getName() + |
| 410 | "': can only link appending global with another appending global!"); |
| 411 | LinkFromSrc = true; // Special cased. |
| 412 | LT = Src->getLinkage(); |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 413 | } else if (Src->hasWeakLinkage() || Src->hasLinkOnceLinkage() || |
| 414 | Src->hasCommonLinkage()) { |
| 415 | // At this point we know that Dest has LinkOnce, External*, Weak, Common, |
| 416 | // or DLL* linkage. |
| 417 | if ((Dest->hasLinkOnceLinkage() && |
| 418 | (Src->hasWeakLinkage() || Src->hasCommonLinkage())) || |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 419 | Dest->hasExternalWeakLinkage()) { |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 420 | LinkFromSrc = true; |
| 421 | LT = Src->getLinkage(); |
| 422 | } else { |
| 423 | LinkFromSrc = false; |
| 424 | LT = Dest->getLinkage(); |
| 425 | } |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 426 | } else if (Dest->hasWeakLinkage() || Dest->hasLinkOnceLinkage() || |
| 427 | Dest->hasCommonLinkage()) { |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 428 | // At this point we know that Src has External* or DLL* linkage. |
| 429 | if (Src->hasExternalWeakLinkage()) { |
| 430 | LinkFromSrc = false; |
| 431 | LT = Dest->getLinkage(); |
| 432 | } else { |
| 433 | LinkFromSrc = true; |
| 434 | LT = GlobalValue::ExternalLinkage; |
| 435 | } |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 436 | } else { |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 437 | assert((Dest->hasExternalLinkage() || |
| 438 | Dest->hasDLLImportLinkage() || |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 439 | Dest->hasDLLExportLinkage() || |
| 440 | Dest->hasExternalWeakLinkage()) && |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 441 | (Src->hasExternalLinkage() || |
| 442 | Src->hasDLLImportLinkage() || |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 443 | Src->hasDLLExportLinkage() || |
| 444 | Src->hasExternalWeakLinkage()) && |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 445 | "Unexpected linkage type!"); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 446 | return Error(Err, "Linking globals named '" + Src->getName() + |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 447 | "': symbol multiply defined!"); |
| 448 | } |
Anton Korobeynikov | 9cd3ccf | 2007-04-29 20:56:48 +0000 | [diff] [blame] | 449 | |
| 450 | // Check visibility |
| 451 | if (Dest && Src->getVisibility() != Dest->getVisibility()) |
Chris Lattner | 97f8b09 | 2007-08-19 22:22:54 +0000 | [diff] [blame] | 452 | if (!Src->isDeclaration() && !Dest->isDeclaration()) |
| 453 | return Error(Err, "Linking globals named '" + Src->getName() + |
| 454 | "': symbols have different visibilities!"); |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 455 | return false; |
| 456 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 457 | |
| 458 | // LinkGlobals - Loop through the global variables in the src module and merge |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 459 | // them into the dest module. |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 460 | static bool LinkGlobals(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 461 | std::map<const Value*, Value*> &ValueMap, |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 462 | std::multimap<std::string, GlobalVariable *> &AppendingVars, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 463 | std::string *Err) { |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 464 | // Loop over all of the globals in the src module, mapping them over as we go |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 465 | for (Module::const_global_iterator I = Src->global_begin(), E = Src->global_end(); |
Chris Lattner | 1127315 | 2006-06-16 01:24:04 +0000 | [diff] [blame] | 466 | I != E; ++I) { |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 467 | const GlobalVariable *SGV = I; |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 468 | GlobalValue *DGV = 0; |
| 469 | |
| 470 | // Check to see if may have to link the global with the global |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 471 | if (SGV->hasName() && !SGV->hasInternalLinkage()) { |
| 472 | DGV = Dest->getGlobalVariable(SGV->getName()); |
| 473 | if (DGV && DGV->getType() != SGV->getType()) |
| 474 | // If types don't agree due to opaque types, try to resolve them. |
| 475 | RecursiveResolveTypes(SGV->getType(), DGV->getType(), |
| 476 | &Dest->getTypeSymbolTable(), ""); |
| 477 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 478 | |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 479 | // Check to see if may have to link the global with the alias |
Anton Korobeynikov | aeb0996 | 2008-03-10 22:35:31 +0000 | [diff] [blame] | 480 | if (!DGV && SGV->hasName() && !SGV->hasInternalLinkage()) { |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 481 | DGV = Dest->getNamedAlias(SGV->getName()); |
| 482 | if (DGV && DGV->getType() != SGV->getType()) |
| 483 | // If types don't agree due to opaque types, try to resolve them. |
| 484 | RecursiveResolveTypes(SGV->getType(), DGV->getType(), |
| 485 | &Dest->getTypeSymbolTable(), ""); |
| 486 | } |
| 487 | |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 488 | if (DGV && DGV->hasInternalLinkage()) |
| 489 | DGV = 0; |
| 490 | |
Dan Gohman | c318329 | 2007-10-08 15:13:30 +0000 | [diff] [blame] | 491 | assert((SGV->hasInitializer() || SGV->hasExternalWeakLinkage() || |
| 492 | SGV->hasExternalLinkage() || SGV->hasDLLImportLinkage()) && |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 493 | "Global must either be external or have an initializer!"); |
| 494 | |
Chris Lattner | b324bd7 | 2006-11-09 05:18:12 +0000 | [diff] [blame] | 495 | GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage; |
| 496 | bool LinkFromSrc = false; |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 497 | if (GetLinkageResult(DGV, SGV, NewLinkage, LinkFromSrc, Err)) |
| 498 | return true; |
Chris Lattner | 0fec08e | 2003-04-21 21:07:05 +0000 | [diff] [blame] | 499 | |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 500 | if (!DGV) { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 501 | // No linking to be performed, simply create an identical version of the |
| 502 | // symbol over in the dest module... the initializer will be filled in |
| 503 | // later by LinkGlobalInits... |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 504 | GlobalVariable *NewDGV = |
| 505 | new GlobalVariable(SGV->getType()->getElementType(), |
| 506 | SGV->isConstant(), SGV->getLinkage(), /*init*/0, |
Anton Korobeynikov | e20c814 | 2008-03-07 18:32:18 +0000 | [diff] [blame] | 507 | SGV->getName(), Dest); |
Reid Spencer | 471feac | 2007-02-04 04:30:33 +0000 | [diff] [blame] | 508 | // Propagate alignment, visibility and section info. |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 509 | CopyGVAttributes(NewDGV, SGV); |
Andrew Lenharth | 5dfbaf1 | 2007-02-01 17:12:54 +0000 | [diff] [blame] | 510 | |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 511 | // If the LLVM runtime renamed the global, but it is an externally visible |
| 512 | // symbol, DGV must be an existing global with internal linkage. Rename |
| 513 | // it. |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 514 | if (NewDGV->getName() != SGV->getName() && !NewDGV->hasInternalLinkage()) |
| 515 | ForceRenaming(NewDGV, SGV->getName()); |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 516 | |
| 517 | // Make sure to remember this mapping... |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 518 | ValueMap[SGV] = NewDGV; |
| 519 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 520 | if (SGV->hasAppendingLinkage()) |
| 521 | // Keep track that this is an appending variable... |
| 522 | AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV)); |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 523 | } else if (DGV->hasAppendingLinkage()) { |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 524 | // No linking is performed yet. Just insert a new copy of the global, and |
| 525 | // keep track of the fact that it is an appending variable in the |
| 526 | // AppendingVars map. The name is cleared out so that no linkage is |
| 527 | // performed. |
| 528 | GlobalVariable *NewDGV = |
| 529 | new GlobalVariable(SGV->getType()->getElementType(), |
| 530 | SGV->isConstant(), SGV->getLinkage(), /*init*/0, |
Anton Korobeynikov | e20c814 | 2008-03-07 18:32:18 +0000 | [diff] [blame] | 531 | "", Dest); |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 532 | |
Anton Korobeynikov | 75c7915 | 2008-03-07 18:34:50 +0000 | [diff] [blame] | 533 | // Set alignment allowing CopyGVAttributes merge it with alignment of SGV. |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 534 | NewDGV->setAlignment(DGV->getAlignment()); |
Anton Korobeynikov | 75c7915 | 2008-03-07 18:34:50 +0000 | [diff] [blame] | 535 | // Propagate alignment, section and visibility info. |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 536 | CopyGVAttributes(NewDGV, SGV); |
Andrew Lenharth | 5dfbaf1 | 2007-02-01 17:12:54 +0000 | [diff] [blame] | 537 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 538 | // Make sure to remember this mapping... |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 539 | ValueMap[SGV] = NewDGV; |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 540 | |
| 541 | // Keep track that this is an appending variable... |
| 542 | AppendingVars.insert(std::make_pair(SGV->getName(), NewDGV)); |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 543 | } else if (GlobalAlias *DGA = dyn_cast<GlobalAlias>(DGV)) { |
| 544 | // SGV is global, but DGV is alias. The only valid mapping is when SGV is |
| 545 | // external declaration, which is effectively a no-op. Also make sure |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 546 | // linkage calculation was correct. |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 547 | if (SGV->isDeclaration() && !LinkFromSrc) { |
| 548 | // Make sure to remember this mapping... |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 549 | ValueMap[SGV] = DGA; |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 550 | } else |
Anton Korobeynikov | 1438b9d | 2008-03-10 22:34:46 +0000 | [diff] [blame] | 551 | return Error(Err, "Global-Alias Collision on '" + SGV->getName() + |
| 552 | "': symbol multiple defined"); |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 553 | } else if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) { |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 554 | // Otherwise, perform the global-global mapping as instructed by |
| 555 | // GetLinkageResult. |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 556 | if (LinkFromSrc) { |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 557 | // Propagate alignment, section, and visibility info. |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 558 | CopyGVAttributes(DGVar, SGV); |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 559 | |
| 560 | // If the types don't match, and if we are to link from the source, nuke |
| 561 | // DGV and create a new one of the appropriate type. |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 562 | if (SGV->getType() != DGVar->getType()) { |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 563 | GlobalVariable *NewDGV = |
| 564 | new GlobalVariable(SGV->getType()->getElementType(), |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 565 | DGVar->isConstant(), DGVar->getLinkage(), |
| 566 | /*init*/0, DGVar->getName(), Dest); |
| 567 | CopyGVAttributes(NewDGV, DGVar); |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 568 | DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 569 | DGVar->getType())); |
| 570 | // DGVar will conflict with NewDGV because they both had the same |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 571 | // name. We must erase this now so ForceRenaming doesn't assert |
| 572 | // because DGV might not have internal linkage. |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 573 | DGVar->eraseFromParent(); |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 574 | |
| 575 | // If the symbol table renamed the global, but it is an externally |
| 576 | // visible symbol, DGV must be an existing global with internal |
| 577 | // linkage. Rename it. |
| 578 | if (NewDGV->getName() != SGV->getName() && |
| 579 | !NewDGV->hasInternalLinkage()) |
| 580 | ForceRenaming(NewDGV, SGV->getName()); |
| 581 | |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 582 | DGVar = NewDGV; |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 585 | // Inherit const as appropriate |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 586 | DGVar->setConstant(SGV->isConstant()); |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 587 | |
| 588 | // Set initializer to zero, so we can link the stuff later |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 589 | DGVar->setInitializer(0); |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 590 | } else { |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 591 | // Special case for const propagation |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 592 | if (DGVar->isDeclaration() && SGV->isConstant() && !DGVar->isConstant()) |
| 593 | DGVar->setConstant(true); |
Chris Lattner | aee38ea | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 594 | } |
| 595 | |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 596 | // Set calculated linkage |
Anton Korobeynikov | 01f6939 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 597 | DGVar->setLinkage(NewLinkage); |
Anton Korobeynikov | 968e39a | 2008-03-10 22:33:53 +0000 | [diff] [blame] | 598 | |
| 599 | // Make sure to remember this mapping... |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 600 | ValueMap[SGV] = ConstantExpr::getBitCast(DGVar, SGV->getType()); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 601 | } |
| 602 | } |
| 603 | return false; |
| 604 | } |
| 605 | |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 606 | static GlobalValue::LinkageTypes |
| 607 | CalculateAliasLinkage(const GlobalValue *SGV, const GlobalValue *DGV) { |
| 608 | if (SGV->hasExternalLinkage() || DGV->hasExternalLinkage()) |
| 609 | return GlobalValue::ExternalLinkage; |
| 610 | else if (SGV->hasWeakLinkage() || DGV->hasWeakLinkage()) |
| 611 | return GlobalValue::WeakLinkage; |
| 612 | else { |
| 613 | assert(SGV->hasInternalLinkage() && DGV->hasInternalLinkage() && |
| 614 | "Unexpected linkage type"); |
| 615 | return GlobalValue::InternalLinkage; |
| 616 | } |
| 617 | } |
| 618 | |
Lauro Ramos Venancio | 31ed0fb | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 619 | // LinkAlias - Loop through the alias in the src module and link them into the |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 620 | // dest module. We're assuming, that all functions/global variables were already |
| 621 | // linked in. |
Anton Korobeynikov | 4fb2873 | 2008-03-05 15:27:21 +0000 | [diff] [blame] | 622 | static bool LinkAlias(Module *Dest, const Module *Src, |
| 623 | std::map<const Value*, Value*> &ValueMap, |
| 624 | std::string *Err) { |
Lauro Ramos Venancio | 31ed0fb | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 625 | // Loop over all alias in the src module |
| 626 | for (Module::const_alias_iterator I = Src->alias_begin(), |
| 627 | E = Src->alias_end(); I != E; ++I) { |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 628 | const GlobalAlias *SGA = I; |
| 629 | const GlobalValue *SAliasee = SGA->getAliasedGlobal(); |
| 630 | GlobalAlias *NewGA = NULL; |
Lauro Ramos Venancio | 31ed0fb | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 631 | |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 632 | // Globals were already linked, thus we can just query ValueMap for variant |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 633 | // of SAliasee in Dest. |
Ted Kremenek | 58d5e05 | 2008-03-09 18:32:50 +0000 | [diff] [blame] | 634 | std::map<const Value*,Value*>::const_iterator VMI = ValueMap.find(SAliasee); |
| 635 | assert(VMI != ValueMap.end() && "Aliasee not linked"); |
| 636 | GlobalValue* DAliasee = cast<GlobalValue>(VMI->second); |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 637 | GlobalValue* DGV = NULL; |
Lauro Ramos Venancio | 31ed0fb | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 638 | |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 639 | // Try to find something 'similar' to SGA in destination module. |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 640 | if (!DGV && !SGA->hasInternalLinkage()) { |
| 641 | DGV = Dest->getNamedAlias(SGA->getName()); |
Anton Korobeynikov | 4fb2873 | 2008-03-05 15:27:21 +0000 | [diff] [blame] | 642 | |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 643 | // If types don't agree due to opaque types, try to resolve them. |
| 644 | if (DGV && DGV->getType() != SGA->getType()) |
| 645 | if (RecursiveResolveTypes(SGA->getType(), DGV->getType(), |
| 646 | &Dest->getTypeSymbolTable(), "")) |
| 647 | return Error(Err, "Alias Collision on '" + SGA->getName()+ |
| 648 | "': aliases have different types"); |
| 649 | } |
| 650 | |
| 651 | if (!DGV && !SGA->hasInternalLinkage()) { |
| 652 | DGV = Dest->getGlobalVariable(SGA->getName()); |
| 653 | |
| 654 | // If types don't agree due to opaque types, try to resolve them. |
| 655 | if (DGV && DGV->getType() != SGA->getType()) |
| 656 | if (RecursiveResolveTypes(SGA->getType(), DGV->getType(), |
| 657 | &Dest->getTypeSymbolTable(), "")) |
| 658 | return Error(Err, "Alias Collision on '" + SGA->getName()+ |
| 659 | "': aliases have different types"); |
| 660 | } |
| 661 | |
| 662 | if (!DGV && !SGA->hasInternalLinkage()) { |
| 663 | DGV = Dest->getFunction(SGA->getName()); |
| 664 | |
| 665 | // If types don't agree due to opaque types, try to resolve them. |
| 666 | if (DGV && DGV->getType() != SGA->getType()) |
| 667 | if (RecursiveResolveTypes(SGA->getType(), DGV->getType(), |
| 668 | &Dest->getTypeSymbolTable(), "")) |
| 669 | return Error(Err, "Alias Collision on '" + SGA->getName()+ |
| 670 | "': aliases have different types"); |
| 671 | } |
| 672 | |
| 673 | // No linking to be performed on internal stuff. |
| 674 | if (DGV && DGV->hasInternalLinkage()) |
| 675 | DGV = NULL; |
| 676 | |
| 677 | if (GlobalAlias *DGA = dyn_cast_or_null<GlobalAlias>(DGV)) { |
| 678 | // Types are known to be the same, check whether aliasees equal. As |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 679 | // globals are already linked we just need query ValueMap to find the |
| 680 | // mapping. |
| 681 | if (DAliasee == DGA->getAliasedGlobal()) { |
| 682 | // This is just two copies of the same alias. Propagate linkage, if |
| 683 | // necessary. |
| 684 | DGA->setLinkage(CalculateAliasLinkage(SGA, DGA)); |
| 685 | |
| 686 | NewGA = DGA; |
| 687 | // Proceed to 'common' steps |
| 688 | } else |
Anton Korobeynikov | 1438b9d | 2008-03-10 22:34:46 +0000 | [diff] [blame] | 689 | return Error(Err, "Alias Collision on '" + SGA->getName()+ |
| 690 | "': aliases have different aliasees"); |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 691 | } else if (GlobalVariable *DGVar = dyn_cast_or_null<GlobalVariable>(DGV)) { |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 692 | // The only allowed way is to link alias with external declaration. |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 693 | if (DGVar->isDeclaration()) { |
Anton Korobeynikov | ed61c0b | 2008-03-10 22:36:53 +0000 | [diff] [blame] | 694 | // But only if aliasee is global too... |
| 695 | if (!isa<GlobalVariable>(DAliasee)) |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 696 | return Error(Err, "Global-Alias Collision on '" + SGA->getName() + |
| 697 | "': aliasee is not global variable"); |
Anton Korobeynikov | ed61c0b | 2008-03-10 22:36:53 +0000 | [diff] [blame] | 698 | |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 699 | NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(), |
| 700 | SGA->getName(), DAliasee, Dest); |
| 701 | CopyGVAttributes(NewGA, SGA); |
| 702 | |
| 703 | // Any uses of DGV need to change to NewGA, with cast, if needed. |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 704 | if (SGA->getType() != DGVar->getType()) |
| 705 | DGVar->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA, |
| 706 | DGVar->getType())); |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 707 | else |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 708 | DGVar->replaceAllUsesWith(NewGA); |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 709 | |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 710 | // DGVar will conflict with NewGA because they both had the same |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 711 | // name. We must erase this now so ForceRenaming doesn't assert |
| 712 | // because DGV might not have internal linkage. |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 713 | DGVar->eraseFromParent(); |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 714 | |
| 715 | // Proceed to 'common' steps |
| 716 | } else |
Anton Korobeynikov | 1438b9d | 2008-03-10 22:34:46 +0000 | [diff] [blame] | 717 | return Error(Err, "Global-Alias Collision on '" + SGA->getName() + |
| 718 | "': symbol multiple defined"); |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 719 | } else if (Function *DF = dyn_cast_or_null<Function>(DGV)) { |
Anton Korobeynikov | b5a4bd8 | 2008-03-05 23:08:16 +0000 | [diff] [blame] | 720 | // The only allowed way is to link alias with external declaration. |
| 721 | if (DF->isDeclaration()) { |
Anton Korobeynikov | ed61c0b | 2008-03-10 22:36:53 +0000 | [diff] [blame] | 722 | // But only if aliasee is function too... |
| 723 | if (!isa<Function>(DAliasee)) |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 724 | return Error(Err, "Function-Alias Collision on '" + SGA->getName() + |
| 725 | "': aliasee is not function"); |
Anton Korobeynikov | ed61c0b | 2008-03-10 22:36:53 +0000 | [diff] [blame] | 726 | |
Anton Korobeynikov | b5a4bd8 | 2008-03-05 23:08:16 +0000 | [diff] [blame] | 727 | NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(), |
| 728 | SGA->getName(), DAliasee, Dest); |
| 729 | CopyGVAttributes(NewGA, SGA); |
| 730 | |
| 731 | // Any uses of DF need to change to NewGA, with cast, if needed. |
| 732 | if (SGA->getType() != DF->getType()) |
| 733 | DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewGA, |
| 734 | DF->getType())); |
| 735 | else |
| 736 | DF->replaceAllUsesWith(NewGA); |
| 737 | |
| 738 | // DF will conflict with NewGA because they both had the same |
| 739 | // name. We must erase this now so ForceRenaming doesn't assert |
| 740 | // because DF might not have internal linkage. |
| 741 | DF->eraseFromParent(); |
| 742 | |
| 743 | // Proceed to 'common' steps |
| 744 | } else |
Anton Korobeynikov | 1438b9d | 2008-03-10 22:34:46 +0000 | [diff] [blame] | 745 | return Error(Err, "Function-Alias Collision on '" + SGA->getName() + |
| 746 | "': symbol multiple defined"); |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 747 | } else { |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 748 | // No linking to be performed, simply create an identical version of the |
| 749 | // alias over in the dest module... |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 750 | |
| 751 | NewGA = new GlobalAlias(SGA->getType(), SGA->getLinkage(), |
| 752 | SGA->getName(), DAliasee, Dest); |
| 753 | CopyGVAttributes(NewGA, SGA); |
| 754 | |
| 755 | // Proceed to 'common' steps |
| 756 | } |
| 757 | |
| 758 | assert(NewGA && "No alias was created in destination module!"); |
| 759 | |
Anton Korobeynikov | b8cdaf7 | 2008-03-10 22:36:35 +0000 | [diff] [blame] | 760 | // If the symbol table renamed the alias, but it is an externally visible |
Anton Korobeynikov | caa8ae8 | 2008-05-10 14:41:43 +0000 | [diff] [blame] | 761 | // symbol, DGA must be an global value with internal linkage. Rename it. |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 762 | if (NewGA->getName() != SGA->getName() && |
| 763 | !NewGA->hasInternalLinkage()) |
| 764 | ForceRenaming(NewGA, SGA->getName()); |
| 765 | |
| 766 | // Remember this mapping so uses in the source module get remapped |
| 767 | // later by RemapOperand. |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 768 | ValueMap[SGA] = NewGA; |
Lauro Ramos Venancio | 31ed0fb | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 769 | } |
Anton Korobeynikov | 58887bc | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 770 | |
Lauro Ramos Venancio | 31ed0fb | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 771 | return false; |
| 772 | } |
| 773 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 774 | |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 775 | // LinkGlobalInits - Update the initializers in the Dest module now that all |
| 776 | // globals that may be referenced are in Dest. |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 777 | static bool LinkGlobalInits(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 778 | std::map<const Value*, Value*> &ValueMap, |
| 779 | std::string *Err) { |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 780 | |
| 781 | // Loop over all of the globals in the src module, mapping them over as we go |
Chris Lattner | 1127315 | 2006-06-16 01:24:04 +0000 | [diff] [blame] | 782 | for (Module::const_global_iterator I = Src->global_begin(), |
| 783 | E = Src->global_end(); I != E; ++I) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 784 | const GlobalVariable *SGV = I; |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 785 | |
| 786 | if (SGV->hasInitializer()) { // Only process initialized GV's |
| 787 | // Figure out what the initializer looks like in the dest module... |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 788 | Constant *SInit = |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 789 | cast<Constant>(RemapOperand(SGV->getInitializer(), ValueMap)); |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 790 | |
Anton Korobeynikov | 0b12ecf | 2008-05-07 22:54:15 +0000 | [diff] [blame] | 791 | GlobalVariable *DGV = |
| 792 | cast<GlobalVariable>(ValueMap[SGV]->stripPointerCasts()); |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 793 | if (DGV->hasInitializer()) { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 794 | if (SGV->hasExternalLinkage()) { |
| 795 | if (DGV->getInitializer() != SInit) |
Anton Korobeynikov | 1438b9d | 2008-03-10 22:34:46 +0000 | [diff] [blame] | 796 | return Error(Err, "Global Variable Collision on '" + SGV->getName() + |
| 797 | "': global variables have different initializers"); |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 798 | } else if (DGV->hasLinkOnceLinkage() || DGV->hasWeakLinkage() || |
| 799 | DGV->hasCommonLinkage()) { |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 800 | // Nothing is required, mapped values will take the new global |
| 801 | // automatically. |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 802 | } else if (SGV->hasLinkOnceLinkage() || SGV->hasWeakLinkage() || |
| 803 | SGV->hasCommonLinkage()) { |
Chris Lattner | 57cb988 | 2004-02-17 21:56:04 +0000 | [diff] [blame] | 804 | // Nothing is required, mapped values will take the new global |
| 805 | // automatically. |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 806 | } else if (DGV->hasAppendingLinkage()) { |
| 807 | assert(0 && "Appending linkage unimplemented!"); |
| 808 | } else { |
| 809 | assert(0 && "Unknown linkage!"); |
| 810 | } |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 811 | } else { |
| 812 | // Copy the initializer over now... |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 813 | DGV->setInitializer(SInit); |
Chris Lattner | 8d2de8a | 2001-10-15 03:12:52 +0000 | [diff] [blame] | 814 | } |
| 815 | } |
| 816 | } |
| 817 | return false; |
| 818 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 819 | |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 820 | // LinkFunctionProtos - Link the functions together between the two modules, |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 821 | // without doing function bodies... this just adds external function prototypes |
| 822 | // to the Dest function... |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 823 | // |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 824 | static bool LinkFunctionProtos(Module *Dest, const Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 825 | std::map<const Value*, Value*> &ValueMap, |
| 826 | std::string *Err) { |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 827 | // Loop over all of the functions in the src module, mapping them over |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 828 | 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] | 829 | const Function *SF = I; // SrcFunction |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 830 | Function *DF = 0; |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 831 | if (SF->hasName() && !SF->hasInternalLinkage()) { |
| 832 | // Check to see if may have to link the function. |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 833 | DF = Dest->getFunction(SF->getName()); |
| 834 | if (DF && SF->getType() != DF->getType()) |
| 835 | // If types don't agree because of opaque, try to resolve them |
| 836 | RecursiveResolveTypes(SF->getType(), DF->getType(), |
| 837 | &Dest->getTypeSymbolTable(), ""); |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 838 | } |
Anton Korobeynikov | 9cd3ccf | 2007-04-29 20:56:48 +0000 | [diff] [blame] | 839 | |
| 840 | // Check visibility |
| 841 | if (DF && !DF->hasInternalLinkage() && |
Chris Lattner | 97f8b09 | 2007-08-19 22:22:54 +0000 | [diff] [blame] | 842 | SF->getVisibility() != DF->getVisibility()) { |
| 843 | // If one is a prototype, ignore its visibility. Prototypes are always |
| 844 | // overridden by the definition. |
| 845 | if (!SF->isDeclaration() && !DF->isDeclaration()) |
| 846 | return Error(Err, "Linking functions named '" + SF->getName() + |
| 847 | "': symbols have different visibilities!"); |
| 848 | } |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 849 | |
Anton Korobeynikov | 650d505 | 2007-12-27 23:21:57 +0000 | [diff] [blame] | 850 | if (DF && DF->hasInternalLinkage()) |
| 851 | DF = NULL; |
| 852 | |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 853 | if (DF && DF->getType() != SF->getType()) { |
| 854 | if (DF->isDeclaration() && !SF->isDeclaration()) { |
| 855 | // We have a definition of the same name but different type in the |
| 856 | // source module. Copy the prototype to the destination and replace |
| 857 | // uses of the destination's prototype with the new prototype. |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame^] | 858 | Function *NewDF = Function::Create(SF->getFunctionType(), |
| 859 | SF->getLinkage(), |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 860 | SF->getName(), Dest); |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 861 | CopyGVAttributes(NewDF, SF); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 862 | |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 863 | // Any uses of DF need to change to NewDF, with cast |
| 864 | DF->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DF->getType())); |
| 865 | |
| 866 | // DF will conflict with NewDF because they both had the same. We must |
| 867 | // erase this now so ForceRenaming doesn't assert because DF might |
| 868 | // not have internal linkage. |
| 869 | DF->eraseFromParent(); |
| 870 | |
| 871 | // If the symbol table renamed the function, but it is an externally |
| 872 | // visible symbol, DF must be an existing function with internal |
| 873 | // linkage. Rename it. |
| 874 | if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage()) |
| 875 | ForceRenaming(NewDF, SF->getName()); |
| 876 | |
| 877 | // Remember this mapping so uses in the source module get remapped |
| 878 | // later by RemapOperand. |
| 879 | ValueMap[SF] = NewDF; |
| 880 | } else if (SF->isDeclaration()) { |
| 881 | // We have two functions of the same name but different type and the |
| 882 | // source is a declaration while the destination is not. Any use of |
| 883 | // the source must be mapped to the destination, with a cast. |
| 884 | ValueMap[SF] = ConstantExpr::getBitCast(DF, SF->getType()); |
| 885 | } else { |
| 886 | // We have two functions of the same name but different types and they |
| 887 | // are both definitions. This is an error. |
| 888 | return Error(Err, "Function '" + DF->getName() + "' defined as both '" + |
| 889 | ToStr(SF->getFunctionType(), Src) + "' and '" + |
| 890 | ToStr(DF->getFunctionType(), Dest) + "'"); |
| 891 | } |
| 892 | } else if (!DF || SF->hasInternalLinkage() || DF->hasInternalLinkage()) { |
Chris Lattner | 0fec08e | 2003-04-21 21:07:05 +0000 | [diff] [blame] | 893 | // Function does not already exist, simply insert an function signature |
Chris Lattner | 97f8b09 | 2007-08-19 22:22:54 +0000 | [diff] [blame] | 894 | // identical to SF into the dest module. |
Gabor Greif | b1dbcd8 | 2008-05-15 10:04:30 +0000 | [diff] [blame^] | 895 | Function *NewDF = Function::Create(SF->getFunctionType(), |
| 896 | SF->getLinkage(), |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 897 | SF->getName(), Dest); |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 898 | CopyGVAttributes(NewDF, SF); |
Chris Lattner | 2719bac | 2003-04-21 21:15:04 +0000 | [diff] [blame] | 899 | |
| 900 | // If the LLVM runtime renamed the function, but it is an externally |
| 901 | // visible symbol, DF must be an existing function with internal linkage. |
| 902 | // Rename it. |
Chris Lattner | c003628 | 2004-08-04 07:05:54 +0000 | [diff] [blame] | 903 | if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage()) |
Chris Lattner | 82b5b21 | 2004-08-04 22:29:05 +0000 | [diff] [blame] | 904 | ForceRenaming(NewDF, SF->getName()); |
Chris Lattner | 4ad02e7 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 905 | |
| 906 | // ... and remember this mapping... |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 907 | ValueMap[SF] = NewDF; |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 908 | } else if (SF->isDeclaration()) { |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 909 | // If SF is a declaration or if both SF & DF are declarations, just link |
| 910 | // the declarations, we aren't adding anything. |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 911 | if (SF->hasDLLImportLinkage()) { |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 912 | if (DF->isDeclaration()) { |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 913 | ValueMap.insert(std::make_pair(SF, DF)); |
| 914 | DF->setLinkage(SF->getLinkage()); |
| 915 | } |
| 916 | } else { |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 917 | ValueMap[SF] = DF; |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 918 | } |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 919 | } else if (DF->isDeclaration() && !DF->hasDLLImportLinkage()) { |
Anton Korobeynikov | b74ed07 | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 920 | // If DF is external but SF is not... |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 921 | // Link the external functions, update linkage qualifiers |
| 922 | ValueMap.insert(std::make_pair(SF, DF)); |
| 923 | DF->setLinkage(SF->getLinkage()); |
Chris Lattner | 97f8b09 | 2007-08-19 22:22:54 +0000 | [diff] [blame] | 924 | // Visibility of prototype is overridden by vis of definition. |
| 925 | DF->setVisibility(SF->getVisibility()); |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 926 | } else if (SF->hasWeakLinkage() || SF->hasLinkOnceLinkage() || |
| 927 | SF->hasCommonLinkage()) { |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 928 | // At this point we know that DF has LinkOnce, Weak, or External* linkage. |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 929 | ValueMap[SF] = DF; |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 930 | |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 931 | // Linkonce+Weak = Weak |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 932 | // *+External Weak = * |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 933 | if ((DF->hasLinkOnceLinkage() && |
| 934 | (SF->hasWeakLinkage() || SF->hasCommonLinkage())) || |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 935 | DF->hasExternalWeakLinkage()) |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 936 | DF->setLinkage(SF->getLinkage()); |
Dale Johannesen | aafce77 | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 937 | } else if (DF->hasWeakLinkage() || DF->hasLinkOnceLinkage() || |
| 938 | DF->hasCommonLinkage()) { |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 939 | // At this point we know that SF has LinkOnce or External* linkage. |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 940 | ValueMap[SF] = DF; |
Anton Korobeynikov | 78ee7b7 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 941 | if (!SF->hasLinkOnceLinkage() && !SF->hasExternalWeakLinkage()) |
| 942 | // Don't inherit linkonce & external weak linkage |
Chris Lattner | 72ac148d | 2003-10-16 18:29:00 +0000 | [diff] [blame] | 943 | DF->setLinkage(SF->getLinkage()); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 944 | } else if (SF->getLinkage() != DF->getLinkage()) { |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 945 | return Error(Err, "Functions named '" + SF->getName() + |
| 946 | "' have different linkage specifiers!"); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 947 | } else if (SF->hasExternalLinkage()) { |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 948 | // The function is defined identically in both modules!! |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 949 | return Error(Err, "Function '" + |
| 950 | ToStr(SF->getFunctionType(), Src) + "':\"" + |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 951 | SF->getName() + "\" - Function is already defined!"); |
Chris Lattner | c2b97d4 | 2003-04-23 18:38:39 +0000 | [diff] [blame] | 952 | } else { |
| 953 | assert(0 && "Unknown linkage configuration found!"); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 954 | } |
| 955 | } |
| 956 | return false; |
| 957 | } |
| 958 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 959 | // LinkFunctionBody - Copy the source function over into the dest function and |
| 960 | // fix up references to values. At this point we know that Dest is an external |
| 961 | // function, and that Src is not. |
Chris Lattner | 4bbfbff | 2004-11-16 07:31:51 +0000 | [diff] [blame] | 962 | static bool LinkFunctionBody(Function *Dest, Function *Src, |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 963 | std::map<const Value*, Value*> &ValueMap, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 964 | std::string *Err) { |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 965 | assert(Src && Dest && Dest->isDeclaration() && !Src->isDeclaration()); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 966 | |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 967 | // Go through and convert function arguments over, remembering the mapping. |
Chris Lattner | e4d5c44 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 968 | Function::arg_iterator DI = Dest->arg_begin(); |
| 969 | for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end(); |
Chris Lattner | 69da5cf | 2002-10-13 20:57:00 +0000 | [diff] [blame] | 970 | I != E; ++I, ++DI) { |
Owen Anderson | 6bc41e8 | 2008-04-14 17:38:21 +0000 | [diff] [blame] | 971 | DI->setName(I->getName()); // Copy the name information over... |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 972 | |
| 973 | // Add a mapping to our local map |
Anton Korobeynikov | 817bf2a | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 974 | ValueMap[I] = DI; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 975 | } |
| 976 | |
Chris Lattner | 4bbfbff | 2004-11-16 07:31:51 +0000 | [diff] [blame] | 977 | // Splice the body of the source function into the dest function. |
| 978 | Dest->getBasicBlockList().splice(Dest->end(), Src->getBasicBlockList()); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 979 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 980 | // At this point, all of the instructions and values of the function are now |
| 981 | // copied over. The only problem is that they are still referencing values in |
| 982 | // the Source function as operands. Loop through all of the operands of the |
| 983 | // functions and patch them up to point to the local versions... |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 984 | // |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 985 | for (Function::iterator BB = Dest->begin(), BE = Dest->end(); BB != BE; ++BB) |
| 986 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 987 | for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end(); |
Chris Lattner | 221d688 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 988 | OI != OE; ++OI) |
Chris Lattner | 4bbfbff | 2004-11-16 07:31:51 +0000 | [diff] [blame] | 989 | if (!isa<Instruction>(*OI) && !isa<BasicBlock>(*OI)) |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 990 | *OI = RemapOperand(*OI, ValueMap); |
Chris Lattner | 0033baf | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 991 | |
| 992 | // There is no need to map the arguments anymore. |
Chris Lattner | 1127315 | 2006-06-16 01:24:04 +0000 | [diff] [blame] | 993 | for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end(); |
| 994 | I != E; ++I) |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 995 | ValueMap.erase(I); |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 996 | |
| 997 | return false; |
| 998 | } |
| 999 | |
| 1000 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 1001 | // LinkFunctionBodies - Link in the function bodies that are defined in the |
| 1002 | // source module into the DestModule. This consists basically of copying the |
| 1003 | // function over and fixing up references to values. |
Chris Lattner | 4bbfbff | 2004-11-16 07:31:51 +0000 | [diff] [blame] | 1004 | static bool LinkFunctionBodies(Module *Dest, Module *Src, |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 1005 | std::map<const Value*, Value*> &ValueMap, |
| 1006 | std::string *Err) { |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1007 | |
Reid Spencer | 8bef037 | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 1008 | // Loop over all of the functions in the src module, mapping them over as we |
| 1009 | // go |
Chris Lattner | 4bbfbff | 2004-11-16 07:31:51 +0000 | [diff] [blame] | 1010 | for (Module::iterator SF = Src->begin(), E = Src->end(); SF != E; ++SF) { |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 1011 | if (!SF->isDeclaration()) { // No body if function is external |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1012 | Function *DF = cast<Function>(ValueMap[SF]); // Destination function |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1013 | |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 1014 | // DF not external SF external? |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 1015 | if (DF->isDeclaration()) |
Chris Lattner | 3595655 | 2003-10-27 16:39:39 +0000 | [diff] [blame] | 1016 | // Only provide the function body if there isn't one already. |
| 1017 | if (LinkFunctionBody(DF, SF, ValueMap, Err)) |
| 1018 | return true; |
Chris Lattner | c2d774b | 2001-10-23 20:43:42 +0000 | [diff] [blame] | 1019 | } |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1020 | } |
| 1021 | return false; |
| 1022 | } |
| 1023 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1024 | // LinkAppendingVars - If there were any appending global variables, link them |
| 1025 | // together now. Return true on error. |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1026 | static bool LinkAppendingVars(Module *M, |
| 1027 | std::multimap<std::string, GlobalVariable *> &AppendingVars, |
| 1028 | std::string *ErrorMsg) { |
| 1029 | if (AppendingVars.empty()) return false; // Nothing to do. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 1030 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1031 | // Loop over the multimap of appending vars, processing any variables with the |
| 1032 | // same name, forming a new appending global variable with both of the |
| 1033 | // initializers merged together, then rewrite references to the old variables |
| 1034 | // and delete them. |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1035 | std::vector<Constant*> Inits; |
| 1036 | while (AppendingVars.size() > 1) { |
| 1037 | // Get the first two elements in the map... |
| 1038 | std::multimap<std::string, |
| 1039 | GlobalVariable*>::iterator Second = AppendingVars.begin(), First=Second++; |
| 1040 | |
| 1041 | // If the first two elements are for different names, there is no pair... |
| 1042 | // Otherwise there is a pair, so link them together... |
| 1043 | if (First->first == Second->first) { |
| 1044 | GlobalVariable *G1 = First->second, *G2 = Second->second; |
| 1045 | const ArrayType *T1 = cast<ArrayType>(G1->getType()->getElementType()); |
| 1046 | const ArrayType *T2 = cast<ArrayType>(G2->getType()->getElementType()); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 1047 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1048 | // Check to see that they two arrays agree on type... |
| 1049 | if (T1->getElementType() != T2->getElementType()) |
| 1050 | return Error(ErrorMsg, |
| 1051 | "Appending variables with different element types need to be linked!"); |
| 1052 | if (G1->isConstant() != G2->isConstant()) |
| 1053 | return Error(ErrorMsg, |
| 1054 | "Appending variables linked with different const'ness!"); |
| 1055 | |
Lauro Ramos Venancio | 9613e87 | 2007-06-06 22:01:12 +0000 | [diff] [blame] | 1056 | if (G1->getAlignment() != G2->getAlignment()) |
| 1057 | return Error(ErrorMsg, |
| 1058 | "Appending variables with different alignment need to be linked!"); |
| 1059 | |
| 1060 | if (G1->getVisibility() != G2->getVisibility()) |
| 1061 | return Error(ErrorMsg, |
| 1062 | "Appending variables with different visibility need to be linked!"); |
| 1063 | |
| 1064 | if (G1->getSection() != G2->getSection()) |
| 1065 | return Error(ErrorMsg, |
| 1066 | "Appending variables with different section name need to be linked!"); |
| 1067 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1068 | unsigned NewSize = T1->getNumElements() + T2->getNumElements(); |
| 1069 | ArrayType *NewType = ArrayType::get(T1->getElementType(), NewSize); |
| 1070 | |
Chris Lattner | ed74a4e | 2005-12-06 17:30:58 +0000 | [diff] [blame] | 1071 | G1->setName(""); // Clear G1's name in case of a conflict! |
| 1072 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1073 | // Create the new global variable... |
| 1074 | GlobalVariable *NG = |
| 1075 | new GlobalVariable(NewType, G1->isConstant(), G1->getLinkage(), |
Lauro Ramos Venancio | c763552 | 2007-04-12 18:32:50 +0000 | [diff] [blame] | 1076 | /*init*/0, First->first, M, G1->isThreadLocal()); |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1077 | |
Lauro Ramos Venancio | 9613e87 | 2007-06-06 22:01:12 +0000 | [diff] [blame] | 1078 | // Propagate alignment, visibility and section info. |
| 1079 | CopyGVAttributes(NG, G1); |
| 1080 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1081 | // Merge the initializer... |
| 1082 | Inits.reserve(NewSize); |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 1083 | if (ConstantArray *I = dyn_cast<ConstantArray>(G1->getInitializer())) { |
| 1084 | for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i) |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 1085 | Inits.push_back(I->getOperand(i)); |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 1086 | } else { |
| 1087 | assert(isa<ConstantAggregateZero>(G1->getInitializer())); |
| 1088 | Constant *CV = Constant::getNullValue(T1->getElementType()); |
| 1089 | for (unsigned i = 0, e = T1->getNumElements(); i != e; ++i) |
| 1090 | Inits.push_back(CV); |
| 1091 | } |
| 1092 | if (ConstantArray *I = dyn_cast<ConstantArray>(G2->getInitializer())) { |
| 1093 | for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i) |
Alkis Evlogimenos | cc7ba49 | 2004-08-04 08:08:13 +0000 | [diff] [blame] | 1094 | Inits.push_back(I->getOperand(i)); |
Chris Lattner | de512b5 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 1095 | } else { |
| 1096 | assert(isa<ConstantAggregateZero>(G2->getInitializer())); |
| 1097 | Constant *CV = Constant::getNullValue(T2->getElementType()); |
| 1098 | for (unsigned i = 0, e = T2->getNumElements(); i != e; ++i) |
| 1099 | Inits.push_back(CV); |
| 1100 | } |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1101 | NG->setInitializer(ConstantArray::get(NewType, Inits)); |
| 1102 | Inits.clear(); |
| 1103 | |
| 1104 | // Replace any uses of the two global variables with uses of the new |
| 1105 | // global... |
| 1106 | |
| 1107 | // FIXME: This should rewrite simple/straight-forward uses such as |
| 1108 | // getelementptr instructions to not use the Cast! |
Reid Spencer | 4da4912 | 2006-12-12 05:05:00 +0000 | [diff] [blame] | 1109 | G1->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G1->getType())); |
| 1110 | G2->replaceAllUsesWith(ConstantExpr::getBitCast(NG, G2->getType())); |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1111 | |
| 1112 | // Remove the two globals from the module now... |
| 1113 | M->getGlobalList().erase(G1); |
| 1114 | M->getGlobalList().erase(G2); |
| 1115 | |
| 1116 | // Put the new global into the AppendingVars map so that we can handle |
| 1117 | // linking of more than two vars... |
| 1118 | Second->second = NG; |
| 1119 | } |
| 1120 | AppendingVars.erase(First); |
| 1121 | } |
| 1122 | |
| 1123 | return false; |
| 1124 | } |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 1125 | |
Anton Korobeynikov | 9f2ee70 | 2008-03-05 23:21:39 +0000 | [diff] [blame] | 1126 | static bool ResolveAliases(Module *Dest) { |
| 1127 | for (Module::alias_iterator I = Dest->alias_begin(), E = Dest->alias_end(); |
Anton Korobeynikov | 5241957 | 2008-03-11 22:51:09 +0000 | [diff] [blame] | 1128 | I != E; ++I) |
| 1129 | if (const GlobalValue *GV = I->resolveAliasedGlobal()) |
| 1130 | if (!GV->isDeclaration()) |
| 1131 | I->replaceAllUsesWith(const_cast<GlobalValue*>(GV)); |
Anton Korobeynikov | 9f2ee70 | 2008-03-05 23:21:39 +0000 | [diff] [blame] | 1132 | |
| 1133 | return false; |
| 1134 | } |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 1135 | |
| 1136 | // LinkModules - This function links two modules together, with the resulting |
| 1137 | // left module modified to be the composite of the two input modules. If an |
| 1138 | // 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] | 1139 | // the problem. Upon failure, the Dest module could be in a modified state, and |
| 1140 | // shouldn't be relied on to be consistent. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 1141 | bool |
Reid Spencer | 0ba9e21 | 2004-12-13 03:00:16 +0000 | [diff] [blame] | 1142 | Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) { |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 1143 | assert(Dest != 0 && "Invalid Destination module"); |
| 1144 | assert(Src != 0 && "Invalid Source Module"); |
| 1145 | |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1146 | if (Dest->getDataLayout().empty()) { |
| 1147 | if (!Src->getDataLayout().empty()) { |
Chris Lattner | ec9bfdc | 2007-01-29 02:18:13 +0000 | [diff] [blame] | 1148 | Dest->setDataLayout(Src->getDataLayout()); |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1149 | } else { |
| 1150 | std::string DataLayout; |
Reid Spencer | 26f2385 | 2007-01-26 08:11:39 +0000 | [diff] [blame] | 1151 | |
Anton Korobeynikov | a27694d | 2008-02-20 11:27:04 +0000 | [diff] [blame] | 1152 | if (Dest->getEndianness() == Module::AnyEndianness) { |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1153 | if (Src->getEndianness() == Module::BigEndian) |
| 1154 | DataLayout.append("E"); |
| 1155 | else if (Src->getEndianness() == Module::LittleEndian) |
| 1156 | DataLayout.append("e"); |
Anton Korobeynikov | a27694d | 2008-02-20 11:27:04 +0000 | [diff] [blame] | 1157 | } |
| 1158 | |
| 1159 | if (Dest->getPointerSize() == Module::AnyPointerSize) { |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1160 | if (Src->getPointerSize() == Module::Pointer64) |
| 1161 | DataLayout.append(DataLayout.length() == 0 ? "p:64:64" : "-p:64:64"); |
| 1162 | else if (Src->getPointerSize() == Module::Pointer32) |
| 1163 | DataLayout.append(DataLayout.length() == 0 ? "p:32:32" : "-p:32:32"); |
Anton Korobeynikov | a27694d | 2008-02-20 11:27:04 +0000 | [diff] [blame] | 1164 | } |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1165 | Dest->setDataLayout(DataLayout); |
| 1166 | } |
| 1167 | } |
| 1168 | |
Chris Lattner | f27dfcb | 2008-02-19 18:49:08 +0000 | [diff] [blame] | 1169 | // Copy the target triple from the source to dest if the dest's is empty. |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1170 | if (Dest->getTargetTriple().empty() && !Src->getTargetTriple().empty()) |
Chris Lattner | 152f19a | 2004-12-10 20:26:15 +0000 | [diff] [blame] | 1171 | Dest->setTargetTriple(Src->getTargetTriple()); |
Chris Lattner | c36357c | 2007-01-29 00:21:34 +0000 | [diff] [blame] | 1172 | |
| 1173 | if (!Src->getDataLayout().empty() && !Dest->getDataLayout().empty() && |
| 1174 | Src->getDataLayout() != Dest->getDataLayout()) |
Reid Spencer | 26f2385 | 2007-01-26 08:11:39 +0000 | [diff] [blame] | 1175 | cerr << "WARNING: Linking two modules of different data layouts!\n"; |
Chris Lattner | 152f19a | 2004-12-10 20:26:15 +0000 | [diff] [blame] | 1176 | if (!Src->getTargetTriple().empty() && |
| 1177 | Dest->getTargetTriple() != Src->getTargetTriple()) |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1178 | cerr << "WARNING: Linking two modules of different target triples!\n"; |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 1179 | |
Chris Lattner | f27dfcb | 2008-02-19 18:49:08 +0000 | [diff] [blame] | 1180 | // Append the module inline asm string. |
Chris Lattner | 6631601 | 2006-01-24 04:14:29 +0000 | [diff] [blame] | 1181 | if (!Src->getModuleInlineAsm().empty()) { |
| 1182 | if (Dest->getModuleInlineAsm().empty()) |
| 1183 | Dest->setModuleInlineAsm(Src->getModuleInlineAsm()); |
Chris Lattner | e1b2e14 | 2006-01-23 23:08:37 +0000 | [diff] [blame] | 1184 | else |
Chris Lattner | 6631601 | 2006-01-24 04:14:29 +0000 | [diff] [blame] | 1185 | Dest->setModuleInlineAsm(Dest->getModuleInlineAsm()+"\n"+ |
| 1186 | Src->getModuleInlineAsm()); |
Chris Lattner | e1b2e14 | 2006-01-23 23:08:37 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
Reid Spencer | 719012d | 2004-11-25 09:29:44 +0000 | [diff] [blame] | 1189 | // Update the destination module's dependent libraries list with the libraries |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 1190 | // from the source module. There's no opportunity for duplicates here as the |
| 1191 | // Module ensures that duplicate insertions are discarded. |
Chris Lattner | f27dfcb | 2008-02-19 18:49:08 +0000 | [diff] [blame] | 1192 | for (Module::lib_iterator SI = Src->lib_begin(), SE = Src->lib_end(); |
| 1193 | SI != SE; ++SI) |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 1194 | Dest->addLibrary(*SI); |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 1195 | |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 1196 | // LinkTypes - Go through the symbol table of the Src module and see if any |
| 1197 | // types are named in the src module that are not named in the Dst module. |
| 1198 | // Make sure there are no type name conflicts. |
Reid Spencer | 619f024 | 2007-02-04 04:43:17 +0000 | [diff] [blame] | 1199 | if (LinkTypes(Dest, Src, ErrorMsg)) |
| 1200 | return true; |
Chris Lattner | 2c236f3 | 2001-11-03 05:18:24 +0000 | [diff] [blame] | 1201 | |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1202 | // ValueMap - Mapping of values from what they used to be in Src, to what they |
| 1203 | // are now in Dest. |
Chris Lattner | 5c2d335 | 2003-01-30 19:53:34 +0000 | [diff] [blame] | 1204 | std::map<const Value*, Value*> ValueMap; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1205 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1206 | // AppendingVars - Keep track of global variables in the destination module |
| 1207 | // with appending linkage. After the module is linked together, they are |
| 1208 | // appended and the module is rewritten. |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1209 | std::multimap<std::string, GlobalVariable *> AppendingVars; |
Chris Lattner | 1127315 | 2006-06-16 01:24:04 +0000 | [diff] [blame] | 1210 | for (Module::global_iterator I = Dest->global_begin(), E = Dest->global_end(); |
| 1211 | I != E; ++I) { |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 1212 | // Add all of the appending globals already in the Dest module to |
| 1213 | // AppendingVars. |
Chris Lattner | f414646 | 2003-05-14 12:11:51 +0000 | [diff] [blame] | 1214 | if (I->hasAppendingLinkage()) |
| 1215 | AppendingVars.insert(std::make_pair(I->getName(), I)); |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 1216 | } |
| 1217 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1218 | // Insert all of the globals in src into the Dest module... without linking |
| 1219 | // initializers (which could refer to functions not yet mapped over). |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 1220 | if (LinkGlobals(Dest, Src, ValueMap, AppendingVars, ErrorMsg)) |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 1221 | return true; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1222 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 1223 | // Link the functions together between the two modules, without doing function |
| 1224 | // bodies... this just adds external function prototypes to the Dest |
| 1225 | // function... We do this so that when we begin processing function bodies, |
| 1226 | // all of the global values that may be referenced are available in our |
| 1227 | // ValueMap. |
Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 1228 | if (LinkFunctionProtos(Dest, Src, ValueMap, ErrorMsg)) |
Chris Lattner | 5a837de | 2004-08-04 07:44:58 +0000 | [diff] [blame] | 1229 | return true; |
Chris Lattner | 5c377c5 | 2001-10-14 23:29:15 +0000 | [diff] [blame] | 1230 | |
Anton Korobeynikov | 4fb2873 | 2008-03-05 15:27:21 +0000 | [diff] [blame] | 1231 | // If there were any alias, link them now. We really need to do this now, |
| 1232 | // because all of the aliases that may be referenced need to be available in |
| 1233 | // ValueMap |
| 1234 | if (LinkAlias(Dest, Src, ValueMap, ErrorMsg)) return true; |
| 1235 | |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 1236 | // Update the initializers in the Dest module now that all globals that may |
| 1237 | // be referenced are in Dest. |
Chris Lattner | 6cdf197 | 2002-07-18 00:13:08 +0000 | [diff] [blame] | 1238 | if (LinkGlobalInits(Dest, Src, ValueMap, ErrorMsg)) return true; |
| 1239 | |
Chris Lattner | c8cc4cb | 2002-05-07 18:36:35 +0000 | [diff] [blame] | 1240 | // Link in the function bodies that are defined in the source module into the |
| 1241 | // DestModule. This consists basically of copying the function over and |
| 1242 | // fixing up references to values. |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 1243 | if (LinkFunctionBodies(Dest, Src, ValueMap, ErrorMsg)) return true; |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 1244 | |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1245 | // If there were any appending global variables, link them together now. |
Chris Lattner | 8166e6e | 2003-05-13 21:33:43 +0000 | [diff] [blame] | 1246 | if (LinkAppendingVars(Dest, AppendingVars, ErrorMsg)) return true; |
| 1247 | |
Anton Korobeynikov | 3db9191 | 2008-03-05 23:08:47 +0000 | [diff] [blame] | 1248 | // Resolve all uses of aliases with aliasees |
| 1249 | if (ResolveAliases(Dest)) return true; |
| 1250 | |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 1251 | // If the source library's module id is in the dependent library list of the |
| 1252 | // destination library, remove it since that module is now linked in. |
| 1253 | sys::Path modId; |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 1254 | modId.set(Src->getModuleIdentifier()); |
Reid Spencer | 07adb28 | 2004-11-05 22:15:36 +0000 | [diff] [blame] | 1255 | if (!modId.isEmpty()) |
| 1256 | Dest->removeLibrary(modId.getBasename()); |
Reid Spencer | 57a0efa | 2004-09-11 04:25:17 +0000 | [diff] [blame] | 1257 | |
Chris Lattner | 52f7e90 | 2001-10-13 07:03:50 +0000 | [diff] [blame] | 1258 | return false; |
| 1259 | } |
Vikram S. Adve | 9466f51 | 2001-10-28 21:38:02 +0000 | [diff] [blame] | 1260 | |
Reid Spencer | 567bc2c | 2004-05-25 08:52:20 +0000 | [diff] [blame] | 1261 | // vim: sw=2 |