blob: a855ec06d1797ea137a59d80d33bc41726d28c0b [file] [log] [blame]
Mikhail Glushenkov59a5afa2009-03-03 10:04:23 +00001//===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Reid Spencer361e5132004-11-12 20:37:43 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Reid Spencer361e5132004-11-12 20:37:43 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM module linker.
11//
Reid Spencer361e5132004-11-12 20:37:43 +000012//===----------------------------------------------------------------------===//
13
Chandler Carruth6cc07df2014-03-06 03:42:23 +000014#include "llvm/Linker/Linker.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm-c/Linker.h"
Rafael Espindola31ad4682014-12-03 22:36:37 +000016#include "llvm/ADT/Hashing.h"
Rafael Espindola23f8d642012-01-05 23:02:01 +000017#include "llvm/ADT/Optional.h"
Bill Wendling66f02412012-02-11 11:38:06 +000018#include "llvm/ADT/SetVector.h"
Eli Bendersky0f7fd362013-03-19 15:26:24 +000019#include "llvm/ADT/SmallString.h"
Rafael Espindola31ad4682014-12-03 22:36:37 +000020#include "llvm/ADT/Statistic.h"
Akira Hatanakac43df512015-02-13 00:40:41 +000021#include "llvm/ADT/Triple.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +000023#include "llvm/IR/DebugInfo.h"
Rafael Espindolad12b4a32014-10-25 04:06:10 +000024#include "llvm/IR/DiagnosticInfo.h"
25#include "llvm/IR/DiagnosticPrinter.h"
26#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Module.h"
Chandler Carruthdcb603f2013-01-07 15:43:51 +000028#include "llvm/IR/TypeFinder.h"
Eli Benderskye17f3702014-02-06 18:01:56 +000029#include "llvm/Support/CommandLine.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000030#include "llvm/Support/Debug.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000031#include "llvm/Support/raw_ostream.h"
Tanya Lattnercbb91402011-10-11 00:24:54 +000032#include "llvm/Transforms/Utils/Cloning.h"
Will Dietz981af002013-10-12 00:55:57 +000033#include <cctype>
David Majnemer82d6ff62014-06-27 18:38:12 +000034#include <tuple>
Reid Spencer361e5132004-11-12 20:37:43 +000035using namespace llvm;
36
Eli Benderskye17f3702014-02-06 18:01:56 +000037
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000038//===----------------------------------------------------------------------===//
39// TypeMap implementation.
40//===----------------------------------------------------------------------===//
Reid Spencer361e5132004-11-12 20:37:43 +000041
Chris Lattnereee6f992008-06-16 21:00:18 +000042namespace {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000043class TypeMapTy : public ValueMapTypeRemapper {
Rafael Espindola18c89412014-10-27 02:35:46 +000044 /// This is a mapping from a source type to a destination type to use.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000045 DenseMap<Type*, Type*> MappedTypes;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +000046
Rafael Espindola18c89412014-10-27 02:35:46 +000047 /// 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 Lattnerb1ed91f2011-07-09 17:41:24 +000050 SmallVector<Type*, 16> SpeculativeTypes;
Rafael Espindolaed6dc372014-05-09 14:39:25 +000051
Rafael Espindolaa96f2352014-11-28 16:41:24 +000052 SmallVector<StructType*, 16> SpeculativeDstOpaqueTypes;
53
Rafael Espindola18c89412014-10-27 02:35:46 +000054 /// 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 Lattner5e3bd972011-12-20 00:03:52 +000056 SmallVector<StructType*, 16> SrcDefinitionsToResolve;
Rafael Espindolaed6dc372014-05-09 14:39:25 +000057
Rafael Espindola18c89412014-10-27 02:35:46 +000058 /// This is the set of opaque types in the destination modules who are
59 /// getting a body from the source module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000060 SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes;
Bill Wendling8c2cc412012-03-22 20:30:41 +000061
Chris Lattner56cdea62008-06-16 23:06:51 +000062public:
Rafael Espindola31ad4682014-12-03 22:36:37 +000063 TypeMapTy(Linker::IdentifiedStructTypeSet &DstStructTypesSet)
64 : DstStructTypesSet(DstStructTypesSet) {}
Rafael Espindolaaa9918a2013-05-04 05:05:18 +000065
Rafael Espindola31ad4682014-12-03 22:36:37 +000066 Linker::IdentifiedStructTypeSet &DstStructTypesSet;
Rafael Espindola18c89412014-10-27 02:35:46 +000067 /// Indicate that the specified type in the destination module is conceptually
68 /// equivalent to the specified type in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000069 void addTypeMapping(Type *DstTy, Type *SrcTy);
70
Rafael Espindolad2a13a22014-11-25 04:28:31 +000071 /// Produce a body for an opaque type in the dest module from a type
72 /// definition in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000073 void linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +000074
Rafael Espindola18c89412014-10-27 02:35:46 +000075 /// Return the mapped type to use for the specified input type from the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000076 /// source module.
77 Type *get(Type *SrcTy);
Rafael Espindola31ad4682014-12-03 22:36:37 +000078 Type *get(Type *SrcTy, SmallPtrSet<StructType *, 8> &Visited);
79
80 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000081
Rafael Espindola290e2cc2014-11-25 14:35:53 +000082 FunctionType *get(FunctionType *T) {
83 return cast<FunctionType>(get((Type *)T));
84 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000085
Rafael Espindola18c89412014-10-27 02:35:46 +000086 /// Dump out the type map for debugging purposes.
Bill Wendlingb6af2f32012-03-22 20:28:27 +000087 void dump() const {
Rafael Espindola8f144712014-11-25 06:16:27 +000088 for (auto &Pair : MappedTypes) {
Bill Wendlingb6af2f32012-03-22 20:28:27 +000089 dbgs() << "TypeMap: ";
Rafael Espindola8f144712014-11-25 06:16:27 +000090 Pair.first->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000091 dbgs() << " => ";
Rafael Espindola8f144712014-11-25 06:16:27 +000092 Pair.second->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000093 dbgs() << '\n';
94 }
95 }
Bill Wendlingb6af2f32012-03-22 20:28:27 +000096
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000097private:
Rafael Espindola290e2cc2014-11-25 14:35:53 +000098 Type *remapType(Type *SrcTy) override { return get(SrcTy); }
Rafael Espindolaed6dc372014-05-09 14:39:25 +000099
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000100 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +0000101};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000102}
Chris Lattnereee6f992008-06-16 21:00:18 +0000103
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000104void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
Rafael Espindola3d097412014-11-28 16:26:14 +0000105 assert(SpeculativeTypes.empty());
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000106 assert(SpeculativeDstOpaqueTypes.empty());
Rafael Espindola3d097412014-11-28 16:26:14 +0000107
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000108 // Check to see if these types are recursively isomorphic and establish a
109 // mapping between them if so.
Duncan P. N. Exon Smithc586eaa2014-11-27 17:01:10 +0000110 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 Espindola3d097412014-11-28 16:26:14 +0000113 for (Type *Ty : SpeculativeTypes)
114 MappedTypes.erase(Ty);
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000115
116 SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() -
117 SpeculativeDstOpaqueTypes.size());
118 for (StructType *Ty : SpeculativeDstOpaqueTypes)
119 DstResolvedOpaqueTypes.erase(Ty);
Rafael Espindola04a74af2014-12-01 04:15:59 +0000120 } else {
121 for (Type *Ty : SpeculativeTypes)
122 if (auto *STy = dyn_cast<StructType>(Ty))
123 if (STy->hasName())
124 STy->setName("");
Bill Wendlingd48b7782012-02-28 04:01:21 +0000125 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000126 SpeculativeTypes.clear();
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000127 SpeculativeDstOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000128}
Chris Lattnereee6f992008-06-16 21:00:18 +0000129
Rafael Espindola18c89412014-10-27 02:35:46 +0000130/// Recursively walk this pair of types, returning true if they are isomorphic,
131/// false if they are not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000132bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
133 // Two types with differing kinds are clearly not isomorphic.
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000134 if (DstTy->getTypeID() != SrcTy->getTypeID())
135 return false;
Misha Brukman10468d82005-04-21 22:55:34 +0000136
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000137 // 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 Brukman10468d82005-04-21 22:55:34 +0000141
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000142 // Two identical types are clearly isomorphic. Remember this
143 // non-speculatively.
144 if (DstTy == SrcTy) {
145 Entry = DstTy;
Chris Lattnerfe677e92008-06-16 20:03:01 +0000146 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000147 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000148
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000149 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000150
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000151 // 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 Spencer361e5132004-11-12 20:37:43 +0000157 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000158 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000159
Chris Lattner5e3bd972011-12-20 00:03:52 +0000160 // 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 Espindolaa96f2352014-11-28 16:41:24 +0000162 // 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 Lattnerb1ed91f2011-07-09 17:41:24 +0000164 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-12-20 00:03:52 +0000165 // We can only map one source type onto the opaque destination type.
David Blaikie70573dc2014-11-19 07:49:26 +0000166 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second)
Chris Lattner5e3bd972011-12-20 00:03:52 +0000167 return false;
168 SrcDefinitionsToResolve.push_back(SSTy);
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000169 SpeculativeTypes.push_back(SrcTy);
170 SpeculativeDstOpaqueTypes.push_back(cast<StructType>(DstTy));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000171 Entry = DstTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000172 return true;
173 }
174 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000175
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000176 // If the number of subtypes disagree between the two types, then we fail.
177 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
Reid Spencer361e5132004-11-12 20:37:43 +0000178 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000179
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000180 // 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 Espindolaed6dc372014-05-09 14:39:25 +0000186
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000187 } 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 Lattner44f7ab42011-08-12 18:07:26 +0000192 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000193 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 Gouly5fad3e92013-01-10 10:49:36 +0000199 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000200 return false;
Reid Spencer361e5132004-11-12 20:37:43 +0000201 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000202
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 Espindola290e2cc2014-11-25 14:35:53 +0000208 for (unsigned I = 0, E = SrcTy->getNumContainedTypes(); I != E; ++I)
209 if (!areTypesIsomorphic(DstTy->getContainedType(I),
210 SrcTy->getContainedType(I)))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000211 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000212
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000213 // If everything seems to have lined up, then everything is great.
214 return true;
215}
216
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000217void TypeMapTy::linkDefinedTypeBodies() {
218 SmallVector<Type*, 16> Elements;
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000219 for (StructType *SrcSTy : SrcDefinitionsToResolve) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000220 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000221 assert(DstSTy->isOpaque());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000222
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000223 // Map the body of the source type over to a new body for the dest type.
224 Elements.resize(SrcSTy->getNumElements());
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000225 for (unsigned I = 0, E = Elements.size(); I != E; ++I)
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000226 Elements[I] = get(SrcSTy->getElementType(I));
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000227
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000228 DstSTy->setBody(Elements, SrcSTy->isPacked());
Rafael Espindolaa5b9e1c2015-03-06 00:50:21 +0000229 DstStructTypesSet.switchToNonOpaque(DstSTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000230 }
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000231 SrcDefinitionsToResolve.clear();
Chris Lattner5e3bd972011-12-20 00:03:52 +0000232 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000233}
234
Rafael Espindola31ad4682014-12-03 22:36:37 +0000235void TypeMapTy::finishType(StructType *DTy, StructType *STy,
236 ArrayRef<Type *> ETypes) {
237 DTy->setBody(ETypes, STy->isPacked());
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000238
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 Espindola31ad4682014-12-03 22:36:37 +0000246 DstStructTypesSet.addNonOpaque(DTy);
247}
248
249Type *TypeMapTy::get(Type *Ty) {
250 SmallPtrSet<StructType *, 8> Visited;
251 return get(Ty, Visited);
252}
253
254Type *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 Lattnerb1ed91f2011-07-09 17:41:24 +0000356}
357
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000358//===----------------------------------------------------------------------===//
359// ModuleLinker implementation.
360//===----------------------------------------------------------------------===//
361
362namespace {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000363class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000364
Rafael Espindolac84f6082014-11-25 06:11:24 +0000365/// 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 Blaikie437aafd2015-10-19 22:15:55 +0000368class ValueMaterializerTy final : public ValueMaterializer {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000369 TypeMapTy &TypeMap;
370 Module *DstM;
Rafael Espindolaef237112014-12-08 18:45:16 +0000371 std::vector<GlobalValue *> &LazilyLinkGlobalValues;
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000372 ModuleLinker *ModLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000373
Rafael Espindolac84f6082014-11-25 06:11:24 +0000374public:
375 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000376 std::vector<GlobalValue *> &LazilyLinkGlobalValues,
377 ModuleLinker *ModLinker)
Rafael Espindolac84f6082014-11-25 06:11:24 +0000378 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000379 LazilyLinkGlobalValues(LazilyLinkGlobalValues), ModLinker(ModLinker) {}
Rafael Espindolac84f6082014-11-25 06:11:24 +0000380
381 Value *materializeValueFor(Value *V) override;
382};
383
384class LinkDiagnosticInfo : public DiagnosticInfo {
385 const Twine &Msg;
386
387public:
388 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
389 void print(DiagnosticPrinter &DP) const override;
390};
391LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
392 const Twine &Msg)
393 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
394void 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.
398class 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 Molloyf6f121e2013-05-28 15:17:05 +0000414 };
415
Rafael Espindolac84f6082014-11-25 06:11:24 +0000416 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000417
Rafael Espindolac84f6082014-11-25 06:11:24 +0000418 // Set of items not to link in from source.
419 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000420
Rafael Espindolaef237112014-12-08 18:45:16 +0000421 // Vector of GlobalValues to lazily link in.
422 std::vector<GlobalValue *> LazilyLinkGlobalValues;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000423
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +0000424 /// Functions that have replaced other functions.
425 SmallPtrSet<const Function *, 16> OverridingFunctions;
426
Rafael Espindolad0b23be2015-01-10 00:07:30 +0000427 DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000428
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +0000429 /// For symbol clashes, prefer those from Src.
Artem Belevich020d4fb2015-09-01 17:55:55 +0000430 unsigned Flags;
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +0000431
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000432 /// Function index passed into ModuleLinker for using in function
433 /// importing/exporting handling.
434 FunctionInfoIndex *ImportIndex;
435
436 /// Function to import from source module, all other functions are
437 /// imported as declarations instead of definitions.
438 Function *ImportFunction;
439
440 /// Set to true if the given FunctionInfoIndex contains any functions
441 /// from this source module, in which case we must conservatively assume
442 /// that any of its functions may be imported into another module
443 /// as part of a different backend compilation process.
444 bool HasExportedFunctions;
445
Rafael Espindolac84f6082014-11-25 06:11:24 +0000446public:
Rafael Espindola31ad4682014-12-03 22:36:37 +0000447 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM,
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000448 DiagnosticHandlerFunction DiagnosticHandler, unsigned Flags,
449 FunctionInfoIndex *Index = nullptr,
450 Function *FuncToImport = nullptr)
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000451 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000452 ValMaterializer(TypeMap, DstM, LazilyLinkGlobalValues, this),
453 DiagnosticHandler(DiagnosticHandler), Flags(Flags), ImportIndex(Index),
454 ImportFunction(FuncToImport), HasExportedFunctions(false) {
455 assert((ImportIndex || !ImportFunction) &&
456 "Expect a FunctionInfoIndex when importing");
457 // If we have a FunctionInfoIndex but no function to import,
458 // then this is the primary module being compiled in a ThinLTO
459 // backend compilation, and we need to see if it has functions that
460 // may be exported to another backend compilation.
461 if (ImportIndex && !ImportFunction)
462 HasExportedFunctions = ImportIndex->hasExportedFunctions(SrcM);
463 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000464
Rafael Espindolac84f6082014-11-25 06:11:24 +0000465 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000466
Artem Belevich020d4fb2015-09-01 17:55:55 +0000467 bool shouldOverrideFromSrc() { return Flags & Linker::OverrideFromSrc; }
468 bool shouldLinkOnlyNeeded() { return Flags & Linker::LinkOnlyNeeded; }
469 bool shouldInternalizeLinkedSymbols() {
470 return Flags & Linker::InternalizeLinkedSymbols;
471 }
472
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000473 /// Handles cloning of a global values from the source module into
474 /// the destination module, including setting the attributes and visibility.
475 GlobalValue *copyGlobalValueProto(TypeMapTy &TypeMap, const GlobalValue *SGV,
476 const GlobalValue *DGV = nullptr);
477
478 /// Check if we should promote the given local value to global scope.
479 bool doPromoteLocalToGlobal(const GlobalValue *SGV);
480
Rafael Espindolac84f6082014-11-25 06:11:24 +0000481private:
482 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
483 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000484
Rafael Espindolac84f6082014-11-25 06:11:24 +0000485 /// Helper method for setting a message and returning an error code.
486 bool emitError(const Twine &Message) {
487 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
488 return true;
489 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000490
Rafael Espindolac84f6082014-11-25 06:11:24 +0000491 void emitWarning(const Twine &Message) {
492 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
493 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000494
Rafael Espindolac84f6082014-11-25 06:11:24 +0000495 bool getComdatLeader(Module *M, StringRef ComdatName,
496 const GlobalVariable *&GVar);
497 bool computeResultingSelectionKind(StringRef ComdatName,
498 Comdat::SelectionKind Src,
499 Comdat::SelectionKind Dst,
500 Comdat::SelectionKind &Result,
501 bool &LinkFromSrc);
502 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
503 ComdatsChosen;
504 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
505 bool &LinkFromSrc);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000506
Rafael Espindolac84f6082014-11-25 06:11:24 +0000507 /// Given a global in the source module, return the global in the
508 /// destination module that is being linked to, if any.
509 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
510 // If the source has no name it can't link. If it has local linkage,
511 // there is no name match-up going on.
512 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
513 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000514
Rafael Espindolac84f6082014-11-25 06:11:24 +0000515 // Otherwise see if we have a match in the destination module's symtab.
516 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
517 if (!DGV)
518 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000519
Rafael Espindolac84f6082014-11-25 06:11:24 +0000520 // If we found a global with the same name in the dest module, but it has
521 // internal linkage, we are really not doing any linkage here.
522 if (DGV->hasLocalLinkage())
523 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000524
Rafael Espindolac84f6082014-11-25 06:11:24 +0000525 // Otherwise, we do in fact link to the destination global.
526 return DGV;
527 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000528
Rafael Espindolac84f6082014-11-25 06:11:24 +0000529 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000530
Rafael Espindolac84f6082014-11-25 06:11:24 +0000531 void upgradeMismatchedGlobalArray(StringRef Name);
532 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000533
Rafael Espindolac84f6082014-11-25 06:11:24 +0000534 bool linkAppendingVarProto(GlobalVariable *DstGV,
535 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000536
Rafael Espindolac84f6082014-11-25 06:11:24 +0000537 bool linkGlobalValueProto(GlobalValue *GV);
Rafael Espindolac84f6082014-11-25 06:11:24 +0000538 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000539
Rafael Espindolac84f6082014-11-25 06:11:24 +0000540 void linkAppendingVarInit(const AppendingVarInfo &AVI);
Rafael Espindolaef237112014-12-08 18:45:16 +0000541
542 void linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src);
543 bool linkFunctionBody(Function &Dst, Function &Src);
544 void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src);
545 bool linkGlobalValueBody(GlobalValue &Src);
546
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000547 /// Functions that take care of cloning a specific global value type
548 /// into the destination module.
549 GlobalVariable *copyGlobalVariableProto(TypeMapTy &TypeMap,
550 const GlobalVariable *SGVar);
551 Function *copyFunctionProto(TypeMapTy &TypeMap, const Function *SF);
552 GlobalValue *copyGlobalAliasProto(TypeMapTy &TypeMap, const GlobalAlias *SGA);
553
554 /// Helper methods to check if we are importing from or potentially
555 /// exporting from the current source module.
556 bool isPerformingImport() { return ImportFunction != nullptr; }
557 bool isModuleExporting() { return HasExportedFunctions; }
558
559 /// If we are importing from the source module, checks if we should
560 /// import SGV as a definition, otherwise import as a declaration.
561 bool doImportAsDefinition(const GlobalValue *SGV);
562
563 /// Get the name for SGV that should be used in the linked destination
564 /// module. Specifically, this handles the case where we need to rename
565 /// a local that is being promoted to global scope.
566 std::string getName(const GlobalValue *SGV);
567
568 /// Get the new linkage for SGV that should be used in the linked destination
569 /// module. Specifically, for ThinLTO importing or exporting it may need
570 /// to be adjusted.
571 GlobalValue::LinkageTypes getLinkage(const GlobalValue *SGV);
572
573 /// Copies the necessary global value attributes and name from the source
574 /// to the newly cloned global value.
575 void copyGVAttributes(GlobalValue *NewGV, const GlobalValue *SrcGV);
576
577 /// Updates the visibility for the new global cloned from the source
578 /// and, if applicable, linked with an existing destination global.
579 /// Handles visibility change required for promoted locals.
580 void setVisibility(GlobalValue *NewGV, const GlobalValue *SGV,
581 const GlobalValue *DGV = nullptr);
582
Rafael Espindolac84f6082014-11-25 06:11:24 +0000583 void linkNamedMDNodes();
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +0000584 void stripReplacedSubprograms();
Rafael Espindolac84f6082014-11-25 06:11:24 +0000585};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000586}
Bill Wendlingd48b7782012-02-28 04:01:21 +0000587
Rafael Espindola18c89412014-10-27 02:35:46 +0000588/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
589/// table. This is good for all clients except for us. Go through the trouble
590/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000591static void forceRenaming(GlobalValue *GV, StringRef Name) {
592 // If the global doesn't force its name or if it already has the right name,
593 // there is nothing for us to do.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000594 // Note that any required local to global promotion should already be done,
595 // so promoted locals will not skip this handling as their linkage is no
596 // longer local.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000597 if (GV->hasLocalLinkage() || GV->getName() == Name)
598 return;
599
600 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000601
602 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000603 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000604 GV->takeName(ConflictGV);
605 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000606 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000607 } else {
608 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000609 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000610}
Reid Spencer90246aa2007-02-04 04:29:21 +0000611
Rafael Espindola18c89412014-10-27 02:35:46 +0000612/// copy additional attributes (those not needed to construct a GlobalValue)
613/// from the SrcGV to the DestGV.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000614void ModuleLinker::copyGVAttributes(GlobalValue *NewGV,
615 const GlobalValue *SrcGV) {
616 auto *GA = dyn_cast<GlobalAlias>(SrcGV);
617 // Check for the special case of converting an alias (definition) to a
618 // non-alias (declaration). This can happen when we are importing and
619 // encounter a weak_any alias (weak_any defs may not be imported, see
620 // comments in ModuleLinker::getLinkage) or an alias whose base object is
621 // being imported as a declaration. In that case copy the attributes from the
622 // base object.
623 if (GA && !dyn_cast<GlobalAlias>(NewGV)) {
624 assert(isPerformingImport() &&
625 (GA->hasWeakAnyLinkage() ||
626 !doImportAsDefinition(GA->getBaseObject())));
627 NewGV->copyAttributesFrom(GA->getBaseObject());
628 } else
629 NewGV->copyAttributesFrom(SrcGV);
630 forceRenaming(NewGV, getName(SrcGV));
Reid Spencer361e5132004-11-12 20:37:43 +0000631}
632
Rafael Espindola23f8d642012-01-05 23:02:01 +0000633static bool isLessConstraining(GlobalValue::VisibilityTypes a,
634 GlobalValue::VisibilityTypes b) {
635 if (a == GlobalValue::HiddenVisibility)
636 return false;
637 if (b == GlobalValue::HiddenVisibility)
638 return true;
639 if (a == GlobalValue::ProtectedVisibility)
640 return false;
641 if (b == GlobalValue::ProtectedVisibility)
642 return true;
643 return false;
644}
645
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000646bool ModuleLinker::doImportAsDefinition(const GlobalValue *SGV) {
647 if (!isPerformingImport())
648 return false;
649 // Always import GlobalVariable definitions. The linkage changes
650 // described in ModuleLinker::getLinkage ensure the correct behavior (e.g.
651 // global variables with external linkage are transformed to
652 // available_externally defintions, which are ultimately turned into
653 // declaratios after the EliminateAvailableExternally pass).
654 if (dyn_cast<GlobalVariable>(SGV) && !SGV->isDeclaration())
655 return true;
656 // Only import the function requested for importing.
657 auto *SF = dyn_cast<Function>(SGV);
658 if (SF && SF == ImportFunction)
659 return true;
660 // Otherwise no.
661 return false;
662}
663
664bool ModuleLinker::doPromoteLocalToGlobal(const GlobalValue *SGV) {
665 assert(SGV->hasLocalLinkage());
666 // Both the imported references and the original local variable must
667 // be promoted.
668 if (!isPerformingImport() && !isModuleExporting())
669 return false;
670
671 // Local const variables never need to be promoted unless they are address
672 // taken. The imported uses can simply use the clone created in this module.
673 // For now we are conservative in determining which variables are not
674 // address taken by checking the unnamed addr flag. To be more aggressive,
675 // the address taken information must be checked earlier during parsing
676 // of the module and recorded in the function index for use when importing
677 // from that module.
678 auto *GVar = dyn_cast<GlobalVariable>(SGV);
679 if (GVar && GVar->isConstant() && GVar->hasUnnamedAddr())
680 return false;
681
682 // Eventually we only need to promote functions in the exporting module that
683 // are referenced by a potentially exported function (i.e. one that is in the
684 // function index).
685 return true;
686}
687
688std::string ModuleLinker::getName(const GlobalValue *SGV) {
689 // For locals that must be promoted to global scope, ensure that
690 // the promoted name uniquely identifies the copy in the original module,
691 // using the ID assigned during combined index creation. When importing,
692 // we rename all locals (not just those that are promoted) in order to
693 // avoid naming conflicts between locals imported from different modules.
694 if (SGV->hasLocalLinkage() &&
695 (doPromoteLocalToGlobal(SGV) || isPerformingImport()))
696 return FunctionInfoIndex::getGlobalNameForLocal(
697 SGV->getName(),
698 ImportIndex->getModuleId(SGV->getParent()->getModuleIdentifier()));
699 return SGV->getName();
700}
701
702GlobalValue::LinkageTypes ModuleLinker::getLinkage(const GlobalValue *SGV) {
703 // Any local variable that is referenced by an exported function needs
704 // to be promoted to global scope. Since we don't currently know which
705 // functions reference which local variables/functions, we must treat
706 // all as potentially exported if this module is exporting anything.
707 if (isModuleExporting()) {
708 if (SGV->hasLocalLinkage() && doPromoteLocalToGlobal(SGV))
709 return GlobalValue::ExternalLinkage;
710 return SGV->getLinkage();
711 }
712
713 // Otherwise, if we aren't importing, no linkage change is needed.
714 if (!isPerformingImport())
715 return SGV->getLinkage();
716
717 switch (SGV->getLinkage()) {
718 case GlobalValue::ExternalLinkage:
719 // External defnitions are converted to available_externally
720 // definitions upon import, so that they are available for inlining
721 // and/or optimization, but are turned into declarations later
722 // during the EliminateAvailableExternally pass.
723 if (doImportAsDefinition(SGV))
724 return GlobalValue::AvailableExternallyLinkage;
725 // An imported external declaration stays external.
726 return SGV->getLinkage();
727
728 case GlobalValue::AvailableExternallyLinkage:
729 // An imported available_externally definition converts
730 // to external if imported as a declaration.
731 if (!doImportAsDefinition(SGV))
732 return GlobalValue::ExternalLinkage;
733 // An imported available_externally declaration stays that way.
734 return SGV->getLinkage();
735
736 case GlobalValue::LinkOnceAnyLinkage:
737 case GlobalValue::LinkOnceODRLinkage:
738 // These both stay the same when importing the definition.
739 // The ThinLTO pass will eventually force-import their definitions.
740 return SGV->getLinkage();
741
742 case GlobalValue::WeakAnyLinkage:
743 // Can't import weak_any definitions correctly, or we might change the
744 // program semantics, since the linker will pick the first weak_any
745 // definition and importing would change the order they are seen by the
746 // linker. The module linking caller needs to enforce this.
747 assert(!doImportAsDefinition(SGV));
748 // If imported as a declaration, it becomes external_weak.
749 return GlobalValue::ExternalWeakLinkage;
750
751 case GlobalValue::WeakODRLinkage:
752 // For weak_odr linkage, there is a guarantee that all copies will be
753 // equivalent, so the issue described above for weak_any does not exist,
754 // and the definition can be imported. It can be treated similarly
755 // to an imported externally visible global value.
756 if (doImportAsDefinition(SGV))
757 return GlobalValue::AvailableExternallyLinkage;
758 else
759 return GlobalValue::ExternalLinkage;
760
761 case GlobalValue::AppendingLinkage:
762 // It would be incorrect to import an appending linkage variable,
763 // since it would cause global constructors/destructors to be
764 // executed multiple times. This should have already been handled
765 // by linkGlobalValueProto.
766 assert(false && "Cannot import appending linkage variable");
767
768 case GlobalValue::InternalLinkage:
769 case GlobalValue::PrivateLinkage:
770 // If we are promoting the local to global scope, it is handled
771 // similarly to a normal externally visible global.
772 if (doPromoteLocalToGlobal(SGV)) {
773 if (doImportAsDefinition(SGV))
774 return GlobalValue::AvailableExternallyLinkage;
775 else
776 return GlobalValue::ExternalLinkage;
777 }
778 // A non-promoted imported local definition stays local.
779 // The ThinLTO pass will eventually force-import their definitions.
780 return SGV->getLinkage();
781
782 case GlobalValue::ExternalWeakLinkage:
783 // External weak doesn't apply to definitions, must be a declaration.
784 assert(!doImportAsDefinition(SGV));
785 // Linkage stays external_weak.
786 return SGV->getLinkage();
787
788 case GlobalValue::CommonLinkage:
789 // Linkage stays common on definitions.
790 // The ThinLTO pass will eventually force-import their definitions.
791 return SGV->getLinkage();
792 }
793
794 llvm_unreachable("unknown linkage type");
795}
796
Rafael Espindolaef237112014-12-08 18:45:16 +0000797/// Loop through the global variables in the src module and merge them into the
798/// dest module.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000799GlobalVariable *
800ModuleLinker::copyGlobalVariableProto(TypeMapTy &TypeMap,
801 const GlobalVariable *SGVar) {
Rafael Espindolaef237112014-12-08 18:45:16 +0000802 // No linking to be performed or linking from the source: simply create an
803 // identical version of the symbol over in the dest module... the
804 // initializer will be filled in later by LinkGlobalInits.
805 GlobalVariable *NewDGV = new GlobalVariable(
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000806 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
807 SGVar->isConstant(), getLinkage(SGVar), /*init*/ nullptr, getName(SGVar),
808 /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
Rafael Espindolaef237112014-12-08 18:45:16 +0000809 SGVar->getType()->getAddressSpace());
810
811 return NewDGV;
812}
813
814/// Link the function in the source module into the destination module if
815/// needed, setting up mapping information.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000816Function *ModuleLinker::copyFunctionProto(TypeMapTy &TypeMap,
817 const Function *SF) {
Rafael Espindolaef237112014-12-08 18:45:16 +0000818 // If there is no linkage to be performed or we are linking from the source,
819 // bring SF over.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000820 return Function::Create(TypeMap.get(SF->getFunctionType()), getLinkage(SF),
821 getName(SF), DstM);
Rafael Espindolaef237112014-12-08 18:45:16 +0000822}
823
824/// Set up prototypes for any aliases that come over from the source module.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000825GlobalValue *ModuleLinker::copyGlobalAliasProto(TypeMapTy &TypeMap,
826 const GlobalAlias *SGA) {
827 // If we are importing and encounter a weak_any alias, or an alias to
828 // an object being imported as a declaration, we must import the alias
829 // as a declaration as well, which involves converting it to a non-alias.
830 // See comments in ModuleLinker::getLinkage for why we cannot import
831 // weak_any defintions.
832 if (isPerformingImport() && (SGA->hasWeakAnyLinkage() ||
833 !doImportAsDefinition(SGA->getBaseObject()))) {
834 // Need to convert to declaration. All aliases must be definitions.
835 const GlobalValue *GVal = SGA->getBaseObject();
836 GlobalValue *NewGV;
837 if (auto *GVar = dyn_cast<GlobalVariable>(GVal))
838 NewGV = copyGlobalVariableProto(TypeMap, GVar);
839 else {
840 auto *F = dyn_cast<Function>(GVal);
841 assert(F);
842 NewGV = copyFunctionProto(TypeMap, F);
843 }
Teresa Johnsonf1b0a6e2015-11-04 16:01:16 +0000844 // Set the linkage to External or ExternalWeak (see comments in
845 // ModuleLinker::getLinkage for why WeakAny is converted to ExternalWeak).
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000846 if (SGA->hasWeakAnyLinkage())
847 NewGV->setLinkage(GlobalValue::ExternalWeakLinkage);
Teresa Johnsonf1b0a6e2015-11-04 16:01:16 +0000848 else
849 NewGV->setLinkage(GlobalValue::ExternalLinkage);
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000850 // Don't attempt to link body, needs to be a declaration.
851 DoNotLinkFromSource.insert(SGA);
852 return NewGV;
853 }
Rafael Espindolaef237112014-12-08 18:45:16 +0000854 // If there is no linkage to be performed or we're linking from the source,
855 // bring over SGA.
David Blaikie6614d8d2015-09-14 20:29:26 +0000856 auto *Ty = TypeMap.get(SGA->getValueType());
857 return GlobalAlias::create(Ty, SGA->getType()->getPointerAddressSpace(),
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000858 getLinkage(SGA), getName(SGA), DstM);
Rafael Espindolaef237112014-12-08 18:45:16 +0000859}
860
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000861void ModuleLinker::setVisibility(GlobalValue *NewGV, const GlobalValue *SGV,
862 const GlobalValue *DGV) {
863 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
864 if (DGV)
865 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
866 ? DGV->getVisibility()
867 : Visibility;
868 // For promoted locals, mark them hidden so that they can later be
869 // stripped from the symbol table to reduce bloat.
870 if (SGV->hasLocalLinkage() && doPromoteLocalToGlobal(SGV))
871 Visibility = GlobalValue::HiddenVisibility;
872 NewGV->setVisibility(Visibility);
873}
874
875GlobalValue *ModuleLinker::copyGlobalValueProto(TypeMapTy &TypeMap,
876 const GlobalValue *SGV,
877 const GlobalValue *DGV) {
Rafael Espindolaef237112014-12-08 18:45:16 +0000878 GlobalValue *NewGV;
879 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV))
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000880 NewGV = copyGlobalVariableProto(TypeMap, SGVar);
Rafael Espindolaef237112014-12-08 18:45:16 +0000881 else if (auto *SF = dyn_cast<Function>(SGV))
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000882 NewGV = copyFunctionProto(TypeMap, SF);
Rafael Espindolaef237112014-12-08 18:45:16 +0000883 else
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000884 NewGV = copyGlobalAliasProto(TypeMap, cast<GlobalAlias>(SGV));
Rafael Espindolaef237112014-12-08 18:45:16 +0000885 copyGVAttributes(NewGV, SGV);
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000886 setVisibility(NewGV, SGV, DGV);
Rafael Espindolaef237112014-12-08 18:45:16 +0000887 return NewGV;
888}
889
James Molloyf6f121e2013-05-28 15:17:05 +0000890Value *ValueMaterializerTy::materializeValueFor(Value *V) {
Rafael Espindolaef237112014-12-08 18:45:16 +0000891 auto *SGV = dyn_cast<GlobalValue>(V);
892 if (!SGV)
Craig Topper2617dcc2014-04-15 06:32:26 +0000893 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000894
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +0000895 GlobalValue *DGV = ModLinker->copyGlobalValueProto(TypeMap, SGV);
James Molloyf6f121e2013-05-28 15:17:05 +0000896
Rafael Espindolaef237112014-12-08 18:45:16 +0000897 if (Comdat *SC = SGV->getComdat()) {
898 if (auto *DGO = dyn_cast<GlobalObject>(DGV)) {
899 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
900 DGO->setComdat(DC);
901 }
Rafael Espindola3931c282014-08-15 20:17:08 +0000902 }
903
Rafael Espindolaef237112014-12-08 18:45:16 +0000904 LazilyLinkGlobalValues.push_back(SGV);
905 return DGV;
James Molloyf6f121e2013-05-28 15:17:05 +0000906}
907
David Majnemerdad0a642014-06-27 18:19:56 +0000908bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
909 const GlobalVariable *&GVar) {
910 const GlobalValue *GVal = M->getNamedValue(ComdatName);
911 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
912 GVal = GA->getBaseObject();
913 if (!GVal)
914 // We cannot resolve the size of the aliasee yet.
915 return emitError("Linking COMDATs named '" + ComdatName +
916 "': COMDAT key involves incomputable alias size.");
917 }
918
919 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
920 if (!GVar)
921 return emitError(
922 "Linking COMDATs named '" + ComdatName +
923 "': GlobalVariable required for data dependent selection!");
924
925 return false;
926}
927
928bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
929 Comdat::SelectionKind Src,
930 Comdat::SelectionKind Dst,
931 Comdat::SelectionKind &Result,
932 bool &LinkFromSrc) {
933 // The ability to mix Comdat::SelectionKind::Any with
934 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
935 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
936 Dst == Comdat::SelectionKind::Largest;
937 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
938 Src == Comdat::SelectionKind::Largest;
939 if (DstAnyOrLargest && SrcAnyOrLargest) {
940 if (Dst == Comdat::SelectionKind::Largest ||
941 Src == Comdat::SelectionKind::Largest)
942 Result = Comdat::SelectionKind::Largest;
943 else
944 Result = Comdat::SelectionKind::Any;
945 } else if (Src == Dst) {
946 Result = Dst;
947 } else {
948 return emitError("Linking COMDATs named '" + ComdatName +
949 "': invalid selection kinds!");
950 }
951
952 switch (Result) {
953 case Comdat::SelectionKind::Any:
954 // Go with Dst.
955 LinkFromSrc = false;
956 break;
957 case Comdat::SelectionKind::NoDuplicates:
958 return emitError("Linking COMDATs named '" + ComdatName +
959 "': noduplicates has been violated!");
960 case Comdat::SelectionKind::ExactMatch:
961 case Comdat::SelectionKind::Largest:
962 case Comdat::SelectionKind::SameSize: {
963 const GlobalVariable *DstGV;
964 const GlobalVariable *SrcGV;
965 if (getComdatLeader(DstM, ComdatName, DstGV) ||
966 getComdatLeader(SrcM, ComdatName, SrcGV))
967 return true;
968
Mehdi Amini46a43552015-03-04 18:43:29 +0000969 const DataLayout &DstDL = DstM->getDataLayout();
970 const DataLayout &SrcDL = SrcM->getDataLayout();
David Majnemerdad0a642014-06-27 18:19:56 +0000971 uint64_t DstSize =
Mehdi Amini46a43552015-03-04 18:43:29 +0000972 DstDL.getTypeAllocSize(DstGV->getType()->getPointerElementType());
David Majnemerdad0a642014-06-27 18:19:56 +0000973 uint64_t SrcSize =
Mehdi Amini46a43552015-03-04 18:43:29 +0000974 SrcDL.getTypeAllocSize(SrcGV->getType()->getPointerElementType());
David Majnemerdad0a642014-06-27 18:19:56 +0000975 if (Result == Comdat::SelectionKind::ExactMatch) {
976 if (SrcGV->getInitializer() != DstGV->getInitializer())
977 return emitError("Linking COMDATs named '" + ComdatName +
978 "': ExactMatch violated!");
979 LinkFromSrc = false;
980 } else if (Result == Comdat::SelectionKind::Largest) {
981 LinkFromSrc = SrcSize > DstSize;
982 } else if (Result == Comdat::SelectionKind::SameSize) {
983 if (SrcSize != DstSize)
984 return emitError("Linking COMDATs named '" + ComdatName +
985 "': SameSize violated!");
986 LinkFromSrc = false;
987 } else {
988 llvm_unreachable("unknown selection kind");
989 }
990 break;
991 }
992 }
993
994 return false;
995}
996
997bool ModuleLinker::getComdatResult(const Comdat *SrcC,
998 Comdat::SelectionKind &Result,
999 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +00001000 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +00001001 StringRef ComdatName = SrcC->getName();
1002 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
1003 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +00001004
Rafael Espindolab16196a2014-08-11 17:07:34 +00001005 if (DstCI == ComdatSymTab.end()) {
1006 // Use the comdat if it is only available in one of the modules.
1007 LinkFromSrc = true;
1008 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +00001009 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +00001010 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +00001011
1012 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +00001013 Comdat::SelectionKind DSK = DstC->getSelectionKind();
1014 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
1015 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +00001016}
James Molloyf6f121e2013-05-28 15:17:05 +00001017
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001018bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
1019 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001020 const GlobalValue &Src) {
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +00001021 // Should we unconditionally use the Src?
Artem Belevich020d4fb2015-09-01 17:55:55 +00001022 if (shouldOverrideFromSrc()) {
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +00001023 LinkFromSrc = true;
1024 return false;
1025 }
1026
Rafael Espindola778fcc72014-11-02 13:28:57 +00001027 // We always have to add Src if it has appending linkage.
1028 if (Src.hasAppendingLinkage()) {
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001029 // Caller should have already determined that we can't link from source
1030 // when importing (see comments in linkGlobalValueProto).
1031 assert(!isPerformingImport());
Rafael Espindola778fcc72014-11-02 13:28:57 +00001032 LinkFromSrc = true;
1033 return false;
1034 }
1035
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001036 bool SrcIsDeclaration = Src.isDeclarationForLinker();
1037 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001038
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001039 if (isPerformingImport()) {
1040 if (isa<Function>(&Src)) {
1041 // For functions, LinkFromSrc iff this is the function requested
1042 // for importing. For variables, decide below normally.
1043 LinkFromSrc = (&Src == ImportFunction);
1044 return false;
1045 }
1046
1047 // Check if this is an alias with an already existing definition
1048 // in Dest, which must have come from a prior importing pass from
1049 // the same Src module. Unlike imported function and variable
1050 // definitions, which are imported as available_externally and are
1051 // not definitions for the linker, that is not a valid linkage for
1052 // imported aliases which must be definitions. Simply use the existing
1053 // Dest copy.
1054 if (isa<GlobalAlias>(&Src) && !DestIsDeclaration) {
1055 assert(isa<GlobalAlias>(&Dest));
1056 LinkFromSrc = false;
1057 return false;
1058 }
1059 }
1060
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001061 if (SrcIsDeclaration) {
1062 // If Src is external or if both Src & Dest are external.. Just link the
1063 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001064 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001065 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001066 LinkFromSrc = DestIsDeclaration;
1067 return false;
1068 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001069 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001070 LinkFromSrc = Dest.hasExternalWeakLinkage();
1071 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001072 }
1073
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001074 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001075 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001076 LinkFromSrc = true;
1077 return false;
1078 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001079
Rafael Espindola09106052014-09-09 15:59:12 +00001080 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001081 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
1082 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +00001083 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001084 }
1085
1086 if (!Dest.hasCommonLinkage()) {
1087 LinkFromSrc = false;
1088 return false;
1089 }
Rafael Espindola09106052014-09-09 15:59:12 +00001090
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001091 const DataLayout &DL = Dest.getParent()->getDataLayout();
Rafael Espindola09106052014-09-09 15:59:12 +00001092 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
1093 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001094 LinkFromSrc = SrcSize > DestSize;
1095 return false;
Rafael Espindola09106052014-09-09 15:59:12 +00001096 }
1097
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001098 if (Src.isWeakForLinker()) {
1099 assert(!Dest.hasExternalWeakLinkage());
1100 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +00001101
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001102 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
1103 LinkFromSrc = true;
1104 return false;
1105 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001106
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001107 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +00001108 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001109 }
1110
1111 if (Dest.isWeakForLinker()) {
1112 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001113 LinkFromSrc = true;
1114 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +00001115 }
1116
1117 assert(!Src.hasExternalWeakLinkage());
1118 assert(!Dest.hasExternalWeakLinkage());
1119 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
1120 "Unexpected linkage type!");
1121 return emitError("Linking globals named '" + Src.getName() +
1122 "': symbol multiply defined!");
1123}
1124
Rafael Espindola18c89412014-10-27 02:35:46 +00001125/// Loop over all of the linked values to compute type mappings. For example,
1126/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
1127/// types 'Foo' but one got renamed when the module was loaded into the same
1128/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001129void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +00001130 for (GlobalValue &SGV : SrcM->globals()) {
1131 GlobalValue *DGV = getLinkedToGlobal(&SGV);
1132 if (!DGV)
1133 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001134
Rafael Espindolac8a476e2014-11-25 04:26:19 +00001135 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
1136 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001137 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001138 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001139
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001140 // Unify the element type of appending arrays.
1141 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +00001142 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001143 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +00001144 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001145
Rafael Espindolac8a476e2014-11-25 04:26:19 +00001146 for (GlobalValue &SGV : *SrcM) {
1147 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
1148 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001149 }
Bill Wendling7b464612012-02-27 22:34:19 +00001150
Rafael Espindolae96d7eb2014-11-25 04:43:59 +00001151 for (GlobalValue &SGV : SrcM->aliases()) {
1152 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
1153 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
1154 }
1155
Bill Wendlingd48b7782012-02-28 04:01:21 +00001156 // Incorporate types by name, scanning all the types in the source module.
1157 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +00001158 // example. When the source module got loaded into the same LLVMContext, if
1159 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Rafael Espindola2fa1e432014-12-03 07:18:23 +00001160 std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes();
1161 for (StructType *ST : Types) {
Rafael Espindola4d4c9382014-12-01 19:08:07 +00001162 if (!ST->hasName())
1163 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001164
Bill Wendling2b3f61a2012-02-27 23:48:30 +00001165 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +00001166 size_t DotPos = ST->getName().rfind('.');
1167 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +00001168 ST->getName().back() == '.' ||
Rafael Espindola973b3612014-12-01 19:17:46 +00001169 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +00001170 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001171
Bill Wendling2b3f61a2012-02-27 23:48:30 +00001172 // Check to see if the destination module has a struct with the prefix name.
Rafael Espindola973b3612014-12-01 19:17:46 +00001173 StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos));
1174 if (!DST)
1175 continue;
1176
1177 // Don't use it if this actually came from the source module. They're in
1178 // the same LLVMContext after all. Also don't use it unless the type is
1179 // actually used in the destination module. This can happen in situations
1180 // like this:
1181 //
1182 // Module A Module B
1183 // -------- --------
1184 // %Z = type { %A } %B = type { %C.1 }
1185 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
1186 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
1187 // %C = type { i8* } %B.3 = type { %C.1 }
1188 //
1189 // When we link Module B with Module A, the '%B' in Module B is
1190 // used. However, that would then use '%C.1'. But when we process '%C.1',
1191 // we prefer to take the '%C' version. So we are then left with both
1192 // '%C.1' and '%C' being used for the same types. This leads to some
1193 // variables using one type and some using the other.
Rafael Espindola31ad4682014-12-03 22:36:37 +00001194 if (TypeMap.DstStructTypesSet.hasType(DST))
Rafael Espindola973b3612014-12-01 19:17:46 +00001195 TypeMap.addTypeMapping(DST, ST);
Bill Wendling2b3f61a2012-02-27 23:48:30 +00001196 }
1197
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001198 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001199 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001200 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +00001201}
1202
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001203static void upgradeGlobalArray(GlobalVariable *GV) {
1204 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
1205 StructType *OldTy = cast<StructType>(ATy->getElementType());
1206 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
1207
1208 // Get the upgraded 3 element type.
1209 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
1210 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
1211 VoidPtrTy};
1212 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
1213
1214 // Build new constants with a null third field filled in.
1215 Constant *OldInitC = GV->getInitializer();
1216 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
1217 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
1218 // Invalid initializer; give up.
1219 return;
1220 std::vector<Constant *> Initializers;
1221 if (OldInit && OldInit->getNumOperands()) {
1222 Value *Null = Constant::getNullValue(VoidPtrTy);
1223 for (Use &U : OldInit->operands()) {
1224 ConstantStruct *Init = cast<ConstantStruct>(U.get());
1225 Initializers.push_back(ConstantStruct::get(
1226 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
1227 }
1228 }
1229 assert(Initializers.size() == ATy->getNumElements() &&
1230 "Failed to copy all array elements");
1231
1232 // Replace the old GV with a new one.
1233 ATy = ArrayType::get(NewTy, Initializers.size());
1234 Constant *NewInit = ConstantArray::get(ATy, Initializers);
1235 GlobalVariable *NewGV = new GlobalVariable(
1236 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
1237 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
1238 GV->isExternallyInitialized());
1239 NewGV->copyAttributesFrom(GV);
1240 NewGV->takeName(GV);
1241 assert(GV->use_empty() && "program cannot use initializer list");
1242 GV->eraseFromParent();
1243}
1244
1245void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
1246 // Look for the global arrays.
1247 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
1248 if (!DstGV)
1249 return;
1250 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
1251 if (!SrcGV)
1252 return;
1253
1254 // Check if the types already match.
1255 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
1256 auto *SrcTy =
1257 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
1258 if (DstTy == SrcTy)
1259 return;
1260
1261 // Grab the element types. We can only upgrade an array of a two-field
1262 // struct. Only bother if the other one has three-fields.
1263 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
1264 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
1265 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
1266 upgradeGlobalArray(DstGV);
1267 return;
1268 }
1269 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
1270 upgradeGlobalArray(SrcGV);
1271
1272 // We can't upgrade any other differences.
1273}
1274
1275void ModuleLinker::upgradeMismatchedGlobals() {
1276 upgradeMismatchedGlobalArray("llvm.global_ctors");
1277 upgradeMismatchedGlobalArray("llvm.global_dtors");
1278}
1279
Rafael Espindola18c89412014-10-27 02:35:46 +00001280/// If there were any appending global variables, link them together now.
1281/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001282bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001283 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001284
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001285 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
1286 return emitError("Linking globals named '" + SrcGV->getName() +
1287 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001288
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001289 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
1290 ArrayType *SrcTy =
1291 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
1292 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001293
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001294 // Check to see that they two arrays agree on type.
1295 if (EltTy != SrcTy->getElementType())
1296 return emitError("Appending variables with different element types!");
1297 if (DstGV->isConstant() != SrcGV->isConstant())
1298 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001299
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001300 if (DstGV->getAlignment() != SrcGV->getAlignment())
1301 return emitError(
1302 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001303
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001304 if (DstGV->getVisibility() != SrcGV->getVisibility())
1305 return emitError(
1306 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +00001307
1308 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
1309 return emitError(
1310 "Appending variables with different unnamed_addr need to be linked!");
1311
Rafael Espindola64c1e182014-06-03 02:41:57 +00001312 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001313 return emitError(
1314 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001315
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001316 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
1317 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001318
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001319 // Create the new global variable.
1320 GlobalVariable *NG =
1321 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +00001322 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001323 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001324 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001325
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001326 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001327 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001328
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001329 AppendingVarInfo AVI;
1330 AVI.NewGV = NG;
1331 AVI.DstInit = DstGV->getInitializer();
1332 AVI.SrcInit = SrcGV->getInitializer();
1333 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001334
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001335 // Replace any uses of the two global variables with uses of the new
1336 // global.
1337 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +00001338
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001339 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
1340 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001341
Tanya Lattnercbb91402011-10-11 00:24:54 +00001342 // Track the source variable so we don't try to link it.
1343 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001344
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001345 return false;
1346}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001347
Rafael Espindola778fcc72014-11-02 13:28:57 +00001348bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001349 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001350
Rafael Espindola778fcc72014-11-02 13:28:57 +00001351 // Handle the ultra special appending linkage case first.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001352 assert(!DGV || SGV->hasAppendingLinkage() == DGV->hasAppendingLinkage());
1353 if (SGV->hasAppendingLinkage() && isPerformingImport()) {
1354 // Don't want to append to global_ctors list, for example, when we
1355 // are importing for ThinLTO, otherwise the global ctors and dtors
1356 // get executed multiple times for local variables (the latter causing
1357 // double frees).
1358 DoNotLinkFromSource.insert(SGV);
1359 return false;
1360 }
Rafael Espindola778fcc72014-11-02 13:28:57 +00001361 if (DGV && DGV->hasAppendingLinkage())
1362 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
1363 cast<GlobalVariable>(SGV));
1364
1365 bool LinkFromSrc = true;
1366 Comdat *C = nullptr;
Rafael Espindola778fcc72014-11-02 13:28:57 +00001367 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
1368
David Majnemerdad0a642014-06-27 18:19:56 +00001369 if (const Comdat *SC = SGV->getComdat()) {
1370 Comdat::SelectionKind SK;
1371 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +00001372 C = DstM->getOrInsertComdat(SC->getName());
1373 C->setSelectionKind(SK);
1374 } else if (DGV) {
1375 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1376 return true;
1377 }
1378
1379 if (!LinkFromSrc) {
1380 // Track the source global so that we don't attempt to copy it over when
1381 // processing global initializers.
1382 DoNotLinkFromSource.insert(SGV);
1383
1384 if (DGV)
1385 // Make sure to remember this mapping.
1386 ValueMap[SGV] =
1387 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001388 }
1389
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001390 if (DGV)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001391 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001392
Rafael Espindola778fcc72014-11-02 13:28:57 +00001393 if (!LinkFromSrc && !DGV)
1394 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001395
Rafael Espindola778fcc72014-11-02 13:28:57 +00001396 GlobalValue *NewGV;
Rafael Espindola26c29512014-12-05 17:53:15 +00001397 if (!LinkFromSrc) {
1398 NewGV = DGV;
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001399 // When linking from source we setVisibility from copyGlobalValueProto.
1400 setVisibility(NewGV, SGV, DGV);
Rafael Espindola26c29512014-12-05 17:53:15 +00001401 } else {
Rafael Espindolaef237112014-12-08 18:45:16 +00001402 // If the GV is to be lazily linked, don't create it just yet.
1403 // The ValueMaterializerTy will deal with creating it if it's used.
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001404 if (!DGV && !shouldOverrideFromSrc() && SGV != ImportFunction &&
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +00001405 (SGV->hasLocalLinkage() || SGV->hasLinkOnceLinkage() ||
1406 SGV->hasAvailableExternallyLinkage())) {
Rafael Espindolaef237112014-12-08 18:45:16 +00001407 DoNotLinkFromSource.insert(SGV);
1408 return false;
1409 }
1410
Artem Belevich020d4fb2015-09-01 17:55:55 +00001411 // When we only want to link in unresolved dependencies, blacklist
1412 // the symbol unless unless DestM has a matching declaration (DGV).
1413 if (shouldLinkOnlyNeeded() && !(DGV && DGV->isDeclaration())) {
1414 DoNotLinkFromSource.insert(SGV);
1415 return false;
1416 }
1417
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001418 NewGV = copyGlobalValueProto(TypeMap, SGV, DGV);
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001419
1420 if (DGV && isa<Function>(DGV))
1421 if (auto *NewF = dyn_cast<Function>(NewGV))
1422 OverridingFunctions.insert(NewF);
Rafael Espindola26c29512014-12-05 17:53:15 +00001423 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001424
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001425 NewGV->setUnnamedAddr(HasUnnamedAddr);
Rafael Espindola439835a2014-12-05 00:09:02 +00001426
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001427 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1428 if (C)
1429 NewGO->setComdat(C);
1430
1431 if (DGV && DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1432 NewGO->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment()));
1433 }
1434
Rafael Espindola879aeb72014-12-05 16:05:19 +00001435 if (auto *NewGVar = dyn_cast<GlobalVariable>(NewGV)) {
1436 auto *DGVar = dyn_cast_or_null<GlobalVariable>(DGV);
1437 auto *SGVar = dyn_cast<GlobalVariable>(SGV);
1438 if (DGVar && SGVar && DGVar->isDeclaration() && SGVar->isDeclaration() &&
1439 (!DGVar->isConstant() || !SGVar->isConstant()))
1440 NewGVar->setConstant(false);
1441 }
1442
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001443 // Make sure to remember this mapping.
1444 if (NewGV != DGV) {
1445 if (DGV) {
1446 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType()));
1447 DGV->eraseFromParent();
Chandler Carruthfd38af22014-11-02 09:10:31 +00001448 }
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001449 ValueMap[SGV] = NewGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001450 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001451
Rafael Espindola778fcc72014-11-02 13:28:57 +00001452 return false;
1453}
1454
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001455static void getArrayElements(const Constant *C,
1456 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001457 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1458
1459 for (unsigned i = 0; i != NumElements; ++i)
1460 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001461}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001462
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001463void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1464 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001465 SmallVector<Constant *, 16> DstElements;
1466 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001467
Rafael Espindolad31dc042014-09-05 21:27:52 +00001468 SmallVector<Constant *, 16> SrcElements;
1469 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001470
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001471 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001472
1473 StringRef Name = AVI.NewGV->getName();
1474 bool IsNewStructor =
1475 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1476 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1477
1478 for (auto *V : SrcElements) {
1479 if (IsNewStructor) {
1480 Constant *Key = V->getAggregateElement(2);
1481 if (DoNotLinkFromSource.count(Key))
1482 continue;
1483 }
1484 DstElements.push_back(
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001485 MapValue(V, ValueMap, RF_MoveDistinctMDs, &TypeMap, &ValMaterializer));
Rafael Espindolad31dc042014-09-05 21:27:52 +00001486 }
1487 if (IsNewStructor) {
1488 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1489 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1490 }
1491
1492 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001493}
1494
Rafael Espindola18c89412014-10-27 02:35:46 +00001495/// Update the initializers in the Dest module now that all globals that may be
1496/// referenced are in Dest.
Rafael Espindolaef237112014-12-08 18:45:16 +00001497void ModuleLinker::linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src) {
1498 // Figure out what the initializer looks like in the dest module.
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001499 Dst.setInitializer(MapValue(Src.getInitializer(), ValueMap,
1500 RF_MoveDistinctMDs, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001501}
1502
Rafael Espindola18c89412014-10-27 02:35:46 +00001503/// Copy the source function over into the dest function and fix up references
1504/// to values. At this point we know that Dest is an external function, and
1505/// that Src is not.
Rafael Espindolaef237112014-12-08 18:45:16 +00001506bool ModuleLinker::linkFunctionBody(Function &Dst, Function &Src) {
1507 assert(Dst.isDeclaration() && !Src.isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001508
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001509 // Materialize if needed.
Rafael Espindola3519da82014-12-08 14:25:26 +00001510 if (std::error_code EC = Src.materialize())
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001511 return emitError(EC.message());
1512
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001513 // Link in the prefix data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001514 if (Src.hasPrefixData())
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001515 Dst.setPrefixData(MapValue(Src.getPrefixData(), ValueMap,
1516 RF_MoveDistinctMDs, &TypeMap, &ValMaterializer));
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001517
1518 // Link in the prologue data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001519 if (Src.hasPrologueData())
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001520 Dst.setPrologueData(MapValue(Src.getPrologueData(), ValueMap,
1521 RF_MoveDistinctMDs, &TypeMap,
1522 &ValMaterializer));
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001523
David Majnemer7fddecc2015-06-17 20:52:32 +00001524 // Link in the personality function.
1525 if (Src.hasPersonalityFn())
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001526 Dst.setPersonalityFn(MapValue(Src.getPersonalityFn(), ValueMap,
1527 RF_MoveDistinctMDs, &TypeMap,
1528 &ValMaterializer));
David Majnemer7fddecc2015-06-17 20:52:32 +00001529
Chris Lattner7391dde2004-11-16 17:12:38 +00001530 // Go through and convert function arguments over, remembering the mapping.
Rafael Espindolaef237112014-12-08 18:45:16 +00001531 Function::arg_iterator DI = Dst.arg_begin();
Rafael Espindola3519da82014-12-08 14:25:26 +00001532 for (Argument &Arg : Src.args()) {
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001533 DI->setName(Arg.getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001534
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001535 // Add a mapping to our mapping.
Duncan P. N. Exon Smith9934b262015-10-19 22:23:36 +00001536 ValueMap[&Arg] = &*DI;
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001537 ++DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001538 }
1539
Duncan P. N. Exon Smithc8d987b2015-04-24 22:07:31 +00001540 // Copy over the metadata attachments.
1541 SmallVector<std::pair<unsigned, MDNode *>, 8> MDs;
1542 Src.getAllMetadata(MDs);
1543 for (const auto &I : MDs)
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001544 Dst.setMetadata(I.first, MapMetadata(I.second, ValueMap, RF_MoveDistinctMDs,
1545 &TypeMap, &ValMaterializer));
Duncan P. N. Exon Smithc8d987b2015-04-24 22:07:31 +00001546
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001547 // Splice the body of the source function into the dest function.
Rafael Espindolaef237112014-12-08 18:45:16 +00001548 Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001549
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001550 // At this point, all of the instructions and values of the function are now
1551 // copied over. The only problem is that they are still referencing values in
1552 // the Source function as operands. Loop through all of the operands of the
1553 // functions and patch them up to point to the local versions.
Rafael Espindolaef237112014-12-08 18:45:16 +00001554 for (BasicBlock &BB : Dst)
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001555 for (Instruction &I : BB)
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001556 RemapInstruction(&I, ValueMap,
1557 RF_IgnoreMissingEntries | RF_MoveDistinctMDs, &TypeMap,
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001558 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001559
Chris Lattner7391dde2004-11-16 17:12:38 +00001560 // There is no need to map the arguments anymore.
Rafael Espindola3519da82014-12-08 14:25:26 +00001561 for (Argument &Arg : Src.args())
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001562 ValueMap.erase(&Arg);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001563
Eric Christopher97cb5652015-05-15 18:20:14 +00001564 Src.dematerialize();
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001565 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001566}
1567
Rafael Espindolaef237112014-12-08 18:45:16 +00001568void ModuleLinker::linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src) {
1569 Constant *Aliasee = Src.getAliasee();
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001570 Constant *Val = MapValue(Aliasee, ValueMap, RF_MoveDistinctMDs, &TypeMap,
1571 &ValMaterializer);
Rafael Espindolaef237112014-12-08 18:45:16 +00001572 Dst.setAliasee(Val);
1573}
1574
1575bool ModuleLinker::linkGlobalValueBody(GlobalValue &Src) {
1576 Value *Dst = ValueMap[&Src];
1577 assert(Dst);
Artem Belevich020d4fb2015-09-01 17:55:55 +00001578 if (shouldInternalizeLinkedSymbols())
1579 if (auto *DGV = dyn_cast<GlobalValue>(Dst))
1580 DGV->setLinkage(GlobalValue::InternalLinkage);
Rafael Espindolaef237112014-12-08 18:45:16 +00001581 if (auto *F = dyn_cast<Function>(&Src))
1582 return linkFunctionBody(cast<Function>(*Dst), *F);
1583 if (auto *GVar = dyn_cast<GlobalVariable>(&Src)) {
1584 linkGlobalInit(cast<GlobalVariable>(*Dst), *GVar);
1585 return false;
Tanya Lattnercbb91402011-10-11 00:24:54 +00001586 }
Rafael Espindolaef237112014-12-08 18:45:16 +00001587 linkAliasBody(cast<GlobalAlias>(*Dst), cast<GlobalAlias>(Src));
1588 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001589}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001590
Rafael Espindola18c89412014-10-27 02:35:46 +00001591/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001592void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001593 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001594 for (const NamedMDNode &NMD : SrcM->named_metadata()) {
Bill Wendling66f02412012-02-11 11:38:06 +00001595 // Don't link module flags here. Do them separately.
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001596 if (&NMD == SrcModFlags)
1597 continue;
1598 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(NMD.getName());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001599 // Add Src elements into Dest node.
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001600 for (const MDNode *op : NMD.operands())
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001601 DestNMD->addOperand(MapMetadata(op, ValueMap, RF_MoveDistinctMDs,
1602 &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001603 }
1604}
Bill Wendling66f02412012-02-11 11:38:06 +00001605
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001606/// Drop DISubprograms that have been superseded.
1607///
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001608/// FIXME: this creates an asymmetric result: we strip functions from losing
1609/// subprograms in DstM, but leave losing subprograms in SrcM.
1610/// TODO: Remove this logic once the backend can correctly determine canonical
1611/// subprograms.
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001612void ModuleLinker::stripReplacedSubprograms() {
1613 // Avoid quadratic runtime by returning early when there's nothing to do.
1614 if (OverridingFunctions.empty())
1615 return;
1616
1617 // Move the functions now, so the set gets cleared even on early returns.
1618 auto Functions = std::move(OverridingFunctions);
1619 OverridingFunctions.clear();
1620
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001621 // Drop functions from subprograms if they've been overridden by the new
1622 // compile unit.
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001623 NamedMDNode *CompileUnits = DstM->getNamedMetadata("llvm.dbg.cu");
1624 if (!CompileUnits)
1625 return;
1626 for (unsigned I = 0, E = CompileUnits->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001627 auto *CU = cast<DICompileUnit>(CompileUnits->getOperand(I));
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001628 assert(CU && "Expected valid compile unit");
1629
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001630 for (DISubprogram *SP : CU->getSubprograms()) {
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +00001631 if (!SP || !SP->getFunction() || !Functions.count(SP->getFunction()))
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001632 continue;
1633
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001634 // Prevent DebugInfoFinder from tagging this as the canonical subprogram,
1635 // since the canonical one is in the incoming module.
1636 SP->replaceFunction(nullptr);
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001637 }
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001638 }
1639}
1640
Rafael Espindola18c89412014-10-27 02:35:46 +00001641/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001642bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001643 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001644 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1645 if (!SrcModFlags) return false;
1646
Bill Wendling66f02412012-02-11 11:38:06 +00001647 // If the destination module doesn't have module flags yet, then just copy
1648 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001649 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001650 if (DstModFlags->getNumOperands() == 0) {
1651 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1652 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1653
1654 return false;
1655 }
1656
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001657 // First build a map of the existing module flags and requirements.
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001658 DenseMap<MDString *, std::pair<MDNode *, unsigned>> Flags;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001659 SmallSetVector<MDNode*, 16> Requirements;
1660 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001661 MDNode *Op = DstModFlags->getOperand(I);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001662 ConstantInt *Behavior = mdconst::extract<ConstantInt>(Op->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001663 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001664
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001665 if (Behavior->getZExtValue() == Module::Require) {
1666 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1667 } else {
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001668 Flags[ID] = std::make_pair(Op, I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001669 }
Bill Wendling66f02412012-02-11 11:38:06 +00001670 }
1671
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001672 // Merge in the flags from the source module, and also collect its set of
1673 // requirements.
1674 bool HasErr = false;
1675 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001676 MDNode *SrcOp = SrcModFlags->getOperand(I);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001677 ConstantInt *SrcBehavior =
1678 mdconst::extract<ConstantInt>(SrcOp->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001679 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001680 MDNode *DstOp;
1681 unsigned DstIndex;
1682 std::tie(DstOp, DstIndex) = Flags.lookup(ID);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001683 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001684
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001685 // If this is a requirement, add it and continue.
1686 if (SrcBehaviorValue == Module::Require) {
1687 // If the destination module does not already have this requirement, add
1688 // it.
1689 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1690 DstModFlags->addOperand(SrcOp);
1691 }
1692 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001693 }
1694
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001695 // If there is no existing flag with this ID, just add it.
1696 if (!DstOp) {
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001697 Flags[ID] = std::make_pair(SrcOp, DstModFlags->getNumOperands());
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001698 DstModFlags->addOperand(SrcOp);
1699 continue;
1700 }
1701
1702 // Otherwise, perform a merge.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001703 ConstantInt *DstBehavior =
1704 mdconst::extract<ConstantInt>(DstOp->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001705 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1706
1707 // If either flag has override behavior, handle it first.
1708 if (DstBehaviorValue == Module::Override) {
1709 // Diagnose inconsistent flags which both have override behavior.
1710 if (SrcBehaviorValue == Module::Override &&
1711 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1712 HasErr |= emitError("linking module flags '" + ID->getString() +
1713 "': IDs have conflicting override values");
1714 }
1715 continue;
1716 } else if (SrcBehaviorValue == Module::Override) {
1717 // Update the destination flag to that of the source.
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001718 DstModFlags->setOperand(DstIndex, SrcOp);
1719 Flags[ID].first = SrcOp;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001720 continue;
1721 }
1722
1723 // Diagnose inconsistent merge behavior types.
1724 if (SrcBehaviorValue != DstBehaviorValue) {
1725 HasErr |= emitError("linking module flags '" + ID->getString() +
1726 "': IDs have conflicting behaviors");
1727 continue;
1728 }
1729
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001730 auto replaceDstValue = [&](MDNode *New) {
1731 Metadata *FlagOps[] = {DstOp->getOperand(0), ID, New};
1732 MDNode *Flag = MDNode::get(DstM->getContext(), FlagOps);
1733 DstModFlags->setOperand(DstIndex, Flag);
1734 Flags[ID].first = Flag;
1735 };
1736
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001737 // Perform the merge for standard behavior types.
1738 switch (SrcBehaviorValue) {
1739 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001740 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001741 case Module::Error: {
1742 // Emit an error if the values differ.
1743 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1744 HasErr |= emitError("linking module flags '" + ID->getString() +
1745 "': IDs have conflicting values");
1746 }
1747 continue;
1748 }
1749 case Module::Warning: {
1750 // Emit a warning if the values differ.
1751 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001752 emitWarning("linking module flags '" + ID->getString() +
1753 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001754 }
1755 continue;
1756 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001757 case Module::Append: {
1758 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1759 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001760 SmallVector<Metadata *, 8> MDs;
1761 MDs.reserve(DstValue->getNumOperands() + SrcValue->getNumOperands());
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001762 MDs.append(DstValue->op_begin(), DstValue->op_end());
1763 MDs.append(SrcValue->op_begin(), SrcValue->op_end());
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001764
1765 replaceDstValue(MDNode::get(DstM->getContext(), MDs));
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001766 break;
1767 }
1768 case Module::AppendUnique: {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001769 SmallSetVector<Metadata *, 16> Elts;
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001770 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1771 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001772 Elts.insert(DstValue->op_begin(), DstValue->op_end());
1773 Elts.insert(SrcValue->op_begin(), SrcValue->op_end());
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001774
1775 replaceDstValue(MDNode::get(DstM->getContext(),
1776 makeArrayRef(Elts.begin(), Elts.end())));
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001777 break;
1778 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001779 }
Bill Wendling66f02412012-02-11 11:38:06 +00001780 }
1781
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001782 // Check all of the requirements.
1783 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1784 MDNode *Requirement = Requirements[I];
1785 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001786 Metadata *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001787
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001788 MDNode *Op = Flags[Flag].first;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001789 if (!Op || Op->getOperand(2) != ReqValue) {
1790 HasErr |= emitError("linking module flags '" + Flag->getString() +
1791 "': does not have the required value");
1792 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001793 }
1794 }
1795
1796 return HasErr;
1797}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001798
Akira Hatanakac43df512015-02-13 00:40:41 +00001799// This function returns true if the triples match.
1800static bool triplesMatch(const Triple &T0, const Triple &T1) {
1801 // If vendor is apple, ignore the version number.
1802 if (T0.getVendor() == Triple::Apple)
1803 return T0.getArch() == T1.getArch() &&
1804 T0.getSubArch() == T1.getSubArch() &&
1805 T0.getVendor() == T1.getVendor() &&
1806 T0.getOS() == T1.getOS();
1807
1808 return T0 == T1;
1809}
1810
1811// This function returns the merged triple.
1812static std::string mergeTriples(const Triple &SrcTriple, const Triple &DstTriple) {
1813 // If vendor is apple, pick the triple with the larger version number.
1814 if (SrcTriple.getVendor() == Triple::Apple)
1815 if (DstTriple.isOSVersionLT(SrcTriple))
1816 return SrcTriple.str();
1817
1818 return DstTriple.str();
1819}
1820
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001821bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001822 assert(DstM && "Null destination module");
1823 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001824
1825 // Inherit the target data from the source module if the destination module
1826 // doesn't have one already.
Mehdi Amini46a43552015-03-04 18:43:29 +00001827 if (DstM->getDataLayout().isDefault())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001828 DstM->setDataLayout(SrcM->getDataLayout());
1829
Mehdi Amini46a43552015-03-04 18:43:29 +00001830 if (SrcM->getDataLayout() != DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001831 emitWarning("Linking two modules of different data layouts: '" +
1832 SrcM->getModuleIdentifier() + "' is '" +
1833 SrcM->getDataLayoutStr() + "' whereas '" +
1834 DstM->getModuleIdentifier() + "' is '" +
1835 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001836 }
Akira Hatanakac43df512015-02-13 00:40:41 +00001837
1838 // Copy the target triple from the source to dest if the dest's is empty.
1839 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1840 DstM->setTargetTriple(SrcM->getTargetTriple());
1841
1842 Triple SrcTriple(SrcM->getTargetTriple()), DstTriple(DstM->getTargetTriple());
1843
1844 if (!SrcM->getTargetTriple().empty() && !triplesMatch(SrcTriple, DstTriple))
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001845 emitWarning("Linking two modules of different target triples: " +
1846 SrcM->getModuleIdentifier() + "' is '" +
1847 SrcM->getTargetTriple() + "' whereas '" +
1848 DstM->getModuleIdentifier() + "' is '" +
1849 DstM->getTargetTriple() + "'\n");
Akira Hatanakac43df512015-02-13 00:40:41 +00001850
1851 DstM->setTargetTriple(mergeTriples(SrcTriple, DstTriple));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001852
1853 // Append the module inline asm string.
1854 if (!SrcM->getModuleInlineAsm().empty()) {
1855 if (DstM->getModuleInlineAsm().empty())
1856 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1857 else
1858 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1859 SrcM->getModuleInlineAsm());
1860 }
1861
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001862 // Loop over all of the linked values to compute type mappings.
1863 computeTypeMapping();
1864
David Majnemerdad0a642014-06-27 18:19:56 +00001865 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001866 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001867 const Comdat &C = SMEC.getValue();
1868 if (ComdatsChosen.count(&C))
1869 continue;
1870 Comdat::SelectionKind SK;
1871 bool LinkFromSrc;
1872 if (getComdatResult(&C, SK, LinkFromSrc))
1873 return true;
1874 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1875 }
1876
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001877 // Upgrade mismatched global arrays.
1878 upgradeMismatchedGlobals();
1879
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001880 // Insert all of the globals in src into the DstM module... without linking
1881 // initializers (which could refer to functions not yet mapped over).
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001882 for (GlobalVariable &GV : SrcM->globals())
1883 if (linkGlobalValueProto(&GV))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001884 return true;
1885
1886 // Link the functions together between the two modules, without doing function
1887 // bodies... this just adds external function prototypes to the DstM
1888 // function... We do this so that when we begin processing function bodies,
1889 // all of the global values that may be referenced are available in our
1890 // ValueMap.
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001891 for (Function &F :*SrcM)
1892 if (linkGlobalValueProto(&F))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001893 return true;
1894
1895 // If there were any aliases, link them now.
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001896 for (GlobalAlias &GA : SrcM->aliases())
1897 if (linkGlobalValueProto(&GA))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001898 return true;
1899
Yaron Keren3bf3f1f2015-06-15 16:20:16 +00001900 for (const AppendingVarInfo &AppendingVar : AppendingVars)
1901 linkAppendingVarInit(AppendingVar);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001902
Rafael Espindolabeadd562014-12-08 18:05:48 +00001903 for (const auto &Entry : DstM->getComdatSymbolTable()) {
1904 const Comdat &C = Entry.getValue();
1905 if (C.getSelectionKind() == Comdat::Any)
1906 continue;
1907 const GlobalValue *GV = SrcM->getNamedValue(C.getName());
Peter Collingbourneea45d832015-06-22 21:46:51 +00001908 if (GV)
Duncan P. N. Exon Smith4fb46cb2015-08-03 17:09:38 +00001909 MapValue(GV, ValueMap, RF_MoveDistinctMDs, &TypeMap, &ValMaterializer);
Rafael Espindolabeadd562014-12-08 18:05:48 +00001910 }
1911
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001912 // Strip replaced subprograms before mapping any metadata -- so that we're
1913 // not changing metadata from the source module (note that
1914 // linkGlobalValueBody() eventually calls RemapInstruction() and therefore
1915 // MapMetadata()) -- but after linking global value protocols -- so that
1916 // OverridingFunctions has been built.
1917 stripReplacedSubprograms();
1918
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001919 // Link in the function bodies that are defined in the source module into
1920 // DstM.
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001921 for (Function &SF : *SrcM) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001922 // Skip if no body (function is external).
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001923 if (SF.isDeclaration())
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001924 continue;
1925
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001926 // Skip if not linking from source.
1927 if (DoNotLinkFromSource.count(&SF))
1928 continue;
1929
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001930 // When importing, only materialize the function requested for import.
1931 if (isPerformingImport() && &SF != ImportFunction)
1932 continue;
1933
Rafael Espindolaef237112014-12-08 18:45:16 +00001934 if (linkGlobalValueBody(SF))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001935 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001936 }
1937
1938 // Resolve all uses of aliases with aliasees.
Rafael Espindolaef237112014-12-08 18:45:16 +00001939 for (GlobalAlias &Src : SrcM->aliases()) {
1940 if (DoNotLinkFromSource.count(&Src))
1941 continue;
1942 linkGlobalValueBody(Src);
1943 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001944
Teresa Johnson255787a2015-11-03 19:36:04 +00001945 // Remap all of the named MDNodes in Src into the DstM module. We do this
1946 // after linking GlobalValues so that MDNodes that reference GlobalValues
1947 // are properly remapped.
1948 linkNamedMDNodes();
1949
1950 // Merge the module flags into the DstM module.
1951 if (linkModuleFlagsMetadata())
1952 return true;
1953
Bill Wendling91686d62014-01-16 06:29:36 +00001954 // Update the initializers in the DstM module now that all globals that may
1955 // be referenced are in DstM.
Rafael Espindolaef237112014-12-08 18:45:16 +00001956 for (GlobalVariable &Src : SrcM->globals()) {
1957 // Only process initialized GV's or ones not already in dest.
1958 if (!Src.hasInitializer() || DoNotLinkFromSource.count(&Src))
1959 continue;
1960 linkGlobalValueBody(Src);
1961 }
Bill Wendling91686d62014-01-16 06:29:36 +00001962
Tanya Lattner0a48b872011-11-02 00:24:56 +00001963 // Process vector of lazily linked in functions.
Rafael Espindolaef237112014-12-08 18:45:16 +00001964 while (!LazilyLinkGlobalValues.empty()) {
1965 GlobalValue *SGV = LazilyLinkGlobalValues.back();
1966 LazilyLinkGlobalValues.pop_back();
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00001967 if (isPerformingImport() && !doImportAsDefinition(SGV))
1968 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001969
Artem Belevich020d4fb2015-09-01 17:55:55 +00001970 // Skip declarations that ValueMaterializer may have created in
1971 // case we link in only some of SrcM.
1972 if (shouldLinkOnlyNeeded() && SGV->isDeclaration())
1973 continue;
1974
Rafael Espindola9573a9c2014-12-16 22:29:43 +00001975 assert(!SGV->isDeclaration() && "users should not pass down decls");
Rafael Espindolaef237112014-12-08 18:45:16 +00001976 if (linkGlobalValueBody(*SGV))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001977 return true;
Rafael Espindola28a24512014-12-05 21:04:36 +00001978 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001979
Anton Korobeynikov26098882008-03-05 23:21:39 +00001980 return false;
1981}
Reid Spencer361e5132004-11-12 20:37:43 +00001982
Rafael Espindola31ad4682014-12-03 22:36:37 +00001983Linker::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P)
1984 : ETypes(E), IsPacked(P) {}
1985
1986Linker::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST)
1987 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
1988
1989bool Linker::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const {
1990 if (IsPacked != That.IsPacked)
1991 return false;
1992 if (ETypes != That.ETypes)
1993 return false;
1994 return true;
1995}
1996
1997bool Linker::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const {
1998 return !this->operator==(That);
1999}
2000
2001StructType *Linker::StructTypeKeyInfo::getEmptyKey() {
2002 return DenseMapInfo<StructType *>::getEmptyKey();
2003}
2004
2005StructType *Linker::StructTypeKeyInfo::getTombstoneKey() {
2006 return DenseMapInfo<StructType *>::getTombstoneKey();
2007}
2008
2009unsigned Linker::StructTypeKeyInfo::getHashValue(const KeyTy &Key) {
2010 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
2011 Key.IsPacked);
2012}
2013
2014unsigned Linker::StructTypeKeyInfo::getHashValue(const StructType *ST) {
2015 return getHashValue(KeyTy(ST));
2016}
2017
2018bool Linker::StructTypeKeyInfo::isEqual(const KeyTy &LHS,
2019 const StructType *RHS) {
2020 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
2021 return false;
2022 return LHS == KeyTy(RHS);
2023}
2024
2025bool Linker::StructTypeKeyInfo::isEqual(const StructType *LHS,
2026 const StructType *RHS) {
2027 if (RHS == getEmptyKey())
2028 return LHS == getEmptyKey();
2029
2030 if (RHS == getTombstoneKey())
2031 return LHS == getTombstoneKey();
2032
2033 return KeyTy(LHS) == KeyTy(RHS);
2034}
2035
2036void Linker::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) {
2037 assert(!Ty->isOpaque());
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00002038 NonOpaqueStructTypes.insert(Ty);
Rafael Espindola31ad4682014-12-03 22:36:37 +00002039}
2040
Rafael Espindolaa5b9e1c2015-03-06 00:50:21 +00002041void Linker::IdentifiedStructTypeSet::switchToNonOpaque(StructType *Ty) {
2042 assert(!Ty->isOpaque());
2043 NonOpaqueStructTypes.insert(Ty);
2044 bool Removed = OpaqueStructTypes.erase(Ty);
2045 (void)Removed;
2046 assert(Removed);
2047}
2048
Rafael Espindola31ad4682014-12-03 22:36:37 +00002049void Linker::IdentifiedStructTypeSet::addOpaque(StructType *Ty) {
2050 assert(Ty->isOpaque());
2051 OpaqueStructTypes.insert(Ty);
2052}
2053
2054StructType *
2055Linker::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes,
2056 bool IsPacked) {
2057 Linker::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked);
2058 auto I = NonOpaqueStructTypes.find_as(Key);
2059 if (I == NonOpaqueStructTypes.end())
2060 return nullptr;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00002061 return *I;
Rafael Espindola31ad4682014-12-03 22:36:37 +00002062}
2063
2064bool Linker::IdentifiedStructTypeSet::hasType(StructType *Ty) {
2065 if (Ty->isOpaque())
2066 return OpaqueStructTypes.count(Ty);
2067 auto I = NonOpaqueStructTypes.find(Ty);
2068 if (I == NonOpaqueStructTypes.end())
2069 return false;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00002070 return *I == Ty;
Rafael Espindola31ad4682014-12-03 22:36:37 +00002071}
2072
Rafael Espindola5cb9c822014-11-17 20:51:01 +00002073void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
2074 this->Composite = M;
2075 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00002076
2077 TypeFinder StructTypes;
2078 StructTypes.run(*M, true);
Rafael Espindola31ad4682014-12-03 22:36:37 +00002079 for (StructType *Ty : StructTypes) {
2080 if (Ty->isOpaque())
2081 IdentifiedStructTypes.addOpaque(Ty);
2082 else
2083 IdentifiedStructTypes.addNonOpaque(Ty);
2084 }
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00002085}
Rafael Espindola3df61b72013-05-04 03:48:37 +00002086
Rafael Espindola5cb9c822014-11-17 20:51:01 +00002087Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
2088 init(M, DiagnosticHandler);
2089}
2090
2091Linker::Linker(Module *M) {
2092 init(M, [this](const DiagnosticInfo &DI) {
2093 Composite->getContext().diagnose(DI);
2094 });
2095}
2096
Bill Wendling91e6f6e2013-10-16 08:59:57 +00002097void Linker::deleteModule() {
2098 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00002099 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00002100}
2101
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00002102bool Linker::linkInModule(Module *Src, unsigned Flags, FunctionInfoIndex *Index,
2103 Function *FuncToImport) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00002104 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
Teresa Johnsonc7ed52f2015-11-03 00:14:15 +00002105 DiagnosticHandler, Flags, Index, FuncToImport);
Manman Rendab999d2015-01-20 19:24:59 +00002106 bool RetCode = TheLinker.run();
2107 Composite->dropTriviallyDeadConstantArrays();
2108 return RetCode;
Rafael Espindola3df61b72013-05-04 03:48:37 +00002109}
2110
Manman Ren6487ce92015-02-24 00:45:56 +00002111void Linker::setModule(Module *Dst) {
2112 init(Dst, DiagnosticHandler);
2113}
2114
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002115//===----------------------------------------------------------------------===//
2116// LinkModules entrypoint.
2117//===----------------------------------------------------------------------===//
2118
Rafael Espindola18c89412014-10-27 02:35:46 +00002119/// This function links two modules together, with the resulting Dest module
2120/// modified to be the composite of the two input modules. If an error occurs,
2121/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
2122/// Upon failure, the Dest module could be in a modified state, and shouldn't be
2123/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00002124bool Linker::LinkModules(Module *Dest, Module *Src,
Artem Belevich020d4fb2015-09-01 17:55:55 +00002125 DiagnosticHandlerFunction DiagnosticHandler,
2126 unsigned Flags) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +00002127 Linker L(Dest, DiagnosticHandler);
Artem Belevich020d4fb2015-09-01 17:55:55 +00002128 return L.linkInModule(Src, Flags);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00002129}
2130
Artem Belevich020d4fb2015-09-01 17:55:55 +00002131bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Flags) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00002132 Linker L(Dest);
Artem Belevich020d4fb2015-09-01 17:55:55 +00002133 return L.linkInModule(Src, Flags);
Reid Spencer361e5132004-11-12 20:37:43 +00002134}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00002135
2136//===----------------------------------------------------------------------===//
2137// C API.
2138//===----------------------------------------------------------------------===//
2139
2140LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
Juergen Ributzkaa57d5882015-03-02 18:59:38 +00002141 LLVMLinkerMode Unused, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00002142 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00002143 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00002144 raw_string_ostream Stream(Message);
2145 DiagnosticPrinterRawOStream DP(Stream);
2146
2147 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00002148 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00002149
Eli Benderskyff715e22015-06-12 23:26:42 +00002150 if (OutMessages && Result) {
2151 Stream.flush();
Rafael Espindola98ab63c2014-10-25 04:31:08 +00002152 *OutMessages = strdup(Message.c_str());
Eli Benderskyff715e22015-06-12 23:26:42 +00002153 }
Bill Wendlinga3aeb982012-05-09 08:55:40 +00002154 return Result;
2155}