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