blob: 1b7a33168f1d719b61dbc8e84afe1c7668a0190e [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());
Rafael Espindolaa5b9e1c2015-03-06 00:50:21 +0000229 DstStructTypesSet.switchToNonOpaque(DstSTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000230 }
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000231 SrcDefinitionsToResolve.clear();
Chris Lattner5e3bd972011-12-20 00:03:52 +0000232 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000233}
234
Rafael Espindola31ad4682014-12-03 22:36:37 +0000235void TypeMapTy::finishType(StructType *DTy, StructType *STy,
236 ArrayRef<Type *> ETypes) {
237 DTy->setBody(ETypes, STy->isPacked());
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000238
239 // Steal STy's name.
240 if (STy->hasName()) {
241 SmallString<16> TmpName = STy->getName();
242 STy->setName("");
243 DTy->setName(TmpName);
244 }
245
Rafael Espindola31ad4682014-12-03 22:36:37 +0000246 DstStructTypesSet.addNonOpaque(DTy);
247}
248
249Type *TypeMapTy::get(Type *Ty) {
250 SmallPtrSet<StructType *, 8> Visited;
251 return get(Ty, Visited);
252}
253
254Type *TypeMapTy::get(Type *Ty, SmallPtrSet<StructType *, 8> &Visited) {
255 // If we already have an entry for this type, return it.
256 Type **Entry = &MappedTypes[Ty];
257 if (*Entry)
258 return *Entry;
259
260 // These are types that LLVM itself will unique.
261 bool IsUniqued = !isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral();
262
263#ifndef NDEBUG
264 if (!IsUniqued) {
265 for (auto &Pair : MappedTypes) {
266 assert(!(Pair.first != Ty && Pair.second == Ty) &&
267 "mapping to a source type");
268 }
269 }
270#endif
271
272 if (!IsUniqued && !Visited.insert(cast<StructType>(Ty)).second) {
273 StructType *DTy = StructType::create(Ty->getContext());
274 return *Entry = DTy;
275 }
276
277 // If this is not a recursive type, then just map all of the elements and
278 // then rebuild the type from inside out.
279 SmallVector<Type *, 4> ElementTypes;
280
281 // If there are no element types to map, then the type is itself. This is
282 // true for the anonymous {} struct, things like 'float', integers, etc.
283 if (Ty->getNumContainedTypes() == 0 && IsUniqued)
284 return *Entry = Ty;
285
286 // Remap all of the elements, keeping track of whether any of them change.
287 bool AnyChange = false;
288 ElementTypes.resize(Ty->getNumContainedTypes());
289 for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) {
290 ElementTypes[I] = get(Ty->getContainedType(I), Visited);
291 AnyChange |= ElementTypes[I] != Ty->getContainedType(I);
292 }
293
294 // If we found our type while recursively processing stuff, just use it.
295 Entry = &MappedTypes[Ty];
296 if (*Entry) {
297 if (auto *DTy = dyn_cast<StructType>(*Entry)) {
298 if (DTy->isOpaque()) {
299 auto *STy = cast<StructType>(Ty);
300 finishType(DTy, STy, ElementTypes);
301 }
302 }
303 return *Entry;
304 }
305
306 // If all of the element types mapped directly over and the type is not
307 // a nomed struct, then the type is usable as-is.
308 if (!AnyChange && IsUniqued)
309 return *Entry = Ty;
310
311 // Otherwise, rebuild a modified type.
312 switch (Ty->getTypeID()) {
313 default:
314 llvm_unreachable("unknown derived type to remap");
315 case Type::ArrayTyID:
316 return *Entry = ArrayType::get(ElementTypes[0],
317 cast<ArrayType>(Ty)->getNumElements());
318 case Type::VectorTyID:
319 return *Entry = VectorType::get(ElementTypes[0],
320 cast<VectorType>(Ty)->getNumElements());
321 case Type::PointerTyID:
322 return *Entry = PointerType::get(ElementTypes[0],
323 cast<PointerType>(Ty)->getAddressSpace());
324 case Type::FunctionTyID:
325 return *Entry = FunctionType::get(ElementTypes[0],
326 makeArrayRef(ElementTypes).slice(1),
327 cast<FunctionType>(Ty)->isVarArg());
328 case Type::StructTyID: {
329 auto *STy = cast<StructType>(Ty);
330 bool IsPacked = STy->isPacked();
331 if (IsUniqued)
332 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked);
333
334 // If the type is opaque, we can just use it directly.
335 if (STy->isOpaque()) {
336 DstStructTypesSet.addOpaque(STy);
337 return *Entry = Ty;
338 }
339
340 if (StructType *OldT =
341 DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) {
342 STy->setName("");
343 return *Entry = OldT;
344 }
345
346 if (!AnyChange) {
347 DstStructTypesSet.addNonOpaque(STy);
348 return *Entry = Ty;
349 }
350
351 StructType *DTy = StructType::create(Ty->getContext());
352 finishType(DTy, STy, ElementTypes);
353 return *Entry = DTy;
354 }
355 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000356}
357
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000358//===----------------------------------------------------------------------===//
359// ModuleLinker implementation.
360//===----------------------------------------------------------------------===//
361
362namespace {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000363class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000364
Rafael Espindolac84f6082014-11-25 06:11:24 +0000365/// Creates prototypes for functions that are lazily linked on the fly. This
366/// speeds up linking for modules with many/ lazily linked functions of which
367/// few get used.
368class ValueMaterializerTy : public ValueMaterializer {
369 TypeMapTy &TypeMap;
370 Module *DstM;
Rafael Espindolaef237112014-12-08 18:45:16 +0000371 std::vector<GlobalValue *> &LazilyLinkGlobalValues;
James Molloyf6f121e2013-05-28 15:17:05 +0000372
Rafael Espindolac84f6082014-11-25 06:11:24 +0000373public:
374 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
Rafael Espindolaef237112014-12-08 18:45:16 +0000375 std::vector<GlobalValue *> &LazilyLinkGlobalValues)
Rafael Espindolac84f6082014-11-25 06:11:24 +0000376 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
Rafael Espindolaef237112014-12-08 18:45:16 +0000377 LazilyLinkGlobalValues(LazilyLinkGlobalValues) {}
Rafael Espindolac84f6082014-11-25 06:11:24 +0000378
379 Value *materializeValueFor(Value *V) override;
380};
381
382class LinkDiagnosticInfo : public DiagnosticInfo {
383 const Twine &Msg;
384
385public:
386 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
387 void print(DiagnosticPrinter &DP) const override;
388};
389LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
390 const Twine &Msg)
391 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
392void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
393
394/// This is an implementation class for the LinkModules function, which is the
395/// entrypoint for this file.
396class ModuleLinker {
397 Module *DstM, *SrcM;
398
399 TypeMapTy TypeMap;
400 ValueMaterializerTy ValMaterializer;
401
402 /// Mapping of values from what they used to be in Src, to what they are now
403 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
404 /// due to the use of Value handles which the Linker doesn't actually need,
405 /// but this allows us to reuse the ValueMapper code.
406 ValueToValueMapTy ValueMap;
407
408 struct AppendingVarInfo {
409 GlobalVariable *NewGV; // New aggregate global in dest module.
410 const Constant *DstInit; // Old initializer from dest module.
411 const Constant *SrcInit; // Old initializer from src module.
James Molloyf6f121e2013-05-28 15:17:05 +0000412 };
413
Rafael Espindolac84f6082014-11-25 06:11:24 +0000414 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000415
Rafael Espindolac84f6082014-11-25 06:11:24 +0000416 // Set of items not to link in from source.
417 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000418
Rafael Espindolaef237112014-12-08 18:45:16 +0000419 // Vector of GlobalValues to lazily link in.
420 std::vector<GlobalValue *> LazilyLinkGlobalValues;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000421
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +0000422 /// Functions that have replaced other functions.
423 SmallPtrSet<const Function *, 16> OverridingFunctions;
424
Rafael Espindolad0b23be2015-01-10 00:07:30 +0000425 DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000426
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +0000427 /// For symbol clashes, prefer those from Src.
428 bool OverrideFromSrc;
429
Rafael Espindolac84f6082014-11-25 06:11:24 +0000430public:
Rafael Espindola31ad4682014-12-03 22:36:37 +0000431 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM,
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +0000432 DiagnosticHandlerFunction DiagnosticHandler,
433 bool OverrideFromSrc)
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000434 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindolaef237112014-12-08 18:45:16 +0000435 ValMaterializer(TypeMap, DstM, LazilyLinkGlobalValues),
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +0000436 DiagnosticHandler(DiagnosticHandler), OverrideFromSrc(OverrideFromSrc) {
437 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000438
Rafael Espindolac84f6082014-11-25 06:11:24 +0000439 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000440
Rafael Espindolac84f6082014-11-25 06:11:24 +0000441private:
442 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
443 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000444
Rafael Espindolac84f6082014-11-25 06:11:24 +0000445 /// Helper method for setting a message and returning an error code.
446 bool emitError(const Twine &Message) {
447 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
448 return true;
449 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000450
Rafael Espindolac84f6082014-11-25 06:11:24 +0000451 void emitWarning(const Twine &Message) {
452 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
453 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000454
Rafael Espindolac84f6082014-11-25 06:11:24 +0000455 bool getComdatLeader(Module *M, StringRef ComdatName,
456 const GlobalVariable *&GVar);
457 bool computeResultingSelectionKind(StringRef ComdatName,
458 Comdat::SelectionKind Src,
459 Comdat::SelectionKind Dst,
460 Comdat::SelectionKind &Result,
461 bool &LinkFromSrc);
462 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
463 ComdatsChosen;
464 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
465 bool &LinkFromSrc);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000466
Rafael Espindolac84f6082014-11-25 06:11:24 +0000467 /// Given a global in the source module, return the global in the
468 /// destination module that is being linked to, if any.
469 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
470 // If the source has no name it can't link. If it has local linkage,
471 // there is no name match-up going on.
472 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
473 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000474
Rafael Espindolac84f6082014-11-25 06:11:24 +0000475 // Otherwise see if we have a match in the destination module's symtab.
476 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
477 if (!DGV)
478 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000479
Rafael Espindolac84f6082014-11-25 06:11:24 +0000480 // If we found a global with the same name in the dest module, but it has
481 // internal linkage, we are really not doing any linkage here.
482 if (DGV->hasLocalLinkage())
483 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000484
Rafael Espindolac84f6082014-11-25 06:11:24 +0000485 // Otherwise, we do in fact link to the destination global.
486 return DGV;
487 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000488
Rafael Espindolac84f6082014-11-25 06:11:24 +0000489 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000490
Rafael Espindolac84f6082014-11-25 06:11:24 +0000491 void upgradeMismatchedGlobalArray(StringRef Name);
492 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000493
Rafael Espindolac84f6082014-11-25 06:11:24 +0000494 bool linkAppendingVarProto(GlobalVariable *DstGV,
495 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000496
Rafael Espindolac84f6082014-11-25 06:11:24 +0000497 bool linkGlobalValueProto(GlobalValue *GV);
Rafael Espindolac84f6082014-11-25 06:11:24 +0000498 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000499
Rafael Espindolac84f6082014-11-25 06:11:24 +0000500 void linkAppendingVarInit(const AppendingVarInfo &AVI);
Rafael Espindolaef237112014-12-08 18:45:16 +0000501
502 void linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src);
503 bool linkFunctionBody(Function &Dst, Function &Src);
504 void linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src);
505 bool linkGlobalValueBody(GlobalValue &Src);
506
Rafael Espindolac84f6082014-11-25 06:11:24 +0000507 void linkNamedMDNodes();
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +0000508 void stripReplacedSubprograms();
Rafael Espindolac84f6082014-11-25 06:11:24 +0000509};
Bill Wendlingd48b7782012-02-28 04:01:21 +0000510}
511
Rafael Espindola18c89412014-10-27 02:35:46 +0000512/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
513/// table. This is good for all clients except for us. Go through the trouble
514/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000515static void forceRenaming(GlobalValue *GV, StringRef Name) {
516 // If the global doesn't force its name or if it already has the right name,
517 // there is nothing for us to do.
518 if (GV->hasLocalLinkage() || GV->getName() == Name)
519 return;
520
521 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000522
523 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000524 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000525 GV->takeName(ConflictGV);
526 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000527 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000528 } else {
529 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000530 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000531}
Reid Spencer90246aa2007-02-04 04:29:21 +0000532
Rafael Espindola18c89412014-10-27 02:35:46 +0000533/// copy additional attributes (those not needed to construct a GlobalValue)
534/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000535static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000536 DestGV->copyAttributesFrom(SrcGV);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000537 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000538}
539
Rafael Espindola23f8d642012-01-05 23:02:01 +0000540static bool isLessConstraining(GlobalValue::VisibilityTypes a,
541 GlobalValue::VisibilityTypes b) {
542 if (a == GlobalValue::HiddenVisibility)
543 return false;
544 if (b == GlobalValue::HiddenVisibility)
545 return true;
546 if (a == GlobalValue::ProtectedVisibility)
547 return false;
548 if (b == GlobalValue::ProtectedVisibility)
549 return true;
550 return false;
551}
552
Rafael Espindolaef237112014-12-08 18:45:16 +0000553/// Loop through the global variables in the src module and merge them into the
554/// dest module.
555static GlobalVariable *copyGlobalVariableProto(TypeMapTy &TypeMap, Module &DstM,
556 const GlobalVariable *SGVar) {
557 // No linking to be performed or linking from the source: simply create an
558 // identical version of the symbol over in the dest module... the
559 // initializer will be filled in later by LinkGlobalInits.
560 GlobalVariable *NewDGV = new GlobalVariable(
561 DstM, TypeMap.get(SGVar->getType()->getElementType()),
562 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
563 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
564 SGVar->getType()->getAddressSpace());
565
566 return NewDGV;
567}
568
569/// Link the function in the source module into the destination module if
570/// needed, setting up mapping information.
571static Function *copyFunctionProto(TypeMapTy &TypeMap, Module &DstM,
572 const Function *SF) {
573 // If there is no linkage to be performed or we are linking from the source,
574 // bring SF over.
575 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
576 SF->getName(), &DstM);
577}
578
579/// Set up prototypes for any aliases that come over from the source module.
580static GlobalAlias *copyGlobalAliasProto(TypeMapTy &TypeMap, Module &DstM,
581 const GlobalAlias *SGA) {
582 // If there is no linkage to be performed or we're linking from the source,
583 // bring over SGA.
584 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
David Blaikief64246b2015-04-29 21:22:39 +0000585 return GlobalAlias::create(PTy, SGA->getLinkage(), SGA->getName(), &DstM);
Rafael Espindolaef237112014-12-08 18:45:16 +0000586}
587
588static GlobalValue *copyGlobalValueProto(TypeMapTy &TypeMap, Module &DstM,
589 const GlobalValue *SGV) {
590 GlobalValue *NewGV;
591 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV))
592 NewGV = copyGlobalVariableProto(TypeMap, DstM, SGVar);
593 else if (auto *SF = dyn_cast<Function>(SGV))
594 NewGV = copyFunctionProto(TypeMap, DstM, SF);
595 else
596 NewGV = copyGlobalAliasProto(TypeMap, DstM, cast<GlobalAlias>(SGV));
597 copyGVAttributes(NewGV, SGV);
598 return NewGV;
599}
600
James Molloyf6f121e2013-05-28 15:17:05 +0000601Value *ValueMaterializerTy::materializeValueFor(Value *V) {
Rafael Espindolaef237112014-12-08 18:45:16 +0000602 auto *SGV = dyn_cast<GlobalValue>(V);
603 if (!SGV)
Craig Topper2617dcc2014-04-15 06:32:26 +0000604 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000605
Rafael Espindolaef237112014-12-08 18:45:16 +0000606 GlobalValue *DGV = copyGlobalValueProto(TypeMap, *DstM, SGV);
James Molloyf6f121e2013-05-28 15:17:05 +0000607
Rafael Espindolaef237112014-12-08 18:45:16 +0000608 if (Comdat *SC = SGV->getComdat()) {
609 if (auto *DGO = dyn_cast<GlobalObject>(DGV)) {
610 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
611 DGO->setComdat(DC);
612 }
Rafael Espindola3931c282014-08-15 20:17:08 +0000613 }
614
Rafael Espindolaef237112014-12-08 18:45:16 +0000615 LazilyLinkGlobalValues.push_back(SGV);
616 return DGV;
James Molloyf6f121e2013-05-28 15:17:05 +0000617}
618
David Majnemerdad0a642014-06-27 18:19:56 +0000619bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
620 const GlobalVariable *&GVar) {
621 const GlobalValue *GVal = M->getNamedValue(ComdatName);
622 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
623 GVal = GA->getBaseObject();
624 if (!GVal)
625 // We cannot resolve the size of the aliasee yet.
626 return emitError("Linking COMDATs named '" + ComdatName +
627 "': COMDAT key involves incomputable alias size.");
628 }
629
630 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
631 if (!GVar)
632 return emitError(
633 "Linking COMDATs named '" + ComdatName +
634 "': GlobalVariable required for data dependent selection!");
635
636 return false;
637}
638
639bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
640 Comdat::SelectionKind Src,
641 Comdat::SelectionKind Dst,
642 Comdat::SelectionKind &Result,
643 bool &LinkFromSrc) {
644 // The ability to mix Comdat::SelectionKind::Any with
645 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
646 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
647 Dst == Comdat::SelectionKind::Largest;
648 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
649 Src == Comdat::SelectionKind::Largest;
650 if (DstAnyOrLargest && SrcAnyOrLargest) {
651 if (Dst == Comdat::SelectionKind::Largest ||
652 Src == Comdat::SelectionKind::Largest)
653 Result = Comdat::SelectionKind::Largest;
654 else
655 Result = Comdat::SelectionKind::Any;
656 } else if (Src == Dst) {
657 Result = Dst;
658 } else {
659 return emitError("Linking COMDATs named '" + ComdatName +
660 "': invalid selection kinds!");
661 }
662
663 switch (Result) {
664 case Comdat::SelectionKind::Any:
665 // Go with Dst.
666 LinkFromSrc = false;
667 break;
668 case Comdat::SelectionKind::NoDuplicates:
669 return emitError("Linking COMDATs named '" + ComdatName +
670 "': noduplicates has been violated!");
671 case Comdat::SelectionKind::ExactMatch:
672 case Comdat::SelectionKind::Largest:
673 case Comdat::SelectionKind::SameSize: {
674 const GlobalVariable *DstGV;
675 const GlobalVariable *SrcGV;
676 if (getComdatLeader(DstM, ComdatName, DstGV) ||
677 getComdatLeader(SrcM, ComdatName, SrcGV))
678 return true;
679
Mehdi Amini46a43552015-03-04 18:43:29 +0000680 const DataLayout &DstDL = DstM->getDataLayout();
681 const DataLayout &SrcDL = SrcM->getDataLayout();
David Majnemerdad0a642014-06-27 18:19:56 +0000682 uint64_t DstSize =
Mehdi Amini46a43552015-03-04 18:43:29 +0000683 DstDL.getTypeAllocSize(DstGV->getType()->getPointerElementType());
David Majnemerdad0a642014-06-27 18:19:56 +0000684 uint64_t SrcSize =
Mehdi Amini46a43552015-03-04 18:43:29 +0000685 SrcDL.getTypeAllocSize(SrcGV->getType()->getPointerElementType());
David Majnemerdad0a642014-06-27 18:19:56 +0000686 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) {
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +0000732 // Should we unconditionally use the Src?
733 if (OverrideFromSrc) {
734 LinkFromSrc = true;
735 return false;
736 }
737
Rafael Espindola778fcc72014-11-02 13:28:57 +0000738 // We always have to add Src if it has appending linkage.
739 if (Src.hasAppendingLinkage()) {
740 LinkFromSrc = true;
741 return false;
742 }
743
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000744 bool SrcIsDeclaration = Src.isDeclarationForLinker();
745 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000746
747 if (SrcIsDeclaration) {
748 // If Src is external or if both Src & Dest are external.. Just link the
749 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000750 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000751 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000752 LinkFromSrc = DestIsDeclaration;
753 return false;
754 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000755 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000756 LinkFromSrc = Dest.hasExternalWeakLinkage();
757 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000758 }
759
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000760 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000761 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000762 LinkFromSrc = true;
763 return false;
764 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000765
Rafael Espindola09106052014-09-09 15:59:12 +0000766 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000767 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
768 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000769 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000770 }
771
772 if (!Dest.hasCommonLinkage()) {
773 LinkFromSrc = false;
774 return false;
775 }
Rafael Espindola09106052014-09-09 15:59:12 +0000776
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000777 const DataLayout &DL = Dest.getParent()->getDataLayout();
Rafael Espindola09106052014-09-09 15:59:12 +0000778 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
779 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000780 LinkFromSrc = SrcSize > DestSize;
781 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000782 }
783
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000784 if (Src.isWeakForLinker()) {
785 assert(!Dest.hasExternalWeakLinkage());
786 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000787
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000788 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
789 LinkFromSrc = true;
790 return false;
791 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000792
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000793 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000794 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000795 }
796
797 if (Dest.isWeakForLinker()) {
798 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000799 LinkFromSrc = true;
800 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000801 }
802
803 assert(!Src.hasExternalWeakLinkage());
804 assert(!Dest.hasExternalWeakLinkage());
805 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
806 "Unexpected linkage type!");
807 return emitError("Linking globals named '" + Src.getName() +
808 "': symbol multiply defined!");
809}
810
Rafael Espindola18c89412014-10-27 02:35:46 +0000811/// Loop over all of the linked values to compute type mappings. For example,
812/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
813/// types 'Foo' but one got renamed when the module was loaded into the same
814/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000815void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000816 for (GlobalValue &SGV : SrcM->globals()) {
817 GlobalValue *DGV = getLinkedToGlobal(&SGV);
818 if (!DGV)
819 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000820
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000821 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
822 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000823 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000824 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000825
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000826 // Unify the element type of appending arrays.
827 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000828 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000829 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000830 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000831
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000832 for (GlobalValue &SGV : *SrcM) {
833 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
834 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000835 }
Bill Wendling7b464612012-02-27 22:34:19 +0000836
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000837 for (GlobalValue &SGV : SrcM->aliases()) {
838 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
839 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
840 }
841
Bill Wendlingd48b7782012-02-28 04:01:21 +0000842 // Incorporate types by name, scanning all the types in the source module.
843 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000844 // example. When the source module got loaded into the same LLVMContext, if
845 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Rafael Espindola2fa1e432014-12-03 07:18:23 +0000846 std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes();
847 for (StructType *ST : Types) {
Rafael Espindola4d4c9382014-12-01 19:08:07 +0000848 if (!ST->hasName())
849 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000850
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000851 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000852 size_t DotPos = ST->getName().rfind('.');
853 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000854 ST->getName().back() == '.' ||
Rafael Espindola973b3612014-12-01 19:17:46 +0000855 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000856 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000857
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000858 // Check to see if the destination module has a struct with the prefix name.
Rafael Espindola973b3612014-12-01 19:17:46 +0000859 StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos));
860 if (!DST)
861 continue;
862
863 // Don't use it if this actually came from the source module. They're in
864 // the same LLVMContext after all. Also don't use it unless the type is
865 // actually used in the destination module. This can happen in situations
866 // like this:
867 //
868 // Module A Module B
869 // -------- --------
870 // %Z = type { %A } %B = type { %C.1 }
871 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
872 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
873 // %C = type { i8* } %B.3 = type { %C.1 }
874 //
875 // When we link Module B with Module A, the '%B' in Module B is
876 // used. However, that would then use '%C.1'. But when we process '%C.1',
877 // we prefer to take the '%C' version. So we are then left with both
878 // '%C.1' and '%C' being used for the same types. This leads to some
879 // variables using one type and some using the other.
Rafael Espindola31ad4682014-12-03 22:36:37 +0000880 if (TypeMap.DstStructTypesSet.hasType(DST))
Rafael Espindola973b3612014-12-01 19:17:46 +0000881 TypeMap.addTypeMapping(DST, ST);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000882 }
883
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000884 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000885 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000886 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000887}
888
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000889static void upgradeGlobalArray(GlobalVariable *GV) {
890 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
891 StructType *OldTy = cast<StructType>(ATy->getElementType());
892 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
893
894 // Get the upgraded 3 element type.
895 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
896 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
897 VoidPtrTy};
898 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
899
900 // Build new constants with a null third field filled in.
901 Constant *OldInitC = GV->getInitializer();
902 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
903 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
904 // Invalid initializer; give up.
905 return;
906 std::vector<Constant *> Initializers;
907 if (OldInit && OldInit->getNumOperands()) {
908 Value *Null = Constant::getNullValue(VoidPtrTy);
909 for (Use &U : OldInit->operands()) {
910 ConstantStruct *Init = cast<ConstantStruct>(U.get());
911 Initializers.push_back(ConstantStruct::get(
912 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
913 }
914 }
915 assert(Initializers.size() == ATy->getNumElements() &&
916 "Failed to copy all array elements");
917
918 // Replace the old GV with a new one.
919 ATy = ArrayType::get(NewTy, Initializers.size());
920 Constant *NewInit = ConstantArray::get(ATy, Initializers);
921 GlobalVariable *NewGV = new GlobalVariable(
922 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
923 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
924 GV->isExternallyInitialized());
925 NewGV->copyAttributesFrom(GV);
926 NewGV->takeName(GV);
927 assert(GV->use_empty() && "program cannot use initializer list");
928 GV->eraseFromParent();
929}
930
931void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
932 // Look for the global arrays.
933 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
934 if (!DstGV)
935 return;
936 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
937 if (!SrcGV)
938 return;
939
940 // Check if the types already match.
941 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
942 auto *SrcTy =
943 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
944 if (DstTy == SrcTy)
945 return;
946
947 // Grab the element types. We can only upgrade an array of a two-field
948 // struct. Only bother if the other one has three-fields.
949 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
950 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
951 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
952 upgradeGlobalArray(DstGV);
953 return;
954 }
955 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
956 upgradeGlobalArray(SrcGV);
957
958 // We can't upgrade any other differences.
959}
960
961void ModuleLinker::upgradeMismatchedGlobals() {
962 upgradeMismatchedGlobalArray("llvm.global_ctors");
963 upgradeMismatchedGlobalArray("llvm.global_dtors");
964}
965
Rafael Espindola18c89412014-10-27 02:35:46 +0000966/// If there were any appending global variables, link them together now.
967/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000968bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000969 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000970
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000971 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
972 return emitError("Linking globals named '" + SrcGV->getName() +
973 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000974
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000975 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
976 ArrayType *SrcTy =
977 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
978 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000979
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000980 // Check to see that they two arrays agree on type.
981 if (EltTy != SrcTy->getElementType())
982 return emitError("Appending variables with different element types!");
983 if (DstGV->isConstant() != SrcGV->isConstant())
984 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000985
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000986 if (DstGV->getAlignment() != SrcGV->getAlignment())
987 return emitError(
988 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000989
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000990 if (DstGV->getVisibility() != SrcGV->getVisibility())
991 return emitError(
992 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000993
994 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
995 return emitError(
996 "Appending variables with different unnamed_addr need to be linked!");
997
Rafael Espindola64c1e182014-06-03 02:41:57 +0000998 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000999 return emitError(
1000 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001001
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001002 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
1003 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001004
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001005 // Create the new global variable.
1006 GlobalVariable *NG =
1007 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +00001008 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001009 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001010 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001011
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001012 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001013 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001014
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001015 AppendingVarInfo AVI;
1016 AVI.NewGV = NG;
1017 AVI.DstInit = DstGV->getInitializer();
1018 AVI.SrcInit = SrcGV->getInitializer();
1019 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001020
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001021 // Replace any uses of the two global variables with uses of the new
1022 // global.
1023 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +00001024
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001025 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
1026 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001027
Tanya Lattnercbb91402011-10-11 00:24:54 +00001028 // Track the source variable so we don't try to link it.
1029 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001030
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001031 return false;
1032}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001033
Rafael Espindola778fcc72014-11-02 13:28:57 +00001034bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001035 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001036
Rafael Espindola778fcc72014-11-02 13:28:57 +00001037 // Handle the ultra special appending linkage case first.
1038 if (DGV && DGV->hasAppendingLinkage())
1039 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
1040 cast<GlobalVariable>(SGV));
1041
1042 bool LinkFromSrc = true;
1043 Comdat *C = nullptr;
1044 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
1045 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
1046
David Majnemerdad0a642014-06-27 18:19:56 +00001047 if (const Comdat *SC = SGV->getComdat()) {
1048 Comdat::SelectionKind SK;
1049 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +00001050 C = DstM->getOrInsertComdat(SC->getName());
1051 C->setSelectionKind(SK);
1052 } else if (DGV) {
1053 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1054 return true;
1055 }
1056
1057 if (!LinkFromSrc) {
1058 // Track the source global so that we don't attempt to copy it over when
1059 // processing global initializers.
1060 DoNotLinkFromSource.insert(SGV);
1061
1062 if (DGV)
1063 // Make sure to remember this mapping.
1064 ValueMap[SGV] =
1065 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001066 }
1067
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001068 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001069 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1070 ? DGV->getVisibility()
1071 : Visibility;
1072 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1073 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001074
Rafael Espindola778fcc72014-11-02 13:28:57 +00001075 if (!LinkFromSrc && !DGV)
1076 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001077
Rafael Espindola778fcc72014-11-02 13:28:57 +00001078 GlobalValue *NewGV;
Rafael Espindola26c29512014-12-05 17:53:15 +00001079 if (!LinkFromSrc) {
1080 NewGV = DGV;
1081 } else {
Rafael Espindolaef237112014-12-08 18:45:16 +00001082 // If the GV is to be lazily linked, don't create it just yet.
1083 // The ValueMaterializerTy will deal with creating it if it's used.
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +00001084 if (!DGV && !OverrideFromSrc &&
1085 (SGV->hasLocalLinkage() || SGV->hasLinkOnceLinkage() ||
1086 SGV->hasAvailableExternallyLinkage())) {
Rafael Espindolaef237112014-12-08 18:45:16 +00001087 DoNotLinkFromSource.insert(SGV);
1088 return false;
1089 }
1090
1091 NewGV = copyGlobalValueProto(TypeMap, *DstM, SGV);
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001092
1093 if (DGV && isa<Function>(DGV))
1094 if (auto *NewF = dyn_cast<Function>(NewGV))
1095 OverridingFunctions.insert(NewF);
Rafael Espindola26c29512014-12-05 17:53:15 +00001096 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001097
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001098 NewGV->setUnnamedAddr(HasUnnamedAddr);
1099 NewGV->setVisibility(Visibility);
Rafael Espindola439835a2014-12-05 00:09:02 +00001100
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001101 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1102 if (C)
1103 NewGO->setComdat(C);
1104
1105 if (DGV && DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1106 NewGO->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment()));
1107 }
1108
Rafael Espindola879aeb72014-12-05 16:05:19 +00001109 if (auto *NewGVar = dyn_cast<GlobalVariable>(NewGV)) {
1110 auto *DGVar = dyn_cast_or_null<GlobalVariable>(DGV);
1111 auto *SGVar = dyn_cast<GlobalVariable>(SGV);
1112 if (DGVar && SGVar && DGVar->isDeclaration() && SGVar->isDeclaration() &&
1113 (!DGVar->isConstant() || !SGVar->isConstant()))
1114 NewGVar->setConstant(false);
1115 }
1116
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001117 // Make sure to remember this mapping.
1118 if (NewGV != DGV) {
1119 if (DGV) {
1120 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType()));
1121 DGV->eraseFromParent();
Chandler Carruthfd38af22014-11-02 09:10:31 +00001122 }
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001123 ValueMap[SGV] = NewGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001124 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001125
Rafael Espindola778fcc72014-11-02 13:28:57 +00001126 return false;
1127}
1128
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001129static void getArrayElements(const Constant *C,
1130 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001131 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1132
1133 for (unsigned i = 0; i != NumElements; ++i)
1134 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001135}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001136
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001137void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1138 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001139 SmallVector<Constant *, 16> DstElements;
1140 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001141
Rafael Espindolad31dc042014-09-05 21:27:52 +00001142 SmallVector<Constant *, 16> SrcElements;
1143 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001144
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001145 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001146
1147 StringRef Name = AVI.NewGV->getName();
1148 bool IsNewStructor =
1149 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1150 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1151
1152 for (auto *V : SrcElements) {
1153 if (IsNewStructor) {
1154 Constant *Key = V->getAggregateElement(2);
1155 if (DoNotLinkFromSource.count(Key))
1156 continue;
1157 }
1158 DstElements.push_back(
1159 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1160 }
1161 if (IsNewStructor) {
1162 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1163 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1164 }
1165
1166 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001167}
1168
Rafael Espindola18c89412014-10-27 02:35:46 +00001169/// Update the initializers in the Dest module now that all globals that may be
1170/// referenced are in Dest.
Rafael Espindolaef237112014-12-08 18:45:16 +00001171void ModuleLinker::linkGlobalInit(GlobalVariable &Dst, GlobalVariable &Src) {
1172 // Figure out what the initializer looks like in the dest module.
1173 Dst.setInitializer(MapValue(Src.getInitializer(), ValueMap, RF_None, &TypeMap,
1174 &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001175}
1176
Rafael Espindola18c89412014-10-27 02:35:46 +00001177/// Copy the source function over into the dest function and fix up references
1178/// to values. At this point we know that Dest is an external function, and
1179/// that Src is not.
Rafael Espindolaef237112014-12-08 18:45:16 +00001180bool ModuleLinker::linkFunctionBody(Function &Dst, Function &Src) {
1181 assert(Dst.isDeclaration() && !Src.isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001182
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001183 // Materialize if needed.
Rafael Espindola3519da82014-12-08 14:25:26 +00001184 if (std::error_code EC = Src.materialize())
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001185 return emitError(EC.message());
1186
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001187 // Link in the prefix data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001188 if (Src.hasPrefixData())
Rafael Espindolaef237112014-12-08 18:45:16 +00001189 Dst.setPrefixData(MapValue(Src.getPrefixData(), ValueMap, RF_None, &TypeMap,
1190 &ValMaterializer));
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001191
1192 // Link in the prologue data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001193 if (Src.hasPrologueData())
Rafael Espindolaef237112014-12-08 18:45:16 +00001194 Dst.setPrologueData(MapValue(Src.getPrologueData(), ValueMap, RF_None,
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001195 &TypeMap, &ValMaterializer));
1196
Chris Lattner7391dde2004-11-16 17:12:38 +00001197 // Go through and convert function arguments over, remembering the mapping.
Rafael Espindolaef237112014-12-08 18:45:16 +00001198 Function::arg_iterator DI = Dst.arg_begin();
Rafael Espindola3519da82014-12-08 14:25:26 +00001199 for (Argument &Arg : Src.args()) {
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001200 DI->setName(Arg.getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001201
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001202 // Add a mapping to our mapping.
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001203 ValueMap[&Arg] = DI;
1204 ++DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001205 }
1206
Duncan P. N. Exon Smithc8d987b2015-04-24 22:07:31 +00001207 // Copy over the metadata attachments.
1208 SmallVector<std::pair<unsigned, MDNode *>, 8> MDs;
1209 Src.getAllMetadata(MDs);
1210 for (const auto &I : MDs)
1211 Dst.setMetadata(I.first, MapMetadata(I.second, ValueMap, RF_None, &TypeMap,
1212 &ValMaterializer));
1213
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001214 // Splice the body of the source function into the dest function.
Rafael Espindolaef237112014-12-08 18:45:16 +00001215 Dst.getBasicBlockList().splice(Dst.end(), Src.getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001216
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001217 // At this point, all of the instructions and values of the function are now
1218 // copied over. The only problem is that they are still referencing values in
1219 // the Source function as operands. Loop through all of the operands of the
1220 // functions and patch them up to point to the local versions.
Rafael Espindolaef237112014-12-08 18:45:16 +00001221 for (BasicBlock &BB : Dst)
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001222 for (Instruction &I : BB)
1223 RemapInstruction(&I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001224 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001225
Chris Lattner7391dde2004-11-16 17:12:38 +00001226 // There is no need to map the arguments anymore.
Rafael Espindola3519da82014-12-08 14:25:26 +00001227 for (Argument &Arg : Src.args())
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001228 ValueMap.erase(&Arg);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001229
Eric Christopher97cb5652015-05-15 18:20:14 +00001230 Src.dematerialize();
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001231 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001232}
1233
Rafael Espindolaef237112014-12-08 18:45:16 +00001234void ModuleLinker::linkAliasBody(GlobalAlias &Dst, GlobalAlias &Src) {
1235 Constant *Aliasee = Src.getAliasee();
1236 Constant *Val =
1237 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
1238 Dst.setAliasee(Val);
1239}
1240
1241bool ModuleLinker::linkGlobalValueBody(GlobalValue &Src) {
1242 Value *Dst = ValueMap[&Src];
1243 assert(Dst);
1244 if (auto *F = dyn_cast<Function>(&Src))
1245 return linkFunctionBody(cast<Function>(*Dst), *F);
1246 if (auto *GVar = dyn_cast<GlobalVariable>(&Src)) {
1247 linkGlobalInit(cast<GlobalVariable>(*Dst), *GVar);
1248 return false;
Tanya Lattnercbb91402011-10-11 00:24:54 +00001249 }
Rafael Espindolaef237112014-12-08 18:45:16 +00001250 linkAliasBody(cast<GlobalAlias>(*Dst), cast<GlobalAlias>(Src));
1251 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001252}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001253
Rafael Espindola18c89412014-10-27 02:35:46 +00001254/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001255void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001256 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001257 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1258 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001259 // Don't link module flags here. Do them separately.
1260 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001261 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1262 // Add Src elements into Dest node.
1263 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
Duncan P. N. Exon Smith46d7af52014-12-19 06:06:18 +00001264 DestNMD->addOperand(MapMetadata(I->getOperand(i), ValueMap, RF_None,
1265 &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001266 }
1267}
Bill Wendling66f02412012-02-11 11:38:06 +00001268
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001269/// Drop DISubprograms that have been superseded.
1270///
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001271/// FIXME: this creates an asymmetric result: we strip functions from losing
1272/// subprograms in DstM, but leave losing subprograms in SrcM.
1273/// TODO: Remove this logic once the backend can correctly determine canonical
1274/// subprograms.
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001275void ModuleLinker::stripReplacedSubprograms() {
1276 // Avoid quadratic runtime by returning early when there's nothing to do.
1277 if (OverridingFunctions.empty())
1278 return;
1279
1280 // Move the functions now, so the set gets cleared even on early returns.
1281 auto Functions = std::move(OverridingFunctions);
1282 OverridingFunctions.clear();
1283
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001284 // Drop functions from subprograms if they've been overridden by the new
1285 // compile unit.
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001286 NamedMDNode *CompileUnits = DstM->getNamedMetadata("llvm.dbg.cu");
1287 if (!CompileUnits)
1288 return;
1289 for (unsigned I = 0, E = CompileUnits->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001290 auto *CU = cast<DICompileUnit>(CompileUnits->getOperand(I));
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001291 assert(CU && "Expected valid compile unit");
1292
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001293 for (DISubprogram *SP : CU->getSubprograms()) {
Duncan P. N. Exon Smith537b4a82015-04-14 03:40:37 +00001294 if (!SP || !SP->getFunction() || !Functions.count(SP->getFunction()))
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001295 continue;
1296
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001297 // Prevent DebugInfoFinder from tagging this as the canonical subprogram,
1298 // since the canonical one is in the incoming module.
1299 SP->replaceFunction(nullptr);
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001300 }
Duncan P. N. Exon Smithfda0cee2014-12-18 01:05:33 +00001301 }
1302}
1303
Rafael Espindola18c89412014-10-27 02:35:46 +00001304/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001305bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001306 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001307 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1308 if (!SrcModFlags) return false;
1309
Bill Wendling66f02412012-02-11 11:38:06 +00001310 // If the destination module doesn't have module flags yet, then just copy
1311 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001312 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001313 if (DstModFlags->getNumOperands() == 0) {
1314 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1315 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1316
1317 return false;
1318 }
1319
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001320 // First build a map of the existing module flags and requirements.
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001321 DenseMap<MDString *, std::pair<MDNode *, unsigned>> Flags;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001322 SmallSetVector<MDNode*, 16> Requirements;
1323 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001324 MDNode *Op = DstModFlags->getOperand(I);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001325 ConstantInt *Behavior = mdconst::extract<ConstantInt>(Op->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001326 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001327
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001328 if (Behavior->getZExtValue() == Module::Require) {
1329 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1330 } else {
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001331 Flags[ID] = std::make_pair(Op, I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001332 }
Bill Wendling66f02412012-02-11 11:38:06 +00001333 }
1334
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001335 // Merge in the flags from the source module, and also collect its set of
1336 // requirements.
1337 bool HasErr = false;
1338 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001339 MDNode *SrcOp = SrcModFlags->getOperand(I);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001340 ConstantInt *SrcBehavior =
1341 mdconst::extract<ConstantInt>(SrcOp->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001342 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001343 MDNode *DstOp;
1344 unsigned DstIndex;
1345 std::tie(DstOp, DstIndex) = Flags.lookup(ID);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001346 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001347
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001348 // If this is a requirement, add it and continue.
1349 if (SrcBehaviorValue == Module::Require) {
1350 // If the destination module does not already have this requirement, add
1351 // it.
1352 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1353 DstModFlags->addOperand(SrcOp);
1354 }
1355 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001356 }
1357
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001358 // If there is no existing flag with this ID, just add it.
1359 if (!DstOp) {
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001360 Flags[ID] = std::make_pair(SrcOp, DstModFlags->getNumOperands());
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001361 DstModFlags->addOperand(SrcOp);
1362 continue;
1363 }
1364
1365 // Otherwise, perform a merge.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001366 ConstantInt *DstBehavior =
1367 mdconst::extract<ConstantInt>(DstOp->getOperand(0));
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001368 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1369
1370 // If either flag has override behavior, handle it first.
1371 if (DstBehaviorValue == Module::Override) {
1372 // Diagnose inconsistent flags which both have override behavior.
1373 if (SrcBehaviorValue == Module::Override &&
1374 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1375 HasErr |= emitError("linking module flags '" + ID->getString() +
1376 "': IDs have conflicting override values");
1377 }
1378 continue;
1379 } else if (SrcBehaviorValue == Module::Override) {
1380 // Update the destination flag to that of the source.
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001381 DstModFlags->setOperand(DstIndex, SrcOp);
1382 Flags[ID].first = SrcOp;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001383 continue;
1384 }
1385
1386 // Diagnose inconsistent merge behavior types.
1387 if (SrcBehaviorValue != DstBehaviorValue) {
1388 HasErr |= emitError("linking module flags '" + ID->getString() +
1389 "': IDs have conflicting behaviors");
1390 continue;
1391 }
1392
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001393 auto replaceDstValue = [&](MDNode *New) {
1394 Metadata *FlagOps[] = {DstOp->getOperand(0), ID, New};
1395 MDNode *Flag = MDNode::get(DstM->getContext(), FlagOps);
1396 DstModFlags->setOperand(DstIndex, Flag);
1397 Flags[ID].first = Flag;
1398 };
1399
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001400 // Perform the merge for standard behavior types.
1401 switch (SrcBehaviorValue) {
1402 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001403 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001404 case Module::Error: {
1405 // Emit an error if the values differ.
1406 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1407 HasErr |= emitError("linking module flags '" + ID->getString() +
1408 "': IDs have conflicting values");
1409 }
1410 continue;
1411 }
1412 case Module::Warning: {
1413 // Emit a warning if the values differ.
1414 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001415 emitWarning("linking module flags '" + ID->getString() +
1416 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001417 }
1418 continue;
1419 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001420 case Module::Append: {
1421 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1422 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001423 SmallVector<Metadata *, 8> MDs;
1424 MDs.reserve(DstValue->getNumOperands() + SrcValue->getNumOperands());
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001425 MDs.append(DstValue->op_begin(), DstValue->op_end());
1426 MDs.append(SrcValue->op_begin(), SrcValue->op_end());
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001427
1428 replaceDstValue(MDNode::get(DstM->getContext(), MDs));
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001429 break;
1430 }
1431 case Module::AppendUnique: {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001432 SmallSetVector<Metadata *, 16> Elts;
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001433 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1434 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001435 Elts.insert(DstValue->op_begin(), DstValue->op_end());
1436 Elts.insert(SrcValue->op_begin(), SrcValue->op_end());
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001437
1438 replaceDstValue(MDNode::get(DstM->getContext(),
1439 makeArrayRef(Elts.begin(), Elts.end())));
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001440 break;
1441 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001442 }
Bill Wendling66f02412012-02-11 11:38:06 +00001443 }
1444
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001445 // Check all of the requirements.
1446 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1447 MDNode *Requirement = Requirements[I];
1448 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001449 Metadata *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001450
Duncan P. N. Exon Smithdf55d8b2015-01-07 21:32:27 +00001451 MDNode *Op = Flags[Flag].first;
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001452 if (!Op || Op->getOperand(2) != ReqValue) {
1453 HasErr |= emitError("linking module flags '" + Flag->getString() +
1454 "': does not have the required value");
1455 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001456 }
1457 }
1458
1459 return HasErr;
1460}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001461
Akira Hatanakac43df512015-02-13 00:40:41 +00001462// This function returns true if the triples match.
1463static bool triplesMatch(const Triple &T0, const Triple &T1) {
1464 // If vendor is apple, ignore the version number.
1465 if (T0.getVendor() == Triple::Apple)
1466 return T0.getArch() == T1.getArch() &&
1467 T0.getSubArch() == T1.getSubArch() &&
1468 T0.getVendor() == T1.getVendor() &&
1469 T0.getOS() == T1.getOS();
1470
1471 return T0 == T1;
1472}
1473
1474// This function returns the merged triple.
1475static std::string mergeTriples(const Triple &SrcTriple, const Triple &DstTriple) {
1476 // If vendor is apple, pick the triple with the larger version number.
1477 if (SrcTriple.getVendor() == Triple::Apple)
1478 if (DstTriple.isOSVersionLT(SrcTriple))
1479 return SrcTriple.str();
1480
1481 return DstTriple.str();
1482}
1483
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001484bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001485 assert(DstM && "Null destination module");
1486 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001487
1488 // Inherit the target data from the source module if the destination module
1489 // doesn't have one already.
Mehdi Amini46a43552015-03-04 18:43:29 +00001490 if (DstM->getDataLayout().isDefault())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001491 DstM->setDataLayout(SrcM->getDataLayout());
1492
Mehdi Amini46a43552015-03-04 18:43:29 +00001493 if (SrcM->getDataLayout() != DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001494 emitWarning("Linking two modules of different data layouts: '" +
1495 SrcM->getModuleIdentifier() + "' is '" +
1496 SrcM->getDataLayoutStr() + "' whereas '" +
1497 DstM->getModuleIdentifier() + "' is '" +
1498 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001499 }
Akira Hatanakac43df512015-02-13 00:40:41 +00001500
1501 // Copy the target triple from the source to dest if the dest's is empty.
1502 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1503 DstM->setTargetTriple(SrcM->getTargetTriple());
1504
1505 Triple SrcTriple(SrcM->getTargetTriple()), DstTriple(DstM->getTargetTriple());
1506
1507 if (!SrcM->getTargetTriple().empty() && !triplesMatch(SrcTriple, DstTriple))
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001508 emitWarning("Linking two modules of different target triples: " +
1509 SrcM->getModuleIdentifier() + "' is '" +
1510 SrcM->getTargetTriple() + "' whereas '" +
1511 DstM->getModuleIdentifier() + "' is '" +
1512 DstM->getTargetTriple() + "'\n");
Akira Hatanakac43df512015-02-13 00:40:41 +00001513
1514 DstM->setTargetTriple(mergeTriples(SrcTriple, DstTriple));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001515
1516 // Append the module inline asm string.
1517 if (!SrcM->getModuleInlineAsm().empty()) {
1518 if (DstM->getModuleInlineAsm().empty())
1519 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1520 else
1521 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1522 SrcM->getModuleInlineAsm());
1523 }
1524
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001525 // Loop over all of the linked values to compute type mappings.
1526 computeTypeMapping();
1527
David Majnemerdad0a642014-06-27 18:19:56 +00001528 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001529 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001530 const Comdat &C = SMEC.getValue();
1531 if (ComdatsChosen.count(&C))
1532 continue;
1533 Comdat::SelectionKind SK;
1534 bool LinkFromSrc;
1535 if (getComdatResult(&C, SK, LinkFromSrc))
1536 return true;
1537 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1538 }
1539
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001540 // Upgrade mismatched global arrays.
1541 upgradeMismatchedGlobals();
1542
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001543 // Insert all of the globals in src into the DstM module... without linking
1544 // initializers (which could refer to functions not yet mapped over).
1545 for (Module::global_iterator I = SrcM->global_begin(),
1546 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001547 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001548 return true;
1549
1550 // Link the functions together between the two modules, without doing function
1551 // bodies... this just adds external function prototypes to the DstM
1552 // function... We do this so that when we begin processing function bodies,
1553 // all of the global values that may be referenced are available in our
1554 // ValueMap.
1555 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001556 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001557 return true;
1558
1559 // If there were any aliases, link them now.
1560 for (Module::alias_iterator I = SrcM->alias_begin(),
1561 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001562 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001563 return true;
1564
1565 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1566 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001567
Rafael Espindolabeadd562014-12-08 18:05:48 +00001568 for (const auto &Entry : DstM->getComdatSymbolTable()) {
1569 const Comdat &C = Entry.getValue();
1570 if (C.getSelectionKind() == Comdat::Any)
1571 continue;
1572 const GlobalValue *GV = SrcM->getNamedValue(C.getName());
1573 assert(GV);
1574 MapValue(GV, ValueMap, RF_None, &TypeMap, &ValMaterializer);
1575 }
1576
Duncan P. N. Exon Smithc947892d2015-03-26 18:35:30 +00001577 // Strip replaced subprograms before mapping any metadata -- so that we're
1578 // not changing metadata from the source module (note that
1579 // linkGlobalValueBody() eventually calls RemapInstruction() and therefore
1580 // MapMetadata()) -- but after linking global value protocols -- so that
1581 // OverridingFunctions has been built.
1582 stripReplacedSubprograms();
1583
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001584 // Link in the function bodies that are defined in the source module into
1585 // DstM.
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001586 for (Function &SF : *SrcM) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001587 // Skip if no body (function is external).
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001588 if (SF.isDeclaration())
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001589 continue;
1590
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001591 // Skip if not linking from source.
1592 if (DoNotLinkFromSource.count(&SF))
1593 continue;
1594
Rafael Espindolaef237112014-12-08 18:45:16 +00001595 if (linkGlobalValueBody(SF))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001596 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001597 }
1598
1599 // Resolve all uses of aliases with aliasees.
Rafael Espindolaef237112014-12-08 18:45:16 +00001600 for (GlobalAlias &Src : SrcM->aliases()) {
1601 if (DoNotLinkFromSource.count(&Src))
1602 continue;
1603 linkGlobalValueBody(Src);
1604 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001605
Bill Wendling66f02412012-02-11 11:38:06 +00001606 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001607 // after linking GlobalValues so that MDNodes that reference GlobalValues
1608 // are properly remapped.
1609 linkNamedMDNodes();
1610
Bill Wendling66f02412012-02-11 11:38:06 +00001611 // Merge the module flags into the DstM module.
1612 if (linkModuleFlagsMetadata())
1613 return true;
1614
Bill Wendling91686d62014-01-16 06:29:36 +00001615 // Update the initializers in the DstM module now that all globals that may
1616 // be referenced are in DstM.
Rafael Espindolaef237112014-12-08 18:45:16 +00001617 for (GlobalVariable &Src : SrcM->globals()) {
1618 // Only process initialized GV's or ones not already in dest.
1619 if (!Src.hasInitializer() || DoNotLinkFromSource.count(&Src))
1620 continue;
1621 linkGlobalValueBody(Src);
1622 }
Bill Wendling91686d62014-01-16 06:29:36 +00001623
Tanya Lattner0a48b872011-11-02 00:24:56 +00001624 // Process vector of lazily linked in functions.
Rafael Espindolaef237112014-12-08 18:45:16 +00001625 while (!LazilyLinkGlobalValues.empty()) {
1626 GlobalValue *SGV = LazilyLinkGlobalValues.back();
1627 LazilyLinkGlobalValues.pop_back();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001628
Rafael Espindola9573a9c2014-12-16 22:29:43 +00001629 assert(!SGV->isDeclaration() && "users should not pass down decls");
Rafael Espindolaef237112014-12-08 18:45:16 +00001630 if (linkGlobalValueBody(*SGV))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001631 return true;
Rafael Espindola28a24512014-12-05 21:04:36 +00001632 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001633
Anton Korobeynikov26098882008-03-05 23:21:39 +00001634 return false;
1635}
Reid Spencer361e5132004-11-12 20:37:43 +00001636
Rafael Espindola31ad4682014-12-03 22:36:37 +00001637Linker::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P)
1638 : ETypes(E), IsPacked(P) {}
1639
1640Linker::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST)
1641 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
1642
1643bool Linker::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const {
1644 if (IsPacked != That.IsPacked)
1645 return false;
1646 if (ETypes != That.ETypes)
1647 return false;
1648 return true;
1649}
1650
1651bool Linker::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const {
1652 return !this->operator==(That);
1653}
1654
1655StructType *Linker::StructTypeKeyInfo::getEmptyKey() {
1656 return DenseMapInfo<StructType *>::getEmptyKey();
1657}
1658
1659StructType *Linker::StructTypeKeyInfo::getTombstoneKey() {
1660 return DenseMapInfo<StructType *>::getTombstoneKey();
1661}
1662
1663unsigned Linker::StructTypeKeyInfo::getHashValue(const KeyTy &Key) {
1664 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
1665 Key.IsPacked);
1666}
1667
1668unsigned Linker::StructTypeKeyInfo::getHashValue(const StructType *ST) {
1669 return getHashValue(KeyTy(ST));
1670}
1671
1672bool Linker::StructTypeKeyInfo::isEqual(const KeyTy &LHS,
1673 const StructType *RHS) {
1674 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
1675 return false;
1676 return LHS == KeyTy(RHS);
1677}
1678
1679bool Linker::StructTypeKeyInfo::isEqual(const StructType *LHS,
1680 const StructType *RHS) {
1681 if (RHS == getEmptyKey())
1682 return LHS == getEmptyKey();
1683
1684 if (RHS == getTombstoneKey())
1685 return LHS == getTombstoneKey();
1686
1687 return KeyTy(LHS) == KeyTy(RHS);
1688}
1689
1690void Linker::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) {
1691 assert(!Ty->isOpaque());
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001692 NonOpaqueStructTypes.insert(Ty);
Rafael Espindola31ad4682014-12-03 22:36:37 +00001693}
1694
Rafael Espindolaa5b9e1c2015-03-06 00:50:21 +00001695void Linker::IdentifiedStructTypeSet::switchToNonOpaque(StructType *Ty) {
1696 assert(!Ty->isOpaque());
1697 NonOpaqueStructTypes.insert(Ty);
1698 bool Removed = OpaqueStructTypes.erase(Ty);
1699 (void)Removed;
1700 assert(Removed);
1701}
1702
Rafael Espindola31ad4682014-12-03 22:36:37 +00001703void Linker::IdentifiedStructTypeSet::addOpaque(StructType *Ty) {
1704 assert(Ty->isOpaque());
1705 OpaqueStructTypes.insert(Ty);
1706}
1707
1708StructType *
1709Linker::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes,
1710 bool IsPacked) {
1711 Linker::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked);
1712 auto I = NonOpaqueStructTypes.find_as(Key);
1713 if (I == NonOpaqueStructTypes.end())
1714 return nullptr;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001715 return *I;
Rafael Espindola31ad4682014-12-03 22:36:37 +00001716}
1717
1718bool Linker::IdentifiedStructTypeSet::hasType(StructType *Ty) {
1719 if (Ty->isOpaque())
1720 return OpaqueStructTypes.count(Ty);
1721 auto I = NonOpaqueStructTypes.find(Ty);
1722 if (I == NonOpaqueStructTypes.end())
1723 return false;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001724 return *I == Ty;
Rafael Espindola31ad4682014-12-03 22:36:37 +00001725}
1726
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001727void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1728 this->Composite = M;
1729 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001730
1731 TypeFinder StructTypes;
1732 StructTypes.run(*M, true);
Rafael Espindola31ad4682014-12-03 22:36:37 +00001733 for (StructType *Ty : StructTypes) {
1734 if (Ty->isOpaque())
1735 IdentifiedStructTypes.addOpaque(Ty);
1736 else
1737 IdentifiedStructTypes.addNonOpaque(Ty);
1738 }
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001739}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001740
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001741Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1742 init(M, DiagnosticHandler);
1743}
1744
1745Linker::Linker(Module *M) {
1746 init(M, [this](const DiagnosticInfo &DI) {
1747 Composite->getContext().diagnose(DI);
1748 });
1749}
1750
Rafael Espindola3df61b72013-05-04 03:48:37 +00001751Linker::~Linker() {
1752}
1753
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001754void Linker::deleteModule() {
1755 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001756 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001757}
1758
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +00001759bool Linker::linkInModule(Module *Src, bool OverrideSymbols) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001760 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
Duncan P. N. Exon Smithe8681232015-04-22 04:11:00 +00001761 DiagnosticHandler, OverrideSymbols);
Manman Rendab999d2015-01-20 19:24:59 +00001762 bool RetCode = TheLinker.run();
1763 Composite->dropTriviallyDeadConstantArrays();
1764 return RetCode;
Rafael Espindola3df61b72013-05-04 03:48:37 +00001765}
1766
Manman Ren6487ce92015-02-24 00:45:56 +00001767void Linker::setModule(Module *Dst) {
1768 init(Dst, DiagnosticHandler);
1769}
1770
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001771//===----------------------------------------------------------------------===//
1772// LinkModules entrypoint.
1773//===----------------------------------------------------------------------===//
1774
Rafael Espindola18c89412014-10-27 02:35:46 +00001775/// This function links two modules together, with the resulting Dest module
1776/// modified to be the composite of the two input modules. If an error occurs,
1777/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1778/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1779/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001780bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001781 DiagnosticHandlerFunction DiagnosticHandler) {
1782 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001783 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001784}
1785
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001786bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001787 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001788 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001789}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001790
1791//===----------------------------------------------------------------------===//
1792// C API.
1793//===----------------------------------------------------------------------===//
1794
1795LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
Juergen Ributzkaa57d5882015-03-02 18:59:38 +00001796 LLVMLinkerMode Unused, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001797 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001798 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001799 raw_string_ostream Stream(Message);
1800 DiagnosticPrinterRawOStream DP(Stream);
1801
1802 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001803 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001804
1805 if (OutMessages && Result)
1806 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001807 return Result;
1808}