blob: b55fe483fb2a1dcb69c7c47834d07ceb144c209c [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};
102}
103
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());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000229 }
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000230 SrcDefinitionsToResolve.clear();
Chris Lattner5e3bd972011-12-20 00:03:52 +0000231 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000232}
233
Rafael Espindola31ad4682014-12-03 22:36:37 +0000234void TypeMapTy::finishType(StructType *DTy, StructType *STy,
235 ArrayRef<Type *> ETypes) {
236 DTy->setBody(ETypes, STy->isPacked());
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000237
238 // Steal STy's name.
239 if (STy->hasName()) {
240 SmallString<16> TmpName = STy->getName();
241 STy->setName("");
242 DTy->setName(TmpName);
243 }
244
Rafael Espindola31ad4682014-12-03 22:36:37 +0000245 DstStructTypesSet.addNonOpaque(DTy);
246}
247
248Type *TypeMapTy::get(Type *Ty) {
249 SmallPtrSet<StructType *, 8> Visited;
250 return get(Ty, Visited);
251}
252
253Type *TypeMapTy::get(Type *Ty, SmallPtrSet<StructType *, 8> &Visited) {
254 // If we already have an entry for this type, return it.
255 Type **Entry = &MappedTypes[Ty];
256 if (*Entry)
257 return *Entry;
258
259 // These are types that LLVM itself will unique.
260 bool IsUniqued = !isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral();
261
262#ifndef NDEBUG
263 if (!IsUniqued) {
264 for (auto &Pair : MappedTypes) {
265 assert(!(Pair.first != Ty && Pair.second == Ty) &&
266 "mapping to a source type");
267 }
268 }
269#endif
270
271 if (!IsUniqued && !Visited.insert(cast<StructType>(Ty)).second) {
272 StructType *DTy = StructType::create(Ty->getContext());
273 return *Entry = DTy;
274 }
275
276 // If this is not a recursive type, then just map all of the elements and
277 // then rebuild the type from inside out.
278 SmallVector<Type *, 4> ElementTypes;
279
280 // If there are no element types to map, then the type is itself. This is
281 // true for the anonymous {} struct, things like 'float', integers, etc.
282 if (Ty->getNumContainedTypes() == 0 && IsUniqued)
283 return *Entry = Ty;
284
285 // Remap all of the elements, keeping track of whether any of them change.
286 bool AnyChange = false;
287 ElementTypes.resize(Ty->getNumContainedTypes());
288 for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) {
289 ElementTypes[I] = get(Ty->getContainedType(I), Visited);
290 AnyChange |= ElementTypes[I] != Ty->getContainedType(I);
291 }
292
293 // If we found our type while recursively processing stuff, just use it.
294 Entry = &MappedTypes[Ty];
295 if (*Entry) {
296 if (auto *DTy = dyn_cast<StructType>(*Entry)) {
297 if (DTy->isOpaque()) {
298 auto *STy = cast<StructType>(Ty);
299 finishType(DTy, STy, ElementTypes);
300 }
301 }
302 return *Entry;
303 }
304
305 // If all of the element types mapped directly over and the type is not
306 // a nomed struct, then the type is usable as-is.
307 if (!AnyChange && IsUniqued)
308 return *Entry = Ty;
309
310 // Otherwise, rebuild a modified type.
311 switch (Ty->getTypeID()) {
312 default:
313 llvm_unreachable("unknown derived type to remap");
314 case Type::ArrayTyID:
315 return *Entry = ArrayType::get(ElementTypes[0],
316 cast<ArrayType>(Ty)->getNumElements());
317 case Type::VectorTyID:
318 return *Entry = VectorType::get(ElementTypes[0],
319 cast<VectorType>(Ty)->getNumElements());
320 case Type::PointerTyID:
321 return *Entry = PointerType::get(ElementTypes[0],
322 cast<PointerType>(Ty)->getAddressSpace());
323 case Type::FunctionTyID:
324 return *Entry = FunctionType::get(ElementTypes[0],
325 makeArrayRef(ElementTypes).slice(1),
326 cast<FunctionType>(Ty)->isVarArg());
327 case Type::StructTyID: {
328 auto *STy = cast<StructType>(Ty);
329 bool IsPacked = STy->isPacked();
330 if (IsUniqued)
331 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked);
332
333 // If the type is opaque, we can just use it directly.
334 if (STy->isOpaque()) {
335 DstStructTypesSet.addOpaque(STy);
336 return *Entry = Ty;
337 }
338
339 if (StructType *OldT =
340 DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) {
341 STy->setName("");
342 return *Entry = OldT;
343 }
344
345 if (!AnyChange) {
346 DstStructTypesSet.addNonOpaque(STy);
347 return *Entry = Ty;
348 }
349
350 StructType *DTy = StructType::create(Ty->getContext());
351 finishType(DTy, STy, ElementTypes);
352 return *Entry = DTy;
353 }
354 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000355}
356
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000357//===----------------------------------------------------------------------===//
358// ModuleLinker implementation.
359//===----------------------------------------------------------------------===//
360
361namespace {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000362class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000363
Rafael Espindolac84f6082014-11-25 06:11:24 +0000364/// Creates prototypes for functions that are lazily linked on the fly. This
365/// speeds up linking for modules with many/ lazily linked functions of which
366/// few get used.
367class ValueMaterializerTy : public ValueMaterializer {
368 TypeMapTy &TypeMap;
369 Module *DstM;
Rafael Espindolaef237112014-12-08 18:45:16 +0000370 std::vector<GlobalValue *> &LazilyLinkGlobalValues;
James Molloyf6f121e2013-05-28 15:17:05 +0000371
Rafael Espindolac84f6082014-11-25 06:11:24 +0000372public:
373 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
Rafael Espindolaef237112014-12-08 18:45:16 +0000374 std::vector<GlobalValue *> &LazilyLinkGlobalValues)
Rafael Espindolac84f6082014-11-25 06:11:24 +0000375 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
Rafael Espindolaef237112014-12-08 18:45:16 +0000376 LazilyLinkGlobalValues(LazilyLinkGlobalValues) {}
Rafael Espindolac84f6082014-11-25 06:11:24 +0000377
378 Value *materializeValueFor(Value *V) override;
379};
380
381class LinkDiagnosticInfo : public DiagnosticInfo {
382 const Twine &Msg;
383
384public:
385 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
386 void print(DiagnosticPrinter &DP) const override;
387};
388LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
389 const Twine &Msg)
390 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
391void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
392
393/// This is an implementation class for the LinkModules function, which is the
394/// entrypoint for this file.
395class ModuleLinker {
396 Module *DstM, *SrcM;
397
398 TypeMapTy TypeMap;
399 ValueMaterializerTy ValMaterializer;
400
401 /// Mapping of values from what they used to be in Src, to what they are now
402 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
403 /// due to the use of Value handles which the Linker doesn't actually need,
404 /// but this allows us to reuse the ValueMapper code.
405 ValueToValueMapTy ValueMap;
406
407 struct AppendingVarInfo {
408 GlobalVariable *NewGV; // New aggregate global in dest module.
409 const Constant *DstInit; // Old initializer from dest module.
410 const Constant *SrcInit; // Old initializer from src module.
James Molloyf6f121e2013-05-28 15:17:05 +0000411 };
412
Rafael Espindolac84f6082014-11-25 06:11:24 +0000413 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000414
Rafael Espindolac84f6082014-11-25 06:11:24 +0000415 // Set of items not to link in from source.
416 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000417
Rafael Espindolaef237112014-12-08 18:45:16 +0000418 // Vector of GlobalValues to lazily link in.
419 std::vector<GlobalValue *> LazilyLinkGlobalValues;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000420
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +0000421 /// Functions that have replaced other functions.
422 SmallPtrSet<const Function *, 16> OverridingFunctions;
423
Rafael Espindolad0b23be2015-01-10 00:07:30 +0000424 DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000425
Rafael Espindolac84f6082014-11-25 06:11:24 +0000426public:
Rafael Espindola31ad4682014-12-03 22:36:37 +0000427 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM,
Rafael Espindolad0b23be2015-01-10 00:07:30 +0000428 DiagnosticHandlerFunction DiagnosticHandler)
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000429 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindolaef237112014-12-08 18:45:16 +0000430 ValMaterializer(TypeMap, DstM, LazilyLinkGlobalValues),
Rafael Espindolac84f6082014-11-25 06:11:24 +0000431 DiagnosticHandler(DiagnosticHandler) {}
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000432
Rafael Espindolac84f6082014-11-25 06:11:24 +0000433 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000434
Rafael Espindolac84f6082014-11-25 06:11:24 +0000435private:
436 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
437 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000438
Rafael Espindolac84f6082014-11-25 06:11:24 +0000439 /// Helper method for setting a message and returning an error code.
440 bool emitError(const Twine &Message) {
441 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
442 return true;
443 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000444
Rafael Espindolac84f6082014-11-25 06:11:24 +0000445 void emitWarning(const Twine &Message) {
446 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
447 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000448
Rafael Espindolac84f6082014-11-25 06:11:24 +0000449 bool getComdatLeader(Module *M, StringRef ComdatName,
450 const GlobalVariable *&GVar);
451 bool computeResultingSelectionKind(StringRef ComdatName,
452 Comdat::SelectionKind Src,
453 Comdat::SelectionKind Dst,
454 Comdat::SelectionKind &Result,
455 bool &LinkFromSrc);
456 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
457 ComdatsChosen;
458 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
459 bool &LinkFromSrc);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000460
Rafael Espindolac84f6082014-11-25 06:11:24 +0000461 /// Given a global in the source module, return the global in the
462 /// destination module that is being linked to, if any.
463 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
464 // If the source has no name it can't link. If it has local linkage,
465 // there is no name match-up going on.
466 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
467 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000468
Rafael Espindolac84f6082014-11-25 06:11:24 +0000469 // Otherwise see if we have a match in the destination module's symtab.
470 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
471 if (!DGV)
472 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000473
Rafael Espindolac84f6082014-11-25 06:11:24 +0000474 // If we found a global with the same name in the dest module, but it has
475 // internal linkage, we are really not doing any linkage here.
476 if (DGV->hasLocalLinkage())
477 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000478
Rafael Espindolac84f6082014-11-25 06:11:24 +0000479 // Otherwise, we do in fact link to the destination global.
480 return DGV;
481 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000482
Rafael Espindolac84f6082014-11-25 06:11:24 +0000483 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000484
Rafael Espindolac84f6082014-11-25 06:11:24 +0000485 void upgradeMismatchedGlobalArray(StringRef Name);
486 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000487
Rafael Espindolac84f6082014-11-25 06:11:24 +0000488 bool linkAppendingVarProto(GlobalVariable *DstGV,
489 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000490
Rafael Espindolac84f6082014-11-25 06:11:24 +0000491 bool linkGlobalValueProto(GlobalValue *GV);
Rafael Espindolac84f6082014-11-25 06:11:24 +0000492 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000493
Rafael Espindolac84f6082014-11-25 06:11:24 +0000494 void linkAppendingVarInit(const AppendingVarInfo &AVI);
Rafael Espindolaef237112014-12-08 18:45:16 +0000495
496 void linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src);
497 bool linkFunctionBody(Function &Dst, Function &Src);
498 void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src);
499 bool linkGlobalValueBody(GlobalValue &Src);
500
Rafael Espindolac84f6082014-11-25 06:11:24 +0000501 void linkNamedMDNodes();
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +0000502 void stripReplacedSubprograms();
Rafael Espindolac84f6082014-11-25 06:11:24 +0000503};
Bill Wendlingd48b7782012-02-28 04:01:21 +0000504}
505
Rafael Espindola18c89412014-10-27 02:35:46 +0000506/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
507/// table. This is good for all clients except for us. Go through the trouble
508/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000509static void forceRenaming(GlobalValue *GV, StringRef Name) {
510 // If the global doesn't force its name or if it already has the right name,
511 // there is nothing for us to do.
512 if (GV->hasLocalLinkage() || GV->getName() == Name)
513 return;
514
515 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000516
517 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000518 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000519 GV->takeName(ConflictGV);
520 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000521 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000522 } else {
523 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000524 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000525}
Reid Spencer90246aa2007-02-04 04:29:21 +0000526
Rafael Espindola18c89412014-10-27 02:35:46 +0000527/// copy additional attributes (those not needed to construct a GlobalValue)
528/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000529static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000530 DestGV->copyAttributesFrom(SrcGV);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000531 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000532}
533
Rafael Espindola23f8d642012-01-05 23:02:01 +0000534static bool isLessConstraining(GlobalValue::VisibilityTypes a,
535 GlobalValue::VisibilityTypes b) {
536 if (a == GlobalValue::HiddenVisibility)
537 return false;
538 if (b == GlobalValue::HiddenVisibility)
539 return true;
540 if (a == GlobalValue::ProtectedVisibility)
541 return false;
542 if (b == GlobalValue::ProtectedVisibility)
543 return true;
544 return false;
545}
546
Rafael Espindolaef237112014-12-08 18:45:16 +0000547/// Loop through the global variables in the src module and merge them into the
548/// dest module.
549static GlobalVariable *copyGlobalVariableProto(TypeMapTy &TypeMap, Module &DstM,
550 const GlobalVariable *SGVar) {
551 // No linking to be performed or linking from the source: simply create an
552 // identical version of the symbol over in the dest module... the
553 // initializer will be filled in later by LinkGlobalInits.
554 GlobalVariable *NewDGV = new GlobalVariable(
555 DstM, TypeMap.get(SGVar->getType()->getElementType()),
556 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
557 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
558 SGVar->getType()->getAddressSpace());
559
560 return NewDGV;
561}
562
563/// Link the function in the source module into the destination module if
564/// needed, setting up mapping information.
565static Function *copyFunctionProto(TypeMapTy &TypeMap, Module &DstM,
566 const Function *SF) {
567 // If there is no linkage to be performed or we are linking from the source,
568 // bring SF over.
569 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
570 SF->getName(), &DstM);
571}
572
573/// Set up prototypes for any aliases that come over from the source module.
574static GlobalAlias *copyGlobalAliasProto(TypeMapTy &TypeMap, Module &DstM,
575 const GlobalAlias *SGA) {
576 // If there is no linkage to be performed or we're linking from the source,
577 // bring over SGA.
578 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
579 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
580 SGA->getLinkage(), SGA->getName(), &DstM);
581}
582
583static GlobalValue *copyGlobalValueProto(TypeMapTy &TypeMap, Module &DstM,
584 const GlobalValue *SGV) {
585 GlobalValue *NewGV;
586 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV))
587 NewGV = copyGlobalVariableProto(TypeMap, DstM, SGVar);
588 else if (auto *SF = dyn_cast<Function>(SGV))
589 NewGV = copyFunctionProto(TypeMap, DstM, SF);
590 else
591 NewGV = copyGlobalAliasProto(TypeMap, DstM, cast<GlobalAlias>(SGV));
592 copyGVAttributes(NewGV, SGV);
593 return NewGV;
594}
595
James Molloyf6f121e2013-05-28 15:17:05 +0000596Value *ValueMaterializerTy::materializeValueFor(Value *V) {
Rafael Espindolaef237112014-12-08 18:45:16 +0000597 auto *SGV = dyn_cast<GlobalValue>(V);
598 if (!SGV)
Craig Topper2617dcc2014-04-15 06:32:26 +0000599 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000600
Rafael Espindolaef237112014-12-08 18:45:16 +0000601 GlobalValue *DGV = copyGlobalValueProto(TypeMap, *DstM, SGV);
James Molloyf6f121e2013-05-28 15:17:05 +0000602
Rafael Espindolaef237112014-12-08 18:45:16 +0000603 if (Comdat *SC = SGV->getComdat()) {
604 if (auto *DGO = dyn_cast<GlobalObject>(DGV)) {
605 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
606 DGO->setComdat(DC);
607 }
Rafael Espindola3931c282014-08-15 20:17:08 +0000608 }
609
Rafael Espindolaef237112014-12-08 18:45:16 +0000610 LazilyLinkGlobalValues.push_back(SGV);
611 return DGV;
James Molloyf6f121e2013-05-28 15:17:05 +0000612}
613
David Majnemerdad0a642014-06-27 18:19:56 +0000614bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
615 const GlobalVariable *&GVar) {
616 const GlobalValue *GVal = M->getNamedValue(ComdatName);
617 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
618 GVal = GA->getBaseObject();
619 if (!GVal)
620 // We cannot resolve the size of the aliasee yet.
621 return emitError("Linking COMDATs named '" + ComdatName +
622 "': COMDAT key involves incomputable alias size.");
623 }
624
625 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
626 if (!GVar)
627 return emitError(
628 "Linking COMDATs named '" + ComdatName +
629 "': GlobalVariable required for data dependent selection!");
630
631 return false;
632}
633
634bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
635 Comdat::SelectionKind Src,
636 Comdat::SelectionKind Dst,
637 Comdat::SelectionKind &Result,
638 bool &LinkFromSrc) {
639 // The ability to mix Comdat::SelectionKind::Any with
640 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
641 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
642 Dst == Comdat::SelectionKind::Largest;
643 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
644 Src == Comdat::SelectionKind::Largest;
645 if (DstAnyOrLargest && SrcAnyOrLargest) {
646 if (Dst == Comdat::SelectionKind::Largest ||
647 Src == Comdat::SelectionKind::Largest)
648 Result = Comdat::SelectionKind::Largest;
649 else
650 Result = Comdat::SelectionKind::Any;
651 } else if (Src == Dst) {
652 Result = Dst;
653 } else {
654 return emitError("Linking COMDATs named '" + ComdatName +
655 "': invalid selection kinds!");
656 }
657
658 switch (Result) {
659 case Comdat::SelectionKind::Any:
660 // Go with Dst.
661 LinkFromSrc = false;
662 break;
663 case Comdat::SelectionKind::NoDuplicates:
664 return emitError("Linking COMDATs named '" + ComdatName +
665 "': noduplicates has been violated!");
666 case Comdat::SelectionKind::ExactMatch:
667 case Comdat::SelectionKind::Largest:
668 case Comdat::SelectionKind::SameSize: {
669 const GlobalVariable *DstGV;
670 const GlobalVariable *SrcGV;
671 if (getComdatLeader(DstM, ComdatName, DstGV) ||
672 getComdatLeader(SrcM, ComdatName, SrcGV))
673 return true;
674
675 const DataLayout *DstDL = DstM->getDataLayout();
676 const DataLayout *SrcDL = SrcM->getDataLayout();
677 if (!DstDL || !SrcDL) {
678 return emitError(
679 "Linking COMDATs named '" + ComdatName +
680 "': can't do size dependent selection without DataLayout!");
681 }
682 uint64_t DstSize =
683 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
684 uint64_t SrcSize =
685 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
686 if (Result == Comdat::SelectionKind::ExactMatch) {
687 if (SrcGV->getInitializer() != DstGV->getInitializer())
688 return emitError("Linking COMDATs named '" + ComdatName +
689 "': ExactMatch violated!");
690 LinkFromSrc = false;
691 } else if (Result == Comdat::SelectionKind::Largest) {
692 LinkFromSrc = SrcSize > DstSize;
693 } else if (Result == Comdat::SelectionKind::SameSize) {
694 if (SrcSize != DstSize)
695 return emitError("Linking COMDATs named '" + ComdatName +
696 "': SameSize violated!");
697 LinkFromSrc = false;
698 } else {
699 llvm_unreachable("unknown selection kind");
700 }
701 break;
702 }
703 }
704
705 return false;
706}
707
708bool ModuleLinker::getComdatResult(const Comdat *SrcC,
709 Comdat::SelectionKind &Result,
710 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000711 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000712 StringRef ComdatName = SrcC->getName();
713 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
714 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000715
Rafael Espindolab16196a2014-08-11 17:07:34 +0000716 if (DstCI == ComdatSymTab.end()) {
717 // Use the comdat if it is only available in one of the modules.
718 LinkFromSrc = true;
719 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000720 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000721 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000722
723 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000724 Comdat::SelectionKind DSK = DstC->getSelectionKind();
725 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
726 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000727}
James Molloyf6f121e2013-05-28 15:17:05 +0000728
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000729bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
730 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000731 const GlobalValue &Src) {
Rafael Espindola778fcc72014-11-02 13:28:57 +0000732 // We always have to add Src if it has appending linkage.
733 if (Src.hasAppendingLinkage()) {
734 LinkFromSrc = true;
735 return false;
736 }
737
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000738 bool SrcIsDeclaration = Src.isDeclarationForLinker();
739 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000740
741 if (SrcIsDeclaration) {
742 // If Src is external or if both Src & Dest are external.. Just link the
743 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000744 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000745 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000746 LinkFromSrc = DestIsDeclaration;
747 return false;
748 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000749 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000750 LinkFromSrc = Dest.hasExternalWeakLinkage();
751 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000752 }
753
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000754 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000755 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000756 LinkFromSrc = true;
757 return false;
758 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000759
Rafael Espindola09106052014-09-09 15:59:12 +0000760 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000761 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
762 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000763 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000764 }
765
766 if (!Dest.hasCommonLinkage()) {
767 LinkFromSrc = false;
768 return false;
769 }
Rafael Espindola09106052014-09-09 15:59:12 +0000770
Rafael Espindola0ae225b2014-10-31 04:46:38 +0000771 // FIXME: Make datalayout mandatory and just use getDataLayout().
772 DataLayout DL(Dest.getParent());
773
Rafael Espindola09106052014-09-09 15:59:12 +0000774 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
775 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000776 LinkFromSrc = SrcSize > DestSize;
777 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000778 }
779
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000780 if (Src.isWeakForLinker()) {
781 assert(!Dest.hasExternalWeakLinkage());
782 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000783
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000784 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
785 LinkFromSrc = true;
786 return false;
787 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000788
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000789 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000790 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000791 }
792
793 if (Dest.isWeakForLinker()) {
794 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000795 LinkFromSrc = true;
796 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000797 }
798
799 assert(!Src.hasExternalWeakLinkage());
800 assert(!Dest.hasExternalWeakLinkage());
801 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
802 "Unexpected linkage type!");
803 return emitError("Linking globals named '" + Src.getName() +
804 "': symbol multiply defined!");
805}
806
Rafael Espindola18c89412014-10-27 02:35:46 +0000807/// Loop over all of the linked values to compute type mappings. For example,
808/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
809/// types 'Foo' but one got renamed when the module was loaded into the same
810/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000811void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000812 for (GlobalValue &SGV : SrcM->globals()) {
813 GlobalValue *DGV = getLinkedToGlobal(&SGV);
814 if (!DGV)
815 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000816
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000817 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
818 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000819 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000820 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000821
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000822 // Unify the element type of appending arrays.
823 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000824 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000825 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000826 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000827
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000828 for (GlobalValue &SGV : *SrcM) {
829 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
830 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000831 }
Bill Wendling7b464612012-02-27 22:34:19 +0000832
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000833 for (GlobalValue &SGV : SrcM->aliases()) {
834 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
835 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
836 }
837
Bill Wendlingd48b7782012-02-28 04:01:21 +0000838 // Incorporate types by name, scanning all the types in the source module.
839 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000840 // example. When the source module got loaded into the same LLVMContext, if
841 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Rafael Espindola2fa1e432014-12-03 07:18:23 +0000842 std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes();
843 for (StructType *ST : Types) {
Rafael Espindola4d4c9382014-12-01 19:08:07 +0000844 if (!ST->hasName())
845 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000846
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000847 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000848 size_t DotPos = ST->getName().rfind('.');
849 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000850 ST->getName().back() == '.' ||
Rafael Espindola973b3612014-12-01 19:17:46 +0000851 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000852 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000853
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000854 // Check to see if the destination module has a struct with the prefix name.
Rafael Espindola973b3612014-12-01 19:17:46 +0000855 StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos));
856 if (!DST)
857 continue;
858
859 // Don't use it if this actually came from the source module. They're in
860 // the same LLVMContext after all. Also don't use it unless the type is
861 // actually used in the destination module. This can happen in situations
862 // like this:
863 //
864 // Module A Module B
865 // -------- --------
866 // %Z = type { %A } %B = type { %C.1 }
867 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
868 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
869 // %C = type { i8* } %B.3 = type { %C.1 }
870 //
871 // When we link Module B with Module A, the '%B' in Module B is
872 // used. However, that would then use '%C.1'. But when we process '%C.1',
873 // we prefer to take the '%C' version. So we are then left with both
874 // '%C.1' and '%C' being used for the same types. This leads to some
875 // variables using one type and some using the other.
Rafael Espindola31ad4682014-12-03 22:36:37 +0000876 if (TypeMap.DstStructTypesSet.hasType(DST))
Rafael Espindola973b3612014-12-01 19:17:46 +0000877 TypeMap.addTypeMapping(DST, ST);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000878 }
879
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000880 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000881 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000882 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000883}
884
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000885static void upgradeGlobalArray(GlobalVariable *GV) {
886 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
887 StructType *OldTy = cast<StructType>(ATy->getElementType());
888 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
889
890 // Get the upgraded 3 element type.
891 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
892 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
893 VoidPtrTy};
894 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
895
896 // Build new constants with a null third field filled in.
897 Constant *OldInitC = GV->getInitializer();
898 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
899 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
900 // Invalid initializer; give up.
901 return;
902 std::vector<Constant *> Initializers;
903 if (OldInit && OldInit->getNumOperands()) {
904 Value *Null = Constant::getNullValue(VoidPtrTy);
905 for (Use &U : OldInit->operands()) {
906 ConstantStruct *Init = cast<ConstantStruct>(U.get());
907 Initializers.push_back(ConstantStruct::get(
908 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
909 }
910 }
911 assert(Initializers.size() == ATy->getNumElements() &&
912 "Failed to copy all array elements");
913
914 // Replace the old GV with a new one.
915 ATy = ArrayType::get(NewTy, Initializers.size());
916 Constant *NewInit = ConstantArray::get(ATy, Initializers);
917 GlobalVariable *NewGV = new GlobalVariable(
918 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
919 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
920 GV->isExternallyInitialized());
921 NewGV->copyAttributesFrom(GV);
922 NewGV->takeName(GV);
923 assert(GV->use_empty() && "program cannot use initializer list");
924 GV->eraseFromParent();
925}
926
927void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
928 // Look for the global arrays.
929 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
930 if (!DstGV)
931 return;
932 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
933 if (!SrcGV)
934 return;
935
936 // Check if the types already match.
937 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
938 auto *SrcTy =
939 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
940 if (DstTy == SrcTy)
941 return;
942
943 // Grab the element types. We can only upgrade an array of a two-field
944 // struct. Only bother if the other one has three-fields.
945 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
946 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
947 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
948 upgradeGlobalArray(DstGV);
949 return;
950 }
951 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
952 upgradeGlobalArray(SrcGV);
953
954 // We can't upgrade any other differences.
955}
956
957void ModuleLinker::upgradeMismatchedGlobals() {
958 upgradeMismatchedGlobalArray("llvm.global_ctors");
959 upgradeMismatchedGlobalArray("llvm.global_dtors");
960}
961
Rafael Espindola18c89412014-10-27 02:35:46 +0000962/// If there were any appending global variables, link them together now.
963/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000964bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000965 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000966
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000967 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
968 return emitError("Linking globals named '" + SrcGV->getName() +
969 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000970
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000971 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
972 ArrayType *SrcTy =
973 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
974 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000975
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000976 // Check to see that they two arrays agree on type.
977 if (EltTy != SrcTy->getElementType())
978 return emitError("Appending variables with different element types!");
979 if (DstGV->isConstant() != SrcGV->isConstant())
980 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000981
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000982 if (DstGV->getAlignment() != SrcGV->getAlignment())
983 return emitError(
984 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000985
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000986 if (DstGV->getVisibility() != SrcGV->getVisibility())
987 return emitError(
988 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000989
990 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
991 return emitError(
992 "Appending variables with different unnamed_addr need to be linked!");
993
Rafael Espindola64c1e182014-06-03 02:41:57 +0000994 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000995 return emitError(
996 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000997
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000998 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
999 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001000
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001001 // Create the new global variable.
1002 GlobalVariable *NG =
1003 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +00001004 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001005 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001006 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001007
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001008 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001009 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001010
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001011 AppendingVarInfo AVI;
1012 AVI.NewGV = NG;
1013 AVI.DstInit = DstGV->getInitializer();
1014 AVI.SrcInit = SrcGV->getInitializer();
1015 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001016
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001017 // Replace any uses of the two global variables with uses of the new
1018 // global.
1019 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +00001020
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001021 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
1022 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001023
Tanya Lattnercbb91402011-10-11 00:24:54 +00001024 // Track the source variable so we don't try to link it.
1025 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001026
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001027 return false;
1028}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001029
Rafael Espindola778fcc72014-11-02 13:28:57 +00001030bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001031 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001032
Rafael Espindola778fcc72014-11-02 13:28:57 +00001033 // Handle the ultra special appending linkage case first.
1034 if (DGV && DGV->hasAppendingLinkage())
1035 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
1036 cast<GlobalVariable>(SGV));
1037
1038 bool LinkFromSrc = true;
1039 Comdat *C = nullptr;
1040 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
1041 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
1042
David Majnemerdad0a642014-06-27 18:19:56 +00001043 if (const Comdat *SC = SGV->getComdat()) {
1044 Comdat::SelectionKind SK;
1045 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +00001046 C = DstM->getOrInsertComdat(SC->getName());
1047 C->setSelectionKind(SK);
1048 } else if (DGV) {
1049 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1050 return true;
1051 }
1052
1053 if (!LinkFromSrc) {
1054 // Track the source global so that we don't attempt to copy it over when
1055 // processing global initializers.
1056 DoNotLinkFromSource.insert(SGV);
1057
1058 if (DGV)
1059 // Make sure to remember this mapping.
1060 ValueMap[SGV] =
1061 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001062 }
1063
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001064 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001065 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1066 ? DGV->getVisibility()
1067 : Visibility;
1068 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1069 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001070
Rafael Espindola778fcc72014-11-02 13:28:57 +00001071 if (!LinkFromSrc && !DGV)
1072 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001073
Rafael Espindola778fcc72014-11-02 13:28:57 +00001074 GlobalValue *NewGV;
Rafael Espindola26c29512014-12-05 17:53:15 +00001075 if (!LinkFromSrc) {
1076 NewGV = DGV;
1077 } else {
Rafael Espindolaef237112014-12-08 18:45:16 +00001078 // If the GV is to be lazily linked, don't create it just yet.
1079 // The ValueMaterializerTy will deal with creating it if it's used.
1080 if (!DGV && (SGV->hasLocalLinkage() || SGV->hasLinkOnceLinkage() ||
1081 SGV->hasAvailableExternallyLinkage())) {
1082 DoNotLinkFromSource.insert(SGV);
1083 return false;
1084 }
1085
1086 NewGV = copyGlobalValueProto(TypeMap, *DstM, SGV);
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001087
1088 if (DGV && isa<Function>(DGV))
1089 if (auto *NewF = dyn_cast<Function>(NewGV))
1090 OverridingFunctions.insert(NewF);
Rafael Espindola26c29512014-12-05 17:53:15 +00001091 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001092
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001093 NewGV->setUnnamedAddr(HasUnnamedAddr);
1094 NewGV->setVisibility(Visibility);
Rafael Espindola439835a2014-12-05 00:09:02 +00001095
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001096 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1097 if (C)
1098 NewGO->setComdat(C);
1099
1100 if (DGV && DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1101 NewGO->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment()));
1102 }
1103
Rafael Espindola879aeb72014-12-05 16:05:19 +00001104 if (auto *NewGVar = dyn_cast<GlobalVariable>(NewGV)) {
1105 auto *DGVar = dyn_cast_or_null<GlobalVariable>(DGV);
1106 auto *SGVar = dyn_cast<GlobalVariable>(SGV);
1107 if (DGVar && SGVar && DGVar->isDeclaration() && SGVar->isDeclaration() &&
1108 (!DGVar->isConstant() || !SGVar->isConstant()))
1109 NewGVar->setConstant(false);
1110 }
1111
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001112 // Make sure to remember this mapping.
1113 if (NewGV != DGV) {
1114 if (DGV) {
1115 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType()));
1116 DGV->eraseFromParent();
Chandler Carruthfd38af22014-11-02 09:10:31 +00001117 }
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001118 ValueMap[SGV] = NewGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001119 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001120
Rafael Espindola778fcc72014-11-02 13:28:57 +00001121 return false;
1122}
1123
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001124static void getArrayElements(const Constant *C,
1125 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001126 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1127
1128 for (unsigned i = 0; i != NumElements; ++i)
1129 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001130}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001131
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001132void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1133 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001134 SmallVector<Constant *, 16> DstElements;
1135 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001136
Rafael Espindolad31dc042014-09-05 21:27:52 +00001137 SmallVector<Constant *, 16> SrcElements;
1138 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001139
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001140 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001141
1142 StringRef Name = AVI.NewGV->getName();
1143 bool IsNewStructor =
1144 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1145 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1146
1147 for (auto *V : SrcElements) {
1148 if (IsNewStructor) {
1149 Constant *Key = V->getAggregateElement(2);
1150 if (DoNotLinkFromSource.count(Key))
1151 continue;
1152 }
1153 DstElements.push_back(
1154 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1155 }
1156 if (IsNewStructor) {
1157 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1158 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1159 }
1160
1161 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001162}
1163
Rafael Espindola18c89412014-10-27 02:35:46 +00001164/// Update the initializers in the Dest module now that all globals that may be
1165/// referenced are in Dest.
Rafael Espindolaef237112014-12-08 18:45:16 +00001166void ModuleLinker::linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src) {
1167 // Figure out what the initializer looks like in the dest module.
1168 Dst.setInitializer(MapValue(Src.getInitializer(), ValueMap, RF_None, &TypeMap,
1169 &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001170}
1171
Rafael Espindola18c89412014-10-27 02:35:46 +00001172/// Copy the source function over into the dest function and fix up references
1173/// to values. At this point we know that Dest is an external function, and
1174/// that Src is not.
Rafael Espindolaef237112014-12-08 18:45:16 +00001175bool ModuleLinker::linkFunctionBody(Function &Dst, Function &Src) {
1176 assert(Dst.isDeclaration() && !Src.isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001177
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001178 // Materialize if needed.
Rafael Espindola3519da82014-12-08 14:25:26 +00001179 if (std::error_code EC = Src.materialize())
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001180 return emitError(EC.message());
1181
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001182 // Link in the prefix data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001183 if (Src.hasPrefixData())
Rafael Espindolaef237112014-12-08 18:45:16 +00001184 Dst.setPrefixData(MapValue(Src.getPrefixData(), ValueMap, RF_None, &TypeMap,
1185 &ValMaterializer));
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001186
1187 // Link in the prologue data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001188 if (Src.hasPrologueData())
Rafael Espindolaef237112014-12-08 18:45:16 +00001189 Dst.setPrologueData(MapValue(Src.getPrologueData(), ValueMap, RF_None,
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001190 &TypeMap, &ValMaterializer));
1191
Chris Lattner7391dde2004-11-16 17:12:38 +00001192 // Go through and convert function arguments over, remembering the mapping.
Rafael Espindolaef237112014-12-08 18:45:16 +00001193 Function::arg_iterator DI = Dst.arg_begin();
Rafael Espindola3519da82014-12-08 14:25:26 +00001194 for (Argument &Arg : Src.args()) {
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001195 DI->setName(Arg.getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001196
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001197 // Add a mapping to our mapping.
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001198 ValueMap[&Arg] = DI;
1199 ++DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001200 }
1201
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001202 // Splice the body of the source function into the dest function.
Rafael Espindolaef237112014-12-08 18:45:16 +00001203 Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001204
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001205 // At this point, all of the instructions and values of the function are now
1206 // copied over. The only problem is that they are still referencing values in
1207 // the Source function as operands. Loop through all of the operands of the
1208 // functions and patch them up to point to the local versions.
Rafael Espindolaef237112014-12-08 18:45:16 +00001209 for (BasicBlock &BB : Dst)
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001210 for (Instruction &I : BB)
1211 RemapInstruction(&I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001212 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001213
Chris Lattner7391dde2004-11-16 17:12:38 +00001214 // There is no need to map the arguments anymore.
Rafael Espindola3519da82014-12-08 14:25:26 +00001215 for (Argument &Arg : Src.args())
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001216 ValueMap.erase(&Arg);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001217
Rafael Espindola3519da82014-12-08 14:25:26 +00001218 Src.Dematerialize();
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001219 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001220}
1221
Rafael Espindolaef237112014-12-08 18:45:16 +00001222void ModuleLinker::linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src) {
1223 Constant *Aliasee = Src.getAliasee();
1224 Constant *Val =
1225 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
1226 Dst.setAliasee(Val);
1227}
1228
1229bool ModuleLinker::linkGlobalValueBody(GlobalValue &Src) {
1230 Value *Dst = ValueMap[&Src];
1231 assert(Dst);
1232 if (auto *F = dyn_cast<Function>(&Src))
1233 return linkFunctionBody(cast<Function>(*Dst), *F);
1234 if (auto *GVar = dyn_cast<GlobalVariable>(&Src)) {
1235 linkGlobalInit(cast<GlobalVariable>(*Dst), *GVar);
1236 return false;
Tanya Lattnercbb91402011-10-11 00:24:54 +00001237 }
Rafael Espindolaef237112014-12-08 18:45:16 +00001238 linkAliasBody(cast<GlobalAlias>(*Dst), cast<GlobalAlias>(Src));
1239 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001240}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001241
Rafael Espindola18c89412014-10-27 02:35:46 +00001242/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001243void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001244 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001245 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1246 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001247 // Don't link module flags here. Do them separately.
1248 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001249 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1250 // Add Src elements into Dest node.
1251 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Duncan P. N. Exon Smith46d7af52014-12-19 06:06:18 +00001252 DestNMD->addOperand(MapMetadata(I->getOperand(i), ValueMap, RF_None,
1253 &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001254 }
1255}
Bill Wendling66f02412012-02-11 11:38:06 +00001256
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001257/// Drop DISubprograms that have been superseded.
1258///
1259/// FIXME: this creates an asymmetric result: we strip losing subprograms from
1260/// DstM, but leave losing subprograms in SrcM. Instead we should also strip
Duncan P. N. Exon Smith46d7af52014-12-19 06:06:18 +00001261/// losers from SrcM, but this requires extra plumbing in MapMetadata.
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001262void ModuleLinker::stripReplacedSubprograms() {
1263 // Avoid quadratic runtime by returning early when there's nothing to do.
1264 if (OverridingFunctions.empty())
1265 return;
1266
1267 // Move the functions now, so the set gets cleared even on early returns.
1268 auto Functions = std::move(OverridingFunctions);
1269 OverridingFunctions.clear();
1270
1271 // Drop subprograms whose functions have been overridden by the new compile
1272 // unit.
1273 NamedMDNode *CompileUnits = DstM->getNamedMetadata("llvm.dbg.cu");
1274 if (!CompileUnits)
1275 return;
1276 for (unsigned I = 0, E = CompileUnits->getNumOperands(); I != E; ++I) {
1277 DICompileUnit CU(CompileUnits->getOperand(I));
1278 assert(CU && "Expected valid compile unit");
1279
1280 DITypedArray<DISubprogram> SPs(CU.getSubprograms());
1281 assert(SPs && "Expected valid subprogram array");
1282
1283 SmallVector<Metadata *, 16> NewSPs;
1284 NewSPs.reserve(SPs.getNumElements());
1285 for (unsigned S = 0, SE = SPs.getNumElements(); S != SE; ++S) {
1286 DISubprogram SP = SPs.getElement(S);
1287 if (SP && SP.getFunction() && Functions.count(SP.getFunction()))
1288 continue;
1289
1290 NewSPs.push_back(SP);
1291 }
1292
1293 // Redirect operand to the overriding subprogram.
1294 if (NewSPs.size() != SPs.getNumElements())
1295 CU.replaceSubprograms(DIArray(MDNode::get(DstM->getContext(), NewSPs)));
1296 }
1297}
1298
Rafael Espindola18c89412014-10-27 02:35:46 +00001299/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001300bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001301 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001302 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1303 if (!SrcModFlags) return false;
1304
Bill Wendling66f02412012-02-11 11:38:06 +00001305 // If the destination module doesn't have module flags yet, then just copy
1306 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001307 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001308 if (DstModFlags->getNumOperands() == 0) {
1309 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1310 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1311
1312 return false;
1313 }
1314
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001315 // First build a map of the existing module flags and requirements.
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001316 DenseMap<MDString *, std::pair<MDNode *, unsigned>> Flags;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001317 SmallSetVector<MDNode*, 16> Requirements;
1318 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001319 MDNode *Op = DstModFlags->getOperand(I);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001320 ConstantInt *Behavior = mdconst::extract<ConstantInt>(Op->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001321 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001322
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001323 if (Behavior->getZExtValue() == Module::Require) {
1324 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1325 } else {
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001326 Flags[ID] = std::make_pair(Op, I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001327 }
Bill Wendling66f02412012-02-11 11:38:06 +00001328 }
1329
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001330 // Merge in the flags from the source module, and also collect its set of
1331 // requirements.
1332 bool HasErr = false;
1333 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001334 MDNode *SrcOp = SrcModFlags->getOperand(I);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001335 ConstantInt *SrcBehavior =
1336 mdconst::extract<ConstantInt>(SrcOp->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001337 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001338 MDNode *DstOp;
1339 unsigned DstIndex;
1340 std::tie(DstOp, DstIndex) = Flags.lookup(ID);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001341 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001342
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001343 // If this is a requirement, add it and continue.
1344 if (SrcBehaviorValue == Module::Require) {
1345 // If the destination module does not already have this requirement, add
1346 // it.
1347 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1348 DstModFlags->addOperand(SrcOp);
1349 }
1350 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001351 }
1352
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001353 // If there is no existing flag with this ID, just add it.
1354 if (!DstOp) {
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001355 Flags[ID] = std::make_pair(SrcOp, DstModFlags->getNumOperands());
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001356 DstModFlags->addOperand(SrcOp);
1357 continue;
1358 }
1359
1360 // Otherwise, perform a merge.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001361 ConstantInt *DstBehavior =
1362 mdconst::extract<ConstantInt>(DstOp->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001363 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1364
1365 // If either flag has override behavior, handle it first.
1366 if (DstBehaviorValue == Module::Override) {
1367 // Diagnose inconsistent flags which both have override behavior.
1368 if (SrcBehaviorValue == Module::Override &&
1369 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1370 HasErr |= emitError("linking module flags '" + ID->getString() +
1371 "': IDs have conflicting override values");
1372 }
1373 continue;
1374 } else if (SrcBehaviorValue == Module::Override) {
1375 // Update the destination flag to that of the source.
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001376 DstModFlags->setOperand(DstIndex, SrcOp);
1377 Flags[ID].first = SrcOp;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001378 continue;
1379 }
1380
1381 // Diagnose inconsistent merge behavior types.
1382 if (SrcBehaviorValue != DstBehaviorValue) {
1383 HasErr |= emitError("linking module flags '" + ID->getString() +
1384 "': IDs have conflicting behaviors");
1385 continue;
1386 }
1387
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001388 auto replaceDstValue = [&](MDNode *New) {
1389 Metadata *FlagOps[] = {DstOp->getOperand(0), ID, New};
1390 MDNode *Flag = MDNode::get(DstM->getContext(), FlagOps);
1391 DstModFlags->setOperand(DstIndex, Flag);
1392 Flags[ID].first = Flag;
1393 };
1394
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001395 // Perform the merge for standard behavior types.
1396 switch (SrcBehaviorValue) {
1397 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001398 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001399 case Module::Error: {
1400 // Emit an error if the values differ.
1401 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1402 HasErr |= emitError("linking module flags '" + ID->getString() +
1403 "': IDs have conflicting values");
1404 }
1405 continue;
1406 }
1407 case Module::Warning: {
1408 // Emit a warning if the values differ.
1409 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001410 emitWarning("linking module flags '" + ID->getString() +
1411 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001412 }
1413 continue;
1414 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001415 case Module::Append: {
1416 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1417 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001418 SmallVector<Metadata *, 8> MDs;
1419 MDs.reserve(DstValue->getNumOperands() + SrcValue->getNumOperands());
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001420 MDs.append(DstValue->op_begin(), DstValue->op_end());
1421 MDs.append(SrcValue->op_begin(), SrcValue->op_end());
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001422
1423 replaceDstValue(MDNode::get(DstM->getContext(), MDs));
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001424 break;
1425 }
1426 case Module::AppendUnique: {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001427 SmallSetVector<Metadata *, 16> Elts;
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001428 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1429 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001430 Elts.insert(DstValue->op_begin(), DstValue->op_end());
1431 Elts.insert(SrcValue->op_begin(), SrcValue->op_end());
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001432
1433 replaceDstValue(MDNode::get(DstM->getContext(),
1434 makeArrayRef(Elts.begin(), Elts.end())));
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001435 break;
1436 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001437 }
Bill Wendling66f02412012-02-11 11:38:06 +00001438 }
1439
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001440 // Check all of the requirements.
1441 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1442 MDNode *Requirement = Requirements[I];
1443 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001444 Metadata *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001445
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001446 MDNode *Op = Flags[Flag].first;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001447 if (!Op || Op->getOperand(2) != ReqValue) {
1448 HasErr |= emitError("linking module flags '" + Flag->getString() +
1449 "': does not have the required value");
1450 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001451 }
1452 }
1453
1454 return HasErr;
1455}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001456
Akira Hatanakac43df512015-02-13 00:40:41 +00001457// This function returns true if the triples match.
1458static bool triplesMatch(const Triple &T0, const Triple &T1) {
1459 // If vendor is apple, ignore the version number.
1460 if (T0.getVendor() == Triple::Apple)
1461 return T0.getArch() == T1.getArch() &&
1462 T0.getSubArch() == T1.getSubArch() &&
1463 T0.getVendor() == T1.getVendor() &&
1464 T0.getOS() == T1.getOS();
1465
1466 return T0 == T1;
1467}
1468
1469// This function returns the merged triple.
1470static std::string mergeTriples(const Triple &SrcTriple, const Triple &DstTriple) {
1471 // If vendor is apple, pick the triple with the larger version number.
1472 if (SrcTriple.getVendor() == Triple::Apple)
1473 if (DstTriple.isOSVersionLT(SrcTriple))
1474 return SrcTriple.str();
1475
1476 return DstTriple.str();
1477}
1478
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001479bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001480 assert(DstM && "Null destination module");
1481 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001482
1483 // Inherit the target data from the source module if the destination module
1484 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001485 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001486 DstM->setDataLayout(SrcM->getDataLayout());
1487
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001488 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001489 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001490 emitWarning("Linking two modules of different data layouts: '" +
1491 SrcM->getModuleIdentifier() + "' is '" +
1492 SrcM->getDataLayoutStr() + "' whereas '" +
1493 DstM->getModuleIdentifier() + "' is '" +
1494 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001495 }
Akira Hatanakac43df512015-02-13 00:40:41 +00001496
1497 // Copy the target triple from the source to dest if the dest's is empty.
1498 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1499 DstM->setTargetTriple(SrcM->getTargetTriple());
1500
1501 Triple SrcTriple(SrcM->getTargetTriple()), DstTriple(DstM->getTargetTriple());
1502
1503 if (!SrcM->getTargetTriple().empty() && !triplesMatch(SrcTriple, DstTriple))
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001504 emitWarning("Linking two modules of different target triples: " +
1505 SrcM->getModuleIdentifier() + "' is '" +
1506 SrcM->getTargetTriple() + "' whereas '" +
1507 DstM->getModuleIdentifier() + "' is '" +
1508 DstM->getTargetTriple() + "'\n");
Akira Hatanakac43df512015-02-13 00:40:41 +00001509
1510 DstM->setTargetTriple(mergeTriples(SrcTriple, DstTriple));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001511
1512 // Append the module inline asm string.
1513 if (!SrcM->getModuleInlineAsm().empty()) {
1514 if (DstM->getModuleInlineAsm().empty())
1515 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1516 else
1517 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1518 SrcM->getModuleInlineAsm());
1519 }
1520
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001521 // Loop over all of the linked values to compute type mappings.
1522 computeTypeMapping();
1523
David Majnemerdad0a642014-06-27 18:19:56 +00001524 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001525 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001526 const Comdat &C = SMEC.getValue();
1527 if (ComdatsChosen.count(&C))
1528 continue;
1529 Comdat::SelectionKind SK;
1530 bool LinkFromSrc;
1531 if (getComdatResult(&C, SK, LinkFromSrc))
1532 return true;
1533 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1534 }
1535
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001536 // Upgrade mismatched global arrays.
1537 upgradeMismatchedGlobals();
1538
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001539 // Insert all of the globals in src into the DstM module... without linking
1540 // initializers (which could refer to functions not yet mapped over).
1541 for (Module::global_iterator I = SrcM->global_begin(),
1542 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001543 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001544 return true;
1545
1546 // Link the functions together between the two modules, without doing function
1547 // bodies... this just adds external function prototypes to the DstM
1548 // function... We do this so that when we begin processing function bodies,
1549 // all of the global values that may be referenced are available in our
1550 // ValueMap.
1551 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001552 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001553 return true;
1554
1555 // If there were any aliases, link them now.
1556 for (Module::alias_iterator I = SrcM->alias_begin(),
1557 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001558 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001559 return true;
1560
1561 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1562 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001563
Rafael Espindolabeadd562014-12-08 18:05:48 +00001564 for (const auto &Entry : DstM->getComdatSymbolTable()) {
1565 const Comdat &C = Entry.getValue();
1566 if (C.getSelectionKind() == Comdat::Any)
1567 continue;
1568 const GlobalValue *GV = SrcM->getNamedValue(C.getName());
1569 assert(GV);
1570 MapValue(GV, ValueMap, RF_None, &TypeMap, &ValMaterializer);
1571 }
1572
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001573 // Link in the function bodies that are defined in the source module into
1574 // DstM.
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001575 for (Function &SF : *SrcM) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001576 // Skip if no body (function is external).
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001577 if (SF.isDeclaration())
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001578 continue;
1579
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001580 // Skip if not linking from source.
1581 if (DoNotLinkFromSource.count(&SF))
1582 continue;
1583
Rafael Espindolaef237112014-12-08 18:45:16 +00001584 if (linkGlobalValueBody(SF))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001585 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001586 }
1587
1588 // Resolve all uses of aliases with aliasees.
Rafael Espindolaef237112014-12-08 18:45:16 +00001589 for (GlobalAlias &Src : SrcM->aliases()) {
1590 if (DoNotLinkFromSource.count(&Src))
1591 continue;
1592 linkGlobalValueBody(Src);
1593 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001594
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001595 // Strip replaced subprograms before linking together compile units.
1596 stripReplacedSubprograms();
1597
Bill Wendling66f02412012-02-11 11:38:06 +00001598 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001599 // after linking GlobalValues so that MDNodes that reference GlobalValues
1600 // are properly remapped.
1601 linkNamedMDNodes();
1602
Bill Wendling66f02412012-02-11 11:38:06 +00001603 // Merge the module flags into the DstM module.
1604 if (linkModuleFlagsMetadata())
1605 return true;
1606
Bill Wendling91686d62014-01-16 06:29:36 +00001607 // Update the initializers in the DstM module now that all globals that may
1608 // be referenced are in DstM.
Rafael Espindolaef237112014-12-08 18:45:16 +00001609 for (GlobalVariable &Src : SrcM->globals()) {
1610 // Only process initialized GV's or ones not already in dest.
1611 if (!Src.hasInitializer() || DoNotLinkFromSource.count(&Src))
1612 continue;
1613 linkGlobalValueBody(Src);
1614 }
Bill Wendling91686d62014-01-16 06:29:36 +00001615
Tanya Lattner0a48b872011-11-02 00:24:56 +00001616 // Process vector of lazily linked in functions.
Rafael Espindolaef237112014-12-08 18:45:16 +00001617 while (!LazilyLinkGlobalValues.empty()) {
1618 GlobalValue *SGV = LazilyLinkGlobalValues.back();
1619 LazilyLinkGlobalValues.pop_back();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001620
Rafael Espindola9573a9c2014-12-16 22:29:43 +00001621 assert(!SGV->isDeclaration() && "users should not pass down decls");
Rafael Espindolaef237112014-12-08 18:45:16 +00001622 if (linkGlobalValueBody(*SGV))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001623 return true;
Rafael Espindola28a24512014-12-05 21:04:36 +00001624 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001625
Anton Korobeynikov26098882008-03-05 23:21:39 +00001626 return false;
1627}
Reid Spencer361e5132004-11-12 20:37:43 +00001628
Rafael Espindola31ad4682014-12-03 22:36:37 +00001629Linker::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P)
1630 : ETypes(E), IsPacked(P) {}
1631
1632Linker::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST)
1633 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
1634
1635bool Linker::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const {
1636 if (IsPacked != That.IsPacked)
1637 return false;
1638 if (ETypes != That.ETypes)
1639 return false;
1640 return true;
1641}
1642
1643bool Linker::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const {
1644 return !this->operator==(That);
1645}
1646
1647StructType *Linker::StructTypeKeyInfo::getEmptyKey() {
1648 return DenseMapInfo<StructType *>::getEmptyKey();
1649}
1650
1651StructType *Linker::StructTypeKeyInfo::getTombstoneKey() {
1652 return DenseMapInfo<StructType *>::getTombstoneKey();
1653}
1654
1655unsigned Linker::StructTypeKeyInfo::getHashValue(const KeyTy &Key) {
1656 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
1657 Key.IsPacked);
1658}
1659
1660unsigned Linker::StructTypeKeyInfo::getHashValue(const StructType *ST) {
1661 return getHashValue(KeyTy(ST));
1662}
1663
1664bool Linker::StructTypeKeyInfo::isEqual(const KeyTy &LHS,
1665 const StructType *RHS) {
1666 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
1667 return false;
1668 return LHS == KeyTy(RHS);
1669}
1670
1671bool Linker::StructTypeKeyInfo::isEqual(const StructType *LHS,
1672 const StructType *RHS) {
1673 if (RHS == getEmptyKey())
1674 return LHS == getEmptyKey();
1675
1676 if (RHS == getTombstoneKey())
1677 return LHS == getTombstoneKey();
1678
1679 return KeyTy(LHS) == KeyTy(RHS);
1680}
1681
1682void Linker::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) {
1683 assert(!Ty->isOpaque());
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001684 NonOpaqueStructTypes.insert(Ty);
Rafael Espindola31ad4682014-12-03 22:36:37 +00001685}
1686
1687void Linker::IdentifiedStructTypeSet::addOpaque(StructType *Ty) {
1688 assert(Ty->isOpaque());
1689 OpaqueStructTypes.insert(Ty);
1690}
1691
1692StructType *
1693Linker::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes,
1694 bool IsPacked) {
1695 Linker::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked);
1696 auto I = NonOpaqueStructTypes.find_as(Key);
1697 if (I == NonOpaqueStructTypes.end())
1698 return nullptr;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001699 return *I;
Rafael Espindola31ad4682014-12-03 22:36:37 +00001700}
1701
1702bool Linker::IdentifiedStructTypeSet::hasType(StructType *Ty) {
1703 if (Ty->isOpaque())
1704 return OpaqueStructTypes.count(Ty);
1705 auto I = NonOpaqueStructTypes.find(Ty);
1706 if (I == NonOpaqueStructTypes.end())
1707 return false;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001708 return *I == Ty;
Rafael Espindola31ad4682014-12-03 22:36:37 +00001709}
1710
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001711void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1712 this->Composite = M;
1713 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001714
1715 TypeFinder StructTypes;
1716 StructTypes.run(*M, true);
Rafael Espindola31ad4682014-12-03 22:36:37 +00001717 for (StructType *Ty : StructTypes) {
1718 if (Ty->isOpaque())
1719 IdentifiedStructTypes.addOpaque(Ty);
1720 else
1721 IdentifiedStructTypes.addNonOpaque(Ty);
1722 }
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001723}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001724
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001725Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1726 init(M, DiagnosticHandler);
1727}
1728
1729Linker::Linker(Module *M) {
1730 init(M, [this](const DiagnosticInfo &DI) {
1731 Composite->getContext().diagnose(DI);
1732 });
1733}
1734
Rafael Espindola3df61b72013-05-04 03:48:37 +00001735Linker::~Linker() {
1736}
1737
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001738void Linker::deleteModule() {
1739 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001740 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001741}
1742
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001743bool Linker::linkInModule(Module *Src) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001744 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1745 DiagnosticHandler);
Manman Rendab999d2015-01-20 19:24:59 +00001746 bool RetCode = TheLinker.run();
1747 Composite->dropTriviallyDeadConstantArrays();
1748 return RetCode;
Rafael Espindola3df61b72013-05-04 03:48:37 +00001749}
1750
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001751//===----------------------------------------------------------------------===//
1752// LinkModules entrypoint.
1753//===----------------------------------------------------------------------===//
1754
Rafael Espindola18c89412014-10-27 02:35:46 +00001755/// This function links two modules together, with the resulting Dest module
1756/// modified to be the composite of the two input modules. If an error occurs,
1757/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1758/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1759/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001760bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001761 DiagnosticHandlerFunction DiagnosticHandler) {
1762 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001763 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001764}
1765
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001766bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001767 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001768 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001769}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001770
1771//===----------------------------------------------------------------------===//
1772// C API.
1773//===----------------------------------------------------------------------===//
1774
1775LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
Rafael Espindolac6c58d52014-12-23 19:16:45 +00001776 unsigned Unused, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001777 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001778 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001779 raw_string_ostream Stream(Message);
1780 DiagnosticPrinterRawOStream DP(Stream);
1781
1782 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001783 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001784
1785 if (OutMessages && Result)
1786 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001787 return Result;
1788}