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