Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1 | //===- lib/Linker/IRMover.cpp ---------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/Linker/IRMover.h" |
| 11 | #include "LinkDiagnosticInfo.h" |
| 12 | #include "llvm/ADT/SetVector.h" |
| 13 | #include "llvm/ADT/SmallString.h" |
| 14 | #include "llvm/ADT/Triple.h" |
| 15 | #include "llvm/IR/Constants.h" |
Teresa Johnson | 0e7c82c | 2015-12-18 17:51:37 +0000 | [diff] [blame] | 16 | #include "llvm/IR/DebugInfo.h" |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 17 | #include "llvm/IR/DiagnosticPrinter.h" |
Teresa Johnson | e5a6191 | 2015-12-17 17:14:09 +0000 | [diff] [blame] | 18 | #include "llvm/IR/GVMaterializer.h" |
Artur Pilipenko | 6c7a8ab | 2016-06-24 15:10:29 +0000 | [diff] [blame] | 19 | #include "llvm/IR/Intrinsics.h" |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 20 | #include "llvm/IR/TypeFinder.h" |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Error.h" |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 22 | #include "llvm/Transforms/Utils/Cloning.h" |
Benjamin Kramer | 82de7d3 | 2016-05-27 14:27:24 +0000 | [diff] [blame] | 23 | #include <utility> |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 24 | using namespace llvm; |
| 25 | |
| 26 | //===----------------------------------------------------------------------===// |
| 27 | // TypeMap implementation. |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
| 30 | namespace { |
| 31 | class TypeMapTy : public ValueMapTypeRemapper { |
| 32 | /// This is a mapping from a source type to a destination type to use. |
| 33 | DenseMap<Type *, Type *> MappedTypes; |
| 34 | |
| 35 | /// When checking to see if two subgraphs are isomorphic, we speculatively |
| 36 | /// add types to MappedTypes, but keep track of them here in case we need to |
| 37 | /// roll back. |
| 38 | SmallVector<Type *, 16> SpeculativeTypes; |
| 39 | |
| 40 | SmallVector<StructType *, 16> SpeculativeDstOpaqueTypes; |
| 41 | |
| 42 | /// This is a list of non-opaque structs in the source module that are mapped |
| 43 | /// to an opaque struct in the destination module. |
| 44 | SmallVector<StructType *, 16> SrcDefinitionsToResolve; |
| 45 | |
| 46 | /// This is the set of opaque types in the destination modules who are |
| 47 | /// getting a body from the source module. |
| 48 | SmallPtrSet<StructType *, 16> DstResolvedOpaqueTypes; |
| 49 | |
| 50 | public: |
| 51 | TypeMapTy(IRMover::IdentifiedStructTypeSet &DstStructTypesSet) |
| 52 | : DstStructTypesSet(DstStructTypesSet) {} |
| 53 | |
| 54 | IRMover::IdentifiedStructTypeSet &DstStructTypesSet; |
| 55 | /// Indicate that the specified type in the destination module is conceptually |
| 56 | /// equivalent to the specified type in the source module. |
| 57 | void addTypeMapping(Type *DstTy, Type *SrcTy); |
| 58 | |
| 59 | /// Produce a body for an opaque type in the dest module from a type |
| 60 | /// definition in the source module. |
| 61 | void linkDefinedTypeBodies(); |
| 62 | |
| 63 | /// Return the mapped type to use for the specified input type from the |
| 64 | /// source module. |
| 65 | Type *get(Type *SrcTy); |
| 66 | Type *get(Type *SrcTy, SmallPtrSet<StructType *, 8> &Visited); |
| 67 | |
| 68 | void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); |
| 69 | |
| 70 | FunctionType *get(FunctionType *T) { |
| 71 | return cast<FunctionType>(get((Type *)T)); |
| 72 | } |
| 73 | |
| 74 | private: |
| 75 | Type *remapType(Type *SrcTy) override { return get(SrcTy); } |
| 76 | |
| 77 | bool areTypesIsomorphic(Type *DstTy, Type *SrcTy); |
| 78 | }; |
| 79 | } |
| 80 | |
| 81 | void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) { |
| 82 | assert(SpeculativeTypes.empty()); |
| 83 | assert(SpeculativeDstOpaqueTypes.empty()); |
| 84 | |
| 85 | // Check to see if these types are recursively isomorphic and establish a |
| 86 | // mapping between them if so. |
| 87 | if (!areTypesIsomorphic(DstTy, SrcTy)) { |
| 88 | // Oops, they aren't isomorphic. Just discard this request by rolling out |
| 89 | // any speculative mappings we've established. |
| 90 | for (Type *Ty : SpeculativeTypes) |
| 91 | MappedTypes.erase(Ty); |
| 92 | |
| 93 | SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() - |
| 94 | SpeculativeDstOpaqueTypes.size()); |
| 95 | for (StructType *Ty : SpeculativeDstOpaqueTypes) |
| 96 | DstResolvedOpaqueTypes.erase(Ty); |
| 97 | } else { |
Eugene Leviant | 41e4595 | 2018-01-25 08:35:52 +0000 | [diff] [blame] | 98 | // SrcTy and DstTy are recursively ismorphic. We clear names of SrcTy |
| 99 | // and all its descendants to lower amount of renaming in LLVM context |
| 100 | // Renaming occurs because we load all source modules to the same context |
| 101 | // and declaration with existing name gets renamed (i.e Foo -> Foo.42). |
| 102 | // As a result we may get several different types in the destination |
| 103 | // module, which are in fact the same. |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 104 | for (Type *Ty : SpeculativeTypes) |
| 105 | if (auto *STy = dyn_cast<StructType>(Ty)) |
| 106 | if (STy->hasName()) |
| 107 | STy->setName(""); |
| 108 | } |
| 109 | SpeculativeTypes.clear(); |
| 110 | SpeculativeDstOpaqueTypes.clear(); |
| 111 | } |
| 112 | |
| 113 | /// Recursively walk this pair of types, returning true if they are isomorphic, |
| 114 | /// false if they are not. |
| 115 | bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) { |
| 116 | // Two types with differing kinds are clearly not isomorphic. |
| 117 | if (DstTy->getTypeID() != SrcTy->getTypeID()) |
| 118 | return false; |
| 119 | |
| 120 | // If we have an entry in the MappedTypes table, then we have our answer. |
| 121 | Type *&Entry = MappedTypes[SrcTy]; |
| 122 | if (Entry) |
| 123 | return Entry == DstTy; |
| 124 | |
| 125 | // Two identical types are clearly isomorphic. Remember this |
| 126 | // non-speculatively. |
| 127 | if (DstTy == SrcTy) { |
| 128 | Entry = DstTy; |
| 129 | return true; |
| 130 | } |
| 131 | |
| 132 | // Okay, we have two types with identical kinds that we haven't seen before. |
| 133 | |
| 134 | // If this is an opaque struct type, special case it. |
| 135 | if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) { |
| 136 | // Mapping an opaque type to any struct, just keep the dest struct. |
| 137 | if (SSTy->isOpaque()) { |
| 138 | Entry = DstTy; |
| 139 | SpeculativeTypes.push_back(SrcTy); |
| 140 | return true; |
| 141 | } |
| 142 | |
| 143 | // Mapping a non-opaque source type to an opaque dest. If this is the first |
| 144 | // type that we're mapping onto this destination type then we succeed. Keep |
| 145 | // the dest, but fill it in later. If this is the second (different) type |
| 146 | // that we're trying to map onto the same opaque type then we fail. |
| 147 | if (cast<StructType>(DstTy)->isOpaque()) { |
| 148 | // We can only map one source type onto the opaque destination type. |
| 149 | if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second) |
| 150 | return false; |
| 151 | SrcDefinitionsToResolve.push_back(SSTy); |
| 152 | SpeculativeTypes.push_back(SrcTy); |
| 153 | SpeculativeDstOpaqueTypes.push_back(cast<StructType>(DstTy)); |
| 154 | Entry = DstTy; |
| 155 | return true; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | // If the number of subtypes disagree between the two types, then we fail. |
| 160 | if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes()) |
| 161 | return false; |
| 162 | |
| 163 | // Fail if any of the extra properties (e.g. array size) of the type disagree. |
| 164 | if (isa<IntegerType>(DstTy)) |
| 165 | return false; // bitwidth disagrees. |
| 166 | if (PointerType *PT = dyn_cast<PointerType>(DstTy)) { |
| 167 | if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace()) |
| 168 | return false; |
| 169 | |
| 170 | } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) { |
| 171 | if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg()) |
| 172 | return false; |
| 173 | } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) { |
| 174 | StructType *SSTy = cast<StructType>(SrcTy); |
| 175 | if (DSTy->isLiteral() != SSTy->isLiteral() || |
| 176 | DSTy->isPacked() != SSTy->isPacked()) |
| 177 | return false; |
Peter Collingbourne | bc07052 | 2016-12-02 03:20:58 +0000 | [diff] [blame] | 178 | } else if (auto *DSeqTy = dyn_cast<SequentialType>(DstTy)) { |
| 179 | if (DSeqTy->getNumElements() != |
| 180 | cast<SequentialType>(SrcTy)->getNumElements()) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 181 | return false; |
| 182 | } |
| 183 | |
| 184 | // Otherwise, we speculate that these two types will line up and recursively |
| 185 | // check the subelements. |
| 186 | Entry = DstTy; |
| 187 | SpeculativeTypes.push_back(SrcTy); |
| 188 | |
| 189 | for (unsigned I = 0, E = SrcTy->getNumContainedTypes(); I != E; ++I) |
| 190 | if (!areTypesIsomorphic(DstTy->getContainedType(I), |
| 191 | SrcTy->getContainedType(I))) |
| 192 | return false; |
| 193 | |
| 194 | // If everything seems to have lined up, then everything is great. |
| 195 | return true; |
| 196 | } |
| 197 | |
| 198 | void TypeMapTy::linkDefinedTypeBodies() { |
| 199 | SmallVector<Type *, 16> Elements; |
| 200 | for (StructType *SrcSTy : SrcDefinitionsToResolve) { |
| 201 | StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]); |
| 202 | assert(DstSTy->isOpaque()); |
| 203 | |
| 204 | // Map the body of the source type over to a new body for the dest type. |
| 205 | Elements.resize(SrcSTy->getNumElements()); |
| 206 | for (unsigned I = 0, E = Elements.size(); I != E; ++I) |
| 207 | Elements[I] = get(SrcSTy->getElementType(I)); |
| 208 | |
| 209 | DstSTy->setBody(Elements, SrcSTy->isPacked()); |
| 210 | DstStructTypesSet.switchToNonOpaque(DstSTy); |
| 211 | } |
| 212 | SrcDefinitionsToResolve.clear(); |
| 213 | DstResolvedOpaqueTypes.clear(); |
| 214 | } |
| 215 | |
| 216 | void TypeMapTy::finishType(StructType *DTy, StructType *STy, |
| 217 | ArrayRef<Type *> ETypes) { |
| 218 | DTy->setBody(ETypes, STy->isPacked()); |
| 219 | |
| 220 | // Steal STy's name. |
| 221 | if (STy->hasName()) { |
| 222 | SmallString<16> TmpName = STy->getName(); |
| 223 | STy->setName(""); |
| 224 | DTy->setName(TmpName); |
| 225 | } |
| 226 | |
| 227 | DstStructTypesSet.addNonOpaque(DTy); |
| 228 | } |
| 229 | |
| 230 | Type *TypeMapTy::get(Type *Ty) { |
| 231 | SmallPtrSet<StructType *, 8> Visited; |
| 232 | return get(Ty, Visited); |
| 233 | } |
| 234 | |
| 235 | Type *TypeMapTy::get(Type *Ty, SmallPtrSet<StructType *, 8> &Visited) { |
| 236 | // If we already have an entry for this type, return it. |
| 237 | Type **Entry = &MappedTypes[Ty]; |
| 238 | if (*Entry) |
| 239 | return *Entry; |
| 240 | |
| 241 | // These are types that LLVM itself will unique. |
| 242 | bool IsUniqued = !isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral(); |
| 243 | |
| 244 | #ifndef NDEBUG |
| 245 | if (!IsUniqued) { |
| 246 | for (auto &Pair : MappedTypes) { |
| 247 | assert(!(Pair.first != Ty && Pair.second == Ty) && |
| 248 | "mapping to a source type"); |
| 249 | } |
| 250 | } |
| 251 | #endif |
| 252 | |
| 253 | if (!IsUniqued && !Visited.insert(cast<StructType>(Ty)).second) { |
| 254 | StructType *DTy = StructType::create(Ty->getContext()); |
| 255 | return *Entry = DTy; |
| 256 | } |
| 257 | |
| 258 | // If this is not a recursive type, then just map all of the elements and |
| 259 | // then rebuild the type from inside out. |
| 260 | SmallVector<Type *, 4> ElementTypes; |
| 261 | |
| 262 | // If there are no element types to map, then the type is itself. This is |
| 263 | // true for the anonymous {} struct, things like 'float', integers, etc. |
| 264 | if (Ty->getNumContainedTypes() == 0 && IsUniqued) |
| 265 | return *Entry = Ty; |
| 266 | |
| 267 | // Remap all of the elements, keeping track of whether any of them change. |
| 268 | bool AnyChange = false; |
| 269 | ElementTypes.resize(Ty->getNumContainedTypes()); |
| 270 | for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) { |
| 271 | ElementTypes[I] = get(Ty->getContainedType(I), Visited); |
| 272 | AnyChange |= ElementTypes[I] != Ty->getContainedType(I); |
| 273 | } |
| 274 | |
| 275 | // If we found our type while recursively processing stuff, just use it. |
| 276 | Entry = &MappedTypes[Ty]; |
| 277 | if (*Entry) { |
| 278 | if (auto *DTy = dyn_cast<StructType>(*Entry)) { |
| 279 | if (DTy->isOpaque()) { |
| 280 | auto *STy = cast<StructType>(Ty); |
| 281 | finishType(DTy, STy, ElementTypes); |
| 282 | } |
| 283 | } |
| 284 | return *Entry; |
| 285 | } |
| 286 | |
| 287 | // If all of the element types mapped directly over and the type is not |
Hans Wennborg | 2d55d67 | 2016-10-19 20:10:03 +0000 | [diff] [blame] | 288 | // a named struct, then the type is usable as-is. |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 289 | if (!AnyChange && IsUniqued) |
| 290 | return *Entry = Ty; |
| 291 | |
| 292 | // Otherwise, rebuild a modified type. |
| 293 | switch (Ty->getTypeID()) { |
| 294 | default: |
| 295 | llvm_unreachable("unknown derived type to remap"); |
| 296 | case Type::ArrayTyID: |
| 297 | return *Entry = ArrayType::get(ElementTypes[0], |
| 298 | cast<ArrayType>(Ty)->getNumElements()); |
| 299 | case Type::VectorTyID: |
| 300 | return *Entry = VectorType::get(ElementTypes[0], |
| 301 | cast<VectorType>(Ty)->getNumElements()); |
| 302 | case Type::PointerTyID: |
| 303 | return *Entry = PointerType::get(ElementTypes[0], |
| 304 | cast<PointerType>(Ty)->getAddressSpace()); |
| 305 | case Type::FunctionTyID: |
| 306 | return *Entry = FunctionType::get(ElementTypes[0], |
| 307 | makeArrayRef(ElementTypes).slice(1), |
| 308 | cast<FunctionType>(Ty)->isVarArg()); |
| 309 | case Type::StructTyID: { |
| 310 | auto *STy = cast<StructType>(Ty); |
| 311 | bool IsPacked = STy->isPacked(); |
| 312 | if (IsUniqued) |
| 313 | return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked); |
| 314 | |
| 315 | // If the type is opaque, we can just use it directly. |
| 316 | if (STy->isOpaque()) { |
| 317 | DstStructTypesSet.addOpaque(STy); |
| 318 | return *Entry = Ty; |
| 319 | } |
| 320 | |
Rafael Espindola | 9a2bf41 | 2018-02-21 20:12:18 +0000 | [diff] [blame] | 321 | if (StructType *OldT = |
| 322 | DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 323 | STy->setName(""); |
| 324 | return *Entry = OldT; |
| 325 | } |
| 326 | |
| 327 | if (!AnyChange) { |
| 328 | DstStructTypesSet.addNonOpaque(STy); |
| 329 | return *Entry = Ty; |
| 330 | } |
| 331 | |
| 332 | StructType *DTy = StructType::create(Ty->getContext()); |
| 333 | finishType(DTy, STy, ElementTypes); |
| 334 | return *Entry = DTy; |
| 335 | } |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity, |
| 340 | const Twine &Msg) |
| 341 | : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {} |
| 342 | void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; } |
| 343 | |
| 344 | //===----------------------------------------------------------------------===// |
Teresa Johnson | bef5436 | 2015-12-18 19:28:59 +0000 | [diff] [blame] | 345 | // IRLinker implementation. |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 346 | //===----------------------------------------------------------------------===// |
| 347 | |
| 348 | namespace { |
| 349 | class IRLinker; |
| 350 | |
| 351 | /// Creates prototypes for functions that are lazily linked on the fly. This |
| 352 | /// speeds up linking for modules with many/ lazily linked functions of which |
| 353 | /// few get used. |
| 354 | class GlobalValueMaterializer final : public ValueMaterializer { |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 355 | IRLinker &TheIRLinker; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 356 | |
| 357 | public: |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 358 | GlobalValueMaterializer(IRLinker &TheIRLinker) : TheIRLinker(TheIRLinker) {} |
Mehdi Amini | cc8c107 | 2016-05-25 21:03:21 +0000 | [diff] [blame] | 359 | Value *materialize(Value *V) override; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 360 | }; |
| 361 | |
| 362 | class LocalValueMaterializer final : public ValueMaterializer { |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 363 | IRLinker &TheIRLinker; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 364 | |
| 365 | public: |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 366 | LocalValueMaterializer(IRLinker &TheIRLinker) : TheIRLinker(TheIRLinker) {} |
Mehdi Amini | cc8c107 | 2016-05-25 21:03:21 +0000 | [diff] [blame] | 367 | Value *materialize(Value *V) override; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 368 | }; |
| 369 | |
Duncan P. N. Exon Smith | 565a0aa | 2016-04-17 23:30:31 +0000 | [diff] [blame] | 370 | /// Type of the Metadata map in \a ValueToValueMapTy. |
| 371 | typedef DenseMap<const Metadata *, TrackingMDRef> MDMapT; |
| 372 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 373 | /// This is responsible for keeping track of the state used for moving data |
| 374 | /// from SrcM to DstM. |
| 375 | class IRLinker { |
| 376 | Module &DstM; |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 377 | std::unique_ptr<Module> SrcM; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 378 | |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 379 | /// See IRMover::move(). |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 380 | std::function<void(GlobalValue &, IRMover::ValueAdder)> AddLazyFor; |
| 381 | |
| 382 | TypeMapTy TypeMap; |
| 383 | GlobalValueMaterializer GValMaterializer; |
| 384 | LocalValueMaterializer LValMaterializer; |
| 385 | |
Duncan P. N. Exon Smith | 565a0aa | 2016-04-17 23:30:31 +0000 | [diff] [blame] | 386 | /// A metadata map that's shared between IRLinker instances. |
| 387 | MDMapT &SharedMDs; |
| 388 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 389 | /// Mapping of values from what they used to be in Src, to what they are now |
| 390 | /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead |
| 391 | /// due to the use of Value handles which the Linker doesn't actually need, |
| 392 | /// but this allows us to reuse the ValueMapper code. |
| 393 | ValueToValueMapTy ValueMap; |
| 394 | ValueToValueMapTy AliasValueMap; |
| 395 | |
| 396 | DenseSet<GlobalValue *> ValuesToLink; |
| 397 | std::vector<GlobalValue *> Worklist; |
| 398 | |
| 399 | void maybeAdd(GlobalValue *GV) { |
| 400 | if (ValuesToLink.insert(GV).second) |
| 401 | Worklist.push_back(GV); |
| 402 | } |
| 403 | |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 404 | /// Whether we are importing globals for ThinLTO, as opposed to linking the |
| 405 | /// source module. If this flag is set, it means that we can rely on some |
| 406 | /// other object file to define any non-GlobalValue entities defined by the |
| 407 | /// source module. This currently causes us to not link retained types in |
| 408 | /// debug info metadata and module inline asm. |
| 409 | bool IsPerformingImport; |
Teresa Johnson | 4b9b379 | 2016-10-12 18:39:29 +0000 | [diff] [blame] | 410 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 411 | /// Set to true when all global value body linking is complete (including |
| 412 | /// lazy linking). Used to prevent metadata linking from creating new |
| 413 | /// references. |
| 414 | bool DoneLinkingBodies = false; |
| 415 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 416 | /// The Error encountered during materialization. We use an Optional here to |
| 417 | /// avoid needing to manage an unconsumed success value. |
| 418 | Optional<Error> FoundError; |
| 419 | void setError(Error E) { |
| 420 | if (E) |
| 421 | FoundError = std::move(E); |
| 422 | } |
| 423 | |
| 424 | /// Most of the errors produced by this module are inconvertible StringErrors. |
| 425 | /// This convenience function lets us return one of those more easily. |
| 426 | Error stringErr(const Twine &T) { |
| 427 | return make_error<StringError>(T, inconvertibleErrorCode()); |
| 428 | } |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 429 | |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 430 | /// Entry point for mapping values and alternate context for mapping aliases. |
| 431 | ValueMapper Mapper; |
| 432 | unsigned AliasMCID; |
Teresa Johnson | e5a6191 | 2015-12-17 17:14:09 +0000 | [diff] [blame] | 433 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 434 | /// Handles cloning of a global values from the source module into |
| 435 | /// the destination module, including setting the attributes and visibility. |
| 436 | GlobalValue *copyGlobalValueProto(const GlobalValue *SGV, bool ForDefinition); |
| 437 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 438 | void emitWarning(const Twine &Message) { |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 439 | SrcM->getContext().diagnose(LinkDiagnosticInfo(DS_Warning, Message)); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | /// Given a global in the source module, return the global in the |
| 443 | /// destination module that is being linked to, if any. |
| 444 | GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) { |
| 445 | // If the source has no name it can't link. If it has local linkage, |
| 446 | // there is no name match-up going on. |
| 447 | if (!SrcGV->hasName() || SrcGV->hasLocalLinkage()) |
| 448 | return nullptr; |
| 449 | |
| 450 | // Otherwise see if we have a match in the destination module's symtab. |
| 451 | GlobalValue *DGV = DstM.getNamedValue(SrcGV->getName()); |
| 452 | if (!DGV) |
| 453 | return nullptr; |
| 454 | |
| 455 | // If we found a global with the same name in the dest module, but it has |
| 456 | // internal linkage, we are really not doing any linkage here. |
| 457 | if (DGV->hasLocalLinkage()) |
| 458 | return nullptr; |
| 459 | |
| 460 | // Otherwise, we do in fact link to the destination global. |
| 461 | return DGV; |
| 462 | } |
| 463 | |
| 464 | void computeTypeMapping(); |
| 465 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 466 | Expected<Constant *> linkAppendingVarProto(GlobalVariable *DstGV, |
| 467 | const GlobalVariable *SrcGV); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 468 | |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 469 | /// Given the GlobaValue \p SGV in the source module, and the matching |
| 470 | /// GlobalValue \p DGV (if any), return true if the linker will pull \p SGV |
| 471 | /// into the destination module. |
| 472 | /// |
| 473 | /// Note this code may call the client-provided \p AddLazyFor. |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 474 | bool shouldLink(GlobalValue *DGV, GlobalValue &SGV); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 475 | Expected<Constant *> linkGlobalValueProto(GlobalValue *GV, bool ForAlias); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 476 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 477 | Error linkModuleFlagsMetadata(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 478 | |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 479 | void linkGlobalVariable(GlobalVariable &Dst, GlobalVariable &Src); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 480 | Error linkFunctionBody(Function &Dst, Function &Src); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 481 | void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 482 | Error linkGlobalValueBody(GlobalValue &Dst, GlobalValue &Src); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 483 | |
| 484 | /// Functions that take care of cloning a specific global value type |
| 485 | /// into the destination module. |
| 486 | GlobalVariable *copyGlobalVariableProto(const GlobalVariable *SGVar); |
| 487 | Function *copyFunctionProto(const Function *SF); |
| 488 | GlobalValue *copyGlobalAliasProto(const GlobalAlias *SGA); |
| 489 | |
Teresa Johnson | 040cc16 | 2016-12-12 16:09:30 +0000 | [diff] [blame] | 490 | /// When importing for ThinLTO, prevent importing of types listed on |
| 491 | /// the DICompileUnit that we don't need a copy of in the importing |
| 492 | /// module. |
| 493 | void prepareCompileUnitsForImport(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 494 | void linkNamedMDNodes(); |
| 495 | |
| 496 | public: |
Duncan P. N. Exon Smith | 565a0aa | 2016-04-17 23:30:31 +0000 | [diff] [blame] | 497 | IRLinker(Module &DstM, MDMapT &SharedMDs, |
| 498 | IRMover::IdentifiedStructTypeSet &Set, std::unique_ptr<Module> SrcM, |
| 499 | ArrayRef<GlobalValue *> ValuesToLink, |
Teresa Johnson | 4b9b379 | 2016-10-12 18:39:29 +0000 | [diff] [blame] | 500 | std::function<void(GlobalValue &, IRMover::ValueAdder)> AddLazyFor, |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 501 | bool IsPerformingImport) |
Benjamin Kramer | 82de7d3 | 2016-05-27 14:27:24 +0000 | [diff] [blame] | 502 | : DstM(DstM), SrcM(std::move(SrcM)), AddLazyFor(std::move(AddLazyFor)), |
| 503 | TypeMap(Set), GValMaterializer(*this), LValMaterializer(*this), |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 504 | SharedMDs(SharedMDs), IsPerformingImport(IsPerformingImport), |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 505 | Mapper(ValueMap, RF_MoveDistinctMDs | RF_IgnoreMissingLocals, &TypeMap, |
| 506 | &GValMaterializer), |
| 507 | AliasMCID(Mapper.registerAlternateMappingContext(AliasValueMap, |
| 508 | &LValMaterializer)) { |
Duncan P. N. Exon Smith | a4810fa | 2016-04-19 16:57:24 +0000 | [diff] [blame] | 509 | ValueMap.getMDMap() = std::move(SharedMDs); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 510 | for (GlobalValue *GV : ValuesToLink) |
| 511 | maybeAdd(GV); |
Teresa Johnson | 040cc16 | 2016-12-12 16:09:30 +0000 | [diff] [blame] | 512 | if (IsPerformingImport) |
| 513 | prepareCompileUnitsForImport(); |
Teresa Johnson | cc42857 | 2015-12-30 19:32:24 +0000 | [diff] [blame] | 514 | } |
Duncan P. N. Exon Smith | a4810fa | 2016-04-19 16:57:24 +0000 | [diff] [blame] | 515 | ~IRLinker() { SharedMDs = std::move(*ValueMap.getMDMap()); } |
Teresa Johnson | cc42857 | 2015-12-30 19:32:24 +0000 | [diff] [blame] | 516 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 517 | Error run(); |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 518 | Value *materialize(Value *V, bool ForAlias); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 519 | }; |
| 520 | } |
| 521 | |
| 522 | /// The LLVM SymbolTable class autorenames globals that conflict in the symbol |
| 523 | /// table. This is good for all clients except for us. Go through the trouble |
| 524 | /// to force this back. |
| 525 | static void forceRenaming(GlobalValue *GV, StringRef Name) { |
| 526 | // If the global doesn't force its name or if it already has the right name, |
| 527 | // there is nothing for us to do. |
| 528 | if (GV->hasLocalLinkage() || GV->getName() == Name) |
| 529 | return; |
| 530 | |
| 531 | Module *M = GV->getParent(); |
| 532 | |
| 533 | // If there is a conflict, rename the conflict. |
| 534 | if (GlobalValue *ConflictGV = M->getNamedValue(Name)) { |
| 535 | GV->takeName(ConflictGV); |
| 536 | ConflictGV->setName(Name); // This will cause ConflictGV to get renamed |
| 537 | assert(ConflictGV->getName() != Name && "forceRenaming didn't work"); |
| 538 | } else { |
| 539 | GV->setName(Name); // Force the name back |
| 540 | } |
| 541 | } |
| 542 | |
Mehdi Amini | cc8c107 | 2016-05-25 21:03:21 +0000 | [diff] [blame] | 543 | Value *GlobalValueMaterializer::materialize(Value *SGV) { |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 544 | return TheIRLinker.materialize(SGV, false); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 545 | } |
| 546 | |
Mehdi Amini | cc8c107 | 2016-05-25 21:03:21 +0000 | [diff] [blame] | 547 | Value *LocalValueMaterializer::materialize(Value *SGV) { |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 548 | return TheIRLinker.materialize(SGV, true); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 549 | } |
| 550 | |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 551 | Value *IRLinker::materialize(Value *V, bool ForAlias) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 552 | auto *SGV = dyn_cast<GlobalValue>(V); |
| 553 | if (!SGV) |
| 554 | return nullptr; |
| 555 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 556 | Expected<Constant *> NewProto = linkGlobalValueProto(SGV, ForAlias); |
| 557 | if (!NewProto) { |
| 558 | setError(NewProto.takeError()); |
| 559 | return nullptr; |
| 560 | } |
| 561 | if (!*NewProto) |
| 562 | return nullptr; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 563 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 564 | GlobalValue *New = dyn_cast<GlobalValue>(*NewProto); |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 565 | if (!New) |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 566 | return *NewProto; |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 567 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 568 | // If we already created the body, just return. |
| 569 | if (auto *F = dyn_cast<Function>(New)) { |
| 570 | if (!F->isDeclaration()) |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 571 | return New; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 572 | } else if (auto *V = dyn_cast<GlobalVariable>(New)) { |
Duncan P. N. Exon Smith | 0fdaf8c | 2016-04-17 19:40:20 +0000 | [diff] [blame] | 573 | if (V->hasInitializer() || V->hasAppendingLinkage()) |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 574 | return New; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 575 | } else { |
| 576 | auto *A = cast<GlobalAlias>(New); |
| 577 | if (A->getAliasee()) |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 578 | return New; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Mehdi Amini | 3d4f3a0 | 2016-05-25 21:00:44 +0000 | [diff] [blame] | 581 | // When linking a global for an alias, it will always be linked. However we |
Adrian Prantl | 1f9ac96 | 2016-11-14 17:26:32 +0000 | [diff] [blame] | 582 | // need to check if it was not already scheduled to satisfy a reference from a |
Mehdi Amini | 3d4f3a0 | 2016-05-25 21:00:44 +0000 | [diff] [blame] | 583 | // regular global value initializer. We know if it has been schedule if the |
| 584 | // "New" GlobalValue that is mapped here for the alias is the same as the one |
| 585 | // already mapped. If there is an entry in the ValueMap but the value is |
| 586 | // different, it means that the value already had a definition in the |
| 587 | // destination module (linkonce for instance), but we need a new definition |
| 588 | // for the alias ("New" will be different. |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 589 | if (ForAlias && ValueMap.lookup(SGV) == New) |
| 590 | return New; |
Mehdi Amini | 3d4f3a0 | 2016-05-25 21:00:44 +0000 | [diff] [blame] | 591 | |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 592 | if (ForAlias || shouldLink(New, *SGV)) |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 593 | setError(linkGlobalValueBody(*New, *SGV)); |
Mehdi Amini | 53a6672 | 2016-05-25 21:01:51 +0000 | [diff] [blame] | 594 | |
| 595 | return New; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | /// Loop through the global variables in the src module and merge them into the |
| 599 | /// dest module. |
| 600 | GlobalVariable *IRLinker::copyGlobalVariableProto(const GlobalVariable *SGVar) { |
| 601 | // No linking to be performed or linking from the source: simply create an |
| 602 | // identical version of the symbol over in the dest module... the |
| 603 | // initializer will be filled in later by LinkGlobalInits. |
| 604 | GlobalVariable *NewDGV = |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 605 | new GlobalVariable(DstM, TypeMap.get(SGVar->getValueType()), |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 606 | SGVar->isConstant(), GlobalValue::ExternalLinkage, |
| 607 | /*init*/ nullptr, SGVar->getName(), |
| 608 | /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(), |
| 609 | SGVar->getType()->getAddressSpace()); |
| 610 | NewDGV->setAlignment(SGVar->getAlignment()); |
Reid Kleckner | e7c7854 | 2017-05-11 21:14:29 +0000 | [diff] [blame] | 611 | NewDGV->copyAttributesFrom(SGVar); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 612 | return NewDGV; |
| 613 | } |
| 614 | |
| 615 | /// Link the function in the source module into the destination module if |
| 616 | /// needed, setting up mapping information. |
| 617 | Function *IRLinker::copyFunctionProto(const Function *SF) { |
| 618 | // If there is no linkage to be performed or we are linking from the source, |
| 619 | // bring SF over. |
Reid Kleckner | e7c7854 | 2017-05-11 21:14:29 +0000 | [diff] [blame] | 620 | auto *F = |
| 621 | Function::Create(TypeMap.get(SF->getFunctionType()), |
| 622 | GlobalValue::ExternalLinkage, SF->getName(), &DstM); |
| 623 | F->copyAttributesFrom(SF); |
| 624 | return F; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | /// Set up prototypes for any aliases that come over from the source module. |
| 628 | GlobalValue *IRLinker::copyGlobalAliasProto(const GlobalAlias *SGA) { |
| 629 | // If there is no linkage to be performed or we're linking from the source, |
| 630 | // bring over SGA. |
| 631 | auto *Ty = TypeMap.get(SGA->getValueType()); |
Reid Kleckner | e7c7854 | 2017-05-11 21:14:29 +0000 | [diff] [blame] | 632 | auto *GA = |
| 633 | GlobalAlias::create(Ty, SGA->getType()->getPointerAddressSpace(), |
| 634 | GlobalValue::ExternalLinkage, SGA->getName(), &DstM); |
| 635 | GA->copyAttributesFrom(SGA); |
| 636 | return GA; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | GlobalValue *IRLinker::copyGlobalValueProto(const GlobalValue *SGV, |
| 640 | bool ForDefinition) { |
| 641 | GlobalValue *NewGV; |
| 642 | if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) { |
| 643 | NewGV = copyGlobalVariableProto(SGVar); |
| 644 | } else if (auto *SF = dyn_cast<Function>(SGV)) { |
| 645 | NewGV = copyFunctionProto(SF); |
| 646 | } else { |
| 647 | if (ForDefinition) |
| 648 | NewGV = copyGlobalAliasProto(cast<GlobalAlias>(SGV)); |
Peter Collingbourne | 00f808f | 2017-08-10 01:07:44 +0000 | [diff] [blame] | 649 | else if (SGV->getValueType()->isFunctionTy()) |
| 650 | NewGV = |
| 651 | Function::Create(cast<FunctionType>(TypeMap.get(SGV->getValueType())), |
| 652 | GlobalValue::ExternalLinkage, SGV->getName(), &DstM); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 653 | else |
| 654 | NewGV = new GlobalVariable( |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 655 | DstM, TypeMap.get(SGV->getValueType()), |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 656 | /*isConstant*/ false, GlobalValue::ExternalLinkage, |
| 657 | /*init*/ nullptr, SGV->getName(), |
| 658 | /*insertbefore*/ nullptr, SGV->getThreadLocalMode(), |
| 659 | SGV->getType()->getAddressSpace()); |
| 660 | } |
| 661 | |
| 662 | if (ForDefinition) |
| 663 | NewGV->setLinkage(SGV->getLinkage()); |
Mehdi Amini | 113adde | 2016-04-19 16:11:05 +0000 | [diff] [blame] | 664 | else if (SGV->hasExternalWeakLinkage()) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 665 | NewGV->setLinkage(GlobalValue::ExternalWeakLinkage); |
| 666 | |
Peter Collingbourne | 4f7c16d | 2016-06-24 17:42:21 +0000 | [diff] [blame] | 667 | if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) { |
| 668 | // Metadata for global variables and function declarations is copied eagerly. |
| 669 | if (isa<GlobalVariable>(SGV) || SGV->isDeclaration()) |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 670 | NewGO->copyMetadata(cast<GlobalObject>(SGV), 0); |
Peter Collingbourne | 4f7c16d | 2016-06-24 17:42:21 +0000 | [diff] [blame] | 671 | } |
| 672 | |
Teresa Johnson | 5fe4005 | 2016-01-12 00:24:24 +0000 | [diff] [blame] | 673 | // Remove these copied constants in case this stays a declaration, since |
| 674 | // they point to the source module. If the def is linked the values will |
| 675 | // be mapped in during linkFunctionBody. |
| 676 | if (auto *NewF = dyn_cast<Function>(NewGV)) { |
| 677 | NewF->setPersonalityFn(nullptr); |
| 678 | NewF->setPrefixData(nullptr); |
| 679 | NewF->setPrologueData(nullptr); |
| 680 | } |
| 681 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 682 | return NewGV; |
| 683 | } |
| 684 | |
Eugene Leviant | 6a77bdb | 2018-02-14 10:32:47 +0000 | [diff] [blame] | 685 | static StringRef getTypeNamePrefix(StringRef Name) { |
| 686 | size_t DotPos = Name.rfind('.'); |
| 687 | return (DotPos == 0 || DotPos == StringRef::npos || Name.back() == '.' || |
| 688 | !isdigit(static_cast<unsigned char>(Name[DotPos + 1]))) |
| 689 | ? Name |
| 690 | : Name.substr(0, DotPos); |
| 691 | } |
| 692 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 693 | /// Loop over all of the linked values to compute type mappings. For example, |
| 694 | /// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct |
| 695 | /// types 'Foo' but one got renamed when the module was loaded into the same |
| 696 | /// LLVMContext. |
| 697 | void IRLinker::computeTypeMapping() { |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 698 | for (GlobalValue &SGV : SrcM->globals()) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 699 | GlobalValue *DGV = getLinkedToGlobal(&SGV); |
| 700 | if (!DGV) |
| 701 | continue; |
| 702 | |
| 703 | if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) { |
| 704 | TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); |
| 705 | continue; |
| 706 | } |
| 707 | |
| 708 | // Unify the element type of appending arrays. |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 709 | ArrayType *DAT = cast<ArrayType>(DGV->getValueType()); |
| 710 | ArrayType *SAT = cast<ArrayType>(SGV.getValueType()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 711 | TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType()); |
| 712 | } |
| 713 | |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 714 | for (GlobalValue &SGV : *SrcM) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 715 | if (GlobalValue *DGV = getLinkedToGlobal(&SGV)) |
| 716 | TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); |
| 717 | |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 718 | for (GlobalValue &SGV : SrcM->aliases()) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 719 | if (GlobalValue *DGV = getLinkedToGlobal(&SGV)) |
| 720 | TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); |
| 721 | |
| 722 | // Incorporate types by name, scanning all the types in the source module. |
| 723 | // At this point, the destination module may have a type "%foo = { i32 }" for |
| 724 | // example. When the source module got loaded into the same LLVMContext, if |
| 725 | // it had the same type, it would have been renamed to "%foo.42 = { i32 }". |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 726 | std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 727 | for (StructType *ST : Types) { |
| 728 | if (!ST->hasName()) |
| 729 | continue; |
| 730 | |
Hans Wennborg | aeacdc2 | 2016-11-18 17:33:05 +0000 | [diff] [blame] | 731 | if (TypeMap.DstStructTypesSet.hasType(ST)) { |
| 732 | // This is actually a type from the destination module. |
| 733 | // getIdentifiedStructTypes() can have found it by walking debug info |
| 734 | // metadata nodes, some of which get linked by name when ODR Type Uniquing |
| 735 | // is enabled on the Context, from the source to the destination module. |
| 736 | continue; |
| 737 | } |
| 738 | |
Eugene Leviant | 6a77bdb | 2018-02-14 10:32:47 +0000 | [diff] [blame] | 739 | auto STTypePrefix = getTypeNamePrefix(ST->getName()); |
| 740 | if (STTypePrefix.size()== ST->getName().size()) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 741 | continue; |
| 742 | |
| 743 | // Check to see if the destination module has a struct with the prefix name. |
Eugene Leviant | 6a77bdb | 2018-02-14 10:32:47 +0000 | [diff] [blame] | 744 | StructType *DST = DstM.getTypeByName(STTypePrefix); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 745 | if (!DST) |
| 746 | continue; |
| 747 | |
| 748 | // Don't use it if this actually came from the source module. They're in |
| 749 | // the same LLVMContext after all. Also don't use it unless the type is |
| 750 | // actually used in the destination module. This can happen in situations |
| 751 | // like this: |
| 752 | // |
| 753 | // Module A Module B |
| 754 | // -------- -------- |
| 755 | // %Z = type { %A } %B = type { %C.1 } |
| 756 | // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* } |
| 757 | // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] } |
| 758 | // %C = type { i8* } %B.3 = type { %C.1 } |
| 759 | // |
| 760 | // When we link Module B with Module A, the '%B' in Module B is |
| 761 | // used. However, that would then use '%C.1'. But when we process '%C.1', |
| 762 | // we prefer to take the '%C' version. So we are then left with both |
| 763 | // '%C.1' and '%C' being used for the same types. This leads to some |
| 764 | // variables using one type and some using the other. |
| 765 | if (TypeMap.DstStructTypesSet.hasType(DST)) |
| 766 | TypeMap.addTypeMapping(DST, ST); |
| 767 | } |
| 768 | |
| 769 | // Now that we have discovered all of the type equivalences, get a body for |
| 770 | // any 'opaque' types in the dest module that are now resolved. |
| 771 | TypeMap.linkDefinedTypeBodies(); |
| 772 | } |
| 773 | |
| 774 | static void getArrayElements(const Constant *C, |
| 775 | SmallVectorImpl<Constant *> &Dest) { |
| 776 | unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements(); |
| 777 | |
| 778 | for (unsigned i = 0; i != NumElements; ++i) |
| 779 | Dest.push_back(C->getAggregateElement(i)); |
| 780 | } |
| 781 | |
| 782 | /// If there were any appending global variables, link them together now. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 783 | Expected<Constant *> |
| 784 | IRLinker::linkAppendingVarProto(GlobalVariable *DstGV, |
| 785 | const GlobalVariable *SrcGV) { |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 786 | Type *EltTy = cast<ArrayType>(TypeMap.get(SrcGV->getValueType())) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 787 | ->getElementType(); |
| 788 | |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 789 | // FIXME: This upgrade is done during linking to support the C API. Once the |
| 790 | // old form is deprecated, we should move this upgrade to |
| 791 | // llvm::UpgradeGlobalVariable() and simplify the logic here and in |
| 792 | // Mapper::mapAppendingVariable() in ValueMapper.cpp. |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 793 | StringRef Name = SrcGV->getName(); |
| 794 | bool IsNewStructor = false; |
| 795 | bool IsOldStructor = false; |
| 796 | if (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") { |
| 797 | if (cast<StructType>(EltTy)->getNumElements() == 3) |
| 798 | IsNewStructor = true; |
| 799 | else |
| 800 | IsOldStructor = true; |
| 801 | } |
| 802 | |
| 803 | PointerType *VoidPtrTy = Type::getInt8Ty(SrcGV->getContext())->getPointerTo(); |
| 804 | if (IsOldStructor) { |
| 805 | auto &ST = *cast<StructType>(EltTy); |
| 806 | Type *Tys[3] = {ST.getElementType(0), ST.getElementType(1), VoidPtrTy}; |
| 807 | EltTy = StructType::get(SrcGV->getContext(), Tys, false); |
| 808 | } |
| 809 | |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 810 | uint64_t DstNumElements = 0; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 811 | if (DstGV) { |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 812 | ArrayType *DstTy = cast<ArrayType>(DstGV->getValueType()); |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 813 | DstNumElements = DstTy->getNumElements(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 814 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 815 | if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage()) |
| 816 | return stringErr( |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 817 | "Linking globals named '" + SrcGV->getName() + |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 818 | "': can only link appending global with another appending " |
| 819 | "global!"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 820 | |
| 821 | // Check to see that they two arrays agree on type. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 822 | if (EltTy != DstTy->getElementType()) |
| 823 | return stringErr("Appending variables with different element types!"); |
| 824 | if (DstGV->isConstant() != SrcGV->isConstant()) |
| 825 | return stringErr("Appending variables linked with different const'ness!"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 826 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 827 | if (DstGV->getAlignment() != SrcGV->getAlignment()) |
| 828 | return stringErr( |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 829 | "Appending variables with different alignment need to be linked!"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 830 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 831 | if (DstGV->getVisibility() != SrcGV->getVisibility()) |
| 832 | return stringErr( |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 833 | "Appending variables with different visibility need to be linked!"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 834 | |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 835 | if (DstGV->hasGlobalUnnamedAddr() != SrcGV->hasGlobalUnnamedAddr()) |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 836 | return stringErr( |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 837 | "Appending variables with different unnamed_addr need to be linked!"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 838 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 839 | if (DstGV->getSection() != SrcGV->getSection()) |
| 840 | return stringErr( |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 841 | "Appending variables with different section name need to be linked!"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 842 | } |
| 843 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 844 | SmallVector<Constant *, 16> SrcElements; |
| 845 | getArrayElements(SrcGV->getInitializer(), SrcElements); |
| 846 | |
Justin Bogner | 375f71e | 2016-08-15 22:41:42 +0000 | [diff] [blame] | 847 | if (IsNewStructor) { |
| 848 | auto It = remove_if(SrcElements, [this](Constant *E) { |
| 849 | auto *Key = |
| 850 | dyn_cast<GlobalValue>(E->getAggregateElement(2)->stripPointerCasts()); |
| 851 | if (!Key) |
| 852 | return false; |
| 853 | GlobalValue *DGV = getLinkedToGlobal(Key); |
| 854 | return !shouldLink(DGV, *Key); |
| 855 | }); |
| 856 | SrcElements.erase(It, SrcElements.end()); |
| 857 | } |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 858 | uint64_t NewSize = DstNumElements + SrcElements.size(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 859 | ArrayType *NewType = ArrayType::get(EltTy, NewSize); |
| 860 | |
| 861 | // Create the new global variable. |
| 862 | GlobalVariable *NG = new GlobalVariable( |
| 863 | DstM, NewType, SrcGV->isConstant(), SrcGV->getLinkage(), |
| 864 | /*init*/ nullptr, /*name*/ "", DstGV, SrcGV->getThreadLocalMode(), |
| 865 | SrcGV->getType()->getAddressSpace()); |
| 866 | |
| 867 | NG->copyAttributesFrom(SrcGV); |
| 868 | forceRenaming(NG, SrcGV->getName()); |
| 869 | |
| 870 | Constant *Ret = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType())); |
| 871 | |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 872 | Mapper.scheduleMapAppendingVariable(*NG, |
| 873 | DstGV ? DstGV->getInitializer() : nullptr, |
| 874 | IsOldStructor, SrcElements); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 875 | |
| 876 | // Replace any uses of the two global variables with uses of the new |
| 877 | // global. |
| 878 | if (DstGV) { |
| 879 | DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType())); |
| 880 | DstGV->eraseFromParent(); |
| 881 | } |
| 882 | |
| 883 | return Ret; |
| 884 | } |
| 885 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 886 | bool IRLinker::shouldLink(GlobalValue *DGV, GlobalValue &SGV) { |
Davide Italiano | 9533965 | 2016-06-07 14:55:04 +0000 | [diff] [blame] | 887 | if (ValuesToLink.count(&SGV) || SGV.hasLocalLinkage()) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 888 | return true; |
| 889 | |
Rafael Espindola | 55a7ae5 | 2016-01-20 22:38:23 +0000 | [diff] [blame] | 890 | if (DGV && !DGV->isDeclarationForLinker()) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 891 | return false; |
| 892 | |
Davide Italiano | 9533965 | 2016-06-07 14:55:04 +0000 | [diff] [blame] | 893 | if (SGV.isDeclaration() || DoneLinkingBodies) |
Rafael Espindola | 15ca14c | 2016-04-21 14:56:33 +0000 | [diff] [blame] | 894 | return false; |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 895 | |
| 896 | // Callback to the client to give a chance to lazily add the Global to the |
| 897 | // list of value to link. |
| 898 | bool LazilyAdded = false; |
| 899 | AddLazyFor(SGV, [this, &LazilyAdded](GlobalValue &GV) { |
| 900 | maybeAdd(&GV); |
| 901 | LazilyAdded = true; |
| 902 | }); |
| 903 | return LazilyAdded; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 904 | } |
| 905 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 906 | Expected<Constant *> IRLinker::linkGlobalValueProto(GlobalValue *SGV, |
| 907 | bool ForAlias) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 908 | GlobalValue *DGV = getLinkedToGlobal(SGV); |
Rafael Espindola | 9a2bf41 | 2018-02-21 20:12:18 +0000 | [diff] [blame] | 909 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 910 | bool ShouldLink = shouldLink(DGV, *SGV); |
| 911 | |
| 912 | // just missing from map |
| 913 | if (ShouldLink) { |
| 914 | auto I = ValueMap.find(SGV); |
| 915 | if (I != ValueMap.end()) |
| 916 | return cast<Constant>(I->second); |
| 917 | |
| 918 | I = AliasValueMap.find(SGV); |
| 919 | if (I != AliasValueMap.end()) |
| 920 | return cast<Constant>(I->second); |
| 921 | } |
| 922 | |
Mehdi Amini | 3366107 | 2016-03-11 22:19:06 +0000 | [diff] [blame] | 923 | if (!ShouldLink && ForAlias) |
| 924 | DGV = nullptr; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 925 | |
| 926 | // Handle the ultra special appending linkage case first. |
| 927 | assert(!DGV || SGV->hasAppendingLinkage() == DGV->hasAppendingLinkage()); |
| 928 | if (SGV->hasAppendingLinkage()) |
| 929 | return linkAppendingVarProto(cast_or_null<GlobalVariable>(DGV), |
| 930 | cast<GlobalVariable>(SGV)); |
| 931 | |
| 932 | GlobalValue *NewGV; |
Rafael Espindola | 55a7ae5 | 2016-01-20 22:38:23 +0000 | [diff] [blame] | 933 | if (DGV && !ShouldLink) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 934 | NewGV = DGV; |
| 935 | } else { |
| 936 | // If we are done linking global value bodies (i.e. we are performing |
| 937 | // metadata linking), don't link in the global value due to this |
| 938 | // reference, simply map it to null. |
| 939 | if (DoneLinkingBodies) |
| 940 | return nullptr; |
| 941 | |
| 942 | NewGV = copyGlobalValueProto(SGV, ShouldLink); |
Evgeniy Stepanov | 9fb70f5 | 2016-01-20 22:05:50 +0000 | [diff] [blame] | 943 | if (ShouldLink || !ForAlias) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 944 | forceRenaming(NewGV, SGV->getName()); |
| 945 | } |
Artur Pilipenko | 6c7a8ab | 2016-06-24 15:10:29 +0000 | [diff] [blame] | 946 | |
| 947 | // Overloaded intrinsics have overloaded types names as part of their |
| 948 | // names. If we renamed overloaded types we should rename the intrinsic |
| 949 | // as well. |
| 950 | if (Function *F = dyn_cast<Function>(NewGV)) |
| 951 | if (auto Remangled = Intrinsic::remangleIntrinsicFunction(F)) |
| 952 | NewGV = Remangled.getValue(); |
| 953 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 954 | if (ShouldLink || ForAlias) { |
| 955 | if (const Comdat *SC = SGV->getComdat()) { |
| 956 | if (auto *GO = dyn_cast<GlobalObject>(NewGV)) { |
| 957 | Comdat *DC = DstM.getOrInsertComdat(SC->getName()); |
| 958 | DC->setSelectionKind(SC->getSelectionKind()); |
| 959 | GO->setComdat(DC); |
| 960 | } |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | if (!ShouldLink && ForAlias) |
| 965 | NewGV->setLinkage(GlobalValue::InternalLinkage); |
| 966 | |
| 967 | Constant *C = NewGV; |
Teresa Johnson | ba22da0d | 2018-01-09 18:32:53 +0000 | [diff] [blame] | 968 | // Only create a bitcast if necessary. In particular, with |
| 969 | // DebugTypeODRUniquing we may reach metadata in the destination module |
| 970 | // containing a GV from the source module, in which case SGV will be |
| 971 | // the same as DGV and NewGV, and TypeMap.get() will assert since it |
| 972 | // assumes it is being invoked on a type in the source module. |
| 973 | if (DGV && NewGV != SGV) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 974 | C = ConstantExpr::getBitCast(NewGV, TypeMap.get(SGV->getType())); |
| 975 | |
| 976 | if (DGV && NewGV != DGV) { |
| 977 | DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType())); |
| 978 | DGV->eraseFromParent(); |
| 979 | } |
| 980 | |
| 981 | return C; |
| 982 | } |
| 983 | |
| 984 | /// Update the initializers in the Dest module now that all globals that may be |
| 985 | /// referenced are in Dest. |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 986 | void IRLinker::linkGlobalVariable(GlobalVariable &Dst, GlobalVariable &Src) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 987 | // Figure out what the initializer looks like in the dest module. |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 988 | Mapper.scheduleMapGlobalInitializer(Dst, *Src.getInitializer()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | /// Copy the source function over into the dest function and fix up references |
| 992 | /// to values. At this point we know that Dest is an external function, and |
| 993 | /// that Src is not. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 994 | Error IRLinker::linkFunctionBody(Function &Dst, Function &Src) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 995 | assert(Dst.isDeclaration() && !Src.isDeclaration()); |
| 996 | |
| 997 | // Materialize if needed. |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 998 | if (Error Err = Src.materialize()) |
| 999 | return Err; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1000 | |
Duncan P. N. Exon Smith | bb2c3e1 | 2016-04-08 19:26:32 +0000 | [diff] [blame] | 1001 | // Link in the operands without remapping. |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1002 | if (Src.hasPrefixData()) |
Duncan P. N. Exon Smith | bb2c3e1 | 2016-04-08 19:26:32 +0000 | [diff] [blame] | 1003 | Dst.setPrefixData(Src.getPrefixData()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1004 | if (Src.hasPrologueData()) |
Duncan P. N. Exon Smith | bb2c3e1 | 2016-04-08 19:26:32 +0000 | [diff] [blame] | 1005 | Dst.setPrologueData(Src.getPrologueData()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1006 | if (Src.hasPersonalityFn()) |
Duncan P. N. Exon Smith | bb2c3e1 | 2016-04-08 19:26:32 +0000 | [diff] [blame] | 1007 | Dst.setPersonalityFn(Src.getPersonalityFn()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1008 | |
Duncan P. N. Exon Smith | bb2c3e1 | 2016-04-08 19:26:32 +0000 | [diff] [blame] | 1009 | // Copy over the metadata attachments without remapping. |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 1010 | Dst.copyMetadata(&Src, 0); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1011 | |
Duncan P. N. Exon Smith | bdfc984 | 2016-04-06 06:38:15 +0000 | [diff] [blame] | 1012 | // Steal arguments and splice the body of Src into Dst. |
| 1013 | Dst.stealArgumentListFrom(Src); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1014 | Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList()); |
| 1015 | |
Duncan P. N. Exon Smith | bb2c3e1 | 2016-04-08 19:26:32 +0000 | [diff] [blame] | 1016 | // Everything has been moved over. Remap it. |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 1017 | Mapper.scheduleRemapFunction(Dst); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1018 | return Error::success(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1019 | } |
| 1020 | |
| 1021 | void IRLinker::linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src) { |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 1022 | Mapper.scheduleMapGlobalAliasee(Dst, *Src.getAliasee(), AliasMCID); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1023 | } |
| 1024 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1025 | Error IRLinker::linkGlobalValueBody(GlobalValue &Dst, GlobalValue &Src) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1026 | if (auto *F = dyn_cast<Function>(&Src)) |
| 1027 | return linkFunctionBody(cast<Function>(Dst), *F); |
| 1028 | if (auto *GVar = dyn_cast<GlobalVariable>(&Src)) { |
Peter Collingbourne | d4135bb | 2016-09-13 01:12:59 +0000 | [diff] [blame] | 1029 | linkGlobalVariable(cast<GlobalVariable>(Dst), *GVar); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1030 | return Error::success(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1031 | } |
| 1032 | linkAliasBody(cast<GlobalAlias>(Dst), cast<GlobalAlias>(Src)); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1033 | return Error::success(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Teresa Johnson | 040cc16 | 2016-12-12 16:09:30 +0000 | [diff] [blame] | 1036 | void IRLinker::prepareCompileUnitsForImport() { |
| 1037 | NamedMDNode *SrcCompileUnits = SrcM->getNamedMetadata("llvm.dbg.cu"); |
| 1038 | if (!SrcCompileUnits) |
| 1039 | return; |
| 1040 | // When importing for ThinLTO, prevent importing of types listed on |
| 1041 | // the DICompileUnit that we don't need a copy of in the importing |
| 1042 | // module. They will be emitted by the originating module. |
| 1043 | for (unsigned I = 0, E = SrcCompileUnits->getNumOperands(); I != E; ++I) { |
| 1044 | auto *CU = cast<DICompileUnit>(SrcCompileUnits->getOperand(I)); |
| 1045 | assert(CU && "Expected valid compile unit"); |
| 1046 | // Enums, macros, and retained types don't need to be listed on the |
| 1047 | // imported DICompileUnit. This means they will only be imported |
| 1048 | // if reached from the mapped IR. Do this by setting their value map |
| 1049 | // entries to nullptr, which will automatically prevent their importing |
| 1050 | // when reached from the DICompileUnit during metadata mapping. |
| 1051 | ValueMap.MD()[CU->getRawEnumTypes()].reset(nullptr); |
| 1052 | ValueMap.MD()[CU->getRawMacros()].reset(nullptr); |
| 1053 | ValueMap.MD()[CU->getRawRetainedTypes()].reset(nullptr); |
Eugene Leviant | 19e2387 | 2018-03-12 10:30:50 +0000 | [diff] [blame] | 1054 | // We import global variables only temporarily in order for instcombine |
| 1055 | // and globalopt to perform constant folding and static constructor |
| 1056 | // evaluation. After that elim-avail-extern will covert imported globals |
| 1057 | // back to declarations, so we don't need debug info for them. |
Teresa Johnson | 040cc16 | 2016-12-12 16:09:30 +0000 | [diff] [blame] | 1058 | ValueMap.MD()[CU->getRawGlobalVariables()].reset(nullptr); |
| 1059 | |
| 1060 | // Imported entities only need to be mapped in if they have local |
| 1061 | // scope, as those might correspond to an imported entity inside a |
| 1062 | // function being imported (any locally scoped imported entities that |
| 1063 | // don't end up referenced by an imported function will not be emitted |
| 1064 | // into the object). Imported entities not in a local scope |
| 1065 | // (e.g. on the namespace) only need to be emitted by the originating |
| 1066 | // module. Create a list of the locally scoped imported entities, and |
| 1067 | // replace the source CUs imported entity list with the new list, so |
| 1068 | // only those are mapped in. |
| 1069 | // FIXME: Locally-scoped imported entities could be moved to the |
| 1070 | // functions they are local to instead of listing them on the CU, and |
| 1071 | // we would naturally only link in those needed by function importing. |
| 1072 | SmallVector<TrackingMDNodeRef, 4> AllImportedModules; |
| 1073 | bool ReplaceImportedEntities = false; |
| 1074 | for (auto *IE : CU->getImportedEntities()) { |
| 1075 | DIScope *Scope = IE->getScope(); |
| 1076 | assert(Scope && "Invalid Scope encoding!"); |
| 1077 | if (isa<DILocalScope>(Scope)) |
| 1078 | AllImportedModules.emplace_back(IE); |
| 1079 | else |
| 1080 | ReplaceImportedEntities = true; |
| 1081 | } |
| 1082 | if (ReplaceImportedEntities) { |
| 1083 | if (!AllImportedModules.empty()) |
| 1084 | CU->replaceImportedEntities(MDTuple::get( |
| 1085 | CU->getContext(), |
| 1086 | SmallVector<Metadata *, 16>(AllImportedModules.begin(), |
| 1087 | AllImportedModules.end()))); |
| 1088 | else |
| 1089 | // If there were no local scope imported entities, we can map |
| 1090 | // the whole list to nullptr. |
| 1091 | ValueMap.MD()[CU->getRawImportedEntities()].reset(nullptr); |
| 1092 | } |
| 1093 | } |
| 1094 | } |
| 1095 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1096 | /// Insert all of the named MDNodes in Src into the Dest module. |
| 1097 | void IRLinker::linkNamedMDNodes() { |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1098 | const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata(); |
| 1099 | for (const NamedMDNode &NMD : SrcM->named_metadata()) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1100 | // Don't link module flags here. Do them separately. |
| 1101 | if (&NMD == SrcModFlags) |
| 1102 | continue; |
| 1103 | NamedMDNode *DestNMD = DstM.getOrInsertNamedMetadata(NMD.getName()); |
| 1104 | // Add Src elements into Dest node. |
Duncan P. N. Exon Smith | 8a15dab | 2016-04-15 23:32:44 +0000 | [diff] [blame] | 1105 | for (const MDNode *Op : NMD.operands()) |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 1106 | DestNMD->addOperand(Mapper.mapMDNode(*Op)); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | /// Merge the linker flags in Src into the Dest module. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1111 | Error IRLinker::linkModuleFlagsMetadata() { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1112 | // If the source module has no module flags, we are done. |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1113 | const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1114 | if (!SrcModFlags) |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1115 | return Error::success(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1116 | |
| 1117 | // If the destination module doesn't have module flags yet, then just copy |
| 1118 | // over the source module's flags. |
| 1119 | NamedMDNode *DstModFlags = DstM.getOrInsertModuleFlagsMetadata(); |
| 1120 | if (DstModFlags->getNumOperands() == 0) { |
| 1121 | for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) |
| 1122 | DstModFlags->addOperand(SrcModFlags->getOperand(I)); |
| 1123 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1124 | return Error::success(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | // First build a map of the existing module flags and requirements. |
| 1128 | DenseMap<MDString *, std::pair<MDNode *, unsigned>> Flags; |
| 1129 | SmallSetVector<MDNode *, 16> Requirements; |
| 1130 | for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) { |
| 1131 | MDNode *Op = DstModFlags->getOperand(I); |
| 1132 | ConstantInt *Behavior = mdconst::extract<ConstantInt>(Op->getOperand(0)); |
| 1133 | MDString *ID = cast<MDString>(Op->getOperand(1)); |
| 1134 | |
| 1135 | if (Behavior->getZExtValue() == Module::Require) { |
| 1136 | Requirements.insert(cast<MDNode>(Op->getOperand(2))); |
| 1137 | } else { |
| 1138 | Flags[ID] = std::make_pair(Op, I); |
| 1139 | } |
| 1140 | } |
| 1141 | |
| 1142 | // Merge in the flags from the source module, and also collect its set of |
| 1143 | // requirements. |
| 1144 | for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) { |
| 1145 | MDNode *SrcOp = SrcModFlags->getOperand(I); |
| 1146 | ConstantInt *SrcBehavior = |
| 1147 | mdconst::extract<ConstantInt>(SrcOp->getOperand(0)); |
| 1148 | MDString *ID = cast<MDString>(SrcOp->getOperand(1)); |
| 1149 | MDNode *DstOp; |
| 1150 | unsigned DstIndex; |
| 1151 | std::tie(DstOp, DstIndex) = Flags.lookup(ID); |
| 1152 | unsigned SrcBehaviorValue = SrcBehavior->getZExtValue(); |
| 1153 | |
| 1154 | // If this is a requirement, add it and continue. |
| 1155 | if (SrcBehaviorValue == Module::Require) { |
| 1156 | // If the destination module does not already have this requirement, add |
| 1157 | // it. |
| 1158 | if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) { |
| 1159 | DstModFlags->addOperand(SrcOp); |
| 1160 | } |
| 1161 | continue; |
| 1162 | } |
| 1163 | |
| 1164 | // If there is no existing flag with this ID, just add it. |
| 1165 | if (!DstOp) { |
| 1166 | Flags[ID] = std::make_pair(SrcOp, DstModFlags->getNumOperands()); |
| 1167 | DstModFlags->addOperand(SrcOp); |
| 1168 | continue; |
| 1169 | } |
| 1170 | |
| 1171 | // Otherwise, perform a merge. |
| 1172 | ConstantInt *DstBehavior = |
| 1173 | mdconst::extract<ConstantInt>(DstOp->getOperand(0)); |
| 1174 | unsigned DstBehaviorValue = DstBehavior->getZExtValue(); |
| 1175 | |
Teresa Johnson | 2db1369 | 2017-05-23 00:08:00 +0000 | [diff] [blame] | 1176 | auto overrideDstValue = [&]() { |
| 1177 | DstModFlags->setOperand(DstIndex, SrcOp); |
| 1178 | Flags[ID].first = SrcOp; |
| 1179 | }; |
| 1180 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1181 | // If either flag has override behavior, handle it first. |
| 1182 | if (DstBehaviorValue == Module::Override) { |
| 1183 | // Diagnose inconsistent flags which both have override behavior. |
| 1184 | if (SrcBehaviorValue == Module::Override && |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1185 | SrcOp->getOperand(2) != DstOp->getOperand(2)) |
| 1186 | return stringErr("linking module flags '" + ID->getString() + |
| 1187 | "': IDs have conflicting override values"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1188 | continue; |
| 1189 | } else if (SrcBehaviorValue == Module::Override) { |
| 1190 | // Update the destination flag to that of the source. |
Teresa Johnson | 2db1369 | 2017-05-23 00:08:00 +0000 | [diff] [blame] | 1191 | overrideDstValue(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1192 | continue; |
| 1193 | } |
| 1194 | |
| 1195 | // Diagnose inconsistent merge behavior types. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1196 | if (SrcBehaviorValue != DstBehaviorValue) |
| 1197 | return stringErr("linking module flags '" + ID->getString() + |
| 1198 | "': IDs have conflicting behaviors"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1199 | |
| 1200 | auto replaceDstValue = [&](MDNode *New) { |
| 1201 | Metadata *FlagOps[] = {DstOp->getOperand(0), ID, New}; |
| 1202 | MDNode *Flag = MDNode::get(DstM.getContext(), FlagOps); |
| 1203 | DstModFlags->setOperand(DstIndex, Flag); |
| 1204 | Flags[ID].first = Flag; |
| 1205 | }; |
| 1206 | |
| 1207 | // Perform the merge for standard behavior types. |
| 1208 | switch (SrcBehaviorValue) { |
| 1209 | case Module::Require: |
| 1210 | case Module::Override: |
| 1211 | llvm_unreachable("not possible"); |
| 1212 | case Module::Error: { |
| 1213 | // Emit an error if the values differ. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1214 | if (SrcOp->getOperand(2) != DstOp->getOperand(2)) |
| 1215 | return stringErr("linking module flags '" + ID->getString() + |
| 1216 | "': IDs have conflicting values"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1217 | continue; |
| 1218 | } |
| 1219 | case Module::Warning: { |
| 1220 | // Emit a warning if the values differ. |
| 1221 | if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { |
| 1222 | emitWarning("linking module flags '" + ID->getString() + |
| 1223 | "': IDs have conflicting values"); |
| 1224 | } |
| 1225 | continue; |
| 1226 | } |
Teresa Johnson | 2db1369 | 2017-05-23 00:08:00 +0000 | [diff] [blame] | 1227 | case Module::Max: { |
| 1228 | ConstantInt *DstValue = |
| 1229 | mdconst::extract<ConstantInt>(DstOp->getOperand(2)); |
| 1230 | ConstantInt *SrcValue = |
| 1231 | mdconst::extract<ConstantInt>(SrcOp->getOperand(2)); |
| 1232 | if (SrcValue->getZExtValue() > DstValue->getZExtValue()) |
| 1233 | overrideDstValue(); |
| 1234 | break; |
| 1235 | } |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1236 | case Module::Append: { |
| 1237 | MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2)); |
| 1238 | MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2)); |
| 1239 | SmallVector<Metadata *, 8> MDs; |
| 1240 | MDs.reserve(DstValue->getNumOperands() + SrcValue->getNumOperands()); |
| 1241 | MDs.append(DstValue->op_begin(), DstValue->op_end()); |
| 1242 | MDs.append(SrcValue->op_begin(), SrcValue->op_end()); |
| 1243 | |
| 1244 | replaceDstValue(MDNode::get(DstM.getContext(), MDs)); |
| 1245 | break; |
| 1246 | } |
| 1247 | case Module::AppendUnique: { |
| 1248 | SmallSetVector<Metadata *, 16> Elts; |
| 1249 | MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2)); |
| 1250 | MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2)); |
| 1251 | Elts.insert(DstValue->op_begin(), DstValue->op_end()); |
| 1252 | Elts.insert(SrcValue->op_begin(), SrcValue->op_end()); |
| 1253 | |
| 1254 | replaceDstValue(MDNode::get(DstM.getContext(), |
| 1255 | makeArrayRef(Elts.begin(), Elts.end()))); |
| 1256 | break; |
| 1257 | } |
| 1258 | } |
| 1259 | } |
| 1260 | |
| 1261 | // Check all of the requirements. |
| 1262 | for (unsigned I = 0, E = Requirements.size(); I != E; ++I) { |
| 1263 | MDNode *Requirement = Requirements[I]; |
| 1264 | MDString *Flag = cast<MDString>(Requirement->getOperand(0)); |
| 1265 | Metadata *ReqValue = Requirement->getOperand(1); |
| 1266 | |
| 1267 | MDNode *Op = Flags[Flag].first; |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1268 | if (!Op || Op->getOperand(2) != ReqValue) |
| 1269 | return stringErr("linking module flags '" + Flag->getString() + |
| 1270 | "': does not have the required value"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1271 | } |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1272 | return Error::success(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1273 | } |
| 1274 | |
Florian Hahn | 745266b | 2017-07-12 11:52:28 +0000 | [diff] [blame] | 1275 | /// Return InlineAsm adjusted with target-specific directives if required. |
| 1276 | /// For ARM and Thumb, we have to add directives to select the appropriate ISA |
| 1277 | /// to support mixing module-level inline assembly from ARM and Thumb modules. |
| 1278 | static std::string adjustInlineAsm(const std::string &InlineAsm, |
| 1279 | const Triple &Triple) { |
| 1280 | if (Triple.getArch() == Triple::thumb || Triple.getArch() == Triple::thumbeb) |
| 1281 | return ".text\n.balign 2\n.thumb\n" + InlineAsm; |
| 1282 | if (Triple.getArch() == Triple::arm || Triple.getArch() == Triple::armeb) |
| 1283 | return ".text\n.balign 4\n.arm\n" + InlineAsm; |
| 1284 | return InlineAsm; |
| 1285 | } |
| 1286 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1287 | Error IRLinker::run() { |
Teresa Johnson | 0556e22 | 2016-03-10 18:47:03 +0000 | [diff] [blame] | 1288 | // Ensure metadata materialized before value mapping. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1289 | if (SrcM->getMaterializer()) |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 1290 | if (Error Err = SrcM->getMaterializer()->materializeMetadata()) |
| 1291 | return Err; |
Teresa Johnson | 0556e22 | 2016-03-10 18:47:03 +0000 | [diff] [blame] | 1292 | |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1293 | // Inherit the target data from the source module if the destination module |
| 1294 | // doesn't have one already. |
| 1295 | if (DstM.getDataLayout().isDefault()) |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1296 | DstM.setDataLayout(SrcM->getDataLayout()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1297 | |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1298 | if (SrcM->getDataLayout() != DstM.getDataLayout()) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1299 | emitWarning("Linking two modules of different data layouts: '" + |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1300 | SrcM->getModuleIdentifier() + "' is '" + |
| 1301 | SrcM->getDataLayoutStr() + "' whereas '" + |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1302 | DstM.getModuleIdentifier() + "' is '" + |
| 1303 | DstM.getDataLayoutStr() + "'\n"); |
| 1304 | } |
| 1305 | |
| 1306 | // Copy the target triple from the source to dest if the dest's is empty. |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1307 | if (DstM.getTargetTriple().empty() && !SrcM->getTargetTriple().empty()) |
| 1308 | DstM.setTargetTriple(SrcM->getTargetTriple()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1309 | |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1310 | Triple SrcTriple(SrcM->getTargetTriple()), DstTriple(DstM.getTargetTriple()); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1311 | |
Akira Hatanaka | b10bff1 | 2017-05-18 03:52:29 +0000 | [diff] [blame] | 1312 | if (!SrcM->getTargetTriple().empty()&& |
| 1313 | !SrcTriple.isCompatibleWith(DstTriple)) |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1314 | emitWarning("Linking two modules of different target triples: " + |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1315 | SrcM->getModuleIdentifier() + "' is '" + |
| 1316 | SrcM->getTargetTriple() + "' whereas '" + |
| 1317 | DstM.getModuleIdentifier() + "' is '" + DstM.getTargetTriple() + |
| 1318 | "'\n"); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1319 | |
Akira Hatanaka | b10bff1 | 2017-05-18 03:52:29 +0000 | [diff] [blame] | 1320 | DstM.setTargetTriple(SrcTriple.merge(DstTriple)); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1321 | |
| 1322 | // Append the module inline asm string. |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 1323 | if (!IsPerformingImport && !SrcM->getModuleInlineAsm().empty()) { |
Florian Hahn | 745266b | 2017-07-12 11:52:28 +0000 | [diff] [blame] | 1324 | std::string SrcModuleInlineAsm = adjustInlineAsm(SrcM->getModuleInlineAsm(), |
| 1325 | SrcTriple); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1326 | if (DstM.getModuleInlineAsm().empty()) |
Florian Hahn | 745266b | 2017-07-12 11:52:28 +0000 | [diff] [blame] | 1327 | DstM.setModuleInlineAsm(SrcModuleInlineAsm); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1328 | else |
| 1329 | DstM.setModuleInlineAsm(DstM.getModuleInlineAsm() + "\n" + |
Florian Hahn | 745266b | 2017-07-12 11:52:28 +0000 | [diff] [blame] | 1330 | SrcModuleInlineAsm); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | // Loop over all of the linked values to compute type mappings. |
| 1334 | computeTypeMapping(); |
| 1335 | |
| 1336 | std::reverse(Worklist.begin(), Worklist.end()); |
| 1337 | while (!Worklist.empty()) { |
| 1338 | GlobalValue *GV = Worklist.back(); |
| 1339 | Worklist.pop_back(); |
| 1340 | |
| 1341 | // Already mapped. |
| 1342 | if (ValueMap.find(GV) != ValueMap.end() || |
| 1343 | AliasValueMap.find(GV) != AliasValueMap.end()) |
| 1344 | continue; |
| 1345 | |
| 1346 | assert(!GV->isDeclaration()); |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 1347 | Mapper.mapValue(*GV); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1348 | if (FoundError) |
| 1349 | return std::move(*FoundError); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1350 | } |
| 1351 | |
| 1352 | // Note that we are done linking global value bodies. This prevents |
| 1353 | // metadata linking from creating new references. |
| 1354 | DoneLinkingBodies = true; |
Duncan P. N. Exon Smith | 39423b0 | 2016-04-16 02:29:55 +0000 | [diff] [blame] | 1355 | Mapper.addFlags(RF_NullMapMissingGlobalValues); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1356 | |
| 1357 | // Remap all of the named MDNodes in Src into the DstM module. We do this |
| 1358 | // after linking GlobalValues so that MDNodes that reference GlobalValues |
| 1359 | // are properly remapped. |
Teresa Johnson | b703c77 | 2016-03-29 18:24:19 +0000 | [diff] [blame] | 1360 | linkNamedMDNodes(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1361 | |
Teresa Johnson | b703c77 | 2016-03-29 18:24:19 +0000 | [diff] [blame] | 1362 | // Merge the module flags into the DstM module. |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1363 | return linkModuleFlagsMetadata(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | IRMover::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P) |
| 1367 | : ETypes(E), IsPacked(P) {} |
| 1368 | |
| 1369 | IRMover::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST) |
| 1370 | : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} |
| 1371 | |
| 1372 | bool IRMover::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const { |
Davide Italiano | 9533965 | 2016-06-07 14:55:04 +0000 | [diff] [blame] | 1373 | return IsPacked == That.IsPacked && ETypes == That.ETypes; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
| 1376 | bool IRMover::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const { |
| 1377 | return !this->operator==(That); |
| 1378 | } |
| 1379 | |
| 1380 | StructType *IRMover::StructTypeKeyInfo::getEmptyKey() { |
| 1381 | return DenseMapInfo<StructType *>::getEmptyKey(); |
| 1382 | } |
| 1383 | |
| 1384 | StructType *IRMover::StructTypeKeyInfo::getTombstoneKey() { |
| 1385 | return DenseMapInfo<StructType *>::getTombstoneKey(); |
| 1386 | } |
| 1387 | |
| 1388 | unsigned IRMover::StructTypeKeyInfo::getHashValue(const KeyTy &Key) { |
| 1389 | return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), |
| 1390 | Key.IsPacked); |
| 1391 | } |
| 1392 | |
| 1393 | unsigned IRMover::StructTypeKeyInfo::getHashValue(const StructType *ST) { |
| 1394 | return getHashValue(KeyTy(ST)); |
| 1395 | } |
| 1396 | |
| 1397 | bool IRMover::StructTypeKeyInfo::isEqual(const KeyTy &LHS, |
| 1398 | const StructType *RHS) { |
| 1399 | if (RHS == getEmptyKey() || RHS == getTombstoneKey()) |
| 1400 | return false; |
| 1401 | return LHS == KeyTy(RHS); |
| 1402 | } |
| 1403 | |
| 1404 | bool IRMover::StructTypeKeyInfo::isEqual(const StructType *LHS, |
| 1405 | const StructType *RHS) { |
Davide Italiano | 9533965 | 2016-06-07 14:55:04 +0000 | [diff] [blame] | 1406 | if (RHS == getEmptyKey() || RHS == getTombstoneKey()) |
| 1407 | return LHS == RHS; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1408 | return KeyTy(LHS) == KeyTy(RHS); |
| 1409 | } |
| 1410 | |
| 1411 | void IRMover::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) { |
| 1412 | assert(!Ty->isOpaque()); |
| 1413 | NonOpaqueStructTypes.insert(Ty); |
| 1414 | } |
| 1415 | |
| 1416 | void IRMover::IdentifiedStructTypeSet::switchToNonOpaque(StructType *Ty) { |
Rafael Espindola | 9a2bf41 | 2018-02-21 20:12:18 +0000 | [diff] [blame] | 1417 | assert(!Ty->isOpaque()); |
| 1418 | NonOpaqueStructTypes.insert(Ty); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1419 | bool Removed = OpaqueStructTypes.erase(Ty); |
| 1420 | (void)Removed; |
| 1421 | assert(Removed); |
| 1422 | } |
| 1423 | |
| 1424 | void IRMover::IdentifiedStructTypeSet::addOpaque(StructType *Ty) { |
| 1425 | assert(Ty->isOpaque()); |
| 1426 | OpaqueStructTypes.insert(Ty); |
| 1427 | } |
| 1428 | |
| 1429 | StructType * |
| 1430 | IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, |
Rafael Espindola | 9a2bf41 | 2018-02-21 20:12:18 +0000 | [diff] [blame] | 1431 | bool IsPacked) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1432 | IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); |
| 1433 | auto I = NonOpaqueStructTypes.find_as(Key); |
Rafael Espindola | 9a2bf41 | 2018-02-21 20:12:18 +0000 | [diff] [blame] | 1434 | return I == NonOpaqueStructTypes.end() ? nullptr : *I; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | bool IRMover::IdentifiedStructTypeSet::hasType(StructType *Ty) { |
| 1438 | if (Ty->isOpaque()) |
| 1439 | return OpaqueStructTypes.count(Ty); |
| 1440 | auto I = NonOpaqueStructTypes.find(Ty); |
Davide Italiano | 9533965 | 2016-06-07 14:55:04 +0000 | [diff] [blame] | 1441 | return I == NonOpaqueStructTypes.end() ? false : *I == Ty; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
Rafael Espindola | 9d2bfc4 | 2015-12-14 23:17:03 +0000 | [diff] [blame] | 1444 | IRMover::IRMover(Module &M) : Composite(M) { |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1445 | TypeFinder StructTypes; |
Mehdi Amini | fec2158 | 2016-11-19 18:44:16 +0000 | [diff] [blame] | 1446 | StructTypes.run(M, /* OnlyNamed */ false); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1447 | for (StructType *Ty : StructTypes) { |
| 1448 | if (Ty->isOpaque()) |
| 1449 | IdentifiedStructTypes.addOpaque(Ty); |
| 1450 | else |
| 1451 | IdentifiedStructTypes.addNonOpaque(Ty); |
| 1452 | } |
Mehdi Amini | ebb3434 | 2016-09-03 21:12:33 +0000 | [diff] [blame] | 1453 | // Self-map metadatas in the destination module. This is needed when |
| 1454 | // DebugTypeODRUniquing is enabled on the LLVMContext, since metadata in the |
| 1455 | // destination module may be reached from the source module. |
| 1456 | for (auto *MD : StructTypes.getVisitedMetadata()) { |
| 1457 | SharedMDs[MD].reset(const_cast<MDNode *>(MD)); |
| 1458 | } |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1459 | } |
| 1460 | |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1461 | Error IRMover::move( |
Rafael Espindola | 40358fb | 2016-02-16 18:50:12 +0000 | [diff] [blame] | 1462 | std::unique_ptr<Module> Src, ArrayRef<GlobalValue *> ValuesToLink, |
Teresa Johnson | 4b9b379 | 2016-10-12 18:39:29 +0000 | [diff] [blame] | 1463 | std::function<void(GlobalValue &, ValueAdder Add)> AddLazyFor, |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 1464 | bool IsPerformingImport) { |
Duncan P. N. Exon Smith | 565a0aa | 2016-04-17 23:30:31 +0000 | [diff] [blame] | 1465 | IRLinker TheIRLinker(Composite, SharedMDs, IdentifiedStructTypes, |
Teresa Johnson | 4b9b379 | 2016-10-12 18:39:29 +0000 | [diff] [blame] | 1466 | std::move(Src), ValuesToLink, std::move(AddLazyFor), |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 1467 | IsPerformingImport); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1468 | Error E = TheIRLinker.run(); |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1469 | Composite.dropTriviallyDeadConstantArrays(); |
Peter Collingbourne | 1eaa97f | 2016-05-27 05:21:35 +0000 | [diff] [blame] | 1470 | return E; |
Rafael Espindola | caabe22 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 1471 | } |