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