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