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; |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 372 | ModuleLinker *ModLinker; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 373 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 374 | public: |
| 375 | ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM, |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 376 | std::vector<GlobalValue *> &LazilyLinkGlobalValues, |
| 377 | ModuleLinker *ModLinker) |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 378 | : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM), |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 379 | LazilyLinkGlobalValues(LazilyLinkGlobalValues), ModLinker(ModLinker) {} |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 380 | |
| 381 | Value *materializeValueFor(Value *V) override; |
| 382 | }; |
| 383 | |
| 384 | class LinkDiagnosticInfo : public DiagnosticInfo { |
| 385 | const Twine &Msg; |
| 386 | |
| 387 | public: |
| 388 | LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg); |
| 389 | void print(DiagnosticPrinter &DP) const override; |
| 390 | }; |
| 391 | LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity, |
| 392 | const Twine &Msg) |
| 393 | : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {} |
| 394 | void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; } |
| 395 | |
| 396 | /// This is an implementation class for the LinkModules function, which is the |
| 397 | /// entrypoint for this file. |
| 398 | class ModuleLinker { |
| 399 | Module *DstM, *SrcM; |
| 400 | |
| 401 | TypeMapTy TypeMap; |
| 402 | ValueMaterializerTy ValMaterializer; |
| 403 | |
| 404 | /// Mapping of values from what they used to be in Src, to what they are now |
| 405 | /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead |
| 406 | /// due to the use of Value handles which the Linker doesn't actually need, |
| 407 | /// but this allows us to reuse the ValueMapper code. |
| 408 | ValueToValueMapTy ValueMap; |
| 409 | |
| 410 | struct AppendingVarInfo { |
| 411 | GlobalVariable *NewGV; // New aggregate global in dest module. |
| 412 | const Constant *DstInit; // Old initializer from dest module. |
| 413 | const Constant *SrcInit; // Old initializer from src module. |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 414 | }; |
| 415 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 416 | std::vector<AppendingVarInfo> AppendingVars; |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 417 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 418 | // Set of items not to link in from source. |
| 419 | SmallPtrSet<const Value *, 16> DoNotLinkFromSource; |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 420 | |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 421 | // Vector of GlobalValues to lazily link in. |
| 422 | std::vector<GlobalValue *> LazilyLinkGlobalValues; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 423 | |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 424 | DiagnosticHandlerFunction DiagnosticHandler; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 425 | |
Duncan P. N. Exon Smith | e868123 | 2015-04-22 04:11:00 +0000 | [diff] [blame] | 426 | /// For symbol clashes, prefer those from Src. |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 427 | unsigned Flags; |
Duncan P. N. Exon Smith | e868123 | 2015-04-22 04:11:00 +0000 | [diff] [blame] | 428 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 429 | /// Function index passed into ModuleLinker for using in function |
| 430 | /// importing/exporting handling. |
| 431 | FunctionInfoIndex *ImportIndex; |
| 432 | |
| 433 | /// Function to import from source module, all other functions are |
| 434 | /// imported as declarations instead of definitions. |
| 435 | Function *ImportFunction; |
| 436 | |
| 437 | /// Set to true if the given FunctionInfoIndex contains any functions |
| 438 | /// from this source module, in which case we must conservatively assume |
| 439 | /// that any of its functions may be imported into another module |
| 440 | /// as part of a different backend compilation process. |
| 441 | bool HasExportedFunctions; |
| 442 | |
Teresa Johnson | 1063293 | 2015-11-06 17:50:53 +0000 | [diff] [blame] | 443 | /// Set to true when all global value body linking is complete (including |
| 444 | /// lazy linking). Used to prevent metadata linking from creating new |
| 445 | /// references. |
| 446 | bool DoneLinkingBodies; |
| 447 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 448 | public: |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 449 | ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM, |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 450 | DiagnosticHandlerFunction DiagnosticHandler, unsigned Flags, |
| 451 | FunctionInfoIndex *Index = nullptr, |
| 452 | Function *FuncToImport = nullptr) |
Rafael Espindola | a4e85e3 | 2014-12-01 16:32:20 +0000 | [diff] [blame] | 453 | : DstM(dstM), SrcM(srcM), TypeMap(Set), |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 454 | ValMaterializer(TypeMap, DstM, LazilyLinkGlobalValues, this), |
| 455 | DiagnosticHandler(DiagnosticHandler), Flags(Flags), ImportIndex(Index), |
Teresa Johnson | 1063293 | 2015-11-06 17:50:53 +0000 | [diff] [blame] | 456 | ImportFunction(FuncToImport), HasExportedFunctions(false), |
| 457 | DoneLinkingBodies(false) { |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 458 | assert((ImportIndex || !ImportFunction) && |
| 459 | "Expect a FunctionInfoIndex when importing"); |
| 460 | // If we have a FunctionInfoIndex but no function to import, |
| 461 | // then this is the primary module being compiled in a ThinLTO |
| 462 | // backend compilation, and we need to see if it has functions that |
| 463 | // may be exported to another backend compilation. |
| 464 | if (ImportIndex && !ImportFunction) |
| 465 | HasExportedFunctions = ImportIndex->hasExportedFunctions(SrcM); |
| 466 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 467 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 468 | bool run(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 469 | |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 470 | bool shouldOverrideFromSrc() { return Flags & Linker::OverrideFromSrc; } |
| 471 | bool shouldLinkOnlyNeeded() { return Flags & Linker::LinkOnlyNeeded; } |
| 472 | bool shouldInternalizeLinkedSymbols() { |
| 473 | return Flags & Linker::InternalizeLinkedSymbols; |
| 474 | } |
| 475 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 476 | /// Handles cloning of a global values from the source module into |
| 477 | /// the destination module, including setting the attributes and visibility. |
| 478 | GlobalValue *copyGlobalValueProto(TypeMapTy &TypeMap, const GlobalValue *SGV, |
| 479 | const GlobalValue *DGV = nullptr); |
| 480 | |
| 481 | /// Check if we should promote the given local value to global scope. |
| 482 | bool doPromoteLocalToGlobal(const GlobalValue *SGV); |
| 483 | |
Teresa Johnson | 1063293 | 2015-11-06 17:50:53 +0000 | [diff] [blame] | 484 | /// Check if all global value body linking is complete. |
| 485 | bool doneLinkingBodies() { return DoneLinkingBodies; } |
| 486 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 487 | private: |
| 488 | bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest, |
| 489 | const GlobalValue &Src); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 490 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 491 | /// Helper method for setting a message and returning an error code. |
| 492 | bool emitError(const Twine &Message) { |
| 493 | DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message)); |
| 494 | return true; |
| 495 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 496 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 497 | void emitWarning(const Twine &Message) { |
| 498 | DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message)); |
| 499 | } |
Eli Bendersky | 7da92ed | 2014-02-20 22:19:24 +0000 | [diff] [blame] | 500 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 501 | bool getComdatLeader(Module *M, StringRef ComdatName, |
| 502 | const GlobalVariable *&GVar); |
| 503 | bool computeResultingSelectionKind(StringRef ComdatName, |
| 504 | Comdat::SelectionKind Src, |
| 505 | Comdat::SelectionKind Dst, |
| 506 | Comdat::SelectionKind &Result, |
| 507 | bool &LinkFromSrc); |
| 508 | std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>> |
| 509 | ComdatsChosen; |
| 510 | bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK, |
| 511 | bool &LinkFromSrc); |
Teresa Johnson | 2d5fb8c | 2015-11-10 21:09:06 +0000 | [diff] [blame] | 512 | // Keep track of the global value members of each comdat in source. |
| 513 | DenseMap<const Comdat *, std::vector<GlobalValue *>> ComdatMembers; |
Rafael Espindola | 4160f5d | 2014-10-27 23:02:10 +0000 | [diff] [blame] | 514 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 515 | /// Given a global in the source module, return the global in the |
| 516 | /// destination module that is being linked to, if any. |
| 517 | GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) { |
| 518 | // If the source has no name it can't link. If it has local linkage, |
| 519 | // there is no name match-up going on. |
| 520 | if (!SrcGV->hasName() || SrcGV->hasLocalLinkage()) |
| 521 | return nullptr; |
Eli Bendersky | 7da92ed | 2014-02-20 22:19:24 +0000 | [diff] [blame] | 522 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 523 | // Otherwise see if we have a match in the destination module's symtab. |
| 524 | GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName()); |
| 525 | if (!DGV) |
| 526 | return nullptr; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 527 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 528 | // If we found a global with the same name in the dest module, but it has |
| 529 | // internal linkage, we are really not doing any linkage here. |
| 530 | if (DGV->hasLocalLinkage()) |
| 531 | return nullptr; |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 532 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 533 | // Otherwise, we do in fact link to the destination global. |
| 534 | return DGV; |
| 535 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 536 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 537 | void computeTypeMapping(); |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 538 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 539 | void upgradeMismatchedGlobalArray(StringRef Name); |
| 540 | void upgradeMismatchedGlobals(); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 541 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 542 | bool linkAppendingVarProto(GlobalVariable *DstGV, |
| 543 | const GlobalVariable *SrcGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 544 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 545 | bool linkGlobalValueProto(GlobalValue *GV); |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 546 | bool linkModuleFlagsMetadata(); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 547 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 548 | void linkAppendingVarInit(const AppendingVarInfo &AVI); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 549 | |
| 550 | void linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src); |
| 551 | bool linkFunctionBody(Function &Dst, Function &Src); |
| 552 | void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src); |
| 553 | bool linkGlobalValueBody(GlobalValue &Src); |
| 554 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 555 | /// Functions that take care of cloning a specific global value type |
| 556 | /// into the destination module. |
| 557 | GlobalVariable *copyGlobalVariableProto(TypeMapTy &TypeMap, |
| 558 | const GlobalVariable *SGVar); |
| 559 | Function *copyFunctionProto(TypeMapTy &TypeMap, const Function *SF); |
| 560 | GlobalValue *copyGlobalAliasProto(TypeMapTy &TypeMap, const GlobalAlias *SGA); |
| 561 | |
| 562 | /// Helper methods to check if we are importing from or potentially |
| 563 | /// exporting from the current source module. |
| 564 | bool isPerformingImport() { return ImportFunction != nullptr; } |
| 565 | bool isModuleExporting() { return HasExportedFunctions; } |
| 566 | |
| 567 | /// If we are importing from the source module, checks if we should |
| 568 | /// import SGV as a definition, otherwise import as a declaration. |
| 569 | bool doImportAsDefinition(const GlobalValue *SGV); |
| 570 | |
| 571 | /// Get the name for SGV that should be used in the linked destination |
| 572 | /// module. Specifically, this handles the case where we need to rename |
| 573 | /// a local that is being promoted to global scope. |
| 574 | std::string getName(const GlobalValue *SGV); |
| 575 | |
| 576 | /// Get the new linkage for SGV that should be used in the linked destination |
| 577 | /// module. Specifically, for ThinLTO importing or exporting it may need |
| 578 | /// to be adjusted. |
| 579 | GlobalValue::LinkageTypes getLinkage(const GlobalValue *SGV); |
| 580 | |
| 581 | /// Copies the necessary global value attributes and name from the source |
| 582 | /// to the newly cloned global value. |
| 583 | void copyGVAttributes(GlobalValue *NewGV, const GlobalValue *SrcGV); |
| 584 | |
| 585 | /// Updates the visibility for the new global cloned from the source |
| 586 | /// and, if applicable, linked with an existing destination global. |
| 587 | /// Handles visibility change required for promoted locals. |
| 588 | void setVisibility(GlobalValue *NewGV, const GlobalValue *SGV, |
| 589 | const GlobalValue *DGV = nullptr); |
| 590 | |
Rafael Espindola | c84f608 | 2014-11-25 06:11:24 +0000 | [diff] [blame] | 591 | void linkNamedMDNodes(); |
| 592 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 593 | } |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 594 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 595 | /// The LLVM SymbolTable class autorenames globals that conflict in the symbol |
| 596 | /// table. This is good for all clients except for us. Go through the trouble |
| 597 | /// to force this back. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 598 | static void forceRenaming(GlobalValue *GV, StringRef Name) { |
| 599 | // If the global doesn't force its name or if it already has the right name, |
| 600 | // there is nothing for us to do. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 601 | // Note that any required local to global promotion should already be done, |
| 602 | // so promoted locals will not skip this handling as their linkage is no |
| 603 | // longer local. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 604 | if (GV->hasLocalLinkage() || GV->getName() == Name) |
| 605 | return; |
| 606 | |
| 607 | Module *M = GV->getParent(); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 608 | |
| 609 | // If there is a conflict, rename the conflict. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 610 | if (GlobalValue *ConflictGV = M->getNamedValue(Name)) { |
Chris Lattner | 2a8d2e0 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 611 | GV->takeName(ConflictGV); |
| 612 | ConflictGV->setName(Name); // This will cause ConflictGV to get renamed |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 613 | assert(ConflictGV->getName() != Name && "forceRenaming didn't work"); |
Chris Lattner | 2a8d2e0 | 2007-02-11 00:39:38 +0000 | [diff] [blame] | 614 | } else { |
| 615 | GV->setName(Name); // Force the name back |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 616 | } |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 617 | } |
Reid Spencer | 90246aa | 2007-02-04 04:29:21 +0000 | [diff] [blame] | 618 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 619 | /// copy additional attributes (those not needed to construct a GlobalValue) |
| 620 | /// from the SrcGV to the DestGV. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 621 | void ModuleLinker::copyGVAttributes(GlobalValue *NewGV, |
| 622 | const GlobalValue *SrcGV) { |
| 623 | auto *GA = dyn_cast<GlobalAlias>(SrcGV); |
| 624 | // Check for the special case of converting an alias (definition) to a |
| 625 | // non-alias (declaration). This can happen when we are importing and |
| 626 | // encounter a weak_any alias (weak_any defs may not be imported, see |
| 627 | // comments in ModuleLinker::getLinkage) or an alias whose base object is |
| 628 | // being imported as a declaration. In that case copy the attributes from the |
| 629 | // base object. |
| 630 | if (GA && !dyn_cast<GlobalAlias>(NewGV)) { |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 631 | assert(isPerformingImport() && !doImportAsDefinition(GA)); |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 632 | NewGV->copyAttributesFrom(GA->getBaseObject()); |
| 633 | } else |
| 634 | NewGV->copyAttributesFrom(SrcGV); |
| 635 | forceRenaming(NewGV, getName(SrcGV)); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Rafael Espindola | 23f8d64 | 2012-01-05 23:02:01 +0000 | [diff] [blame] | 638 | static bool isLessConstraining(GlobalValue::VisibilityTypes a, |
| 639 | GlobalValue::VisibilityTypes b) { |
| 640 | if (a == GlobalValue::HiddenVisibility) |
| 641 | return false; |
| 642 | if (b == GlobalValue::HiddenVisibility) |
| 643 | return true; |
| 644 | if (a == GlobalValue::ProtectedVisibility) |
| 645 | return false; |
| 646 | if (b == GlobalValue::ProtectedVisibility) |
| 647 | return true; |
| 648 | return false; |
| 649 | } |
| 650 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 651 | bool ModuleLinker::doImportAsDefinition(const GlobalValue *SGV) { |
| 652 | if (!isPerformingImport()) |
| 653 | return false; |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 654 | auto *GA = dyn_cast<GlobalAlias>(SGV); |
| 655 | if (GA) { |
| 656 | if (GA->hasWeakAnyLinkage()) |
| 657 | return false; |
| 658 | return doImportAsDefinition(GA->getBaseObject()); |
| 659 | } |
Teresa Johnson | dfbebc3 | 2015-11-10 18:26:31 +0000 | [diff] [blame] | 660 | // Always import GlobalVariable definitions, except for the special |
| 661 | // case of WeakAny which are imported as ExternalWeak declarations |
| 662 | // (see comments in ModuleLinker::getLinkage). The linkage changes |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 663 | // described in ModuleLinker::getLinkage ensure the correct behavior (e.g. |
| 664 | // global variables with external linkage are transformed to |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 665 | // available_externally definitions, which are ultimately turned into |
| 666 | // declarations after the EliminateAvailableExternally pass). |
| 667 | if (dyn_cast<GlobalVariable>(SGV) && !SGV->isDeclaration() && |
| 668 | !SGV->hasWeakAnyLinkage()) |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 669 | return true; |
| 670 | // Only import the function requested for importing. |
| 671 | auto *SF = dyn_cast<Function>(SGV); |
| 672 | if (SF && SF == ImportFunction) |
| 673 | return true; |
| 674 | // Otherwise no. |
| 675 | return false; |
| 676 | } |
| 677 | |
| 678 | bool ModuleLinker::doPromoteLocalToGlobal(const GlobalValue *SGV) { |
| 679 | assert(SGV->hasLocalLinkage()); |
| 680 | // Both the imported references and the original local variable must |
| 681 | // be promoted. |
| 682 | if (!isPerformingImport() && !isModuleExporting()) |
| 683 | return false; |
| 684 | |
| 685 | // Local const variables never need to be promoted unless they are address |
| 686 | // taken. The imported uses can simply use the clone created in this module. |
| 687 | // For now we are conservative in determining which variables are not |
| 688 | // address taken by checking the unnamed addr flag. To be more aggressive, |
| 689 | // the address taken information must be checked earlier during parsing |
| 690 | // of the module and recorded in the function index for use when importing |
| 691 | // from that module. |
| 692 | auto *GVar = dyn_cast<GlobalVariable>(SGV); |
| 693 | if (GVar && GVar->isConstant() && GVar->hasUnnamedAddr()) |
| 694 | return false; |
| 695 | |
| 696 | // Eventually we only need to promote functions in the exporting module that |
| 697 | // are referenced by a potentially exported function (i.e. one that is in the |
| 698 | // function index). |
| 699 | return true; |
| 700 | } |
| 701 | |
| 702 | std::string ModuleLinker::getName(const GlobalValue *SGV) { |
| 703 | // For locals that must be promoted to global scope, ensure that |
| 704 | // the promoted name uniquely identifies the copy in the original module, |
| 705 | // using the ID assigned during combined index creation. When importing, |
| 706 | // we rename all locals (not just those that are promoted) in order to |
| 707 | // avoid naming conflicts between locals imported from different modules. |
| 708 | if (SGV->hasLocalLinkage() && |
| 709 | (doPromoteLocalToGlobal(SGV) || isPerformingImport())) |
| 710 | return FunctionInfoIndex::getGlobalNameForLocal( |
| 711 | SGV->getName(), |
| 712 | ImportIndex->getModuleId(SGV->getParent()->getModuleIdentifier())); |
| 713 | return SGV->getName(); |
| 714 | } |
| 715 | |
| 716 | GlobalValue::LinkageTypes ModuleLinker::getLinkage(const GlobalValue *SGV) { |
| 717 | // Any local variable that is referenced by an exported function needs |
| 718 | // to be promoted to global scope. Since we don't currently know which |
| 719 | // functions reference which local variables/functions, we must treat |
| 720 | // all as potentially exported if this module is exporting anything. |
| 721 | if (isModuleExporting()) { |
| 722 | if (SGV->hasLocalLinkage() && doPromoteLocalToGlobal(SGV)) |
| 723 | return GlobalValue::ExternalLinkage; |
| 724 | return SGV->getLinkage(); |
| 725 | } |
| 726 | |
| 727 | // Otherwise, if we aren't importing, no linkage change is needed. |
| 728 | if (!isPerformingImport()) |
| 729 | return SGV->getLinkage(); |
| 730 | |
| 731 | switch (SGV->getLinkage()) { |
| 732 | case GlobalValue::ExternalLinkage: |
| 733 | // External defnitions are converted to available_externally |
| 734 | // definitions upon import, so that they are available for inlining |
| 735 | // and/or optimization, but are turned into declarations later |
| 736 | // during the EliminateAvailableExternally pass. |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 737 | if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV)) |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 738 | return GlobalValue::AvailableExternallyLinkage; |
| 739 | // An imported external declaration stays external. |
| 740 | return SGV->getLinkage(); |
| 741 | |
| 742 | case GlobalValue::AvailableExternallyLinkage: |
| 743 | // An imported available_externally definition converts |
| 744 | // to external if imported as a declaration. |
| 745 | if (!doImportAsDefinition(SGV)) |
| 746 | return GlobalValue::ExternalLinkage; |
| 747 | // An imported available_externally declaration stays that way. |
| 748 | return SGV->getLinkage(); |
| 749 | |
| 750 | case GlobalValue::LinkOnceAnyLinkage: |
| 751 | case GlobalValue::LinkOnceODRLinkage: |
| 752 | // These both stay the same when importing the definition. |
| 753 | // The ThinLTO pass will eventually force-import their definitions. |
| 754 | return SGV->getLinkage(); |
| 755 | |
| 756 | case GlobalValue::WeakAnyLinkage: |
| 757 | // Can't import weak_any definitions correctly, or we might change the |
| 758 | // program semantics, since the linker will pick the first weak_any |
| 759 | // definition and importing would change the order they are seen by the |
| 760 | // linker. The module linking caller needs to enforce this. |
| 761 | assert(!doImportAsDefinition(SGV)); |
| 762 | // If imported as a declaration, it becomes external_weak. |
| 763 | return GlobalValue::ExternalWeakLinkage; |
| 764 | |
| 765 | case GlobalValue::WeakODRLinkage: |
| 766 | // For weak_odr linkage, there is a guarantee that all copies will be |
| 767 | // equivalent, so the issue described above for weak_any does not exist, |
| 768 | // and the definition can be imported. It can be treated similarly |
| 769 | // to an imported externally visible global value. |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 770 | if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV)) |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 771 | return GlobalValue::AvailableExternallyLinkage; |
| 772 | else |
| 773 | return GlobalValue::ExternalLinkage; |
| 774 | |
| 775 | case GlobalValue::AppendingLinkage: |
| 776 | // It would be incorrect to import an appending linkage variable, |
| 777 | // since it would cause global constructors/destructors to be |
| 778 | // executed multiple times. This should have already been handled |
| 779 | // by linkGlobalValueProto. |
Davide Italiano | f3d2329 | 2015-11-13 02:16:51 +0000 | [diff] [blame^] | 780 | llvm_unreachable("Cannot import appending linkage variable"); |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 781 | |
| 782 | case GlobalValue::InternalLinkage: |
| 783 | case GlobalValue::PrivateLinkage: |
| 784 | // If we are promoting the local to global scope, it is handled |
| 785 | // similarly to a normal externally visible global. |
| 786 | if (doPromoteLocalToGlobal(SGV)) { |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 787 | if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV)) |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 788 | return GlobalValue::AvailableExternallyLinkage; |
| 789 | else |
| 790 | return GlobalValue::ExternalLinkage; |
| 791 | } |
| 792 | // A non-promoted imported local definition stays local. |
| 793 | // The ThinLTO pass will eventually force-import their definitions. |
| 794 | return SGV->getLinkage(); |
| 795 | |
| 796 | case GlobalValue::ExternalWeakLinkage: |
| 797 | // External weak doesn't apply to definitions, must be a declaration. |
| 798 | assert(!doImportAsDefinition(SGV)); |
| 799 | // Linkage stays external_weak. |
| 800 | return SGV->getLinkage(); |
| 801 | |
| 802 | case GlobalValue::CommonLinkage: |
| 803 | // Linkage stays common on definitions. |
| 804 | // The ThinLTO pass will eventually force-import their definitions. |
| 805 | return SGV->getLinkage(); |
| 806 | } |
| 807 | |
| 808 | llvm_unreachable("unknown linkage type"); |
| 809 | } |
| 810 | |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 811 | /// Loop through the global variables in the src module and merge them into the |
| 812 | /// dest module. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 813 | GlobalVariable * |
| 814 | ModuleLinker::copyGlobalVariableProto(TypeMapTy &TypeMap, |
| 815 | const GlobalVariable *SGVar) { |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 816 | // No linking to be performed or linking from the source: simply create an |
| 817 | // identical version of the symbol over in the dest module... the |
| 818 | // initializer will be filled in later by LinkGlobalInits. |
| 819 | GlobalVariable *NewDGV = new GlobalVariable( |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 820 | *DstM, TypeMap.get(SGVar->getType()->getElementType()), |
| 821 | SGVar->isConstant(), getLinkage(SGVar), /*init*/ nullptr, getName(SGVar), |
| 822 | /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(), |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 823 | SGVar->getType()->getAddressSpace()); |
| 824 | |
| 825 | return NewDGV; |
| 826 | } |
| 827 | |
| 828 | /// Link the function in the source module into the destination module if |
| 829 | /// needed, setting up mapping information. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 830 | Function *ModuleLinker::copyFunctionProto(TypeMapTy &TypeMap, |
| 831 | const Function *SF) { |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 832 | // If there is no linkage to be performed or we are linking from the source, |
| 833 | // bring SF over. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 834 | return Function::Create(TypeMap.get(SF->getFunctionType()), getLinkage(SF), |
| 835 | getName(SF), DstM); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | /// Set up prototypes for any aliases that come over from the source module. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 839 | GlobalValue *ModuleLinker::copyGlobalAliasProto(TypeMapTy &TypeMap, |
| 840 | const GlobalAlias *SGA) { |
| 841 | // If we are importing and encounter a weak_any alias, or an alias to |
| 842 | // an object being imported as a declaration, we must import the alias |
| 843 | // as a declaration as well, which involves converting it to a non-alias. |
| 844 | // See comments in ModuleLinker::getLinkage for why we cannot import |
| 845 | // weak_any defintions. |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 846 | if (isPerformingImport() && !doImportAsDefinition(SGA)) { |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 847 | // Need to convert to declaration. All aliases must be definitions. |
| 848 | const GlobalValue *GVal = SGA->getBaseObject(); |
| 849 | GlobalValue *NewGV; |
| 850 | if (auto *GVar = dyn_cast<GlobalVariable>(GVal)) |
| 851 | NewGV = copyGlobalVariableProto(TypeMap, GVar); |
| 852 | else { |
| 853 | auto *F = dyn_cast<Function>(GVal); |
| 854 | assert(F); |
| 855 | NewGV = copyFunctionProto(TypeMap, F); |
| 856 | } |
Teresa Johnson | f1b0a6e | 2015-11-04 16:01:16 +0000 | [diff] [blame] | 857 | // Set the linkage to External or ExternalWeak (see comments in |
| 858 | // ModuleLinker::getLinkage for why WeakAny is converted to ExternalWeak). |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 859 | if (SGA->hasWeakAnyLinkage()) |
| 860 | NewGV->setLinkage(GlobalValue::ExternalWeakLinkage); |
Teresa Johnson | f1b0a6e | 2015-11-04 16:01:16 +0000 | [diff] [blame] | 861 | else |
| 862 | NewGV->setLinkage(GlobalValue::ExternalLinkage); |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 863 | return NewGV; |
| 864 | } |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 865 | // If there is no linkage to be performed or we're linking from the source, |
| 866 | // bring over SGA. |
David Blaikie | 6614d8d | 2015-09-14 20:29:26 +0000 | [diff] [blame] | 867 | auto *Ty = TypeMap.get(SGA->getValueType()); |
| 868 | return GlobalAlias::create(Ty, SGA->getType()->getPointerAddressSpace(), |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 869 | getLinkage(SGA), getName(SGA), DstM); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 870 | } |
| 871 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 872 | void ModuleLinker::setVisibility(GlobalValue *NewGV, const GlobalValue *SGV, |
| 873 | const GlobalValue *DGV) { |
| 874 | GlobalValue::VisibilityTypes Visibility = SGV->getVisibility(); |
| 875 | if (DGV) |
| 876 | Visibility = isLessConstraining(Visibility, DGV->getVisibility()) |
| 877 | ? DGV->getVisibility() |
| 878 | : Visibility; |
| 879 | // For promoted locals, mark them hidden so that they can later be |
| 880 | // stripped from the symbol table to reduce bloat. |
| 881 | if (SGV->hasLocalLinkage() && doPromoteLocalToGlobal(SGV)) |
| 882 | Visibility = GlobalValue::HiddenVisibility; |
| 883 | NewGV->setVisibility(Visibility); |
| 884 | } |
| 885 | |
| 886 | GlobalValue *ModuleLinker::copyGlobalValueProto(TypeMapTy &TypeMap, |
| 887 | const GlobalValue *SGV, |
| 888 | const GlobalValue *DGV) { |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 889 | GlobalValue *NewGV; |
| 890 | if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 891 | NewGV = copyGlobalVariableProto(TypeMap, SGVar); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 892 | else if (auto *SF = dyn_cast<Function>(SGV)) |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 893 | NewGV = copyFunctionProto(TypeMap, SF); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 894 | else |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 895 | NewGV = copyGlobalAliasProto(TypeMap, cast<GlobalAlias>(SGV)); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 896 | copyGVAttributes(NewGV, SGV); |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 897 | setVisibility(NewGV, SGV, DGV); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 898 | return NewGV; |
| 899 | } |
| 900 | |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 901 | Value *ValueMaterializerTy::materializeValueFor(Value *V) { |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 902 | auto *SGV = dyn_cast<GlobalValue>(V); |
| 903 | if (!SGV) |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 904 | return nullptr; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 905 | |
Teresa Johnson | 1063293 | 2015-11-06 17:50:53 +0000 | [diff] [blame] | 906 | // If we are done linking global value bodies (i.e. we are performing |
| 907 | // metadata linking), don't link in the global value due to this |
| 908 | // reference, simply map it to null. |
| 909 | if (ModLinker->doneLinkingBodies()) |
| 910 | return nullptr; |
| 911 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 912 | GlobalValue *DGV = ModLinker->copyGlobalValueProto(TypeMap, SGV); |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 913 | |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 914 | if (Comdat *SC = SGV->getComdat()) { |
| 915 | if (auto *DGO = dyn_cast<GlobalObject>(DGV)) { |
| 916 | Comdat *DC = DstM->getOrInsertComdat(SC->getName()); |
| 917 | DGO->setComdat(DC); |
| 918 | } |
Rafael Espindola | 3931c28 | 2014-08-15 20:17:08 +0000 | [diff] [blame] | 919 | } |
| 920 | |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 921 | LazilyLinkGlobalValues.push_back(SGV); |
| 922 | return DGV; |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 923 | } |
| 924 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 925 | bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName, |
| 926 | const GlobalVariable *&GVar) { |
| 927 | const GlobalValue *GVal = M->getNamedValue(ComdatName); |
| 928 | if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) { |
| 929 | GVal = GA->getBaseObject(); |
| 930 | if (!GVal) |
| 931 | // We cannot resolve the size of the aliasee yet. |
| 932 | return emitError("Linking COMDATs named '" + ComdatName + |
| 933 | "': COMDAT key involves incomputable alias size."); |
| 934 | } |
| 935 | |
| 936 | GVar = dyn_cast_or_null<GlobalVariable>(GVal); |
| 937 | if (!GVar) |
| 938 | return emitError( |
| 939 | "Linking COMDATs named '" + ComdatName + |
| 940 | "': GlobalVariable required for data dependent selection!"); |
| 941 | |
| 942 | return false; |
| 943 | } |
| 944 | |
| 945 | bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName, |
| 946 | Comdat::SelectionKind Src, |
| 947 | Comdat::SelectionKind Dst, |
| 948 | Comdat::SelectionKind &Result, |
| 949 | bool &LinkFromSrc) { |
| 950 | // The ability to mix Comdat::SelectionKind::Any with |
| 951 | // Comdat::SelectionKind::Largest is a behavior that comes from COFF. |
| 952 | bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any || |
| 953 | Dst == Comdat::SelectionKind::Largest; |
| 954 | bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any || |
| 955 | Src == Comdat::SelectionKind::Largest; |
| 956 | if (DstAnyOrLargest && SrcAnyOrLargest) { |
| 957 | if (Dst == Comdat::SelectionKind::Largest || |
| 958 | Src == Comdat::SelectionKind::Largest) |
| 959 | Result = Comdat::SelectionKind::Largest; |
| 960 | else |
| 961 | Result = Comdat::SelectionKind::Any; |
| 962 | } else if (Src == Dst) { |
| 963 | Result = Dst; |
| 964 | } else { |
| 965 | return emitError("Linking COMDATs named '" + ComdatName + |
| 966 | "': invalid selection kinds!"); |
| 967 | } |
| 968 | |
| 969 | switch (Result) { |
| 970 | case Comdat::SelectionKind::Any: |
| 971 | // Go with Dst. |
| 972 | LinkFromSrc = false; |
| 973 | break; |
| 974 | case Comdat::SelectionKind::NoDuplicates: |
| 975 | return emitError("Linking COMDATs named '" + ComdatName + |
| 976 | "': noduplicates has been violated!"); |
| 977 | case Comdat::SelectionKind::ExactMatch: |
| 978 | case Comdat::SelectionKind::Largest: |
| 979 | case Comdat::SelectionKind::SameSize: { |
| 980 | const GlobalVariable *DstGV; |
| 981 | const GlobalVariable *SrcGV; |
| 982 | if (getComdatLeader(DstM, ComdatName, DstGV) || |
| 983 | getComdatLeader(SrcM, ComdatName, SrcGV)) |
| 984 | return true; |
| 985 | |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 986 | const DataLayout &DstDL = DstM->getDataLayout(); |
| 987 | const DataLayout &SrcDL = SrcM->getDataLayout(); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 988 | uint64_t DstSize = |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 989 | DstDL.getTypeAllocSize(DstGV->getType()->getPointerElementType()); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 990 | uint64_t SrcSize = |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 991 | SrcDL.getTypeAllocSize(SrcGV->getType()->getPointerElementType()); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 992 | if (Result == Comdat::SelectionKind::ExactMatch) { |
| 993 | if (SrcGV->getInitializer() != DstGV->getInitializer()) |
| 994 | return emitError("Linking COMDATs named '" + ComdatName + |
| 995 | "': ExactMatch violated!"); |
| 996 | LinkFromSrc = false; |
| 997 | } else if (Result == Comdat::SelectionKind::Largest) { |
| 998 | LinkFromSrc = SrcSize > DstSize; |
| 999 | } else if (Result == Comdat::SelectionKind::SameSize) { |
| 1000 | if (SrcSize != DstSize) |
| 1001 | return emitError("Linking COMDATs named '" + ComdatName + |
| 1002 | "': SameSize violated!"); |
| 1003 | LinkFromSrc = false; |
| 1004 | } else { |
| 1005 | llvm_unreachable("unknown selection kind"); |
| 1006 | } |
| 1007 | break; |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | return false; |
| 1012 | } |
| 1013 | |
| 1014 | bool ModuleLinker::getComdatResult(const Comdat *SrcC, |
| 1015 | Comdat::SelectionKind &Result, |
| 1016 | bool &LinkFromSrc) { |
Rafael Espindola | b16196a | 2014-08-11 17:07:34 +0000 | [diff] [blame] | 1017 | Comdat::SelectionKind SSK = SrcC->getSelectionKind(); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 1018 | StringRef ComdatName = SrcC->getName(); |
| 1019 | Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable(); |
| 1020 | Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName); |
Rafael Espindola | 2ef3f29 | 2014-08-11 16:55:42 +0000 | [diff] [blame] | 1021 | |
Rafael Espindola | b16196a | 2014-08-11 17:07:34 +0000 | [diff] [blame] | 1022 | if (DstCI == ComdatSymTab.end()) { |
| 1023 | // Use the comdat if it is only available in one of the modules. |
| 1024 | LinkFromSrc = true; |
| 1025 | Result = SSK; |
Rafael Espindola | 2ef3f29 | 2014-08-11 16:55:42 +0000 | [diff] [blame] | 1026 | return false; |
Rafael Espindola | b16196a | 2014-08-11 17:07:34 +0000 | [diff] [blame] | 1027 | } |
Rafael Espindola | 2ef3f29 | 2014-08-11 16:55:42 +0000 | [diff] [blame] | 1028 | |
| 1029 | const Comdat *DstC = &DstCI->second; |
Rafael Espindola | 2ef3f29 | 2014-08-11 16:55:42 +0000 | [diff] [blame] | 1030 | Comdat::SelectionKind DSK = DstC->getSelectionKind(); |
| 1031 | return computeResultingSelectionKind(ComdatName, SSK, DSK, Result, |
| 1032 | LinkFromSrc); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 1033 | } |
James Molloy | f6f121e | 2013-05-28 15:17:05 +0000 | [diff] [blame] | 1034 | |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1035 | bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc, |
| 1036 | const GlobalValue &Dest, |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1037 | const GlobalValue &Src) { |
Duncan P. N. Exon Smith | e868123 | 2015-04-22 04:11:00 +0000 | [diff] [blame] | 1038 | // Should we unconditionally use the Src? |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 1039 | if (shouldOverrideFromSrc()) { |
Duncan P. N. Exon Smith | e868123 | 2015-04-22 04:11:00 +0000 | [diff] [blame] | 1040 | LinkFromSrc = true; |
| 1041 | return false; |
| 1042 | } |
| 1043 | |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1044 | // We always have to add Src if it has appending linkage. |
| 1045 | if (Src.hasAppendingLinkage()) { |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1046 | // Caller should have already determined that we can't link from source |
| 1047 | // when importing (see comments in linkGlobalValueProto). |
| 1048 | assert(!isPerformingImport()); |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1049 | LinkFromSrc = true; |
| 1050 | return false; |
| 1051 | } |
| 1052 | |
Rafael Espindola | d4bcefc | 2014-10-24 18:13:04 +0000 | [diff] [blame] | 1053 | bool SrcIsDeclaration = Src.isDeclarationForLinker(); |
| 1054 | bool DestIsDeclaration = Dest.isDeclarationForLinker(); |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1055 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1056 | if (isPerformingImport()) { |
| 1057 | if (isa<Function>(&Src)) { |
| 1058 | // For functions, LinkFromSrc iff this is the function requested |
| 1059 | // for importing. For variables, decide below normally. |
| 1060 | LinkFromSrc = (&Src == ImportFunction); |
| 1061 | return false; |
| 1062 | } |
| 1063 | |
| 1064 | // Check if this is an alias with an already existing definition |
| 1065 | // in Dest, which must have come from a prior importing pass from |
| 1066 | // the same Src module. Unlike imported function and variable |
| 1067 | // definitions, which are imported as available_externally and are |
| 1068 | // not definitions for the linker, that is not a valid linkage for |
| 1069 | // imported aliases which must be definitions. Simply use the existing |
| 1070 | // Dest copy. |
| 1071 | if (isa<GlobalAlias>(&Src) && !DestIsDeclaration) { |
| 1072 | assert(isa<GlobalAlias>(&Dest)); |
| 1073 | LinkFromSrc = false; |
| 1074 | return false; |
| 1075 | } |
| 1076 | } |
| 1077 | |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1078 | if (SrcIsDeclaration) { |
| 1079 | // If Src is external or if both Src & Dest are external.. Just link the |
| 1080 | // external globals, we aren't adding anything. |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1081 | if (Src.hasDLLImportStorageClass()) { |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1082 | // 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] | 1083 | LinkFromSrc = DestIsDeclaration; |
| 1084 | return false; |
| 1085 | } |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1086 | // If the Dest is weak, use the source linkage. |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1087 | LinkFromSrc = Dest.hasExternalWeakLinkage(); |
| 1088 | return false; |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1089 | } |
| 1090 | |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1091 | if (DestIsDeclaration) { |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1092 | // If Dest is external but Src is not: |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1093 | LinkFromSrc = true; |
| 1094 | return false; |
| 1095 | } |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1096 | |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1097 | if (Src.hasCommonLinkage()) { |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1098 | if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) { |
| 1099 | LinkFromSrc = true; |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1100 | return false; |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1101 | } |
| 1102 | |
| 1103 | if (!Dest.hasCommonLinkage()) { |
| 1104 | LinkFromSrc = false; |
| 1105 | return false; |
| 1106 | } |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1107 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1108 | const DataLayout &DL = Dest.getParent()->getDataLayout(); |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1109 | uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType()); |
| 1110 | uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType()); |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1111 | LinkFromSrc = SrcSize > DestSize; |
| 1112 | return false; |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1113 | } |
| 1114 | |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1115 | if (Src.isWeakForLinker()) { |
| 1116 | assert(!Dest.hasExternalWeakLinkage()); |
| 1117 | assert(!Dest.hasAvailableExternallyLinkage()); |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1118 | |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1119 | if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) { |
| 1120 | LinkFromSrc = true; |
| 1121 | return false; |
| 1122 | } |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1123 | |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1124 | LinkFromSrc = false; |
Rafael Espindola | 0910605 | 2014-09-09 15:59:12 +0000 | [diff] [blame] | 1125 | return false; |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | if (Dest.isWeakForLinker()) { |
| 1129 | assert(Src.hasExternalLinkage()); |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1130 | LinkFromSrc = true; |
| 1131 | return false; |
Rafael Espindola | dbb0bd1 | 2014-09-09 15:21:00 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | assert(!Src.hasExternalWeakLinkage()); |
| 1135 | assert(!Dest.hasExternalWeakLinkage()); |
| 1136 | assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() && |
| 1137 | "Unexpected linkage type!"); |
| 1138 | return emitError("Linking globals named '" + Src.getName() + |
| 1139 | "': symbol multiply defined!"); |
| 1140 | } |
| 1141 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 1142 | /// Loop over all of the linked values to compute type mappings. For example, |
| 1143 | /// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct |
| 1144 | /// types 'Foo' but one got renamed when the module was loaded into the same |
| 1145 | /// LLVMContext. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1146 | void ModuleLinker::computeTypeMapping() { |
Rafael Espindola | c8a476e | 2014-11-25 04:26:19 +0000 | [diff] [blame] | 1147 | for (GlobalValue &SGV : SrcM->globals()) { |
| 1148 | GlobalValue *DGV = getLinkedToGlobal(&SGV); |
| 1149 | if (!DGV) |
| 1150 | continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1151 | |
Rafael Espindola | c8a476e | 2014-11-25 04:26:19 +0000 | [diff] [blame] | 1152 | if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) { |
| 1153 | TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1154 | continue; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1155 | } |
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 | // Unify the element type of appending arrays. |
| 1158 | ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType()); |
Rafael Espindola | c8a476e | 2014-11-25 04:26:19 +0000 | [diff] [blame] | 1159 | ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType()); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1160 | TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType()); |
Devang Patel | 5c310be | 2009-08-11 18:01:24 +0000 | [diff] [blame] | 1161 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1162 | |
Rafael Espindola | c8a476e | 2014-11-25 04:26:19 +0000 | [diff] [blame] | 1163 | for (GlobalValue &SGV : *SrcM) { |
| 1164 | if (GlobalValue *DGV = getLinkedToGlobal(&SGV)) |
| 1165 | TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1166 | } |
Bill Wendling | 7b46461 | 2012-02-27 22:34:19 +0000 | [diff] [blame] | 1167 | |
Rafael Espindola | e96d7eb | 2014-11-25 04:43:59 +0000 | [diff] [blame] | 1168 | for (GlobalValue &SGV : SrcM->aliases()) { |
| 1169 | if (GlobalValue *DGV = getLinkedToGlobal(&SGV)) |
| 1170 | TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); |
| 1171 | } |
| 1172 | |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 1173 | // Incorporate types by name, scanning all the types in the source module. |
| 1174 | // 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] | 1175 | // example. When the source module got loaded into the same LLVMContext, if |
| 1176 | // 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] | 1177 | std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes(); |
| 1178 | for (StructType *ST : Types) { |
Rafael Espindola | 4d4c938 | 2014-12-01 19:08:07 +0000 | [diff] [blame] | 1179 | if (!ST->hasName()) |
| 1180 | continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1181 | |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 1182 | // 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] | 1183 | size_t DotPos = ST->getName().rfind('.'); |
| 1184 | if (DotPos == 0 || DotPos == StringRef::npos || |
Guy Benyei | 83c74e9 | 2013-02-12 21:21:59 +0000 | [diff] [blame] | 1185 | ST->getName().back() == '.' || |
Rafael Espindola | 973b361 | 2014-12-01 19:17:46 +0000 | [diff] [blame] | 1186 | !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1]))) |
Bill Wendling | d48b778 | 2012-02-28 04:01:21 +0000 | [diff] [blame] | 1187 | continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1188 | |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 1189 | // 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] | 1190 | StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)); |
| 1191 | if (!DST) |
| 1192 | continue; |
| 1193 | |
| 1194 | // Don't use it if this actually came from the source module. They're in |
| 1195 | // the same LLVMContext after all. Also don't use it unless the type is |
| 1196 | // actually used in the destination module. This can happen in situations |
| 1197 | // like this: |
| 1198 | // |
| 1199 | // Module A Module B |
| 1200 | // -------- -------- |
| 1201 | // %Z = type { %A } %B = type { %C.1 } |
| 1202 | // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* } |
| 1203 | // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] } |
| 1204 | // %C = type { i8* } %B.3 = type { %C.1 } |
| 1205 | // |
| 1206 | // When we link Module B with Module A, the '%B' in Module B is |
| 1207 | // used. However, that would then use '%C.1'. But when we process '%C.1', |
| 1208 | // we prefer to take the '%C' version. So we are then left with both |
| 1209 | // '%C.1' and '%C' being used for the same types. This leads to some |
| 1210 | // variables using one type and some using the other. |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 1211 | if (TypeMap.DstStructTypesSet.hasType(DST)) |
Rafael Espindola | 973b361 | 2014-12-01 19:17:46 +0000 | [diff] [blame] | 1212 | TypeMap.addTypeMapping(DST, ST); |
Bill Wendling | 2b3f61a | 2012-02-27 23:48:30 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1215 | // 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] | 1216 | // any 'opaque' types in the dest module that are now resolved. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1217 | TypeMap.linkDefinedTypeBodies(); |
Devang Patel | 5c310be | 2009-08-11 18:01:24 +0000 | [diff] [blame] | 1218 | } |
| 1219 | |
Duncan P. N. Exon Smith | 09d84ad | 2014-08-12 16:46:37 +0000 | [diff] [blame] | 1220 | static void upgradeGlobalArray(GlobalVariable *GV) { |
| 1221 | ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType()); |
| 1222 | StructType *OldTy = cast<StructType>(ATy->getElementType()); |
| 1223 | assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements"); |
| 1224 | |
| 1225 | // Get the upgraded 3 element type. |
| 1226 | PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo(); |
| 1227 | Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1), |
| 1228 | VoidPtrTy}; |
| 1229 | StructType *NewTy = StructType::get(GV->getContext(), Tys, false); |
| 1230 | |
| 1231 | // Build new constants with a null third field filled in. |
| 1232 | Constant *OldInitC = GV->getInitializer(); |
| 1233 | ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC); |
| 1234 | if (!OldInit && !isa<ConstantAggregateZero>(OldInitC)) |
| 1235 | // Invalid initializer; give up. |
| 1236 | return; |
| 1237 | std::vector<Constant *> Initializers; |
| 1238 | if (OldInit && OldInit->getNumOperands()) { |
| 1239 | Value *Null = Constant::getNullValue(VoidPtrTy); |
| 1240 | for (Use &U : OldInit->operands()) { |
| 1241 | ConstantStruct *Init = cast<ConstantStruct>(U.get()); |
| 1242 | Initializers.push_back(ConstantStruct::get( |
| 1243 | NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr)); |
| 1244 | } |
| 1245 | } |
| 1246 | assert(Initializers.size() == ATy->getNumElements() && |
| 1247 | "Failed to copy all array elements"); |
| 1248 | |
| 1249 | // Replace the old GV with a new one. |
| 1250 | ATy = ArrayType::get(NewTy, Initializers.size()); |
| 1251 | Constant *NewInit = ConstantArray::get(ATy, Initializers); |
| 1252 | GlobalVariable *NewGV = new GlobalVariable( |
| 1253 | *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "", |
| 1254 | GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(), |
| 1255 | GV->isExternallyInitialized()); |
| 1256 | NewGV->copyAttributesFrom(GV); |
| 1257 | NewGV->takeName(GV); |
| 1258 | assert(GV->use_empty() && "program cannot use initializer list"); |
| 1259 | GV->eraseFromParent(); |
| 1260 | } |
| 1261 | |
| 1262 | void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) { |
| 1263 | // Look for the global arrays. |
| 1264 | auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name)); |
| 1265 | if (!DstGV) |
| 1266 | return; |
| 1267 | auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name)); |
| 1268 | if (!SrcGV) |
| 1269 | return; |
| 1270 | |
| 1271 | // Check if the types already match. |
| 1272 | auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType()); |
| 1273 | auto *SrcTy = |
| 1274 | cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType())); |
| 1275 | if (DstTy == SrcTy) |
| 1276 | return; |
| 1277 | |
| 1278 | // Grab the element types. We can only upgrade an array of a two-field |
| 1279 | // struct. Only bother if the other one has three-fields. |
| 1280 | auto *DstEltTy = cast<StructType>(DstTy->getElementType()); |
| 1281 | auto *SrcEltTy = cast<StructType>(SrcTy->getElementType()); |
| 1282 | if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) { |
| 1283 | upgradeGlobalArray(DstGV); |
| 1284 | return; |
| 1285 | } |
| 1286 | if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2) |
| 1287 | upgradeGlobalArray(SrcGV); |
| 1288 | |
| 1289 | // We can't upgrade any other differences. |
| 1290 | } |
| 1291 | |
| 1292 | void ModuleLinker::upgradeMismatchedGlobals() { |
| 1293 | upgradeMismatchedGlobalArray("llvm.global_ctors"); |
| 1294 | upgradeMismatchedGlobalArray("llvm.global_dtors"); |
| 1295 | } |
| 1296 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 1297 | /// If there were any appending global variables, link them together now. |
| 1298 | /// Return true on error. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1299 | bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV, |
Rafael Espindola | 3e8bc6a | 2014-10-31 16:08:17 +0000 | [diff] [blame] | 1300 | const GlobalVariable *SrcGV) { |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1301 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1302 | if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage()) |
| 1303 | return emitError("Linking globals named '" + SrcGV->getName() + |
| 1304 | "': can only link appending global with another appending global!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1305 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1306 | ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType()); |
| 1307 | ArrayType *SrcTy = |
| 1308 | cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType())); |
| 1309 | Type *EltTy = DstTy->getElementType(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1310 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1311 | // Check to see that they two arrays agree on type. |
| 1312 | if (EltTy != SrcTy->getElementType()) |
| 1313 | return emitError("Appending variables with different element types!"); |
| 1314 | if (DstGV->isConstant() != SrcGV->isConstant()) |
| 1315 | return emitError("Appending variables linked with different const'ness!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1316 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1317 | if (DstGV->getAlignment() != SrcGV->getAlignment()) |
| 1318 | return emitError( |
| 1319 | "Appending variables with different alignment need to be linked!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1320 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1321 | if (DstGV->getVisibility() != SrcGV->getVisibility()) |
| 1322 | return emitError( |
| 1323 | "Appending variables with different visibility need to be linked!"); |
Rafael Espindola | fac3a01 | 2013-09-04 15:33:34 +0000 | [diff] [blame] | 1324 | |
| 1325 | if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr()) |
| 1326 | return emitError( |
| 1327 | "Appending variables with different unnamed_addr need to be linked!"); |
| 1328 | |
Rafael Espindola | 64c1e18 | 2014-06-03 02:41:57 +0000 | [diff] [blame] | 1329 | if (StringRef(DstGV->getSection()) != SrcGV->getSection()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1330 | return emitError( |
| 1331 | "Appending variables with different section name need to be linked!"); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1332 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1333 | uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements(); |
| 1334 | ArrayType *NewType = ArrayType::get(EltTy, NewSize); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1335 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1336 | // Create the new global variable. |
| 1337 | GlobalVariable *NG = |
| 1338 | new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(), |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1339 | DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV, |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 1340 | DstGV->getThreadLocalMode(), |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1341 | DstGV->getType()->getAddressSpace()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1342 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1343 | // Propagate alignment, visibility and section info. |
Bill Wendling | b6af2f3 | 2012-03-22 20:28:27 +0000 | [diff] [blame] | 1344 | copyGVAttributes(NG, DstGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1345 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1346 | AppendingVarInfo AVI; |
| 1347 | AVI.NewGV = NG; |
| 1348 | AVI.DstInit = DstGV->getInitializer(); |
| 1349 | AVI.SrcInit = SrcGV->getInitializer(); |
| 1350 | AppendingVars.push_back(AVI); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 1351 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1352 | // Replace any uses of the two global variables with uses of the new |
| 1353 | // global. |
| 1354 | ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType())); |
Anton Korobeynikov | e79f4c7 | 2008-03-10 22:34:28 +0000 | [diff] [blame] | 1355 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1356 | DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType())); |
| 1357 | DstGV->eraseFromParent(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1358 | |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1359 | // Track the source variable so we don't try to link it. |
| 1360 | DoNotLinkFromSource.insert(SrcGV); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1361 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1362 | return false; |
| 1363 | } |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 1364 | |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1365 | bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) { |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1366 | GlobalValue *DGV = getLinkedToGlobal(SGV); |
Mikhail Glushenkov | 766d489 | 2009-03-03 07:22:23 +0000 | [diff] [blame] | 1367 | |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1368 | // Handle the ultra special appending linkage case first. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1369 | assert(!DGV || SGV->hasAppendingLinkage() == DGV->hasAppendingLinkage()); |
| 1370 | if (SGV->hasAppendingLinkage() && isPerformingImport()) { |
| 1371 | // Don't want to append to global_ctors list, for example, when we |
| 1372 | // are importing for ThinLTO, otherwise the global ctors and dtors |
| 1373 | // get executed multiple times for local variables (the latter causing |
| 1374 | // double frees). |
| 1375 | DoNotLinkFromSource.insert(SGV); |
| 1376 | return false; |
| 1377 | } |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1378 | if (DGV && DGV->hasAppendingLinkage()) |
| 1379 | return linkAppendingVarProto(cast<GlobalVariable>(DGV), |
| 1380 | cast<GlobalVariable>(SGV)); |
| 1381 | |
| 1382 | bool LinkFromSrc = true; |
| 1383 | Comdat *C = nullptr; |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1384 | bool HasUnnamedAddr = SGV->hasUnnamedAddr(); |
| 1385 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 1386 | if (const Comdat *SC = SGV->getComdat()) { |
| 1387 | Comdat::SelectionKind SK; |
| 1388 | std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1389 | C = DstM->getOrInsertComdat(SC->getName()); |
| 1390 | C->setSelectionKind(SK); |
Teresa Johnson | 2d5fb8c | 2015-11-10 21:09:06 +0000 | [diff] [blame] | 1391 | ComdatMembers[SC].push_back(SGV); |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1392 | } else if (DGV) { |
| 1393 | if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV)) |
| 1394 | return true; |
| 1395 | } |
| 1396 | |
| 1397 | if (!LinkFromSrc) { |
| 1398 | // Track the source global so that we don't attempt to copy it over when |
| 1399 | // processing global initializers. |
| 1400 | DoNotLinkFromSource.insert(SGV); |
| 1401 | |
| 1402 | if (DGV) |
| 1403 | // Make sure to remember this mapping. |
| 1404 | ValueMap[SGV] = |
| 1405 | ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType())); |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 1406 | } |
| 1407 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1408 | if (DGV) |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1409 | HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr(); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1410 | |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1411 | if (!LinkFromSrc && !DGV) |
| 1412 | return false; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1413 | |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1414 | GlobalValue *NewGV; |
Rafael Espindola | 26c2951 | 2014-12-05 17:53:15 +0000 | [diff] [blame] | 1415 | if (!LinkFromSrc) { |
| 1416 | NewGV = DGV; |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1417 | // When linking from source we setVisibility from copyGlobalValueProto. |
| 1418 | setVisibility(NewGV, SGV, DGV); |
Rafael Espindola | 26c2951 | 2014-12-05 17:53:15 +0000 | [diff] [blame] | 1419 | } else { |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1420 | // If the GV is to be lazily linked, don't create it just yet. |
| 1421 | // The ValueMaterializerTy will deal with creating it if it's used. |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1422 | if (!DGV && !shouldOverrideFromSrc() && SGV != ImportFunction && |
Duncan P. N. Exon Smith | e868123 | 2015-04-22 04:11:00 +0000 | [diff] [blame] | 1423 | (SGV->hasLocalLinkage() || SGV->hasLinkOnceLinkage() || |
| 1424 | SGV->hasAvailableExternallyLinkage())) { |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1425 | DoNotLinkFromSource.insert(SGV); |
| 1426 | return false; |
| 1427 | } |
| 1428 | |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 1429 | // When we only want to link in unresolved dependencies, blacklist |
| 1430 | // the symbol unless unless DestM has a matching declaration (DGV). |
| 1431 | if (shouldLinkOnlyNeeded() && !(DGV && DGV->isDeclaration())) { |
| 1432 | DoNotLinkFromSource.insert(SGV); |
| 1433 | return false; |
| 1434 | } |
| 1435 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1436 | NewGV = copyGlobalValueProto(TypeMap, SGV, DGV); |
Teresa Johnson | 3cd8161 | 2015-11-10 18:20:11 +0000 | [diff] [blame] | 1437 | |
| 1438 | if (isPerformingImport() && !doImportAsDefinition(SGV)) |
| 1439 | DoNotLinkFromSource.insert(SGV); |
Rafael Espindola | 26c2951 | 2014-12-05 17:53:15 +0000 | [diff] [blame] | 1440 | } |
Rafael Espindola | fe3842c | 2014-09-09 17:48:18 +0000 | [diff] [blame] | 1441 | |
Rafael Espindola | ad9d0ca | 2014-12-05 15:42:30 +0000 | [diff] [blame] | 1442 | NewGV->setUnnamedAddr(HasUnnamedAddr); |
Rafael Espindola | 439835a | 2014-12-05 00:09:02 +0000 | [diff] [blame] | 1443 | |
Rafael Espindola | ad9d0ca | 2014-12-05 15:42:30 +0000 | [diff] [blame] | 1444 | if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) { |
| 1445 | if (C) |
| 1446 | NewGO->setComdat(C); |
| 1447 | |
| 1448 | if (DGV && DGV->hasCommonLinkage() && SGV->hasCommonLinkage()) |
| 1449 | NewGO->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment())); |
| 1450 | } |
| 1451 | |
Rafael Espindola | 879aeb7 | 2014-12-05 16:05:19 +0000 | [diff] [blame] | 1452 | if (auto *NewGVar = dyn_cast<GlobalVariable>(NewGV)) { |
| 1453 | auto *DGVar = dyn_cast_or_null<GlobalVariable>(DGV); |
| 1454 | auto *SGVar = dyn_cast<GlobalVariable>(SGV); |
| 1455 | if (DGVar && SGVar && DGVar->isDeclaration() && SGVar->isDeclaration() && |
| 1456 | (!DGVar->isConstant() || !SGVar->isConstant())) |
| 1457 | NewGVar->setConstant(false); |
| 1458 | } |
| 1459 | |
Rafael Espindola | ad9d0ca | 2014-12-05 15:42:30 +0000 | [diff] [blame] | 1460 | // Make sure to remember this mapping. |
| 1461 | if (NewGV != DGV) { |
| 1462 | if (DGV) { |
| 1463 | DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType())); |
| 1464 | DGV->eraseFromParent(); |
Chandler Carruth | fd38af2 | 2014-11-02 09:10:31 +0000 | [diff] [blame] | 1465 | } |
Rafael Espindola | ad9d0ca | 2014-12-05 15:42:30 +0000 | [diff] [blame] | 1466 | ValueMap[SGV] = NewGV; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1467 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1468 | |
Rafael Espindola | 778fcc7 | 2014-11-02 13:28:57 +0000 | [diff] [blame] | 1469 | return false; |
| 1470 | } |
| 1471 | |
Rafael Espindola | 3e8bc6a | 2014-10-31 16:08:17 +0000 | [diff] [blame] | 1472 | static void getArrayElements(const Constant *C, |
| 1473 | SmallVectorImpl<Constant *> &Dest) { |
Chris Lattner | 6705883 | 2012-01-25 06:48:06 +0000 | [diff] [blame] | 1474 | unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements(); |
| 1475 | |
| 1476 | for (unsigned i = 0; i != NumElements; ++i) |
| 1477 | Dest.push_back(C->getAggregateElement(i)); |
Chris Lattner | 00245f4 | 2012-01-24 13:41:11 +0000 | [diff] [blame] | 1478 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1479 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1480 | void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) { |
| 1481 | // Merge the initializer. |
Rafael Espindola | d31dc04 | 2014-09-05 21:27:52 +0000 | [diff] [blame] | 1482 | SmallVector<Constant *, 16> DstElements; |
| 1483 | getArrayElements(AVI.DstInit, DstElements); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1484 | |
Rafael Espindola | d31dc04 | 2014-09-05 21:27:52 +0000 | [diff] [blame] | 1485 | SmallVector<Constant *, 16> SrcElements; |
| 1486 | getArrayElements(AVI.SrcInit, SrcElements); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1487 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1488 | ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType()); |
Rafael Espindola | d31dc04 | 2014-09-05 21:27:52 +0000 | [diff] [blame] | 1489 | |
| 1490 | StringRef Name = AVI.NewGV->getName(); |
| 1491 | bool IsNewStructor = |
| 1492 | (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") && |
| 1493 | cast<StructType>(NewType->getElementType())->getNumElements() == 3; |
| 1494 | |
| 1495 | for (auto *V : SrcElements) { |
| 1496 | if (IsNewStructor) { |
| 1497 | Constant *Key = V->getAggregateElement(2); |
| 1498 | if (DoNotLinkFromSource.count(Key)) |
| 1499 | continue; |
| 1500 | } |
| 1501 | DstElements.push_back( |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1502 | MapValue(V, ValueMap, RF_MoveDistinctMDs, &TypeMap, &ValMaterializer)); |
Rafael Espindola | d31dc04 | 2014-09-05 21:27:52 +0000 | [diff] [blame] | 1503 | } |
| 1504 | if (IsNewStructor) { |
| 1505 | NewType = ArrayType::get(NewType->getElementType(), DstElements.size()); |
| 1506 | AVI.NewGV->mutateType(PointerType::get(NewType, 0)); |
| 1507 | } |
| 1508 | |
| 1509 | AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements)); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1510 | } |
| 1511 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 1512 | /// Update the initializers in the Dest module now that all globals that may be |
| 1513 | /// referenced are in Dest. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1514 | void ModuleLinker::linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src) { |
| 1515 | // 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] | 1516 | Dst.setInitializer(MapValue(Src.getInitializer(), ValueMap, |
| 1517 | RF_MoveDistinctMDs, &TypeMap, &ValMaterializer)); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 1520 | /// Copy the source function over into the dest function and fix up references |
| 1521 | /// to values. At this point we know that Dest is an external function, and |
| 1522 | /// that Src is not. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1523 | bool ModuleLinker::linkFunctionBody(Function &Dst, Function &Src) { |
| 1524 | assert(Dst.isDeclaration() && !Src.isDeclaration()); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1525 | |
Rafael Espindola | 40d7ebe | 2014-12-08 13:29:33 +0000 | [diff] [blame] | 1526 | // Materialize if needed. |
Rafael Espindola | 3519da8 | 2014-12-08 14:25:26 +0000 | [diff] [blame] | 1527 | if (std::error_code EC = Src.materialize()) |
Rafael Espindola | 40d7ebe | 2014-12-08 13:29:33 +0000 | [diff] [blame] | 1528 | return emitError(EC.message()); |
| 1529 | |
Rafael Espindola | 869d1ce | 2014-12-08 13:44:38 +0000 | [diff] [blame] | 1530 | // Link in the prefix data. |
Rafael Espindola | 3519da8 | 2014-12-08 14:25:26 +0000 | [diff] [blame] | 1531 | if (Src.hasPrefixData()) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1532 | Dst.setPrefixData(MapValue(Src.getPrefixData(), ValueMap, |
| 1533 | RF_MoveDistinctMDs, &TypeMap, &ValMaterializer)); |
Rafael Espindola | 869d1ce | 2014-12-08 13:44:38 +0000 | [diff] [blame] | 1534 | |
| 1535 | // Link in the prologue data. |
Rafael Espindola | 3519da8 | 2014-12-08 14:25:26 +0000 | [diff] [blame] | 1536 | if (Src.hasPrologueData()) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1537 | Dst.setPrologueData(MapValue(Src.getPrologueData(), ValueMap, |
| 1538 | RF_MoveDistinctMDs, &TypeMap, |
| 1539 | &ValMaterializer)); |
Rafael Espindola | 869d1ce | 2014-12-08 13:44:38 +0000 | [diff] [blame] | 1540 | |
David Majnemer | 7fddecc | 2015-06-17 20:52:32 +0000 | [diff] [blame] | 1541 | // Link in the personality function. |
| 1542 | if (Src.hasPersonalityFn()) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1543 | Dst.setPersonalityFn(MapValue(Src.getPersonalityFn(), ValueMap, |
| 1544 | RF_MoveDistinctMDs, &TypeMap, |
| 1545 | &ValMaterializer)); |
David Majnemer | 7fddecc | 2015-06-17 20:52:32 +0000 | [diff] [blame] | 1546 | |
Chris Lattner | 7391dde | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 1547 | // Go through and convert function arguments over, remembering the mapping. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1548 | Function::arg_iterator DI = Dst.arg_begin(); |
Rafael Espindola | 3519da8 | 2014-12-08 14:25:26 +0000 | [diff] [blame] | 1549 | for (Argument &Arg : Src.args()) { |
Rafael Espindola | a314d1a | 2014-12-08 14:20:10 +0000 | [diff] [blame] | 1550 | DI->setName(Arg.getName()); // Copy the name over. |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1551 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1552 | // Add a mapping to our mapping. |
Duncan P. N. Exon Smith | 9934b26 | 2015-10-19 22:23:36 +0000 | [diff] [blame] | 1553 | ValueMap[&Arg] = &*DI; |
Rafael Espindola | a314d1a | 2014-12-08 14:20:10 +0000 | [diff] [blame] | 1554 | ++DI; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
Duncan P. N. Exon Smith | c8d987b | 2015-04-24 22:07:31 +0000 | [diff] [blame] | 1557 | // Copy over the metadata attachments. |
| 1558 | SmallVector<std::pair<unsigned, MDNode *>, 8> MDs; |
| 1559 | Src.getAllMetadata(MDs); |
| 1560 | for (const auto &I : MDs) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1561 | Dst.setMetadata(I.first, MapMetadata(I.second, ValueMap, RF_MoveDistinctMDs, |
| 1562 | &TypeMap, &ValMaterializer)); |
Duncan P. N. Exon Smith | c8d987b | 2015-04-24 22:07:31 +0000 | [diff] [blame] | 1563 | |
Rafael Espindola | 9f8eff3 | 2014-10-28 00:24:16 +0000 | [diff] [blame] | 1564 | // Splice the body of the source function into the dest function. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1565 | Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList()); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1566 | |
Rafael Espindola | 9f8eff3 | 2014-10-28 00:24:16 +0000 | [diff] [blame] | 1567 | // At this point, all of the instructions and values of the function are now |
| 1568 | // copied over. The only problem is that they are still referencing values in |
| 1569 | // the Source function as operands. Loop through all of the operands of the |
| 1570 | // functions and patch them up to point to the local versions. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1571 | for (BasicBlock &BB : Dst) |
Rafael Espindola | a314d1a | 2014-12-08 14:20:10 +0000 | [diff] [blame] | 1572 | for (Instruction &I : BB) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1573 | RemapInstruction(&I, ValueMap, |
| 1574 | RF_IgnoreMissingEntries | RF_MoveDistinctMDs, &TypeMap, |
Rafael Espindola | 9f8eff3 | 2014-10-28 00:24:16 +0000 | [diff] [blame] | 1575 | &ValMaterializer); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1576 | |
Chris Lattner | 7391dde | 2004-11-16 17:12:38 +0000 | [diff] [blame] | 1577 | // There is no need to map the arguments anymore. |
Rafael Espindola | 3519da8 | 2014-12-08 14:25:26 +0000 | [diff] [blame] | 1578 | for (Argument &Arg : Src.args()) |
Rafael Espindola | a314d1a | 2014-12-08 14:20:10 +0000 | [diff] [blame] | 1579 | ValueMap.erase(&Arg); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1580 | |
Eric Christopher | 97cb565 | 2015-05-15 18:20:14 +0000 | [diff] [blame] | 1581 | Src.dematerialize(); |
Rafael Espindola | 40d7ebe | 2014-12-08 13:29:33 +0000 | [diff] [blame] | 1582 | return false; |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1583 | } |
| 1584 | |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1585 | void ModuleLinker::linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src) { |
| 1586 | Constant *Aliasee = Src.getAliasee(); |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1587 | Constant *Val = MapValue(Aliasee, ValueMap, RF_MoveDistinctMDs, &TypeMap, |
| 1588 | &ValMaterializer); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1589 | Dst.setAliasee(Val); |
| 1590 | } |
| 1591 | |
| 1592 | bool ModuleLinker::linkGlobalValueBody(GlobalValue &Src) { |
| 1593 | Value *Dst = ValueMap[&Src]; |
| 1594 | assert(Dst); |
Teresa Johnson | 2d5fb8c | 2015-11-10 21:09:06 +0000 | [diff] [blame] | 1595 | if (const Comdat *SC = Src.getComdat()) { |
| 1596 | // To ensure that we don't generate an incomplete comdat group, |
| 1597 | // we must materialize and map in any other members that are not |
| 1598 | // yet materialized in Dst, which also ensures their definitions |
| 1599 | // are linked in. Otherwise, linkonce and other lazy linked GVs will |
| 1600 | // not be materialized if they aren't referenced. |
| 1601 | for (auto *SGV : ComdatMembers[SC]) { |
| 1602 | if (ValueMap[SGV]) |
| 1603 | continue; |
| 1604 | Value *NewV = ValMaterializer.materializeValueFor(SGV); |
| 1605 | ValueMap[SGV] = NewV; |
| 1606 | } |
| 1607 | } |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 1608 | if (shouldInternalizeLinkedSymbols()) |
| 1609 | if (auto *DGV = dyn_cast<GlobalValue>(Dst)) |
| 1610 | DGV->setLinkage(GlobalValue::InternalLinkage); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1611 | if (auto *F = dyn_cast<Function>(&Src)) |
| 1612 | return linkFunctionBody(cast<Function>(*Dst), *F); |
| 1613 | if (auto *GVar = dyn_cast<GlobalVariable>(&Src)) { |
| 1614 | linkGlobalInit(cast<GlobalVariable>(*Dst), *GVar); |
| 1615 | return false; |
Tanya Lattner | cbb9140 | 2011-10-11 00:24:54 +0000 | [diff] [blame] | 1616 | } |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1617 | linkAliasBody(cast<GlobalAlias>(*Dst), cast<GlobalAlias>(Src)); |
| 1618 | return false; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1619 | } |
Anton Korobeynikov | 2609888 | 2008-03-05 23:21:39 +0000 | [diff] [blame] | 1620 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 1621 | /// Insert all of the named MDNodes in Src into the Dest module. |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1622 | void ModuleLinker::linkNamedMDNodes() { |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1623 | const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata(); |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1624 | for (const NamedMDNode &NMD : SrcM->named_metadata()) { |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1625 | // Don't link module flags here. Do them separately. |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1626 | if (&NMD == SrcModFlags) |
| 1627 | continue; |
| 1628 | NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(NMD.getName()); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1629 | // Add Src elements into Dest node. |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1630 | for (const MDNode *op : NMD.operands()) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1631 | DestNMD->addOperand(MapMetadata(op, ValueMap, RF_MoveDistinctMDs, |
| 1632 | &TypeMap, &ValMaterializer)); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1633 | } |
| 1634 | } |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1635 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 1636 | /// Merge the linker flags in Src into the Dest module. |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1637 | bool ModuleLinker::linkModuleFlagsMetadata() { |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1638 | // If the source module has no module flags, we are done. |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1639 | const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata(); |
| 1640 | if (!SrcModFlags) return false; |
| 1641 | |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1642 | // If the destination module doesn't have module flags yet, then just copy |
| 1643 | // over the source module's flags. |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1644 | NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata(); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1645 | if (DstModFlags->getNumOperands() == 0) { |
| 1646 | for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) |
| 1647 | DstModFlags->addOperand(SrcModFlags->getOperand(I)); |
| 1648 | |
| 1649 | return false; |
| 1650 | } |
| 1651 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1652 | // 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] | 1653 | DenseMap<MDString *, std::pair<MDNode *, unsigned>> Flags; |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1654 | SmallSetVector<MDNode*, 16> Requirements; |
| 1655 | 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] | 1656 | MDNode *Op = DstModFlags->getOperand(I); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1657 | ConstantInt *Behavior = mdconst::extract<ConstantInt>(Op->getOperand(0)); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1658 | MDString *ID = cast<MDString>(Op->getOperand(1)); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1659 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1660 | if (Behavior->getZExtValue() == Module::Require) { |
| 1661 | Requirements.insert(cast<MDNode>(Op->getOperand(2))); |
| 1662 | } else { |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1663 | Flags[ID] = std::make_pair(Op, I); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1664 | } |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1665 | } |
| 1666 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1667 | // Merge in the flags from the source module, and also collect its set of |
| 1668 | // requirements. |
| 1669 | bool HasErr = false; |
| 1670 | 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] | 1671 | MDNode *SrcOp = SrcModFlags->getOperand(I); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1672 | ConstantInt *SrcBehavior = |
| 1673 | mdconst::extract<ConstantInt>(SrcOp->getOperand(0)); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1674 | MDString *ID = cast<MDString>(SrcOp->getOperand(1)); |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1675 | MDNode *DstOp; |
| 1676 | unsigned DstIndex; |
| 1677 | std::tie(DstOp, DstIndex) = Flags.lookup(ID); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1678 | unsigned SrcBehaviorValue = SrcBehavior->getZExtValue(); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1679 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1680 | // If this is a requirement, add it and continue. |
| 1681 | if (SrcBehaviorValue == Module::Require) { |
| 1682 | // If the destination module does not already have this requirement, add |
| 1683 | // it. |
| 1684 | if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) { |
| 1685 | DstModFlags->addOperand(SrcOp); |
| 1686 | } |
| 1687 | continue; |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1688 | } |
| 1689 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1690 | // If there is no existing flag with this ID, just add it. |
| 1691 | if (!DstOp) { |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1692 | Flags[ID] = std::make_pair(SrcOp, DstModFlags->getNumOperands()); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1693 | DstModFlags->addOperand(SrcOp); |
| 1694 | continue; |
| 1695 | } |
| 1696 | |
| 1697 | // Otherwise, perform a merge. |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1698 | ConstantInt *DstBehavior = |
| 1699 | mdconst::extract<ConstantInt>(DstOp->getOperand(0)); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1700 | unsigned DstBehaviorValue = DstBehavior->getZExtValue(); |
| 1701 | |
| 1702 | // If either flag has override behavior, handle it first. |
| 1703 | if (DstBehaviorValue == Module::Override) { |
| 1704 | // Diagnose inconsistent flags which both have override behavior. |
| 1705 | if (SrcBehaviorValue == Module::Override && |
| 1706 | SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
| 1707 | HasErr |= emitError("linking module flags '" + ID->getString() + |
| 1708 | "': IDs have conflicting override values"); |
| 1709 | } |
| 1710 | continue; |
| 1711 | } else if (SrcBehaviorValue == Module::Override) { |
| 1712 | // Update the destination flag to that of the source. |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1713 | DstModFlags->setOperand(DstIndex, SrcOp); |
| 1714 | Flags[ID].first = SrcOp; |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1715 | continue; |
| 1716 | } |
| 1717 | |
| 1718 | // Diagnose inconsistent merge behavior types. |
| 1719 | if (SrcBehaviorValue != DstBehaviorValue) { |
| 1720 | HasErr |= emitError("linking module flags '" + ID->getString() + |
| 1721 | "': IDs have conflicting behaviors"); |
| 1722 | continue; |
| 1723 | } |
| 1724 | |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1725 | auto replaceDstValue = [&](MDNode *New) { |
| 1726 | Metadata *FlagOps[] = {DstOp->getOperand(0), ID, New}; |
| 1727 | MDNode *Flag = MDNode::get(DstM->getContext(), FlagOps); |
| 1728 | DstModFlags->setOperand(DstIndex, Flag); |
| 1729 | Flags[ID].first = Flag; |
| 1730 | }; |
| 1731 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1732 | // Perform the merge for standard behavior types. |
| 1733 | switch (SrcBehaviorValue) { |
| 1734 | case Module::Require: |
Craig Topper | 2a30d78 | 2014-06-18 05:05:13 +0000 | [diff] [blame] | 1735 | case Module::Override: llvm_unreachable("not possible"); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1736 | case Module::Error: { |
| 1737 | // Emit an error if the values differ. |
| 1738 | if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
| 1739 | HasErr |= emitError("linking module flags '" + ID->getString() + |
| 1740 | "': IDs have conflicting values"); |
| 1741 | } |
| 1742 | continue; |
| 1743 | } |
| 1744 | case Module::Warning: { |
| 1745 | // Emit a warning if the values differ. |
| 1746 | if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1747 | emitWarning("linking module flags '" + ID->getString() + |
| 1748 | "': IDs have conflicting values"); |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1749 | } |
| 1750 | continue; |
| 1751 | } |
Daniel Dunbar | d77d9fb | 2013-01-16 21:38:56 +0000 | [diff] [blame] | 1752 | case Module::Append: { |
| 1753 | MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2)); |
| 1754 | MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2)); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1755 | SmallVector<Metadata *, 8> MDs; |
| 1756 | MDs.reserve(DstValue->getNumOperands() + SrcValue->getNumOperands()); |
Benjamin Kramer | 6cd780f | 2015-02-17 15:29:18 +0000 | [diff] [blame] | 1757 | MDs.append(DstValue->op_begin(), DstValue->op_end()); |
| 1758 | MDs.append(SrcValue->op_begin(), SrcValue->op_end()); |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1759 | |
| 1760 | replaceDstValue(MDNode::get(DstM->getContext(), MDs)); |
Daniel Dunbar | d77d9fb | 2013-01-16 21:38:56 +0000 | [diff] [blame] | 1761 | break; |
| 1762 | } |
| 1763 | case Module::AppendUnique: { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1764 | SmallSetVector<Metadata *, 16> Elts; |
Daniel Dunbar | d77d9fb | 2013-01-16 21:38:56 +0000 | [diff] [blame] | 1765 | MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2)); |
| 1766 | MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2)); |
Benjamin Kramer | 6cd780f | 2015-02-17 15:29:18 +0000 | [diff] [blame] | 1767 | Elts.insert(DstValue->op_begin(), DstValue->op_end()); |
| 1768 | Elts.insert(SrcValue->op_begin(), SrcValue->op_end()); |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1769 | |
| 1770 | replaceDstValue(MDNode::get(DstM->getContext(), |
| 1771 | makeArrayRef(Elts.begin(), Elts.end()))); |
Daniel Dunbar | d77d9fb | 2013-01-16 21:38:56 +0000 | [diff] [blame] | 1772 | break; |
| 1773 | } |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1774 | } |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1775 | } |
| 1776 | |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1777 | // Check all of the requirements. |
| 1778 | for (unsigned I = 0, E = Requirements.size(); I != E; ++I) { |
| 1779 | MDNode *Requirement = Requirements[I]; |
| 1780 | MDString *Flag = cast<MDString>(Requirement->getOperand(0)); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1781 | Metadata *ReqValue = Requirement->getOperand(1); |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1782 | |
Duncan P. N. Exon Smith | df55d8b | 2015-01-07 21:32:27 +0000 | [diff] [blame] | 1783 | MDNode *Op = Flags[Flag].first; |
Daniel Dunbar | 0ec72bb | 2013-01-16 18:39:23 +0000 | [diff] [blame] | 1784 | if (!Op || Op->getOperand(2) != ReqValue) { |
| 1785 | HasErr |= emitError("linking module flags '" + Flag->getString() + |
| 1786 | "': does not have the required value"); |
| 1787 | continue; |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1788 | } |
| 1789 | } |
| 1790 | |
| 1791 | return HasErr; |
| 1792 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1793 | |
Akira Hatanaka | c43df51 | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 1794 | // This function returns true if the triples match. |
| 1795 | static bool triplesMatch(const Triple &T0, const Triple &T1) { |
| 1796 | // If vendor is apple, ignore the version number. |
| 1797 | if (T0.getVendor() == Triple::Apple) |
| 1798 | return T0.getArch() == T1.getArch() && |
| 1799 | T0.getSubArch() == T1.getSubArch() && |
| 1800 | T0.getVendor() == T1.getVendor() && |
| 1801 | T0.getOS() == T1.getOS(); |
| 1802 | |
| 1803 | return T0 == T1; |
| 1804 | } |
| 1805 | |
| 1806 | // This function returns the merged triple. |
| 1807 | static std::string mergeTriples(const Triple &SrcTriple, const Triple &DstTriple) { |
| 1808 | // If vendor is apple, pick the triple with the larger version number. |
| 1809 | if (SrcTriple.getVendor() == Triple::Apple) |
| 1810 | if (DstTriple.isOSVersionLT(SrcTriple)) |
| 1811 | return SrcTriple.str(); |
| 1812 | |
| 1813 | return DstTriple.str(); |
| 1814 | } |
| 1815 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1816 | bool ModuleLinker::run() { |
Bill Wendling | 66f0241 | 2012-02-11 11:38:06 +0000 | [diff] [blame] | 1817 | assert(DstM && "Null destination module"); |
| 1818 | assert(SrcM && "Null source module"); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1819 | |
| 1820 | // Inherit the target data from the source module if the destination module |
| 1821 | // doesn't have one already. |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1822 | if (DstM->getDataLayout().isDefault()) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1823 | DstM->setDataLayout(SrcM->getDataLayout()); |
| 1824 | |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1825 | if (SrcM->getDataLayout() != DstM->getDataLayout()) { |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1826 | emitWarning("Linking two modules of different data layouts: '" + |
| 1827 | SrcM->getModuleIdentifier() + "' is '" + |
| 1828 | SrcM->getDataLayoutStr() + "' whereas '" + |
| 1829 | DstM->getModuleIdentifier() + "' is '" + |
| 1830 | DstM->getDataLayoutStr() + "'\n"); |
Eli Bendersky | e17f370 | 2014-02-06 18:01:56 +0000 | [diff] [blame] | 1831 | } |
Akira Hatanaka | c43df51 | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 1832 | |
| 1833 | // Copy the target triple from the source to dest if the dest's is empty. |
| 1834 | if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty()) |
| 1835 | DstM->setTargetTriple(SrcM->getTargetTriple()); |
| 1836 | |
| 1837 | Triple SrcTriple(SrcM->getTargetTriple()), DstTriple(DstM->getTargetTriple()); |
| 1838 | |
| 1839 | if (!SrcM->getTargetTriple().empty() && !triplesMatch(SrcTriple, DstTriple)) |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 1840 | emitWarning("Linking two modules of different target triples: " + |
| 1841 | SrcM->getModuleIdentifier() + "' is '" + |
| 1842 | SrcM->getTargetTriple() + "' whereas '" + |
| 1843 | DstM->getModuleIdentifier() + "' is '" + |
| 1844 | DstM->getTargetTriple() + "'\n"); |
Akira Hatanaka | c43df51 | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 1845 | |
| 1846 | DstM->setTargetTriple(mergeTriples(SrcTriple, DstTriple)); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1847 | |
| 1848 | // Append the module inline asm string. |
| 1849 | if (!SrcM->getModuleInlineAsm().empty()) { |
| 1850 | if (DstM->getModuleInlineAsm().empty()) |
| 1851 | DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm()); |
| 1852 | else |
| 1853 | DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+ |
| 1854 | SrcM->getModuleInlineAsm()); |
| 1855 | } |
| 1856 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1857 | // Loop over all of the linked values to compute type mappings. |
| 1858 | computeTypeMapping(); |
| 1859 | |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 1860 | ComdatsChosen.clear(); |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 1861 | for (const auto &SMEC : SrcM->getComdatSymbolTable()) { |
David Majnemer | dad0a64 | 2014-06-27 18:19:56 +0000 | [diff] [blame] | 1862 | const Comdat &C = SMEC.getValue(); |
| 1863 | if (ComdatsChosen.count(&C)) |
| 1864 | continue; |
| 1865 | Comdat::SelectionKind SK; |
| 1866 | bool LinkFromSrc; |
| 1867 | if (getComdatResult(&C, SK, LinkFromSrc)) |
| 1868 | return true; |
| 1869 | ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc); |
| 1870 | } |
| 1871 | |
Duncan P. N. Exon Smith | 09d84ad | 2014-08-12 16:46:37 +0000 | [diff] [blame] | 1872 | // Upgrade mismatched global arrays. |
| 1873 | upgradeMismatchedGlobals(); |
| 1874 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1875 | // Insert all of the globals in src into the DstM module... without linking |
| 1876 | // initializers (which could refer to functions not yet mapped over). |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1877 | for (GlobalVariable &GV : SrcM->globals()) |
| 1878 | if (linkGlobalValueProto(&GV)) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1879 | return true; |
| 1880 | |
| 1881 | // Link the functions together between the two modules, without doing function |
| 1882 | // bodies... this just adds external function prototypes to the DstM |
| 1883 | // function... We do this so that when we begin processing function bodies, |
| 1884 | // all of the global values that may be referenced are available in our |
| 1885 | // ValueMap. |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1886 | for (Function &F :*SrcM) |
| 1887 | if (linkGlobalValueProto(&F)) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1888 | return true; |
| 1889 | |
| 1890 | // If there were any aliases, link them now. |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1891 | for (GlobalAlias &GA : SrcM->aliases()) |
| 1892 | if (linkGlobalValueProto(&GA)) |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1893 | return true; |
| 1894 | |
Yaron Keren | 3bf3f1f | 2015-06-15 16:20:16 +0000 | [diff] [blame] | 1895 | for (const AppendingVarInfo &AppendingVar : AppendingVars) |
| 1896 | linkAppendingVarInit(AppendingVar); |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1897 | |
Rafael Espindola | beadd56 | 2014-12-08 18:05:48 +0000 | [diff] [blame] | 1898 | for (const auto &Entry : DstM->getComdatSymbolTable()) { |
| 1899 | const Comdat &C = Entry.getValue(); |
| 1900 | if (C.getSelectionKind() == Comdat::Any) |
| 1901 | continue; |
| 1902 | const GlobalValue *GV = SrcM->getNamedValue(C.getName()); |
Peter Collingbourne | ea45d83 | 2015-06-22 21:46:51 +0000 | [diff] [blame] | 1903 | if (GV) |
Duncan P. N. Exon Smith | 4fb46cb | 2015-08-03 17:09:38 +0000 | [diff] [blame] | 1904 | MapValue(GV, ValueMap, RF_MoveDistinctMDs, &TypeMap, &ValMaterializer); |
Rafael Espindola | beadd56 | 2014-12-08 18:05:48 +0000 | [diff] [blame] | 1905 | } |
| 1906 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1907 | // Link in the function bodies that are defined in the source module into |
| 1908 | // DstM. |
Rafael Espindola | f97d0cb | 2014-12-08 13:35:09 +0000 | [diff] [blame] | 1909 | for (Function &SF : *SrcM) { |
Rafael Espindola | d4bcefc | 2014-10-24 18:13:04 +0000 | [diff] [blame] | 1910 | // Skip if no body (function is external). |
Rafael Espindola | f97d0cb | 2014-12-08 13:35:09 +0000 | [diff] [blame] | 1911 | if (SF.isDeclaration()) |
Rafael Espindola | d4bcefc | 2014-10-24 18:13:04 +0000 | [diff] [blame] | 1912 | continue; |
| 1913 | |
Rafael Espindola | f97d0cb | 2014-12-08 13:35:09 +0000 | [diff] [blame] | 1914 | // Skip if not linking from source. |
| 1915 | if (DoNotLinkFromSource.count(&SF)) |
| 1916 | continue; |
| 1917 | |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1918 | if (linkGlobalValueBody(SF)) |
Rafael Espindola | 40d7ebe | 2014-12-08 13:29:33 +0000 | [diff] [blame] | 1919 | return true; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1920 | } |
| 1921 | |
| 1922 | // Resolve all uses of aliases with aliasees. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1923 | for (GlobalAlias &Src : SrcM->aliases()) { |
| 1924 | if (DoNotLinkFromSource.count(&Src)) |
| 1925 | continue; |
| 1926 | linkGlobalValueBody(Src); |
| 1927 | } |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 1928 | |
Bill Wendling | 91686d6 | 2014-01-16 06:29:36 +0000 | [diff] [blame] | 1929 | // Update the initializers in the DstM module now that all globals that may |
| 1930 | // be referenced are in DstM. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1931 | for (GlobalVariable &Src : SrcM->globals()) { |
| 1932 | // Only process initialized GV's or ones not already in dest. |
| 1933 | if (!Src.hasInitializer() || DoNotLinkFromSource.count(&Src)) |
| 1934 | continue; |
| 1935 | linkGlobalValueBody(Src); |
| 1936 | } |
Bill Wendling | 91686d6 | 2014-01-16 06:29:36 +0000 | [diff] [blame] | 1937 | |
Tanya Lattner | 0a48b87 | 2011-11-02 00:24:56 +0000 | [diff] [blame] | 1938 | // Process vector of lazily linked in functions. |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1939 | while (!LazilyLinkGlobalValues.empty()) { |
| 1940 | GlobalValue *SGV = LazilyLinkGlobalValues.back(); |
| 1941 | LazilyLinkGlobalValues.pop_back(); |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 1942 | if (isPerformingImport() && !doImportAsDefinition(SGV)) |
| 1943 | continue; |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1944 | |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 1945 | // Skip declarations that ValueMaterializer may have created in |
| 1946 | // case we link in only some of SrcM. |
| 1947 | if (shouldLinkOnlyNeeded() && SGV->isDeclaration()) |
| 1948 | continue; |
| 1949 | |
Rafael Espindola | 9573a9c | 2014-12-16 22:29:43 +0000 | [diff] [blame] | 1950 | assert(!SGV->isDeclaration() && "users should not pass down decls"); |
Rafael Espindola | ef23711 | 2014-12-08 18:45:16 +0000 | [diff] [blame] | 1951 | if (linkGlobalValueBody(*SGV)) |
Rafael Espindola | 40d7ebe | 2014-12-08 13:29:33 +0000 | [diff] [blame] | 1952 | return true; |
Rafael Espindola | 28a2451 | 2014-12-05 21:04:36 +0000 | [diff] [blame] | 1953 | } |
Rafael Espindola | ed6dc37 | 2014-05-09 14:39:25 +0000 | [diff] [blame] | 1954 | |
Teresa Johnson | 1063293 | 2015-11-06 17:50:53 +0000 | [diff] [blame] | 1955 | // Note that we are done linking global value bodies. This prevents |
| 1956 | // metadata linking from creating new references. |
| 1957 | DoneLinkingBodies = true; |
| 1958 | |
Teresa Johnson | 189b252 | 2015-11-06 17:50:48 +0000 | [diff] [blame] | 1959 | // Remap all of the named MDNodes in Src into the DstM module. We do this |
| 1960 | // after linking GlobalValues so that MDNodes that reference GlobalValues |
| 1961 | // are properly remapped. |
| 1962 | linkNamedMDNodes(); |
| 1963 | |
| 1964 | // Merge the module flags into the DstM module. |
| 1965 | if (linkModuleFlagsMetadata()) |
| 1966 | return true; |
| 1967 | |
Anton Korobeynikov | 2609888 | 2008-03-05 23:21:39 +0000 | [diff] [blame] | 1968 | return false; |
| 1969 | } |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 1970 | |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 1971 | Linker::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P) |
| 1972 | : ETypes(E), IsPacked(P) {} |
| 1973 | |
| 1974 | Linker::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST) |
| 1975 | : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} |
| 1976 | |
| 1977 | bool Linker::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const { |
| 1978 | if (IsPacked != That.IsPacked) |
| 1979 | return false; |
| 1980 | if (ETypes != That.ETypes) |
| 1981 | return false; |
| 1982 | return true; |
| 1983 | } |
| 1984 | |
| 1985 | bool Linker::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const { |
| 1986 | return !this->operator==(That); |
| 1987 | } |
| 1988 | |
| 1989 | StructType *Linker::StructTypeKeyInfo::getEmptyKey() { |
| 1990 | return DenseMapInfo<StructType *>::getEmptyKey(); |
| 1991 | } |
| 1992 | |
| 1993 | StructType *Linker::StructTypeKeyInfo::getTombstoneKey() { |
| 1994 | return DenseMapInfo<StructType *>::getTombstoneKey(); |
| 1995 | } |
| 1996 | |
| 1997 | unsigned Linker::StructTypeKeyInfo::getHashValue(const KeyTy &Key) { |
| 1998 | return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), |
| 1999 | Key.IsPacked); |
| 2000 | } |
| 2001 | |
| 2002 | unsigned Linker::StructTypeKeyInfo::getHashValue(const StructType *ST) { |
| 2003 | return getHashValue(KeyTy(ST)); |
| 2004 | } |
| 2005 | |
| 2006 | bool Linker::StructTypeKeyInfo::isEqual(const KeyTy &LHS, |
| 2007 | const StructType *RHS) { |
| 2008 | if (RHS == getEmptyKey() || RHS == getTombstoneKey()) |
| 2009 | return false; |
| 2010 | return LHS == KeyTy(RHS); |
| 2011 | } |
| 2012 | |
| 2013 | bool Linker::StructTypeKeyInfo::isEqual(const StructType *LHS, |
| 2014 | const StructType *RHS) { |
| 2015 | if (RHS == getEmptyKey()) |
| 2016 | return LHS == getEmptyKey(); |
| 2017 | |
| 2018 | if (RHS == getTombstoneKey()) |
| 2019 | return LHS == getTombstoneKey(); |
| 2020 | |
| 2021 | return KeyTy(LHS) == KeyTy(RHS); |
| 2022 | } |
| 2023 | |
| 2024 | void Linker::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) { |
| 2025 | assert(!Ty->isOpaque()); |
Benjamin Kramer | 3280a5d | 2014-12-06 19:22:54 +0000 | [diff] [blame] | 2026 | NonOpaqueStructTypes.insert(Ty); |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 2027 | } |
| 2028 | |
Rafael Espindola | a5b9e1c | 2015-03-06 00:50:21 +0000 | [diff] [blame] | 2029 | void Linker::IdentifiedStructTypeSet::switchToNonOpaque(StructType *Ty) { |
| 2030 | assert(!Ty->isOpaque()); |
| 2031 | NonOpaqueStructTypes.insert(Ty); |
| 2032 | bool Removed = OpaqueStructTypes.erase(Ty); |
| 2033 | (void)Removed; |
| 2034 | assert(Removed); |
| 2035 | } |
| 2036 | |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 2037 | void Linker::IdentifiedStructTypeSet::addOpaque(StructType *Ty) { |
| 2038 | assert(Ty->isOpaque()); |
| 2039 | OpaqueStructTypes.insert(Ty); |
| 2040 | } |
| 2041 | |
| 2042 | StructType * |
| 2043 | Linker::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, |
| 2044 | bool IsPacked) { |
| 2045 | Linker::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); |
| 2046 | auto I = NonOpaqueStructTypes.find_as(Key); |
| 2047 | if (I == NonOpaqueStructTypes.end()) |
| 2048 | return nullptr; |
Benjamin Kramer | 3280a5d | 2014-12-06 19:22:54 +0000 | [diff] [blame] | 2049 | return *I; |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 2050 | } |
| 2051 | |
| 2052 | bool Linker::IdentifiedStructTypeSet::hasType(StructType *Ty) { |
| 2053 | if (Ty->isOpaque()) |
| 2054 | return OpaqueStructTypes.count(Ty); |
| 2055 | auto I = NonOpaqueStructTypes.find(Ty); |
| 2056 | if (I == NonOpaqueStructTypes.end()) |
| 2057 | return false; |
Benjamin Kramer | 3280a5d | 2014-12-06 19:22:54 +0000 | [diff] [blame] | 2058 | return *I == Ty; |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 2059 | } |
| 2060 | |
Rafael Espindola | 5cb9c82 | 2014-11-17 20:51:01 +0000 | [diff] [blame] | 2061 | void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) { |
| 2062 | this->Composite = M; |
| 2063 | this->DiagnosticHandler = DiagnosticHandler; |
Rafael Espindola | a4e85e3 | 2014-12-01 16:32:20 +0000 | [diff] [blame] | 2064 | |
| 2065 | TypeFinder StructTypes; |
| 2066 | StructTypes.run(*M, true); |
Rafael Espindola | 31ad468 | 2014-12-03 22:36:37 +0000 | [diff] [blame] | 2067 | for (StructType *Ty : StructTypes) { |
| 2068 | if (Ty->isOpaque()) |
| 2069 | IdentifiedStructTypes.addOpaque(Ty); |
| 2070 | else |
| 2071 | IdentifiedStructTypes.addNonOpaque(Ty); |
| 2072 | } |
Rafael Espindola | aa9918a | 2013-05-04 05:05:18 +0000 | [diff] [blame] | 2073 | } |
Rafael Espindola | 3df61b7 | 2013-05-04 03:48:37 +0000 | [diff] [blame] | 2074 | |
Rafael Espindola | 5cb9c82 | 2014-11-17 20:51:01 +0000 | [diff] [blame] | 2075 | Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) { |
| 2076 | init(M, DiagnosticHandler); |
| 2077 | } |
| 2078 | |
| 2079 | Linker::Linker(Module *M) { |
| 2080 | init(M, [this](const DiagnosticInfo &DI) { |
| 2081 | Composite->getContext().diagnose(DI); |
| 2082 | }); |
| 2083 | } |
| 2084 | |
Bill Wendling | 91e6f6e | 2013-10-16 08:59:57 +0000 | [diff] [blame] | 2085 | void Linker::deleteModule() { |
| 2086 | delete Composite; |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 2087 | Composite = nullptr; |
Bill Wendling | 91e6f6e | 2013-10-16 08:59:57 +0000 | [diff] [blame] | 2088 | } |
| 2089 | |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 2090 | bool Linker::linkInModule(Module *Src, unsigned Flags, FunctionInfoIndex *Index, |
| 2091 | Function *FuncToImport) { |
Rafael Espindola | a4e85e3 | 2014-12-01 16:32:20 +0000 | [diff] [blame] | 2092 | ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, |
Teresa Johnson | c7ed52f | 2015-11-03 00:14:15 +0000 | [diff] [blame] | 2093 | DiagnosticHandler, Flags, Index, FuncToImport); |
Manman Ren | dab999d | 2015-01-20 19:24:59 +0000 | [diff] [blame] | 2094 | bool RetCode = TheLinker.run(); |
| 2095 | Composite->dropTriviallyDeadConstantArrays(); |
| 2096 | return RetCode; |
Rafael Espindola | 3df61b7 | 2013-05-04 03:48:37 +0000 | [diff] [blame] | 2097 | } |
| 2098 | |
Manman Ren | 6487ce9 | 2015-02-24 00:45:56 +0000 | [diff] [blame] | 2099 | void Linker::setModule(Module *Dst) { |
| 2100 | init(Dst, DiagnosticHandler); |
| 2101 | } |
| 2102 | |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 2103 | //===----------------------------------------------------------------------===// |
| 2104 | // LinkModules entrypoint. |
| 2105 | //===----------------------------------------------------------------------===// |
| 2106 | |
Rafael Espindola | 18c8941 | 2014-10-27 02:35:46 +0000 | [diff] [blame] | 2107 | /// This function links two modules together, with the resulting Dest module |
| 2108 | /// modified to be the composite of the two input modules. If an error occurs, |
| 2109 | /// true is returned and ErrorMsg (if not null) is set to indicate the problem. |
| 2110 | /// Upon failure, the Dest module could be in a modified state, and shouldn't be |
| 2111 | /// relied on to be consistent. |
Rafael Espindola | 9f8eff3 | 2014-10-28 00:24:16 +0000 | [diff] [blame] | 2112 | bool Linker::LinkModules(Module *Dest, Module *Src, |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 2113 | DiagnosticHandlerFunction DiagnosticHandler, |
| 2114 | unsigned Flags) { |
Rafael Espindola | 4160f5d | 2014-10-27 23:02:10 +0000 | [diff] [blame] | 2115 | Linker L(Dest, DiagnosticHandler); |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 2116 | return L.linkInModule(Src, Flags); |
Rafael Espindola | 4160f5d | 2014-10-27 23:02:10 +0000 | [diff] [blame] | 2117 | } |
| 2118 | |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 2119 | bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Flags) { |
Rafael Espindola | 287f18b | 2013-05-04 04:08:02 +0000 | [diff] [blame] | 2120 | Linker L(Dest); |
Artem Belevich | 020d4fb | 2015-09-01 17:55:55 +0000 | [diff] [blame] | 2121 | return L.linkInModule(Src, Flags); |
Reid Spencer | 361e513 | 2004-11-12 20:37:43 +0000 | [diff] [blame] | 2122 | } |
Bill Wendling | a3aeb98 | 2012-05-09 08:55:40 +0000 | [diff] [blame] | 2123 | |
| 2124 | //===----------------------------------------------------------------------===// |
| 2125 | // C API. |
| 2126 | //===----------------------------------------------------------------------===// |
| 2127 | |
| 2128 | LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, |
Juergen Ributzka | a57d588 | 2015-03-02 18:59:38 +0000 | [diff] [blame] | 2129 | LLVMLinkerMode Unused, char **OutMessages) { |
Rafael Espindola | 98ab63c | 2014-10-25 04:31:08 +0000 | [diff] [blame] | 2130 | Module *D = unwrap(Dest); |
Rafael Espindola | 98ab63c | 2014-10-25 04:31:08 +0000 | [diff] [blame] | 2131 | std::string Message; |
Rafael Espindola | 4160f5d | 2014-10-27 23:02:10 +0000 | [diff] [blame] | 2132 | raw_string_ostream Stream(Message); |
| 2133 | DiagnosticPrinterRawOStream DP(Stream); |
| 2134 | |
| 2135 | LLVMBool Result = Linker::LinkModules( |
Rafael Espindola | 9f8eff3 | 2014-10-28 00:24:16 +0000 | [diff] [blame] | 2136 | D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); }); |
Rafael Espindola | 98ab63c | 2014-10-25 04:31:08 +0000 | [diff] [blame] | 2137 | |
Eli Bendersky | ff715e2 | 2015-06-12 23:26:42 +0000 | [diff] [blame] | 2138 | if (OutMessages && Result) { |
| 2139 | Stream.flush(); |
Rafael Espindola | 98ab63c | 2014-10-25 04:31:08 +0000 | [diff] [blame] | 2140 | *OutMessages = strdup(Message.c_str()); |
Eli Bendersky | ff715e2 | 2015-06-12 23:26:42 +0000 | [diff] [blame] | 2141 | } |
Bill Wendling | a3aeb98 | 2012-05-09 08:55:40 +0000 | [diff] [blame] | 2142 | return Result; |
| 2143 | } |