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