Mikhail Glushenkov | 59a5afa | 2009-03-03 10:04:23 +0000 | [diff] [blame] | 1 | //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===// |
Misha Brukman | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 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 | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the LLVM module linker. |
| 11 | // |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | 6cc07df | 2014-03-06 03:42:23 +0000 | [diff] [blame] | 14 | #include "llvm/Linker/Linker.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm-c/Linker.h" |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/Optional.h" |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SetVector.h" |
Eli Bendersky | 0f7fd36 | 2013-03-19 15:26:24 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallString.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 19 | #include "llvm/IR/Constants.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Module.h" |
Chandler Carruth | dcb603f | 2013-01-07 15:43:51 +0000 | [diff] [blame] | 21 | #include "llvm/IR/TypeFinder.h" |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 22 | #include "llvm/Support/CommandLine.h" |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Debug.h" |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 25 | #include "llvm/Transforms/Utils/Cloning.h" |
Will Dietz | 981af00 | 2013-10-12 00:55:57 +0000 | [diff] [blame] | 26 | #include <cctype> |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 29 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 30 | //===----------------------------------------------------------------------===// |
| 31 | // TypeMap implementation. |
| 32 | //===----------------------------------------------------------------------===// |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 33 | |
Chris Lattner | eee6f99 | 2008-06-16 21:00:18 +0000 | [diff] [blame] | 34 | namespace { |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 35 | typedef SmallPtrSet<StructType*, 32> TypeSet; |
| 36 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 37 | class TypeMapTy : public ValueMapTypeRemapper { |
| 38 | /// MappedTypes - This is a mapping from a source type to a destination type |
| 39 | /// to use. |
| 40 | DenseMap<Type*, Type*> MappedTypes; |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 41 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 42 | /// SpeculativeTypes - When checking to see if two subgraphs are isomorphic, |
| 43 | /// we speculatively add types to MappedTypes, but keep track of them here in |
| 44 | /// case we need to roll back. |
| 45 | SmallVector<Type*, 16> SpeculativeTypes; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 47 | /// SrcDefinitionsToResolve - This is a list of non-opaque structs in the |
| 48 | /// source module that are mapped to an opaque struct in the destination |
| 49 | /// module. |
| 50 | SmallVector<StructType*, 16> SrcDefinitionsToResolve; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 51 | |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 52 | /// DstResolvedOpaqueTypes - This is the set of opaque types in the |
| 53 | /// destination modules who are getting a body from the source module. |
| 54 | SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes; |
Bill Wendling | 8c2cc41 | 2012-03-22 20:30:41 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 56cdea6 | 2008-06-16 23:06:51 +0000 | [diff] [blame] | 56 | public: |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 57 | TypeMapTy(TypeSet &Set) : DstStructTypesSet(Set) {} |
| 58 | |
| 59 | TypeSet &DstStructTypesSet; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 60 | /// addTypeMapping - Indicate that the specified type in the destination |
| 61 | /// module is conceptually equivalent to the specified type in the source |
| 62 | /// module. |
| 63 | void addTypeMapping(Type *DstTy, Type *SrcTy); |
| 64 | |
| 65 | /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest |
| 66 | /// module from a type definition in the source module. |
| 67 | void linkDefinedTypeBodies(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 68 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 69 | /// get - Return the mapped type to use for the specified input type from the |
| 70 | /// source module. |
| 71 | Type *get(Type *SrcTy); |
| 72 | |
| 73 | FunctionType *get(FunctionType *T) {return cast<FunctionType>(get((Type*)T));} |
| 74 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 75 | /// dump - Dump out the type map for debugging purposes. |
| 76 | void dump() const { |
| 77 | for (DenseMap<Type*, Type*>::const_iterator |
| 78 | I = MappedTypes.begin(), E = MappedTypes.end(); I != E; ++I) { |
| 79 | dbgs() << "TypeMap: "; |
| 80 | I->first->dump(); |
| 81 | dbgs() << " => "; |
| 82 | I->second->dump(); |
| 83 | dbgs() << '\n'; |
| 84 | } |
| 85 | } |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 86 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 87 | private: |
| 88 | Type *getImpl(Type *T); |
| 89 | /// remapType - Implement the ValueMapTypeRemapper interface. |
Craig Topper | 8548299 | 2014-03-05 07:52:44 +0000 | [diff] [blame] | 90 | Type *remapType(Type *SrcTy) override { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 91 | return get(SrcTy); |
Chris Lattner | eee6f99 | 2008-06-16 21:00:18 +0000 | [diff] [blame] | 92 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 93 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 94 | bool areTypesIsomorphic(Type *DstTy, Type *SrcTy); |
Chris Lattner | eee6f99 | 2008-06-16 21:00:18 +0000 | [diff] [blame] | 95 | }; |
| 96 | } |
| 97 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 98 | void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) { |
| 99 | Type *&Entry = MappedTypes[SrcTy]; |
| 100 | if (Entry) return; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 101 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 102 | if (DstTy == SrcTy) { |
| 103 | Entry = DstTy; |
| 104 | return; |
| 105 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 106 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 107 | // Check to see if these types are recursively isomorphic and establish a |
| 108 | // mapping between them if so. |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 109 | if (!areTypesIsomorphic(DstTy, SrcTy)) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 110 | // Oops, they aren't isomorphic. Just discard this request by rolling out |
| 111 | // any speculative mappings we've established. |
| 112 | for (unsigned i = 0, e = SpeculativeTypes.size(); i != e; ++i) |
| 113 | MappedTypes.erase(SpeculativeTypes[i]); |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 114 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 115 | SpeculativeTypes.clear(); |
| 116 | } |
Chris Lattner | eee6f99 | 2008-06-16 21:00:18 +0000 | [diff] [blame] | 117 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 118 | /// areTypesIsomorphic - Recursively walk this pair of types, returning true |
| 119 | /// if they are isomorphic, false if they are not. |
| 120 | bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) { |
| 121 | // Two types with differing kinds are clearly not isomorphic. |
| 122 | if (DstTy->getTypeID() != SrcTy->getTypeID()) return false; |
Misha Brukman | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 123 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 124 | // If we have an entry in the MappedTypes table, then we have our answer. |
| 125 | Type *&Entry = MappedTypes[SrcTy]; |
| 126 | if (Entry) |
| 127 | return Entry == DstTy; |
Misha Brukman | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 128 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 129 | // Two identical types are clearly isomorphic. Remember this |
| 130 | // non-speculatively. |
| 131 | if (DstTy == SrcTy) { |
| 132 | Entry = DstTy; |
Chris Lattner | fe677e9 | 2008-06-16 20:03:01 +0000 | [diff] [blame] | 133 | return true; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 134 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 135 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 136 | // Okay, we have two types with identical kinds that we haven't seen before. |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 137 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 138 | // If this is an opaque struct type, special case it. |
| 139 | if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) { |
| 140 | // Mapping an opaque type to any struct, just keep the dest struct. |
| 141 | if (SSTy->isOpaque()) { |
| 142 | Entry = DstTy; |
| 143 | SpeculativeTypes.push_back(SrcTy); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 144 | return true; |
Chris Lattner | 9be1589 | 2008-06-16 21:17:12 +0000 | [diff] [blame] | 145 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 146 | |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 147 | // Mapping a non-opaque source type to an opaque dest. If this is the first |
| 148 | // type that we're mapping onto this destination type then we succeed. Keep |
| 149 | // the dest, but fill it in later. This doesn't need to be speculative. If |
| 150 | // this is the second (different) type that we're trying to map onto the |
| 151 | // same opaque type then we fail. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 152 | if (cast<StructType>(DstTy)->isOpaque()) { |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 153 | // We can only map one source type onto the opaque destination type. |
| 154 | if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy))) |
| 155 | return false; |
| 156 | SrcDefinitionsToResolve.push_back(SSTy); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 157 | Entry = DstTy; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 158 | return true; |
| 159 | } |
| 160 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 161 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 162 | // If the number of subtypes disagree between the two types, then we fail. |
| 163 | if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes()) |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 164 | return false; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 165 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 166 | // Fail if any of the extra properties (e.g. array size) of the type disagree. |
| 167 | if (isa<IntegerType>(DstTy)) |
| 168 | return false; // bitwidth disagrees. |
| 169 | if (PointerType *PT = dyn_cast<PointerType>(DstTy)) { |
| 170 | if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace()) |
| 171 | return false; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 172 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 173 | } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) { |
| 174 | if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg()) |
| 175 | return false; |
| 176 | } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) { |
| 177 | StructType *SSTy = cast<StructType>(SrcTy); |
Chris Lattner | 44f7ab4 | 2011-08-12 18:07:26 +0000 | [diff] [blame] | 178 | if (DSTy->isLiteral() != SSTy->isLiteral() || |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 179 | DSTy->isPacked() != SSTy->isPacked()) |
| 180 | return false; |
| 181 | } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) { |
| 182 | if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements()) |
| 183 | return false; |
| 184 | } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) { |
Joey Gouly | 5fad3e9 | 2013-01-10 10:49:36 +0000 | [diff] [blame] | 185 | if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 186 | return false; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 187 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 188 | |
| 189 | // Otherwise, we speculate that these two types will line up and recursively |
| 190 | // check the subelements. |
| 191 | Entry = DstTy; |
| 192 | SpeculativeTypes.push_back(SrcTy); |
| 193 | |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 194 | for (unsigned i = 0, e = SrcTy->getNumContainedTypes(); i != e; ++i) |
| 195 | if (!areTypesIsomorphic(DstTy->getContainedType(i), |
| 196 | SrcTy->getContainedType(i))) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 197 | return false; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 198 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 199 | // If everything seems to have lined up, then everything is great. |
| 200 | return true; |
| 201 | } |
| 202 | |
| 203 | /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest |
| 204 | /// module from a type definition in the source module. |
| 205 | void TypeMapTy::linkDefinedTypeBodies() { |
| 206 | SmallVector<Type*, 16> Elements; |
| 207 | SmallString<16> TmpName; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 208 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 209 | // Note that processing entries in this loop (calling 'get') can add new |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 210 | // entries to the SrcDefinitionsToResolve vector. |
| 211 | while (!SrcDefinitionsToResolve.empty()) { |
| 212 | StructType *SrcSTy = SrcDefinitionsToResolve.pop_back_val(); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 213 | StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 214 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 215 | // TypeMap is a many-to-one mapping, if there were multiple types that |
| 216 | // provide a body for DstSTy then previous iterations of this loop may have |
| 217 | // already handled it. Just ignore this case. |
| 218 | if (!DstSTy->isOpaque()) continue; |
| 219 | assert(!SrcSTy->isOpaque() && "Not resolving a definition?"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 220 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 221 | // Map the body of the source type over to a new body for the dest type. |
| 222 | Elements.resize(SrcSTy->getNumElements()); |
| 223 | for (unsigned i = 0, e = Elements.size(); i != e; ++i) |
| 224 | Elements[i] = getImpl(SrcSTy->getElementType(i)); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 225 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 226 | DstSTy->setBody(Elements, SrcSTy->isPacked()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 227 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 228 | // If DstSTy has no name or has a longer name than STy, then viciously steal |
| 229 | // STy's name. |
| 230 | if (!SrcSTy->hasName()) continue; |
| 231 | StringRef SrcName = SrcSTy->getName(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 232 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 233 | if (!DstSTy->hasName() || DstSTy->getName().size() > SrcName.size()) { |
| 234 | TmpName.insert(TmpName.end(), SrcName.begin(), SrcName.end()); |
| 235 | SrcSTy->setName(""); |
| 236 | DstSTy->setName(TmpName.str()); |
| 237 | TmpName.clear(); |
| 238 | } |
| 239 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 240 | |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 241 | DstResolvedOpaqueTypes.clear(); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 244 | /// get - Return the mapped type to use for the specified input type from the |
| 245 | /// source module. |
| 246 | Type *TypeMapTy::get(Type *Ty) { |
| 247 | Type *Result = getImpl(Ty); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 248 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 249 | // If this caused a reference to any struct type, resolve it before returning. |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 250 | if (!SrcDefinitionsToResolve.empty()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 251 | linkDefinedTypeBodies(); |
| 252 | return Result; |
| 253 | } |
| 254 | |
| 255 | /// getImpl - This is the recursive version of get(). |
| 256 | Type *TypeMapTy::getImpl(Type *Ty) { |
| 257 | // If we already have an entry for this type, return it. |
| 258 | Type **Entry = &MappedTypes[Ty]; |
| 259 | if (*Entry) return *Entry; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 260 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 261 | // If this is not a named struct type, then just map all of the elements and |
| 262 | // then rebuild the type from inside out. |
Chris Lattner | 44f7ab4 | 2011-08-12 18:07:26 +0000 | [diff] [blame] | 263 | if (!isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral()) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 264 | // If there are no element types to map, then the type is itself. This is |
| 265 | // true for the anonymous {} struct, things like 'float', integers, etc. |
| 266 | if (Ty->getNumContainedTypes() == 0) |
| 267 | return *Entry = Ty; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 268 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 269 | // Remap all of the elements, keeping track of whether any of them change. |
| 270 | bool AnyChange = false; |
| 271 | SmallVector<Type*, 4> ElementTypes; |
| 272 | ElementTypes.resize(Ty->getNumContainedTypes()); |
| 273 | for (unsigned i = 0, e = Ty->getNumContainedTypes(); i != e; ++i) { |
| 274 | ElementTypes[i] = getImpl(Ty->getContainedType(i)); |
| 275 | AnyChange |= ElementTypes[i] != Ty->getContainedType(i); |
| 276 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 277 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 278 | // If we found our type while recursively processing stuff, just use it. |
| 279 | Entry = &MappedTypes[Ty]; |
| 280 | if (*Entry) return *Entry; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 281 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 282 | // If all of the element types mapped directly over, then the type is usable |
| 283 | // as-is. |
| 284 | if (!AnyChange) |
| 285 | return *Entry = Ty; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 286 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 287 | // Otherwise, rebuild a modified type. |
| 288 | switch (Ty->getTypeID()) { |
Craig Topper | a2886c2 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 289 | default: llvm_unreachable("unknown derived type to remap"); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 290 | case Type::ArrayTyID: |
| 291 | return *Entry = ArrayType::get(ElementTypes[0], |
| 292 | cast<ArrayType>(Ty)->getNumElements()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 293 | case Type::VectorTyID: |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 294 | return *Entry = VectorType::get(ElementTypes[0], |
| 295 | cast<VectorType>(Ty)->getNumElements()); |
| 296 | case Type::PointerTyID: |
| 297 | return *Entry = PointerType::get(ElementTypes[0], |
| 298 | cast<PointerType>(Ty)->getAddressSpace()); |
| 299 | case Type::FunctionTyID: |
| 300 | return *Entry = FunctionType::get(ElementTypes[0], |
Frits van Bommel | 717d7ed | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 301 | makeArrayRef(ElementTypes).slice(1), |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 302 | cast<FunctionType>(Ty)->isVarArg()); |
| 303 | case Type::StructTyID: |
| 304 | // Note that this is only reached for anonymous structs. |
| 305 | return *Entry = StructType::get(Ty->getContext(), ElementTypes, |
| 306 | cast<StructType>(Ty)->isPacked()); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | // Otherwise, this is an unmapped named struct. If the struct can be directly |
| 311 | // mapped over, just use it as-is. This happens in a case when the linked-in |
| 312 | // module has something like: |
| 313 | // %T = type {%T*, i32} |
| 314 | // @GV = global %T* null |
| 315 | // where T does not exist at all in the destination module. |
| 316 | // |
| 317 | // The other case we watch for is when the type is not in the destination |
| 318 | // module, but that it has to be rebuilt because it refers to something that |
| 319 | // is already mapped. For example, if the destination module has: |
| 320 | // %A = type { i32 } |
| 321 | // and the source module has something like |
| 322 | // %A' = type { i32 } |
| 323 | // %B = type { %A'* } |
| 324 | // @GV = global %B* null |
| 325 | // then we want to create a new type: "%B = type { %A*}" and have it take the |
| 326 | // pristine "%B" name from the source module. |
| 327 | // |
| 328 | // To determine which case this is, we have to recursively walk the type graph |
| 329 | // speculating that we'll be able to reuse it unmodified. Only if this is |
| 330 | // safe would we map the entire thing over. Because this is an optimization, |
| 331 | // and is not required for the prettiness of the linked module, we just skip |
| 332 | // it and always rebuild a type here. |
| 333 | StructType *STy = cast<StructType>(Ty); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 334 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 335 | // If the type is opaque, we can just use it directly. |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 336 | if (STy->isOpaque()) { |
| 337 | // A named structure type from src module is used. Add it to the Set of |
| 338 | // identified structs in the destination module. |
| 339 | DstStructTypesSet.insert(STy); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 340 | return *Entry = STy; |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 341 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 342 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 343 | // Otherwise we create a new type and resolve its body later. This will be |
| 344 | // resolved by the top level of get(). |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 345 | SrcDefinitionsToResolve.push_back(STy); |
| 346 | StructType *DTy = StructType::create(STy->getContext()); |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 347 | // A new identified structure type was created. Add it to the set of |
| 348 | // identified structs in the destination module. |
| 349 | DstStructTypesSet.insert(DTy); |
Chris Lattner | 5e3bd97 | 2011-12-20 00:03:52 +0000 | [diff] [blame] | 350 | DstResolvedOpaqueTypes.insert(DTy); |
| 351 | return *Entry = DTy; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 352 | } |
| 353 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 354 | //===----------------------------------------------------------------------===// |
| 355 | // ModuleLinker implementation. |
| 356 | //===----------------------------------------------------------------------===// |
| 357 | |
| 358 | namespace { |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 359 | class ModuleLinker; |
| 360 | |
| 361 | /// ValueMaterializerTy - Creates prototypes for functions that are lazily |
| 362 | /// linked on the fly. This speeds up linking for modules with many |
| 363 | /// lazily linked functions of which few get used. |
| 364 | class ValueMaterializerTy : public ValueMaterializer { |
| 365 | TypeMapTy &TypeMap; |
| 366 | Module *DstM; |
| 367 | std::vector<Function*> &LazilyLinkFunctions; |
| 368 | public: |
| 369 | ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM, |
| 370 | std::vector<Function*> &LazilyLinkFunctions) : |
| 371 | ValueMaterializer(), TypeMap(TypeMap), DstM(DstM), |
| 372 | LazilyLinkFunctions(LazilyLinkFunctions) { |
| 373 | } |
| 374 | |
Craig Topper | 8548299 | 2014-03-05 07:52:44 +0000 | [diff] [blame] | 375 | Value *materializeValueFor(Value *V) override; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 376 | }; |
| 377 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 378 | /// ModuleLinker - This is an implementation class for the LinkModules |
| 379 | /// function, which is the entrypoint for this file. |
| 380 | class ModuleLinker { |
| 381 | Module *DstM, *SrcM; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 382 | |
| 383 | TypeMapTy TypeMap; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 384 | ValueMaterializerTy ValMaterializer; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 385 | |
| 386 | /// ValueMap - Mapping of values from what they used to be in Src, to what |
| 387 | /// they are now in DstM. ValueToValueMapTy is a ValueMap, which involves |
| 388 | /// some overhead due to the use of Value handles which the Linker doesn't |
| 389 | /// actually need, but this allows us to reuse the ValueMapper code. |
| 390 | ValueToValueMapTy ValueMap; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 391 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 392 | struct AppendingVarInfo { |
| 393 | GlobalVariable *NewGV; // New aggregate global in dest module. |
| 394 | Constant *DstInit; // Old initializer from dest module. |
| 395 | Constant *SrcInit; // Old initializer from src module. |
| 396 | }; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 397 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 398 | std::vector<AppendingVarInfo> AppendingVars; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 399 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 400 | unsigned Mode; // Mode to treat source module. |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 401 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 402 | // Set of items not to link in from source. |
| 403 | SmallPtrSet<const Value*, 16> DoNotLinkFromSource; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 404 | |
Tanya Lattner | 0a48b87 | 2011-11-02 00:24:56 +0000 | [diff] [blame] | 405 | // Vector of functions to lazily link in. |
Bill Wendling | fa228782 | 2013-03-27 17:54:41 +0000 | [diff] [blame] | 406 | std::vector<Function*> LazilyLinkFunctions; |
Eli Bendersky | 7da92ed | 2014-02-20 22:19:24 +0000 | [diff] [blame] | 407 | |
| 408 | bool SuppressWarnings; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 409 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 410 | public: |
| 411 | std::string ErrorMsg; |
Eli Bendersky | 7da92ed | 2014-02-20 22:19:24 +0000 | [diff] [blame] | 412 | |
| 413 | ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode, |
| 414 | bool SuppressWarnings=false) |
| 415 | : DstM(dstM), SrcM(srcM), TypeMap(Set), |
| 416 | ValMaterializer(TypeMap, DstM, LazilyLinkFunctions), Mode(mode), |
| 417 | SuppressWarnings(SuppressWarnings) {} |
| 418 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 419 | bool run(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 420 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 421 | private: |
| 422 | /// emitError - Helper method for setting a message and returning an error |
| 423 | /// code. |
| 424 | bool emitError(const Twine &Message) { |
| 425 | ErrorMsg = Message.str(); |
Chris Lattner | 9995302 | 2008-06-16 18:27:53 +0000 | [diff] [blame] | 426 | return true; |
Chris Lattner | 9be1589 | 2008-06-16 21:17:12 +0000 | [diff] [blame] | 427 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 428 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 429 | bool getComdatLeader(Module *M, StringRef ComdatName, |
| 430 | const GlobalVariable *&GVar); |
| 431 | bool computeResultingSelectionKind(StringRef ComdatName, |
| 432 | Comdat::SelectionKind Src, |
| 433 | Comdat::SelectionKind Dst, |
| 434 | Comdat::SelectionKind &Result, |
| 435 | bool &LinkFromSrc); |
| 436 | std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>> |
| 437 | ComdatsChosen; |
| 438 | bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK, |
| 439 | bool &LinkFromSrc); |
| 440 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 441 | /// getLinkageResult - This analyzes the two global values and determines |
| 442 | /// what the result will look like in the destination module. |
| 443 | bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 444 | GlobalValue::LinkageTypes <, |
| 445 | GlobalValue::VisibilityTypes &Vis, |
| 446 | bool &LinkFromSrc); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 447 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 448 | /// getLinkedToGlobal - Given a global in the source module, return the |
| 449 | /// global in the destination module that is being linked to, if any. |
| 450 | GlobalValue *getLinkedToGlobal(GlobalValue *SrcGV) { |
| 451 | // If the source has no name it can't link. If it has local linkage, |
| 452 | // there is no name match-up going on. |
| 453 | if (!SrcGV->hasName() || SrcGV->hasLocalLinkage()) |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 454 | return nullptr; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 455 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 456 | // Otherwise see if we have a match in the destination module's symtab. |
| 457 | GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName()); |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 458 | if (!DGV) return nullptr; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 459 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 460 | // If we found a global with the same name in the dest module, but it has |
| 461 | // internal linkage, we are really not doing any linkage here. |
| 462 | if (DGV->hasLocalLinkage()) |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 463 | return nullptr; |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 464 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 465 | // Otherwise, we do in fact link to the destination global. |
| 466 | return DGV; |
| 467 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 468 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 469 | void computeTypeMapping(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 470 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 471 | bool linkAppendingVarProto(GlobalVariable *DstGV, GlobalVariable *SrcGV); |
| 472 | bool linkGlobalProto(GlobalVariable *SrcGV); |
| 473 | bool linkFunctionProto(Function *SrcF); |
| 474 | bool linkAliasProto(GlobalAlias *SrcA); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 475 | bool linkModuleFlagsMetadata(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 476 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 477 | void linkAppendingVarInit(const AppendingVarInfo &AVI); |
| 478 | void linkGlobalInits(); |
| 479 | void linkFunctionBody(Function *Dst, Function *Src); |
| 480 | void linkAliasBodies(); |
| 481 | void linkNamedMDNodes(); |
| 482 | }; |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 485 | /// forceRenaming - The LLVM SymbolTable class autorenames globals that conflict |
Reid Spencer | 90246aa | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 486 | /// in the symbol table. This is good for all clients except for us. Go |
| 487 | /// through the trouble to force this back. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 488 | static void forceRenaming(GlobalValue *GV, StringRef Name) { |
| 489 | // If the global doesn't force its name or if it already has the right name, |
| 490 | // there is nothing for us to do. |
| 491 | if (GV->hasLocalLinkage() || GV->getName() == Name) |
| 492 | return; |
| 493 | |
| 494 | Module *M = GV->getParent(); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 495 | |
| 496 | // If there is a conflict, rename the conflict. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 497 | if (GlobalValue *ConflictGV = M->getNamedValue(Name)) { |
Chris Lattner | 2a8d2e0 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 498 | GV->takeName(ConflictGV); |
| 499 | ConflictGV->setName(Name); // This will cause ConflictGV to get renamed |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 500 | assert(ConflictGV->getName() != Name && "forceRenaming didn't work"); |
Chris Lattner | 2a8d2e0 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 501 | } else { |
| 502 | GV->setName(Name); // Force the name back |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 503 | } |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 504 | } |
Reid Spencer | 90246aa | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 505 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 506 | /// copyGVAttributes - copy additional attributes (those not needed to construct |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 507 | /// a GlobalValue) from the SrcGV to the DestGV. |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 508 | static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) { |
Duncan Sands | dd7daee | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 509 | // Use the maximum alignment, rather than just copying the alignment of SrcGV. |
Rafael Espindola | 99e05cf | 2014-05-13 18:45:48 +0000 | [diff] [blame] | 510 | auto *DestGO = dyn_cast<GlobalObject>(DestGV); |
Rafael Espindola | a7d9c69 | 2014-05-06 14:51:36 +0000 | [diff] [blame] | 511 | unsigned Alignment; |
Rafael Espindola | 99e05cf | 2014-05-13 18:45:48 +0000 | [diff] [blame] | 512 | if (DestGO) |
| 513 | Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment()); |
Rafael Espindola | a7d9c69 | 2014-05-06 14:51:36 +0000 | [diff] [blame] | 514 | |
Duncan Sands | dd7daee | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 515 | DestGV->copyAttributesFrom(SrcGV); |
Rafael Espindola | a7d9c69 | 2014-05-06 14:51:36 +0000 | [diff] [blame] | 516 | |
Rafael Espindola | 99e05cf | 2014-05-13 18:45:48 +0000 | [diff] [blame] | 517 | if (DestGO) |
| 518 | DestGO->setAlignment(Alignment); |
Rafael Espindola | a7d9c69 | 2014-05-06 14:51:36 +0000 | [diff] [blame] | 519 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 520 | forceRenaming(DestGV, SrcGV->getName()); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 523 | static bool isLessConstraining(GlobalValue::VisibilityTypes a, |
| 524 | GlobalValue::VisibilityTypes b) { |
| 525 | if (a == GlobalValue::HiddenVisibility) |
| 526 | return false; |
| 527 | if (b == GlobalValue::HiddenVisibility) |
| 528 | return true; |
| 529 | if (a == GlobalValue::ProtectedVisibility) |
| 530 | return false; |
| 531 | if (b == GlobalValue::ProtectedVisibility) |
| 532 | return true; |
| 533 | return false; |
| 534 | } |
| 535 | |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 536 | Value *ValueMaterializerTy::materializeValueFor(Value *V) { |
| 537 | Function *SF = dyn_cast<Function>(V); |
| 538 | if (!SF) |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 539 | return nullptr; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 540 | |
| 541 | Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()), |
| 542 | SF->getLinkage(), SF->getName(), DstM); |
| 543 | copyGVAttributes(DF, SF); |
| 544 | |
| 545 | LazilyLinkFunctions.push_back(SF); |
| 546 | return DF; |
| 547 | } |
| 548 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 549 | bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName, |
| 550 | const GlobalVariable *&GVar) { |
| 551 | const GlobalValue *GVal = M->getNamedValue(ComdatName); |
| 552 | if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) { |
| 553 | GVal = GA->getBaseObject(); |
| 554 | if (!GVal) |
| 555 | // We cannot resolve the size of the aliasee yet. |
| 556 | return emitError("Linking COMDATs named '" + ComdatName + |
| 557 | "': COMDAT key involves incomputable alias size."); |
| 558 | } |
| 559 | |
| 560 | GVar = dyn_cast_or_null<GlobalVariable>(GVal); |
| 561 | if (!GVar) |
| 562 | return emitError( |
| 563 | "Linking COMDATs named '" + ComdatName + |
| 564 | "': GlobalVariable required for data dependent selection!"); |
| 565 | |
| 566 | return false; |
| 567 | } |
| 568 | |
| 569 | bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName, |
| 570 | Comdat::SelectionKind Src, |
| 571 | Comdat::SelectionKind Dst, |
| 572 | Comdat::SelectionKind &Result, |
| 573 | bool &LinkFromSrc) { |
| 574 | // The ability to mix Comdat::SelectionKind::Any with |
| 575 | // Comdat::SelectionKind::Largest is a behavior that comes from COFF. |
| 576 | bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any || |
| 577 | Dst == Comdat::SelectionKind::Largest; |
| 578 | bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any || |
| 579 | Src == Comdat::SelectionKind::Largest; |
| 580 | if (DstAnyOrLargest && SrcAnyOrLargest) { |
| 581 | if (Dst == Comdat::SelectionKind::Largest || |
| 582 | Src == Comdat::SelectionKind::Largest) |
| 583 | Result = Comdat::SelectionKind::Largest; |
| 584 | else |
| 585 | Result = Comdat::SelectionKind::Any; |
| 586 | } else if (Src == Dst) { |
| 587 | Result = Dst; |
| 588 | } else { |
| 589 | return emitError("Linking COMDATs named '" + ComdatName + |
| 590 | "': invalid selection kinds!"); |
| 591 | } |
| 592 | |
| 593 | switch (Result) { |
| 594 | case Comdat::SelectionKind::Any: |
| 595 | // Go with Dst. |
| 596 | LinkFromSrc = false; |
| 597 | break; |
| 598 | case Comdat::SelectionKind::NoDuplicates: |
| 599 | return emitError("Linking COMDATs named '" + ComdatName + |
| 600 | "': noduplicates has been violated!"); |
| 601 | case Comdat::SelectionKind::ExactMatch: |
| 602 | case Comdat::SelectionKind::Largest: |
| 603 | case Comdat::SelectionKind::SameSize: { |
| 604 | const GlobalVariable *DstGV; |
| 605 | const GlobalVariable *SrcGV; |
| 606 | if (getComdatLeader(DstM, ComdatName, DstGV) || |
| 607 | getComdatLeader(SrcM, ComdatName, SrcGV)) |
| 608 | return true; |
| 609 | |
| 610 | const DataLayout *DstDL = DstM->getDataLayout(); |
| 611 | const DataLayout *SrcDL = SrcM->getDataLayout(); |
| 612 | if (!DstDL || !SrcDL) { |
| 613 | return emitError( |
| 614 | "Linking COMDATs named '" + ComdatName + |
| 615 | "': can't do size dependent selection without DataLayout!"); |
| 616 | } |
| 617 | uint64_t DstSize = |
| 618 | DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType()); |
| 619 | uint64_t SrcSize = |
| 620 | SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType()); |
| 621 | if (Result == Comdat::SelectionKind::ExactMatch) { |
| 622 | if (SrcGV->getInitializer() != DstGV->getInitializer()) |
| 623 | return emitError("Linking COMDATs named '" + ComdatName + |
| 624 | "': ExactMatch violated!"); |
| 625 | LinkFromSrc = false; |
| 626 | } else if (Result == Comdat::SelectionKind::Largest) { |
| 627 | LinkFromSrc = SrcSize > DstSize; |
| 628 | } else if (Result == Comdat::SelectionKind::SameSize) { |
| 629 | if (SrcSize != DstSize) |
| 630 | return emitError("Linking COMDATs named '" + ComdatName + |
| 631 | "': SameSize violated!"); |
| 632 | LinkFromSrc = false; |
| 633 | } else { |
| 634 | llvm_unreachable("unknown selection kind"); |
| 635 | } |
| 636 | break; |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | return false; |
| 641 | } |
| 642 | |
| 643 | bool ModuleLinker::getComdatResult(const Comdat *SrcC, |
| 644 | Comdat::SelectionKind &Result, |
| 645 | bool &LinkFromSrc) { |
| 646 | StringRef ComdatName = SrcC->getName(); |
| 647 | Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable(); |
| 648 | Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName); |
| 649 | if (DstCI != ComdatSymTab.end()) { |
| 650 | const Comdat *DstC = &DstCI->second; |
| 651 | Comdat::SelectionKind SSK = SrcC->getSelectionKind(); |
| 652 | Comdat::SelectionKind DSK = DstC->getSelectionKind(); |
| 653 | if (computeResultingSelectionKind(ComdatName, SSK, DSK, Result, LinkFromSrc)) |
| 654 | return true; |
| 655 | } |
| 656 | return false; |
| 657 | } |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 658 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 659 | /// getLinkageResult - This analyzes the two global values and determines what |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 660 | /// the result will look like in the destination module. In particular, it |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 661 | /// computes the resultant linkage type and visibility, computes whether the |
| 662 | /// global in the source should be copied over to the destination (replacing |
| 663 | /// the existing one), and computes whether this linkage is an error or not. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 664 | bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 665 | GlobalValue::LinkageTypes <, |
| 666 | GlobalValue::VisibilityTypes &Vis, |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 667 | bool &LinkFromSrc) { |
| 668 | assert(Dest && "Must have two globals being queried"); |
| 669 | assert(!Src->hasLocalLinkage() && |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 670 | "If Src has internal linkage, Dest shouldn't be set!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 671 | |
Peter Collingbourne | 8bb15d8 | 2011-10-30 17:46:34 +0000 | [diff] [blame] | 672 | bool SrcIsDeclaration = Src->isDeclaration() && !Src->isMaterializable(); |
Chris Lattner | 0c134b5 | 2011-07-14 20:23:05 +0000 | [diff] [blame] | 673 | bool DestIsDeclaration = Dest->isDeclaration(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 674 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 675 | if (SrcIsDeclaration) { |
Anton Korobeynikov | 1f93c50 | 2008-03-10 22:33:22 +0000 | [diff] [blame] | 676 | // If Src is external or if both Src & Dest are external.. Just link the |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 677 | // external globals, we aren't adding anything. |
Nico Rieck | 7157bb7 | 2014-01-14 15:22:47 +0000 | [diff] [blame] | 678 | if (Src->hasDLLImportStorageClass()) { |
| 679 | // If one of GVs is marked as DLLImport, result should be dllimport'ed. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 680 | if (DestIsDeclaration) { |
Anton Korobeynikov | d61d39e | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 681 | LinkFromSrc = true; |
| 682 | LT = Src->getLinkage(); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 683 | } |
Andrew Lenharth | e06036d | 2006-12-15 17:35:32 +0000 | [diff] [blame] | 684 | } else if (Dest->hasExternalWeakLinkage()) { |
Duncan Sands | 12da8ce | 2009-03-07 15:45:40 +0000 | [diff] [blame] | 685 | // If the Dest is weak, use the source linkage. |
Andrew Lenharth | e06036d | 2006-12-15 17:35:32 +0000 | [diff] [blame] | 686 | LinkFromSrc = true; |
| 687 | LT = Src->getLinkage(); |
Anton Korobeynikov | d61d39e | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 688 | } else { |
| 689 | LinkFromSrc = false; |
| 690 | LT = Dest->getLinkage(); |
| 691 | } |
Nico Rieck | 7157bb7 | 2014-01-14 15:22:47 +0000 | [diff] [blame] | 692 | } else if (DestIsDeclaration && !Dest->hasDLLImportStorageClass()) { |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 693 | // If Dest is external but Src is not: |
| 694 | LinkFromSrc = true; |
| 695 | LT = Src->getLinkage(); |
Duncan Sands | d725c99 | 2009-03-08 13:35:23 +0000 | [diff] [blame] | 696 | } else if (Src->isWeakForLinker()) { |
Dale Johannesen | ce4396b | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 697 | // At this point we know that Dest has LinkOnce, External*, Weak, Common, |
| 698 | // or DLL* linkage. |
Chris Lattner | 184f1be | 2009-04-13 05:44:34 +0000 | [diff] [blame] | 699 | if (Dest->hasExternalWeakLinkage() || |
| 700 | Dest->hasAvailableExternallyLinkage() || |
| 701 | (Dest->hasLinkOnceLinkage() && |
| 702 | (Src->hasWeakLinkage() || Src->hasCommonLinkage()))) { |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 703 | LinkFromSrc = true; |
| 704 | LT = Src->getLinkage(); |
| 705 | } else { |
| 706 | LinkFromSrc = false; |
| 707 | LT = Dest->getLinkage(); |
| 708 | } |
Duncan Sands | d725c99 | 2009-03-08 13:35:23 +0000 | [diff] [blame] | 709 | } else if (Dest->isWeakForLinker()) { |
Anton Korobeynikov | 12c9494 | 2006-12-01 00:25:12 +0000 | [diff] [blame] | 710 | // At this point we know that Src has External* or DLL* linkage. |
| 711 | if (Src->hasExternalWeakLinkage()) { |
| 712 | LinkFromSrc = false; |
| 713 | LT = Dest->getLinkage(); |
| 714 | } else { |
| 715 | LinkFromSrc = true; |
| 716 | LT = GlobalValue::ExternalLinkage; |
| 717 | } |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 718 | } else { |
Nico Rieck | 7157bb7 | 2014-01-14 15:22:47 +0000 | [diff] [blame] | 719 | assert((Dest->hasExternalLinkage() || Dest->hasExternalWeakLinkage()) && |
| 720 | (Src->hasExternalLinkage() || Src->hasExternalWeakLinkage()) && |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 721 | "Unexpected linkage type!"); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 722 | return emitError("Linking globals named '" + Src->getName() + |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 723 | "': symbol multiply defined!"); |
| 724 | } |
Anton Korobeynikov | 31fc4f9 | 2007-04-29 20:56:48 +0000 | [diff] [blame] | 725 | |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 726 | // Compute the visibility. We follow the rules in the System V Application |
| 727 | // Binary Interface. |
Duncan P. N. Exon Smith | b2becfd | 2014-05-07 22:55:46 +0000 | [diff] [blame] | 728 | assert(!GlobalValue::isLocalLinkage(LT) && |
| 729 | "Symbols with local linkage should not be merged"); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 730 | Vis = isLessConstraining(Src->getVisibility(), Dest->getVisibility()) ? |
| 731 | Dest->getVisibility() : Src->getVisibility(); |
Chris Lattner | fc61de3 | 2004-12-03 22:18:41 +0000 | [diff] [blame] | 732 | return false; |
| 733 | } |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 734 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 735 | /// computeTypeMapping - Loop over all of the linked values to compute type |
| 736 | /// mappings. For example, if we link "extern Foo *x" and "Foo *x = NULL", then |
| 737 | /// we have two struct types 'Foo' but one got renamed when the module was |
| 738 | /// loaded into the same LLVMContext. |
| 739 | void ModuleLinker::computeTypeMapping() { |
| 740 | // Incorporate globals. |
| 741 | for (Module::global_iterator I = SrcM->global_begin(), |
| 742 | E = SrcM->global_end(); I != E; ++I) { |
| 743 | GlobalValue *DGV = getLinkedToGlobal(I); |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 744 | if (!DGV) continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 745 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 746 | if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) { |
| 747 | TypeMap.addTypeMapping(DGV->getType(), I->getType()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 748 | continue; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 749 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 750 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 751 | // Unify the element type of appending arrays. |
| 752 | ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType()); |
| 753 | ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType()); |
| 754 | TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType()); |
Devang Patel | 5c310be | 2009-08-11 18:01:24 +0000 | [diff] [blame] | 755 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 756 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 757 | // Incorporate functions. |
| 758 | for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) { |
| 759 | if (GlobalValue *DGV = getLinkedToGlobal(I)) |
| 760 | TypeMap.addTypeMapping(DGV->getType(), I->getType()); |
| 761 | } |
Bill Wendling | 7b46461 | 2012-02-27 22:34:19 +0000 | [diff] [blame] | 762 | |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 763 | // Incorporate types by name, scanning all the types in the source module. |
| 764 | // At this point, the destination module may have a type "%foo = { i32 }" for |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 765 | // example. When the source module got loaded into the same LLVMContext, if |
| 766 | // it had the same type, it would have been renamed to "%foo.42 = { i32 }". |
Bill Wendling | 8555a37 | 2012-08-03 00:30:35 +0000 | [diff] [blame] | 767 | TypeFinder SrcStructTypes; |
| 768 | SrcStructTypes.run(*SrcM, true); |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 769 | SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(), |
| 770 | SrcStructTypes.end()); |
Bill Wendling | 8737480 | 2012-03-23 23:17:38 +0000 | [diff] [blame] | 771 | |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 772 | for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) { |
| 773 | StructType *ST = SrcStructTypes[i]; |
| 774 | if (!ST->hasName()) continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 775 | |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 776 | // Check to see if there is a dot in the name followed by a digit. |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 777 | size_t DotPos = ST->getName().rfind('.'); |
| 778 | if (DotPos == 0 || DotPos == StringRef::npos || |
Guy Benyei | 83c74e9 | 2013-02-12 21:21:59 +0000 | [diff] [blame] | 779 | ST->getName().back() == '.' || |
| 780 | !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1]))) |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 781 | continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 782 | |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 783 | // Check to see if the destination module has a struct with the prefix name. |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 784 | if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos))) |
Bill Wendling | 8737480 | 2012-03-23 23:17:38 +0000 | [diff] [blame] | 785 | // Don't use it if this actually came from the source module. They're in |
| 786 | // the same LLVMContext after all. Also don't use it unless the type is |
| 787 | // actually used in the destination module. This can happen in situations |
| 788 | // like this: |
| 789 | // |
| 790 | // Module A Module B |
| 791 | // -------- -------- |
| 792 | // %Z = type { %A } %B = type { %C.1 } |
| 793 | // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* } |
| 794 | // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] } |
| 795 | // %C = type { i8* } %B.3 = type { %C.1 } |
| 796 | // |
| 797 | // When we link Module B with Module A, the '%B' in Module B is |
| 798 | // used. However, that would then use '%C.1'. But when we process '%C.1', |
| 799 | // we prefer to take the '%C' version. So we are then left with both |
| 800 | // '%C.1' and '%C' being used for the same types. This leads to some |
| 801 | // variables using one type and some using the other. |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 802 | if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST)) |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 803 | TypeMap.addTypeMapping(DST, ST); |
| 804 | } |
| 805 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 806 | // Don't bother incorporating aliases, they aren't generally typed well. |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 807 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 808 | // Now that we have discovered all of the type equivalences, get a body for |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 809 | // any 'opaque' types in the dest module that are now resolved. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 810 | TypeMap.linkDefinedTypeBodies(); |
Devang Patel | 5c310be | 2009-08-11 18:01:24 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 813 | /// linkAppendingVarProto - If there were any appending global variables, link |
| 814 | /// them together now. Return true on error. |
| 815 | bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV, |
| 816 | GlobalVariable *SrcGV) { |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 817 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 818 | if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage()) |
| 819 | return emitError("Linking globals named '" + SrcGV->getName() + |
| 820 | "': can only link appending global with another appending global!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 821 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 822 | ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType()); |
| 823 | ArrayType *SrcTy = |
| 824 | cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType())); |
| 825 | Type *EltTy = DstTy->getElementType(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 826 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 827 | // Check to see that they two arrays agree on type. |
| 828 | if (EltTy != SrcTy->getElementType()) |
| 829 | return emitError("Appending variables with different element types!"); |
| 830 | if (DstGV->isConstant() != SrcGV->isConstant()) |
| 831 | return emitError("Appending variables linked with different const'ness!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 832 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 833 | if (DstGV->getAlignment() != SrcGV->getAlignment()) |
| 834 | return emitError( |
| 835 | "Appending variables with different alignment need to be linked!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 836 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 837 | if (DstGV->getVisibility() != SrcGV->getVisibility()) |
| 838 | return emitError( |
| 839 | "Appending variables with different visibility need to be linked!"); |
Rafael Espindola | fac3a01 | 2013-09-04 15:33:34 +0000 | [diff] [blame] | 840 | |
| 841 | if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr()) |
| 842 | return emitError( |
| 843 | "Appending variables with different unnamed_addr need to be linked!"); |
| 844 | |
Rafael Espindola | 64c1e18 | 2014-06-03 02:41:57 +0000 | [diff] [blame] | 845 | if (StringRef(DstGV->getSection()) != SrcGV->getSection()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 846 | return emitError( |
| 847 | "Appending variables with different section name need to be linked!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 848 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 849 | uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements(); |
| 850 | ArrayType *NewType = ArrayType::get(EltTy, NewSize); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 851 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 852 | // Create the new global variable. |
| 853 | GlobalVariable *NG = |
| 854 | new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(), |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 855 | DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV, |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 856 | DstGV->getThreadLocalMode(), |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 857 | DstGV->getType()->getAddressSpace()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 858 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 859 | // Propagate alignment, visibility and section info. |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 860 | copyGVAttributes(NG, DstGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 861 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 862 | AppendingVarInfo AVI; |
| 863 | AVI.NewGV = NG; |
| 864 | AVI.DstInit = DstGV->getInitializer(); |
| 865 | AVI.SrcInit = SrcGV->getInitializer(); |
| 866 | AppendingVars.push_back(AVI); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 867 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 868 | // Replace any uses of the two global variables with uses of the new |
| 869 | // global. |
| 870 | ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType())); |
Anton Korobeynikov | e79f4c7 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 871 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 872 | DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType())); |
| 873 | DstGV->eraseFromParent(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 874 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 875 | // Track the source variable so we don't try to link it. |
| 876 | DoNotLinkFromSource.insert(SrcGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 877 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 878 | return false; |
| 879 | } |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 880 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 881 | /// linkGlobalProto - Loop through the global variables in the src module and |
| 882 | /// merge them into the dest module. |
| 883 | bool ModuleLinker::linkGlobalProto(GlobalVariable *SGV) { |
| 884 | GlobalValue *DGV = getLinkedToGlobal(SGV); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 885 | llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility; |
Rafael Espindola | d4885da | 2013-09-04 14:05:09 +0000 | [diff] [blame] | 886 | bool HasUnnamedAddr = SGV->hasUnnamedAddr(); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 887 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 888 | bool LinkFromSrc = false; |
| 889 | Comdat *DC = nullptr; |
| 890 | if (const Comdat *SC = SGV->getComdat()) { |
| 891 | Comdat::SelectionKind SK; |
| 892 | std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; |
| 893 | DC = DstM->getOrInsertComdat(SC->getName()); |
| 894 | DC->setSelectionKind(SK); |
| 895 | } |
| 896 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 897 | if (DGV) { |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 898 | if (!DC) { |
| 899 | // Concatenation of appending linkage variables is magic and handled later. |
| 900 | if (DGV->hasAppendingLinkage() || SGV->hasAppendingLinkage()) |
| 901 | return linkAppendingVarProto(cast<GlobalVariable>(DGV), SGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 902 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 903 | // Determine whether linkage of these two globals follows the source |
| 904 | // module's definition or the destination module's definition. |
| 905 | GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage; |
| 906 | GlobalValue::VisibilityTypes NV; |
| 907 | if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc)) |
| 908 | return true; |
| 909 | NewVisibility = NV; |
| 910 | HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr(); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 911 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 912 | // If we're not linking from the source, then keep the definition that we |
| 913 | // have. |
| 914 | if (!LinkFromSrc) { |
| 915 | // Special case for const propagation. |
| 916 | if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) |
| 917 | if (DGVar->isDeclaration() && SGV->isConstant() && |
| 918 | !DGVar->isConstant()) |
| 919 | DGVar->setConstant(true); |
| 920 | |
| 921 | // Set calculated linkage, visibility and unnamed_addr. |
| 922 | DGV->setLinkage(NewLinkage); |
| 923 | DGV->setVisibility(*NewVisibility); |
| 924 | DGV->setUnnamedAddr(HasUnnamedAddr); |
| 925 | } |
| 926 | } |
| 927 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 928 | if (!LinkFromSrc) { |
Chris Lattner | 0ead7a5 | 2008-07-14 07:23:24 +0000 | [diff] [blame] | 929 | // Make sure to remember this mapping. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 930 | ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType())); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 931 | |
| 932 | // Track the source global so that we don't attempt to copy it over when |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 933 | // processing global initializers. |
| 934 | DoNotLinkFromSource.insert(SGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 935 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 936 | return false; |
Chris Lattner | 0ead7a5 | 2008-07-14 07:23:24 +0000 | [diff] [blame] | 937 | } |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 938 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 939 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 940 | // If the Comdat this variable was inside of wasn't selected, skip it. |
| 941 | if (DC && !DGV && !LinkFromSrc) { |
| 942 | DoNotLinkFromSource.insert(SGV); |
| 943 | return false; |
| 944 | } |
| 945 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 946 | // No linking to be performed or linking from the source: simply create an |
| 947 | // identical version of the symbol over in the dest module... the |
| 948 | // initializer will be filled in later by LinkGlobalInits. |
| 949 | GlobalVariable *NewDGV = |
| 950 | new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()), |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 951 | SGV->isConstant(), SGV->getLinkage(), /*init*/nullptr, |
| 952 | SGV->getName(), /*insertbefore*/nullptr, |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 953 | SGV->getThreadLocalMode(), |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 954 | SGV->getType()->getAddressSpace()); |
| 955 | // Propagate alignment, visibility and section info. |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 956 | copyGVAttributes(NewDGV, SGV); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 957 | if (NewVisibility) |
| 958 | NewDGV->setVisibility(*NewVisibility); |
Rafael Espindola | d4885da | 2013-09-04 14:05:09 +0000 | [diff] [blame] | 959 | NewDGV->setUnnamedAddr(HasUnnamedAddr); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 960 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 961 | if (DC) |
| 962 | NewDGV->setComdat(DC); |
| 963 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 964 | if (DGV) { |
| 965 | DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType())); |
| 966 | DGV->eraseFromParent(); |
| 967 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 968 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 969 | // Make sure to remember this mapping. |
| 970 | ValueMap[SGV] = NewDGV; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 971 | return false; |
| 972 | } |
| 973 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 974 | /// linkFunctionProto - Link the function in the source module into the |
| 975 | /// destination module if needed, setting up mapping information. |
| 976 | bool ModuleLinker::linkFunctionProto(Function *SF) { |
| 977 | GlobalValue *DGV = getLinkedToGlobal(SF); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 978 | llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility; |
Rafael Espindola | fd9a941 | 2013-09-04 14:59:03 +0000 | [diff] [blame] | 979 | bool HasUnnamedAddr = SF->hasUnnamedAddr(); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 980 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 981 | bool LinkFromSrc = false; |
| 982 | Comdat *DC = nullptr; |
| 983 | if (const Comdat *SC = SF->getComdat()) { |
| 984 | Comdat::SelectionKind SK; |
| 985 | std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; |
| 986 | DC = DstM->getOrInsertComdat(SC->getName()); |
| 987 | DC->setSelectionKind(SK); |
| 988 | } |
| 989 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 990 | if (DGV) { |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 991 | if (!DC) { |
| 992 | GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage; |
| 993 | GlobalValue::VisibilityTypes NV; |
| 994 | if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc)) |
| 995 | return true; |
| 996 | NewVisibility = NV; |
| 997 | HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr(); |
| 998 | |
| 999 | if (!LinkFromSrc) { |
| 1000 | // Set calculated linkage |
| 1001 | DGV->setLinkage(NewLinkage); |
| 1002 | DGV->setVisibility(*NewVisibility); |
| 1003 | DGV->setUnnamedAddr(HasUnnamedAddr); |
| 1004 | } |
| 1005 | } |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 1006 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1007 | if (!LinkFromSrc) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1008 | // Make sure to remember this mapping. |
| 1009 | ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType())); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1010 | |
| 1011 | // Track the function from the source module so we don't attempt to remap |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1012 | // it. |
| 1013 | DoNotLinkFromSource.insert(SF); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1014 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1015 | return false; |
| 1016 | } |
Anton Korobeynikov | dac5fa9 | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 1017 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1018 | |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1019 | // If the function is to be lazily linked, don't create it just yet. |
| 1020 | // The ValueMaterializerTy will deal with creating it if it's used. |
| 1021 | if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() || |
| 1022 | SF->hasAvailableExternallyLinkage())) { |
| 1023 | DoNotLinkFromSource.insert(SF); |
| 1024 | return false; |
| 1025 | } |
| 1026 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 1027 | // If the Comdat this function was inside of wasn't selected, skip it. |
| 1028 | if (DC && !DGV && !LinkFromSrc) { |
| 1029 | DoNotLinkFromSource.insert(SF); |
| 1030 | return false; |
| 1031 | } |
| 1032 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1033 | // If there is no linkage to be performed or we are linking from the source, |
| 1034 | // bring SF over. |
| 1035 | Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()), |
| 1036 | SF->getLinkage(), SF->getName(), DstM); |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1037 | copyGVAttributes(NewDF, SF); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 1038 | if (NewVisibility) |
| 1039 | NewDF->setVisibility(*NewVisibility); |
Rafael Espindola | fd9a941 | 2013-09-04 14:59:03 +0000 | [diff] [blame] | 1040 | NewDF->setUnnamedAddr(HasUnnamedAddr); |
Anton Korobeynikov | dac5fa9 | 2008-03-05 22:22:46 +0000 | [diff] [blame] | 1041 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 1042 | if (DC) |
| 1043 | NewDF->setComdat(DC); |
| 1044 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1045 | if (DGV) { |
| 1046 | // Any uses of DF need to change to NewDF, with cast. |
| 1047 | DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType())); |
| 1048 | DGV->eraseFromParent(); |
Lauro Ramos Venancio | b00c9c0 | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 1049 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1050 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1051 | ValueMap[SF] = NewDF; |
Lauro Ramos Venancio | b00c9c0 | 2007-06-28 19:02:54 +0000 | [diff] [blame] | 1052 | return false; |
| 1053 | } |
| 1054 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1055 | /// LinkAliasProto - Set up prototypes for any aliases that come over from the |
| 1056 | /// source module. |
| 1057 | bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) { |
| 1058 | GlobalValue *DGV = getLinkedToGlobal(SGA); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 1059 | llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility; |
Rafael Espindola | 42a4c9f | 2014-06-06 01:20:28 +0000 | [diff] [blame] | 1060 | bool HasUnnamedAddr = SGA->hasUnnamedAddr(); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 1061 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 1062 | bool LinkFromSrc = false; |
| 1063 | Comdat *DC = nullptr; |
| 1064 | if (const Comdat *SC = SGA->getComdat()) { |
| 1065 | Comdat::SelectionKind SK; |
| 1066 | std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; |
| 1067 | DC = DstM->getOrInsertComdat(SC->getName()); |
| 1068 | DC->setSelectionKind(SK); |
| 1069 | } |
| 1070 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1071 | if (DGV) { |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 1072 | if (!DC) { |
| 1073 | GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage; |
| 1074 | GlobalValue::VisibilityTypes NV; |
| 1075 | if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc)) |
| 1076 | return true; |
| 1077 | NewVisibility = NV; |
| 1078 | HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr(); |
| 1079 | |
| 1080 | if (!LinkFromSrc) { |
| 1081 | // Set calculated linkage. |
| 1082 | DGV->setLinkage(NewLinkage); |
| 1083 | DGV->setVisibility(*NewVisibility); |
| 1084 | DGV->setUnnamedAddr(HasUnnamedAddr); |
| 1085 | } |
| 1086 | } |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 1087 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1088 | if (!LinkFromSrc) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1089 | // Make sure to remember this mapping. |
| 1090 | ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType())); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1091 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1092 | // Track the alias from the source module so we don't attempt to remap it. |
| 1093 | DoNotLinkFromSource.insert(SGA); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1094 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1095 | return false; |
| 1096 | } |
| 1097 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1098 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 1099 | // If the Comdat this alias was inside of wasn't selected, skip it. |
| 1100 | if (DC && !DGV && !LinkFromSrc) { |
| 1101 | DoNotLinkFromSource.insert(SGA); |
| 1102 | return false; |
| 1103 | } |
| 1104 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1105 | // If there is no linkage to be performed or we're linking from the source, |
| 1106 | // bring over SGA. |
Rafael Espindola | 4fe0094 | 2014-05-16 13:34:04 +0000 | [diff] [blame] | 1107 | auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType())); |
Rafael Espindola | f1bedd374 | 2014-05-17 21:29:57 +0000 | [diff] [blame] | 1108 | auto *NewDA = |
| 1109 | GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(), |
| 1110 | SGA->getLinkage(), SGA->getName(), DstM); |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1111 | copyGVAttributes(NewDA, SGA); |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 1112 | if (NewVisibility) |
| 1113 | NewDA->setVisibility(*NewVisibility); |
Rafael Espindola | 42a4c9f | 2014-06-06 01:20:28 +0000 | [diff] [blame] | 1114 | NewDA->setUnnamedAddr(HasUnnamedAddr); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1115 | |
Rafael Espindola | 64c1e18 | 2014-06-03 02:41:57 +0000 | [diff] [blame] | 1116 | if (DGV) { |
| 1117 | // Any uses of DGV need to change to NewDA, with cast. |
| 1118 | DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDA, DGV->getType())); |
| 1119 | DGV->eraseFromParent(); |
| 1120 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1121 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1122 | ValueMap[SGA] = NewDA; |
| 1123 | return false; |
| 1124 | } |
| 1125 | |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1126 | static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) { |
Chris Lattner | 6705883 | 2012-01-25 06:48:06 +0000 | [diff] [blame] | 1127 | unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements(); |
| 1128 | |
| 1129 | for (unsigned i = 0; i != NumElements; ++i) |
| 1130 | Dest.push_back(C->getAggregateElement(i)); |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1131 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1132 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1133 | void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) { |
| 1134 | // Merge the initializer. |
| 1135 | SmallVector<Constant*, 16> Elements; |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1136 | getArrayElements(AVI.DstInit, Elements); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1137 | |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1138 | Constant *SrcInit = MapValue(AVI.SrcInit, ValueMap, RF_None, &TypeMap, &ValMaterializer); |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1139 | getArrayElements(SrcInit, Elements); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1140 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1141 | ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType()); |
| 1142 | AVI.NewGV->setInitializer(ConstantArray::get(NewType, Elements)); |
| 1143 | } |
| 1144 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1145 | /// linkGlobalInits - Update the initializers in the Dest module now that all |
| 1146 | /// globals that may be referenced are in Dest. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1147 | void ModuleLinker::linkGlobalInits() { |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1148 | // Loop over all of the globals in the src module, mapping them over as we go |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1149 | for (Module::const_global_iterator I = SrcM->global_begin(), |
| 1150 | E = SrcM->global_end(); I != E; ++I) { |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1151 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1152 | // Only process initialized GV's or ones not already in dest. |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1153 | if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue; |
| 1154 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1155 | // Grab destination global variable. |
| 1156 | GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]); |
| 1157 | // Figure out what the initializer looks like in the dest module. |
| 1158 | DGV->setInitializer(MapValue(I->getInitializer(), ValueMap, |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1159 | RF_None, &TypeMap, &ValMaterializer)); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1160 | } |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1161 | } |
| 1162 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1163 | /// linkFunctionBody - Copy the source function over into the dest function and |
| 1164 | /// fix up references to values. At this point we know that Dest is an external |
| 1165 | /// function, and that Src is not. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1166 | void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) { |
| 1167 | assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration()); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1168 | |
Chris Lattner | 7391dde | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 1169 | // Go through and convert function arguments over, remembering the mapping. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1170 | Function::arg_iterator DI = Dst->arg_begin(); |
Chris Lattner | 531f9e9 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 1171 | for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end(); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1172 | I != E; ++I, ++DI) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1173 | DI->setName(I->getName()); // Copy the name over. |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1174 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1175 | // Add a mapping to our mapping. |
Anton Korobeynikov | 66a6271 | 2008-03-10 22:36:08 +0000 | [diff] [blame] | 1176 | ValueMap[I] = DI; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1179 | if (Mode == Linker::DestroySource) { |
| 1180 | // Splice the body of the source function into the dest function. |
| 1181 | Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1182 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1183 | // At this point, all of the instructions and values of the function are now |
| 1184 | // copied over. The only problem is that they are still referencing values in |
| 1185 | // the Source function as operands. Loop through all of the operands of the |
| 1186 | // functions and patch them up to point to the local versions. |
| 1187 | for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB) |
| 1188 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1189 | RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, |
| 1190 | &TypeMap, &ValMaterializer); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1191 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1192 | } else { |
| 1193 | // Clone the body of the function into the dest function. |
| 1194 | SmallVector<ReturnInst*, 8> Returns; // Ignore returns. |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1195 | CloneFunctionInto(Dst, Src, ValueMap, false, Returns, "", nullptr, |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1196 | &TypeMap, &ValMaterializer); |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1197 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1198 | |
Chris Lattner | 7391dde | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 1199 | // There is no need to map the arguments anymore. |
Chris Lattner | 44ab8ae | 2006-06-16 01:24:04 +0000 | [diff] [blame] | 1200 | for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end(); |
| 1201 | I != E; ++I) |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 1202 | ValueMap.erase(I); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1203 | |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1204 | } |
| 1205 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1206 | /// linkAliasBodies - Insert all of the aliases in Src into the Dest module. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1207 | void ModuleLinker::linkAliasBodies() { |
| 1208 | for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end(); |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1209 | I != E; ++I) { |
| 1210 | if (DoNotLinkFromSource.count(I)) |
| 1211 | continue; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1212 | if (Constant *Aliasee = I->getAliasee()) { |
| 1213 | GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]); |
Rafael Espindola | 6b23863 | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 1214 | Constant *Val = |
| 1215 | MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer); |
Rafael Espindola | 64c1e18 | 2014-06-03 02:41:57 +0000 | [diff] [blame] | 1216 | DA->setAliasee(Val); |
David Chisnall | 2c4a34a | 2010-01-09 16:27:31 +0000 | [diff] [blame] | 1217 | } |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1218 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1219 | } |
Anton Korobeynikov | 2609888 | 2008-03-05 23:21:39 +0000 | [diff] [blame] | 1220 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1221 | /// linkNamedMDNodes - Insert all of the named MDNodes in Src into the Dest |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1222 | /// module. |
| 1223 | void ModuleLinker::linkNamedMDNodes() { |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1224 | const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata(); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1225 | for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(), |
| 1226 | E = SrcM->named_metadata_end(); I != E; ++I) { |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1227 | // Don't link module flags here. Do them separately. |
| 1228 | if (&*I == SrcModFlags) continue; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1229 | NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName()); |
| 1230 | // Add Src elements into Dest node. |
| 1231 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 1232 | DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap, |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1233 | RF_None, &TypeMap, &ValMaterializer)); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1234 | } |
| 1235 | } |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1236 | |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1237 | /// linkModuleFlagsMetadata - Merge the linker flags in Src into the Dest |
| 1238 | /// module. |
| 1239 | bool ModuleLinker::linkModuleFlagsMetadata() { |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1240 | // If the source module has no module flags, we are done. |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1241 | const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata(); |
| 1242 | if (!SrcModFlags) return false; |
| 1243 | |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1244 | // If the destination module doesn't have module flags yet, then just copy |
| 1245 | // over the source module's flags. |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1246 | NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata(); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1247 | if (DstModFlags->getNumOperands() == 0) { |
| 1248 | for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) |
| 1249 | DstModFlags->addOperand(SrcModFlags->getOperand(I)); |
| 1250 | |
| 1251 | return false; |
| 1252 | } |
| 1253 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1254 | // First build a map of the existing module flags and requirements. |
| 1255 | DenseMap<MDString*, MDNode*> Flags; |
| 1256 | SmallSetVector<MDNode*, 16> Requirements; |
| 1257 | for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) { |
| 1258 | MDNode *Op = DstModFlags->getOperand(I); |
| 1259 | ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0)); |
| 1260 | MDString *ID = cast<MDString>(Op->getOperand(1)); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1261 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1262 | if (Behavior->getZExtValue() == Module::Require) { |
| 1263 | Requirements.insert(cast<MDNode>(Op->getOperand(2))); |
| 1264 | } else { |
| 1265 | Flags[ID] = Op; |
| 1266 | } |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1267 | } |
| 1268 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1269 | // Merge in the flags from the source module, and also collect its set of |
| 1270 | // requirements. |
| 1271 | bool HasErr = false; |
| 1272 | for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) { |
| 1273 | MDNode *SrcOp = SrcModFlags->getOperand(I); |
| 1274 | ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0)); |
| 1275 | MDString *ID = cast<MDString>(SrcOp->getOperand(1)); |
| 1276 | MDNode *DstOp = Flags.lookup(ID); |
| 1277 | unsigned SrcBehaviorValue = SrcBehavior->getZExtValue(); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1278 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1279 | // If this is a requirement, add it and continue. |
| 1280 | if (SrcBehaviorValue == Module::Require) { |
| 1281 | // If the destination module does not already have this requirement, add |
| 1282 | // it. |
| 1283 | if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) { |
| 1284 | DstModFlags->addOperand(SrcOp); |
| 1285 | } |
| 1286 | continue; |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1287 | } |
| 1288 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1289 | // If there is no existing flag with this ID, just add it. |
| 1290 | if (!DstOp) { |
| 1291 | Flags[ID] = SrcOp; |
| 1292 | DstModFlags->addOperand(SrcOp); |
| 1293 | continue; |
| 1294 | } |
| 1295 | |
| 1296 | // Otherwise, perform a merge. |
| 1297 | ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0)); |
| 1298 | unsigned DstBehaviorValue = DstBehavior->getZExtValue(); |
| 1299 | |
| 1300 | // If either flag has override behavior, handle it first. |
| 1301 | if (DstBehaviorValue == Module::Override) { |
| 1302 | // Diagnose inconsistent flags which both have override behavior. |
| 1303 | if (SrcBehaviorValue == Module::Override && |
| 1304 | SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
| 1305 | HasErr |= emitError("linking module flags '" + ID->getString() + |
| 1306 | "': IDs have conflicting override values"); |
| 1307 | } |
| 1308 | continue; |
| 1309 | } else if (SrcBehaviorValue == Module::Override) { |
| 1310 | // Update the destination flag to that of the source. |
| 1311 | DstOp->replaceOperandWith(0, SrcBehavior); |
| 1312 | DstOp->replaceOperandWith(2, SrcOp->getOperand(2)); |
| 1313 | continue; |
| 1314 | } |
| 1315 | |
| 1316 | // Diagnose inconsistent merge behavior types. |
| 1317 | if (SrcBehaviorValue != DstBehaviorValue) { |
| 1318 | HasErr |= emitError("linking module flags '" + ID->getString() + |
| 1319 | "': IDs have conflicting behaviors"); |
| 1320 | continue; |
| 1321 | } |
| 1322 | |
| 1323 | // Perform the merge for standard behavior types. |
| 1324 | switch (SrcBehaviorValue) { |
| 1325 | case Module::Require: |
Craig Topper | 2a30d78 | 2014-06-18 05:05:13 +0000 | [diff] [blame] | 1326 | case Module::Override: llvm_unreachable("not possible"); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1327 | case Module::Error: { |
| 1328 | // Emit an error if the values differ. |
| 1329 | if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
| 1330 | HasErr |= emitError("linking module flags '" + ID->getString() + |
| 1331 | "': IDs have conflicting values"); |
| 1332 | } |
| 1333 | continue; |
| 1334 | } |
| 1335 | case Module::Warning: { |
| 1336 | // Emit a warning if the values differ. |
| 1337 | if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 1338 | if (!SuppressWarnings) { |
| 1339 | errs() << "WARNING: linking module flags '" << ID->getString() |
| 1340 | << "': IDs have conflicting values"; |
| 1341 | } |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1342 | } |
| 1343 | continue; |
| 1344 | } |
Daniel Dunbar | d77d9fb | 2013-01-16 21:38:56 +0000 | [diff] [blame] | 1345 | case Module::Append: { |
| 1346 | MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2)); |
| 1347 | MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2)); |
| 1348 | unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands(); |
| 1349 | Value **VP, **Values = VP = new Value*[NumOps]; |
| 1350 | for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP) |
| 1351 | *VP = DstValue->getOperand(i); |
| 1352 | for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP) |
| 1353 | *VP = SrcValue->getOperand(i); |
| 1354 | DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(), |
| 1355 | ArrayRef<Value*>(Values, |
| 1356 | NumOps))); |
| 1357 | delete[] Values; |
| 1358 | break; |
| 1359 | } |
| 1360 | case Module::AppendUnique: { |
| 1361 | SmallSetVector<Value*, 16> Elts; |
| 1362 | MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2)); |
| 1363 | MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2)); |
| 1364 | for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i) |
| 1365 | Elts.insert(DstValue->getOperand(i)); |
| 1366 | for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i) |
| 1367 | Elts.insert(SrcValue->getOperand(i)); |
| 1368 | DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(), |
| 1369 | ArrayRef<Value*>(Elts.begin(), |
| 1370 | Elts.end()))); |
| 1371 | break; |
| 1372 | } |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1373 | } |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1376 | // Check all of the requirements. |
| 1377 | for (unsigned I = 0, E = Requirements.size(); I != E; ++I) { |
| 1378 | MDNode *Requirement = Requirements[I]; |
| 1379 | MDString *Flag = cast<MDString>(Requirement->getOperand(0)); |
| 1380 | Value *ReqValue = Requirement->getOperand(1); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1381 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1382 | MDNode *Op = Flags[Flag]; |
| 1383 | if (!Op || Op->getOperand(2) != ReqValue) { |
| 1384 | HasErr |= emitError("linking module flags '" + Flag->getString() + |
| 1385 | "': does not have the required value"); |
| 1386 | continue; |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1387 | } |
| 1388 | } |
| 1389 | |
| 1390 | return HasErr; |
| 1391 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1392 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1393 | bool ModuleLinker::run() { |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1394 | assert(DstM && "Null destination module"); |
| 1395 | assert(SrcM && "Null source module"); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1396 | |
| 1397 | // Inherit the target data from the source module if the destination module |
| 1398 | // doesn't have one already. |
Rafael Espindola | f863ee2 | 2014-02-25 20:01:08 +0000 | [diff] [blame] | 1399 | if (!DstM->getDataLayout() && SrcM->getDataLayout()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1400 | DstM->setDataLayout(SrcM->getDataLayout()); |
| 1401 | |
| 1402 | // Copy the target triple from the source to dest if the dest's is empty. |
| 1403 | if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty()) |
| 1404 | DstM->setTargetTriple(SrcM->getTargetTriple()); |
| 1405 | |
Rafael Espindola | f863ee2 | 2014-02-25 20:01:08 +0000 | [diff] [blame] | 1406 | if (SrcM->getDataLayout() && DstM->getDataLayout() && |
Rafael Espindola | ae593f1 | 2014-02-26 17:02:08 +0000 | [diff] [blame] | 1407 | *SrcM->getDataLayout() != *DstM->getDataLayout()) { |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 1408 | if (!SuppressWarnings) { |
JF Bastien | 026fc5f | 2014-03-05 21:26:42 +0000 | [diff] [blame] | 1409 | errs() << "WARNING: Linking two modules of different data layouts: '" |
| 1410 | << SrcM->getModuleIdentifier() << "' is '" |
| 1411 | << SrcM->getDataLayoutStr() << "' whereas '" |
| 1412 | << DstM->getModuleIdentifier() << "' is '" |
| 1413 | << DstM->getDataLayoutStr() << "'\n"; |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 1414 | } |
| 1415 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1416 | if (!SrcM->getTargetTriple().empty() && |
| 1417 | DstM->getTargetTriple() != SrcM->getTargetTriple()) { |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 1418 | if (!SuppressWarnings) { |
JF Bastien | 026fc5f | 2014-03-05 21:26:42 +0000 | [diff] [blame] | 1419 | errs() << "WARNING: Linking two modules of different target triples: " |
| 1420 | << SrcM->getModuleIdentifier() << "' is '" |
| 1421 | << SrcM->getTargetTriple() << "' whereas '" |
| 1422 | << DstM->getModuleIdentifier() << "' is '" |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 1423 | << DstM->getTargetTriple() << "'\n"; |
| 1424 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | // Append the module inline asm string. |
| 1428 | if (!SrcM->getModuleInlineAsm().empty()) { |
| 1429 | if (DstM->getModuleInlineAsm().empty()) |
| 1430 | DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm()); |
| 1431 | else |
| 1432 | DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+ |
| 1433 | SrcM->getModuleInlineAsm()); |
| 1434 | } |
| 1435 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1436 | // Loop over all of the linked values to compute type mappings. |
| 1437 | computeTypeMapping(); |
| 1438 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame^] | 1439 | ComdatsChosen.clear(); |
| 1440 | for (const StringMapEntry<llvm::Comdat> &SMEC : SrcM->getComdatSymbolTable()) { |
| 1441 | const Comdat &C = SMEC.getValue(); |
| 1442 | if (ComdatsChosen.count(&C)) |
| 1443 | continue; |
| 1444 | Comdat::SelectionKind SK; |
| 1445 | bool LinkFromSrc; |
| 1446 | if (getComdatResult(&C, SK, LinkFromSrc)) |
| 1447 | return true; |
| 1448 | ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc); |
| 1449 | } |
| 1450 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1451 | // Insert all of the globals in src into the DstM module... without linking |
| 1452 | // initializers (which could refer to functions not yet mapped over). |
| 1453 | for (Module::global_iterator I = SrcM->global_begin(), |
| 1454 | E = SrcM->global_end(); I != E; ++I) |
| 1455 | if (linkGlobalProto(I)) |
| 1456 | return true; |
| 1457 | |
| 1458 | // Link the functions together between the two modules, without doing function |
| 1459 | // bodies... this just adds external function prototypes to the DstM |
| 1460 | // function... We do this so that when we begin processing function bodies, |
| 1461 | // all of the global values that may be referenced are available in our |
| 1462 | // ValueMap. |
| 1463 | for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) |
| 1464 | if (linkFunctionProto(I)) |
| 1465 | return true; |
| 1466 | |
| 1467 | // If there were any aliases, link them now. |
| 1468 | for (Module::alias_iterator I = SrcM->alias_begin(), |
| 1469 | E = SrcM->alias_end(); I != E; ++I) |
| 1470 | if (linkAliasProto(I)) |
| 1471 | return true; |
| 1472 | |
| 1473 | for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i) |
| 1474 | linkAppendingVarInit(AppendingVars[i]); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1475 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1476 | // Link in the function bodies that are defined in the source module into |
| 1477 | // DstM. |
| 1478 | for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) { |
Tanya Lattner | ea166d4 | 2011-10-14 22:17:46 +0000 | [diff] [blame] | 1479 | // Skip if not linking from source. |
| 1480 | if (DoNotLinkFromSource.count(SF)) continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1481 | |
Peter Collingbourne | 3fa50f9 | 2013-09-16 01:08:15 +0000 | [diff] [blame] | 1482 | Function *DF = cast<Function>(ValueMap[SF]); |
| 1483 | if (SF->hasPrefixData()) { |
| 1484 | // Link in the prefix data. |
| 1485 | DF->setPrefixData(MapValue( |
| 1486 | SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer)); |
| 1487 | } |
| 1488 | |
Tanya Lattner | ea166d4 | 2011-10-14 22:17:46 +0000 | [diff] [blame] | 1489 | // Skip if no body (function is external) or materialize. |
| 1490 | if (SF->isDeclaration()) { |
| 1491 | if (!SF->isMaterializable()) |
| 1492 | continue; |
| 1493 | if (SF->Materialize(&ErrorMsg)) |
| 1494 | return true; |
| 1495 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1496 | |
Peter Collingbourne | 3fa50f9 | 2013-09-16 01:08:15 +0000 | [diff] [blame] | 1497 | linkFunctionBody(DF, SF); |
Bill Wendling | 0062378 | 2012-03-23 07:22:49 +0000 | [diff] [blame] | 1498 | SF->Dematerialize(); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | // Resolve all uses of aliases with aliasees. |
| 1502 | linkAliasBodies(); |
| 1503 | |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1504 | // Remap all of the named MDNodes in Src into the DstM module. We do this |
Devang Patel | 6ddbb2e | 2011-08-04 19:44:28 +0000 | [diff] [blame] | 1505 | // after linking GlobalValues so that MDNodes that reference GlobalValues |
| 1506 | // are properly remapped. |
| 1507 | linkNamedMDNodes(); |
| 1508 | |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1509 | // Merge the module flags into the DstM module. |
| 1510 | if (linkModuleFlagsMetadata()) |
| 1511 | return true; |
| 1512 | |
Bill Wendling | 91686d6 | 2014-01-16 06:29:36 +0000 | [diff] [blame] | 1513 | // Update the initializers in the DstM module now that all globals that may |
| 1514 | // be referenced are in DstM. |
| 1515 | linkGlobalInits(); |
| 1516 | |
Tanya Lattner | 0a48b87 | 2011-11-02 00:24:56 +0000 | [diff] [blame] | 1517 | // Process vector of lazily linked in functions. |
| 1518 | bool LinkedInAnyFunctions; |
| 1519 | do { |
| 1520 | LinkedInAnyFunctions = false; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1521 | |
Bill Wendling | fa228782 | 2013-03-27 17:54:41 +0000 | [diff] [blame] | 1522 | for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(), |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1523 | E = LazilyLinkFunctions.end(); I != E; ++I) { |
Bill Wendling | fa228782 | 2013-03-27 17:54:41 +0000 | [diff] [blame] | 1524 | Function *SF = *I; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1525 | if (!SF) |
| 1526 | continue; |
Bill Wendling | 0062378 | 2012-03-23 07:22:49 +0000 | [diff] [blame] | 1527 | |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1528 | Function *DF = cast<Function>(ValueMap[SF]); |
Peter Collingbourne | 3fa50f9 | 2013-09-16 01:08:15 +0000 | [diff] [blame] | 1529 | if (SF->hasPrefixData()) { |
| 1530 | // Link in the prefix data. |
| 1531 | DF->setPrefixData(MapValue(SF->getPrefixData(), |
| 1532 | ValueMap, |
| 1533 | RF_None, |
| 1534 | &TypeMap, |
| 1535 | &ValMaterializer)); |
| 1536 | } |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1537 | |
| 1538 | // Materialize if necessary. |
| 1539 | if (SF->isDeclaration()) { |
| 1540 | if (!SF->isMaterializable()) |
| 1541 | continue; |
| 1542 | if (SF->Materialize(&ErrorMsg)) |
| 1543 | return true; |
Tanya Lattner | 0a48b87 | 2011-11-02 00:24:56 +0000 | [diff] [blame] | 1544 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1545 | |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1546 | // Erase from vector *before* the function body is linked - linkFunctionBody could |
| 1547 | // invalidate I. |
| 1548 | LazilyLinkFunctions.erase(I); |
| 1549 | |
| 1550 | // Link in function body. |
| 1551 | linkFunctionBody(DF, SF); |
| 1552 | SF->Dematerialize(); |
| 1553 | |
| 1554 | // Set flag to indicate we may have more functions to lazily link in |
| 1555 | // since we linked in a function. |
| 1556 | LinkedInAnyFunctions = true; |
| 1557 | break; |
Tanya Lattner | 0a48b87 | 2011-11-02 00:24:56 +0000 | [diff] [blame] | 1558 | } |
| 1559 | } while (LinkedInAnyFunctions); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1560 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1561 | // Now that all of the types from the source are used, resolve any structs |
| 1562 | // copied over to the dest that didn't exist there. |
| 1563 | TypeMap.linkDefinedTypeBodies(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1564 | |
Anton Korobeynikov | 2609888 | 2008-03-05 23:21:39 +0000 | [diff] [blame] | 1565 | return false; |
| 1566 | } |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1567 | |
Eli Bendersky | 7da92ed | 2014-02-20 22:19:24 +0000 | [diff] [blame] | 1568 | Linker::Linker(Module *M, bool SuppressWarnings) |
| 1569 | : Composite(M), SuppressWarnings(SuppressWarnings) { |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 1570 | TypeFinder StructTypes; |
| 1571 | StructTypes.run(*M, true); |
| 1572 | IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end()); |
| 1573 | } |
Rafael Espindola | 3df61b7 | 2013-05-04 03:48:37 +0000 | [diff] [blame] | 1574 | |
| 1575 | Linker::~Linker() { |
| 1576 | } |
| 1577 | |
Bill Wendling | 91e6f6e | 2013-10-16 08:59:57 +0000 | [diff] [blame] | 1578 | void Linker::deleteModule() { |
| 1579 | delete Composite; |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1580 | Composite = nullptr; |
Bill Wendling | 91e6f6e | 2013-10-16 08:59:57 +0000 | [diff] [blame] | 1581 | } |
| 1582 | |
Rafael Espindola | 3df61b7 | 2013-05-04 03:48:37 +0000 | [diff] [blame] | 1583 | bool Linker::linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg) { |
Eli Bendersky | 7da92ed | 2014-02-20 22:19:24 +0000 | [diff] [blame] | 1584 | ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, Mode, |
| 1585 | SuppressWarnings); |
Rafael Espindola | 287f18b | 2013-05-04 04:08:02 +0000 | [diff] [blame] | 1586 | if (TheLinker.run()) { |
| 1587 | if (ErrorMsg) |
| 1588 | *ErrorMsg = TheLinker.ErrorMsg; |
| 1589 | return true; |
| 1590 | } |
| 1591 | return false; |
Rafael Espindola | 3df61b7 | 2013-05-04 03:48:37 +0000 | [diff] [blame] | 1592 | } |
| 1593 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1594 | //===----------------------------------------------------------------------===// |
| 1595 | // LinkModules entrypoint. |
| 1596 | //===----------------------------------------------------------------------===// |
| 1597 | |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1598 | /// LinkModules - This function links two modules together, with the resulting |
Eli Bendersky | 970cc63 | 2013-03-08 22:29:44 +0000 | [diff] [blame] | 1599 | /// Dest module modified to be the composite of the two input modules. If an |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1600 | /// error occurs, true is returned and ErrorMsg (if not null) is set to indicate |
| 1601 | /// the problem. Upon failure, the Dest module could be in a modified state, |
| 1602 | /// and shouldn't be relied on to be consistent. |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1603 | bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode, |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1604 | std::string *ErrorMsg) { |
Rafael Espindola | 287f18b | 2013-05-04 04:08:02 +0000 | [diff] [blame] | 1605 | Linker L(Dest); |
| 1606 | return L.linkInModule(Src, Mode, ErrorMsg); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1607 | } |
Bill Wendling | a3aeb98 | 2012-05-09 08:55:40 +0000 | [diff] [blame] | 1608 | |
| 1609 | //===----------------------------------------------------------------------===// |
| 1610 | // C API. |
| 1611 | //===----------------------------------------------------------------------===// |
| 1612 | |
| 1613 | LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, |
| 1614 | LLVMLinkerMode Mode, char **OutMessages) { |
| 1615 | std::string Messages; |
| 1616 | LLVMBool Result = Linker::LinkModules(unwrap(Dest), unwrap(Src), |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1617 | Mode, OutMessages? &Messages : nullptr); |
Bill Wendling | a3aeb98 | 2012-05-09 08:55:40 +0000 | [diff] [blame] | 1618 | if (OutMessages) |
| 1619 | *OutMessages = strdup(Messages.c_str()); |
| 1620 | return Result; |
| 1621 | } |