blob: 06710240c943d5fb28fc4347f4a372d84da338cf [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"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Constants.h"
Rafael Espindolad12b4a32014-10-25 04:06:10 +000022#include "llvm/IR/DiagnosticInfo.h"
23#include "llvm/IR/DiagnosticPrinter.h"
24#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/Module.h"
Chandler Carruthdcb603f2013-01-07 15:43:51 +000026#include "llvm/IR/TypeFinder.h"
Eli Benderskye17f3702014-02-06 18:01:56 +000027#include "llvm/Support/CommandLine.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000028#include "llvm/Support/Debug.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000029#include "llvm/Support/raw_ostream.h"
Tanya Lattnercbb91402011-10-11 00:24:54 +000030#include "llvm/Transforms/Utils/Cloning.h"
Will Dietz981af002013-10-12 00:55:57 +000031#include <cctype>
David Majnemer82d6ff62014-06-27 18:38:12 +000032#include <tuple>
Reid Spencer361e5132004-11-12 20:37:43 +000033using namespace llvm;
34
Eli Benderskye17f3702014-02-06 18:01:56 +000035
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000036//===----------------------------------------------------------------------===//
37// TypeMap implementation.
38//===----------------------------------------------------------------------===//
Reid Spencer361e5132004-11-12 20:37:43 +000039
Chris Lattnereee6f992008-06-16 21:00:18 +000040namespace {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000041class TypeMapTy : public ValueMapTypeRemapper {
Rafael Espindola18c89412014-10-27 02:35:46 +000042 /// This is a mapping from a source type to a destination type to use.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000043 DenseMap<Type*, Type*> MappedTypes;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +000044
Rafael Espindola18c89412014-10-27 02:35:46 +000045 /// When checking to see if two subgraphs are isomorphic, we speculatively
46 /// add types to MappedTypes, but keep track of them here in case we need to
47 /// roll back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000048 SmallVector<Type*, 16> SpeculativeTypes;
Rafael Espindolaed6dc372014-05-09 14:39:25 +000049
Rafael Espindolaa96f2352014-11-28 16:41:24 +000050 SmallVector<StructType*, 16> SpeculativeDstOpaqueTypes;
51
Rafael Espindola18c89412014-10-27 02:35:46 +000052 /// This is a list of non-opaque structs in the source module that are mapped
53 /// to an opaque struct in the destination module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000054 SmallVector<StructType*, 16> SrcDefinitionsToResolve;
Rafael Espindolaed6dc372014-05-09 14:39:25 +000055
Rafael Espindola18c89412014-10-27 02:35:46 +000056 /// This is the set of opaque types in the destination modules who are
57 /// getting a body from the source module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000058 SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes;
Bill Wendling8c2cc412012-03-22 20:30:41 +000059
Chris Lattner56cdea62008-06-16 23:06:51 +000060public:
Rafael Espindola31ad4682014-12-03 22:36:37 +000061 TypeMapTy(Linker::IdentifiedStructTypeSet &DstStructTypesSet)
62 : DstStructTypesSet(DstStructTypesSet) {}
Rafael Espindolaaa9918a2013-05-04 05:05:18 +000063
Rafael Espindola31ad4682014-12-03 22:36:37 +000064 Linker::IdentifiedStructTypeSet &DstStructTypesSet;
Rafael Espindola18c89412014-10-27 02:35:46 +000065 /// Indicate that the specified type in the destination module is conceptually
66 /// equivalent to the specified type in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000067 void addTypeMapping(Type *DstTy, Type *SrcTy);
68
Rafael Espindolad2a13a22014-11-25 04:28:31 +000069 /// Produce a body for an opaque type in the dest module from a type
70 /// definition in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000071 void linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +000072
Rafael Espindola18c89412014-10-27 02:35:46 +000073 /// Return the mapped type to use for the specified input type from the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000074 /// source module.
75 Type *get(Type *SrcTy);
Rafael Espindola31ad4682014-12-03 22:36:37 +000076 Type *get(Type *SrcTy, SmallPtrSet<StructType *, 8> &Visited);
77
78 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000079
Rafael Espindola290e2cc2014-11-25 14:35:53 +000080 FunctionType *get(FunctionType *T) {
81 return cast<FunctionType>(get((Type *)T));
82 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000083
Rafael Espindola18c89412014-10-27 02:35:46 +000084 /// Dump out the type map for debugging purposes.
Bill Wendlingb6af2f32012-03-22 20:28:27 +000085 void dump() const {
Rafael Espindola8f144712014-11-25 06:16:27 +000086 for (auto &Pair : MappedTypes) {
Bill Wendlingb6af2f32012-03-22 20:28:27 +000087 dbgs() << "TypeMap: ";
Rafael Espindola8f144712014-11-25 06:16:27 +000088 Pair.first->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000089 dbgs() << " => ";
Rafael Espindola8f144712014-11-25 06:16:27 +000090 Pair.second->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000091 dbgs() << '\n';
92 }
93 }
Bill Wendlingb6af2f32012-03-22 20:28:27 +000094
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000095private:
Rafael Espindola290e2cc2014-11-25 14:35:53 +000096 Type *remapType(Type *SrcTy) override { return get(SrcTy); }
Rafael Espindolaed6dc372014-05-09 14:39:25 +000097
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000098 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000099};
100}
101
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000102void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
Rafael Espindola3d097412014-11-28 16:26:14 +0000103 assert(SpeculativeTypes.empty());
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000104 assert(SpeculativeDstOpaqueTypes.empty());
Rafael Espindola3d097412014-11-28 16:26:14 +0000105
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000106 // Check to see if these types are recursively isomorphic and establish a
107 // mapping between them if so.
Duncan P. N. Exon Smithc586eaa2014-11-27 17:01:10 +0000108 if (!areTypesIsomorphic(DstTy, SrcTy)) {
109 // Oops, they aren't isomorphic. Just discard this request by rolling out
110 // any speculative mappings we've established.
Rafael Espindola3d097412014-11-28 16:26:14 +0000111 for (Type *Ty : SpeculativeTypes)
112 MappedTypes.erase(Ty);
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000113
114 SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() -
115 SpeculativeDstOpaqueTypes.size());
116 for (StructType *Ty : SpeculativeDstOpaqueTypes)
117 DstResolvedOpaqueTypes.erase(Ty);
Rafael Espindola04a74af2014-12-01 04:15:59 +0000118 } else {
119 for (Type *Ty : SpeculativeTypes)
120 if (auto *STy = dyn_cast<StructType>(Ty))
121 if (STy->hasName())
122 STy->setName("");
Bill Wendlingd48b7782012-02-28 04:01:21 +0000123 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000124 SpeculativeTypes.clear();
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000125 SpeculativeDstOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000126}
Chris Lattnereee6f992008-06-16 21:00:18 +0000127
Rafael Espindola18c89412014-10-27 02:35:46 +0000128/// Recursively walk this pair of types, returning true if they are isomorphic,
129/// false if they are not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000130bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
131 // Two types with differing kinds are clearly not isomorphic.
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000132 if (DstTy->getTypeID() != SrcTy->getTypeID())
133 return false;
Misha Brukman10468d82005-04-21 22:55:34 +0000134
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000135 // If we have an entry in the MappedTypes table, then we have our answer.
136 Type *&Entry = MappedTypes[SrcTy];
137 if (Entry)
138 return Entry == DstTy;
Misha Brukman10468d82005-04-21 22:55:34 +0000139
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000140 // Two identical types are clearly isomorphic. Remember this
141 // non-speculatively.
142 if (DstTy == SrcTy) {
143 Entry = DstTy;
Chris Lattnerfe677e92008-06-16 20:03:01 +0000144 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000145 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000146
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000147 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000148
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000149 // If this is an opaque struct type, special case it.
150 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
151 // Mapping an opaque type to any struct, just keep the dest struct.
152 if (SSTy->isOpaque()) {
153 Entry = DstTy;
154 SpeculativeTypes.push_back(SrcTy);
Reid Spencer361e5132004-11-12 20:37:43 +0000155 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000156 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000157
Chris Lattner5e3bd972011-12-20 00:03:52 +0000158 // Mapping a non-opaque source type to an opaque dest. If this is the first
159 // type that we're mapping onto this destination type then we succeed. Keep
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000160 // the dest, but fill it in later. If this is the second (different) type
161 // that we're trying to map onto the same opaque type then we fail.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000162 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-12-20 00:03:52 +0000163 // We can only map one source type onto the opaque destination type.
David Blaikie70573dc2014-11-19 07:49:26 +0000164 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second)
Chris Lattner5e3bd972011-12-20 00:03:52 +0000165 return false;
166 SrcDefinitionsToResolve.push_back(SSTy);
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000167 SpeculativeTypes.push_back(SrcTy);
168 SpeculativeDstOpaqueTypes.push_back(cast<StructType>(DstTy));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000169 Entry = DstTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000170 return true;
171 }
172 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000173
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000174 // If the number of subtypes disagree between the two types, then we fail.
175 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
Reid Spencer361e5132004-11-12 20:37:43 +0000176 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000177
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000178 // Fail if any of the extra properties (e.g. array size) of the type disagree.
179 if (isa<IntegerType>(DstTy))
180 return false; // bitwidth disagrees.
181 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
182 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
183 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000184
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000185 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
186 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
187 return false;
188 } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) {
189 StructType *SSTy = cast<StructType>(SrcTy);
Chris Lattner44f7ab42011-08-12 18:07:26 +0000190 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000191 DSTy->isPacked() != SSTy->isPacked())
192 return false;
193 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
194 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
195 return false;
196 } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Joey Gouly5fad3e92013-01-10 10:49:36 +0000197 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000198 return false;
Reid Spencer361e5132004-11-12 20:37:43 +0000199 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000200
201 // Otherwise, we speculate that these two types will line up and recursively
202 // check the subelements.
203 Entry = DstTy;
204 SpeculativeTypes.push_back(SrcTy);
205
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000206 for (unsigned I = 0, E = SrcTy->getNumContainedTypes(); I != E; ++I)
207 if (!areTypesIsomorphic(DstTy->getContainedType(I),
208 SrcTy->getContainedType(I)))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000209 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000210
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000211 // If everything seems to have lined up, then everything is great.
212 return true;
213}
214
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000215void TypeMapTy::linkDefinedTypeBodies() {
216 SmallVector<Type*, 16> Elements;
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000217 for (StructType *SrcSTy : SrcDefinitionsToResolve) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000218 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000219 assert(DstSTy->isOpaque());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000220
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000221 // Map the body of the source type over to a new body for the dest type.
222 Elements.resize(SrcSTy->getNumElements());
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000223 for (unsigned I = 0, E = Elements.size(); I != E; ++I)
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000224 Elements[I] = get(SrcSTy->getElementType(I));
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000225
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000226 DstSTy->setBody(Elements, SrcSTy->isPacked());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000227 }
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000228 SrcDefinitionsToResolve.clear();
Chris Lattner5e3bd972011-12-20 00:03:52 +0000229 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000230}
231
Rafael Espindola31ad4682014-12-03 22:36:37 +0000232void TypeMapTy::finishType(StructType *DTy, StructType *STy,
233 ArrayRef<Type *> ETypes) {
234 DTy->setBody(ETypes, STy->isPacked());
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000235
236 // Steal STy's name.
237 if (STy->hasName()) {
238 SmallString<16> TmpName = STy->getName();
239 STy->setName("");
240 DTy->setName(TmpName);
241 }
242
Rafael Espindola31ad4682014-12-03 22:36:37 +0000243 DstStructTypesSet.addNonOpaque(DTy);
244}
245
246Type *TypeMapTy::get(Type *Ty) {
247 SmallPtrSet<StructType *, 8> Visited;
248 return get(Ty, Visited);
249}
250
251Type *TypeMapTy::get(Type *Ty, SmallPtrSet<StructType *, 8> &Visited) {
252 // If we already have an entry for this type, return it.
253 Type **Entry = &MappedTypes[Ty];
254 if (*Entry)
255 return *Entry;
256
257 // These are types that LLVM itself will unique.
258 bool IsUniqued = !isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral();
259
260#ifndef NDEBUG
261 if (!IsUniqued) {
262 for (auto &Pair : MappedTypes) {
263 assert(!(Pair.first != Ty && Pair.second == Ty) &&
264 "mapping to a source type");
265 }
266 }
267#endif
268
269 if (!IsUniqued && !Visited.insert(cast<StructType>(Ty)).second) {
270 StructType *DTy = StructType::create(Ty->getContext());
271 return *Entry = DTy;
272 }
273
274 // If this is not a recursive type, then just map all of the elements and
275 // then rebuild the type from inside out.
276 SmallVector<Type *, 4> ElementTypes;
277
278 // If there are no element types to map, then the type is itself. This is
279 // true for the anonymous {} struct, things like 'float', integers, etc.
280 if (Ty->getNumContainedTypes() == 0 && IsUniqued)
281 return *Entry = Ty;
282
283 // Remap all of the elements, keeping track of whether any of them change.
284 bool AnyChange = false;
285 ElementTypes.resize(Ty->getNumContainedTypes());
286 for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) {
287 ElementTypes[I] = get(Ty->getContainedType(I), Visited);
288 AnyChange |= ElementTypes[I] != Ty->getContainedType(I);
289 }
290
291 // If we found our type while recursively processing stuff, just use it.
292 Entry = &MappedTypes[Ty];
293 if (*Entry) {
294 if (auto *DTy = dyn_cast<StructType>(*Entry)) {
295 if (DTy->isOpaque()) {
296 auto *STy = cast<StructType>(Ty);
297 finishType(DTy, STy, ElementTypes);
298 }
299 }
300 return *Entry;
301 }
302
303 // If all of the element types mapped directly over and the type is not
304 // a nomed struct, then the type is usable as-is.
305 if (!AnyChange && IsUniqued)
306 return *Entry = Ty;
307
308 // Otherwise, rebuild a modified type.
309 switch (Ty->getTypeID()) {
310 default:
311 llvm_unreachable("unknown derived type to remap");
312 case Type::ArrayTyID:
313 return *Entry = ArrayType::get(ElementTypes[0],
314 cast<ArrayType>(Ty)->getNumElements());
315 case Type::VectorTyID:
316 return *Entry = VectorType::get(ElementTypes[0],
317 cast<VectorType>(Ty)->getNumElements());
318 case Type::PointerTyID:
319 return *Entry = PointerType::get(ElementTypes[0],
320 cast<PointerType>(Ty)->getAddressSpace());
321 case Type::FunctionTyID:
322 return *Entry = FunctionType::get(ElementTypes[0],
323 makeArrayRef(ElementTypes).slice(1),
324 cast<FunctionType>(Ty)->isVarArg());
325 case Type::StructTyID: {
326 auto *STy = cast<StructType>(Ty);
327 bool IsPacked = STy->isPacked();
328 if (IsUniqued)
329 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked);
330
331 // If the type is opaque, we can just use it directly.
332 if (STy->isOpaque()) {
333 DstStructTypesSet.addOpaque(STy);
334 return *Entry = Ty;
335 }
336
337 if (StructType *OldT =
338 DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) {
339 STy->setName("");
340 return *Entry = OldT;
341 }
342
343 if (!AnyChange) {
344 DstStructTypesSet.addNonOpaque(STy);
345 return *Entry = Ty;
346 }
347
348 StructType *DTy = StructType::create(Ty->getContext());
349 finishType(DTy, STy, ElementTypes);
350 return *Entry = DTy;
351 }
352 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000353}
354
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000355//===----------------------------------------------------------------------===//
356// ModuleLinker implementation.
357//===----------------------------------------------------------------------===//
358
359namespace {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000360class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000361
Rafael Espindolac84f6082014-11-25 06:11:24 +0000362/// Creates prototypes for functions that are lazily linked on the fly. This
363/// speeds up linking for modules with many/ lazily linked functions of which
364/// few get used.
365class ValueMaterializerTy : public ValueMaterializer {
366 TypeMapTy &TypeMap;
367 Module *DstM;
368 std::vector<Function *> &LazilyLinkFunctions;
James Molloyf6f121e2013-05-28 15:17:05 +0000369
Rafael Espindolac84f6082014-11-25 06:11:24 +0000370public:
371 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
372 std::vector<Function *> &LazilyLinkFunctions)
373 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
374 LazilyLinkFunctions(LazilyLinkFunctions) {}
375
376 Value *materializeValueFor(Value *V) override;
377};
378
379class LinkDiagnosticInfo : public DiagnosticInfo {
380 const Twine &Msg;
381
382public:
383 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
384 void print(DiagnosticPrinter &DP) const override;
385};
386LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
387 const Twine &Msg)
388 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
389void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
390
391/// This is an implementation class for the LinkModules function, which is the
392/// entrypoint for this file.
393class ModuleLinker {
394 Module *DstM, *SrcM;
395
396 TypeMapTy TypeMap;
397 ValueMaterializerTy ValMaterializer;
398
399 /// Mapping of values from what they used to be in Src, to what they are now
400 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
401 /// due to the use of Value handles which the Linker doesn't actually need,
402 /// but this allows us to reuse the ValueMapper code.
403 ValueToValueMapTy ValueMap;
404
405 struct AppendingVarInfo {
406 GlobalVariable *NewGV; // New aggregate global in dest module.
407 const Constant *DstInit; // Old initializer from dest module.
408 const Constant *SrcInit; // Old initializer from src module.
James Molloyf6f121e2013-05-28 15:17:05 +0000409 };
410
Rafael Espindolac84f6082014-11-25 06:11:24 +0000411 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000412
Rafael Espindolac84f6082014-11-25 06:11:24 +0000413 // Set of items not to link in from source.
414 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000415
Rafael Espindolac84f6082014-11-25 06:11:24 +0000416 // Vector of functions to lazily link in.
417 std::vector<Function *> LazilyLinkFunctions;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000418
Rafael Espindolac84f6082014-11-25 06:11:24 +0000419 Linker::DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000420
Rafael Espindolac84f6082014-11-25 06:11:24 +0000421public:
Rafael Espindola31ad4682014-12-03 22:36:37 +0000422 ModuleLinker(Module *dstM, Linker::IdentifiedStructTypeSet &Set, Module *srcM,
Rafael Espindolac84f6082014-11-25 06:11:24 +0000423 Linker::DiagnosticHandlerFunction DiagnosticHandler)
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000424 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindolac84f6082014-11-25 06:11:24 +0000425 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions),
426 DiagnosticHandler(DiagnosticHandler) {}
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000427
Rafael Espindolac84f6082014-11-25 06:11:24 +0000428 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000429
Rafael Espindolac84f6082014-11-25 06:11:24 +0000430private:
431 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
432 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000433
Rafael Espindolac84f6082014-11-25 06:11:24 +0000434 /// Helper method for setting a message and returning an error code.
435 bool emitError(const Twine &Message) {
436 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
437 return true;
438 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000439
Rafael Espindolac84f6082014-11-25 06:11:24 +0000440 void emitWarning(const Twine &Message) {
441 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
442 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000443
Rafael Espindolac84f6082014-11-25 06:11:24 +0000444 bool getComdatLeader(Module *M, StringRef ComdatName,
445 const GlobalVariable *&GVar);
446 bool computeResultingSelectionKind(StringRef ComdatName,
447 Comdat::SelectionKind Src,
448 Comdat::SelectionKind Dst,
449 Comdat::SelectionKind &Result,
450 bool &LinkFromSrc);
451 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
452 ComdatsChosen;
453 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
454 bool &LinkFromSrc);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000455
Rafael Espindolac84f6082014-11-25 06:11:24 +0000456 /// Given a global in the source module, return the global in the
457 /// destination module that is being linked to, if any.
458 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
459 // If the source has no name it can't link. If it has local linkage,
460 // there is no name match-up going on.
461 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
462 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000463
Rafael Espindolac84f6082014-11-25 06:11:24 +0000464 // Otherwise see if we have a match in the destination module's symtab.
465 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
466 if (!DGV)
467 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000468
Rafael Espindolac84f6082014-11-25 06:11:24 +0000469 // If we found a global with the same name in the dest module, but it has
470 // internal linkage, we are really not doing any linkage here.
471 if (DGV->hasLocalLinkage())
472 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000473
Rafael Espindolac84f6082014-11-25 06:11:24 +0000474 // Otherwise, we do in fact link to the destination global.
475 return DGV;
476 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000477
Rafael Espindolac84f6082014-11-25 06:11:24 +0000478 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000479
Rafael Espindolac84f6082014-11-25 06:11:24 +0000480 void upgradeMismatchedGlobalArray(StringRef Name);
481 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000482
Rafael Espindolac84f6082014-11-25 06:11:24 +0000483 bool linkAppendingVarProto(GlobalVariable *DstGV,
484 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000485
Rafael Espindolac84f6082014-11-25 06:11:24 +0000486 bool linkGlobalValueProto(GlobalValue *GV);
Rafael Espindola2bd5b9f2014-12-05 19:35:07 +0000487 GlobalValue *linkGlobalVariableProto(const GlobalVariable *SGVar);
Rafael Espindola26c29512014-12-05 17:53:15 +0000488 GlobalValue *linkFunctionProto(const Function *SF, GlobalValue *DGV);
Rafael Espindola2bd5b9f2014-12-05 19:35:07 +0000489 GlobalValue *linkGlobalAliasProto(const GlobalAlias *SGA);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000490
Rafael Espindolac84f6082014-11-25 06:11:24 +0000491 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000492
Rafael Espindolac84f6082014-11-25 06:11:24 +0000493 void linkAppendingVarInit(const AppendingVarInfo &AVI);
494 void linkGlobalInits();
Rafael Espindola3519da82014-12-08 14:25:26 +0000495 bool linkFunctionBody(Function &Src);
Rafael Espindolac84f6082014-11-25 06:11:24 +0000496 void linkAliasBodies();
497 void linkNamedMDNodes();
498};
Bill Wendlingd48b7782012-02-28 04:01:21 +0000499}
500
Rafael Espindola18c89412014-10-27 02:35:46 +0000501/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
502/// table. This is good for all clients except for us. Go through the trouble
503/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000504static void forceRenaming(GlobalValue *GV, StringRef Name) {
505 // If the global doesn't force its name or if it already has the right name,
506 // there is nothing for us to do.
507 if (GV->hasLocalLinkage() || GV->getName() == Name)
508 return;
509
510 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000511
512 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000513 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000514 GV->takeName(ConflictGV);
515 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000516 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000517 } else {
518 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000519 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000520}
Reid Spencer90246aa2007-02-04 04:29:21 +0000521
Rafael Espindola18c89412014-10-27 02:35:46 +0000522/// copy additional attributes (those not needed to construct a GlobalValue)
523/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000524static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000525 DestGV->copyAttributesFrom(SrcGV);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000526 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000527}
528
Rafael Espindola23f8d642012-01-05 23:02:01 +0000529static bool isLessConstraining(GlobalValue::VisibilityTypes a,
530 GlobalValue::VisibilityTypes b) {
531 if (a == GlobalValue::HiddenVisibility)
532 return false;
533 if (b == GlobalValue::HiddenVisibility)
534 return true;
535 if (a == GlobalValue::ProtectedVisibility)
536 return false;
537 if (b == GlobalValue::ProtectedVisibility)
538 return true;
539 return false;
540}
541
James Molloyf6f121e2013-05-28 15:17:05 +0000542Value *ValueMaterializerTy::materializeValueFor(Value *V) {
543 Function *SF = dyn_cast<Function>(V);
544 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000545 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000546
547 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
548 SF->getLinkage(), SF->getName(), DstM);
549 copyGVAttributes(DF, SF);
550
Rafael Espindola3931c282014-08-15 20:17:08 +0000551 if (Comdat *SC = SF->getComdat()) {
552 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
553 DF->setComdat(DC);
554 }
555
James Molloyf6f121e2013-05-28 15:17:05 +0000556 LazilyLinkFunctions.push_back(SF);
557 return DF;
558}
559
David Majnemerdad0a642014-06-27 18:19:56 +0000560bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
561 const GlobalVariable *&GVar) {
562 const GlobalValue *GVal = M->getNamedValue(ComdatName);
563 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
564 GVal = GA->getBaseObject();
565 if (!GVal)
566 // We cannot resolve the size of the aliasee yet.
567 return emitError("Linking COMDATs named '" + ComdatName +
568 "': COMDAT key involves incomputable alias size.");
569 }
570
571 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
572 if (!GVar)
573 return emitError(
574 "Linking COMDATs named '" + ComdatName +
575 "': GlobalVariable required for data dependent selection!");
576
577 return false;
578}
579
580bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
581 Comdat::SelectionKind Src,
582 Comdat::SelectionKind Dst,
583 Comdat::SelectionKind &Result,
584 bool &LinkFromSrc) {
585 // The ability to mix Comdat::SelectionKind::Any with
586 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
587 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
588 Dst == Comdat::SelectionKind::Largest;
589 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
590 Src == Comdat::SelectionKind::Largest;
591 if (DstAnyOrLargest && SrcAnyOrLargest) {
592 if (Dst == Comdat::SelectionKind::Largest ||
593 Src == Comdat::SelectionKind::Largest)
594 Result = Comdat::SelectionKind::Largest;
595 else
596 Result = Comdat::SelectionKind::Any;
597 } else if (Src == Dst) {
598 Result = Dst;
599 } else {
600 return emitError("Linking COMDATs named '" + ComdatName +
601 "': invalid selection kinds!");
602 }
603
604 switch (Result) {
605 case Comdat::SelectionKind::Any:
606 // Go with Dst.
607 LinkFromSrc = false;
608 break;
609 case Comdat::SelectionKind::NoDuplicates:
610 return emitError("Linking COMDATs named '" + ComdatName +
611 "': noduplicates has been violated!");
612 case Comdat::SelectionKind::ExactMatch:
613 case Comdat::SelectionKind::Largest:
614 case Comdat::SelectionKind::SameSize: {
615 const GlobalVariable *DstGV;
616 const GlobalVariable *SrcGV;
617 if (getComdatLeader(DstM, ComdatName, DstGV) ||
618 getComdatLeader(SrcM, ComdatName, SrcGV))
619 return true;
620
621 const DataLayout *DstDL = DstM->getDataLayout();
622 const DataLayout *SrcDL = SrcM->getDataLayout();
623 if (!DstDL || !SrcDL) {
624 return emitError(
625 "Linking COMDATs named '" + ComdatName +
626 "': can't do size dependent selection without DataLayout!");
627 }
628 uint64_t DstSize =
629 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
630 uint64_t SrcSize =
631 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
632 if (Result == Comdat::SelectionKind::ExactMatch) {
633 if (SrcGV->getInitializer() != DstGV->getInitializer())
634 return emitError("Linking COMDATs named '" + ComdatName +
635 "': ExactMatch violated!");
636 LinkFromSrc = false;
637 } else if (Result == Comdat::SelectionKind::Largest) {
638 LinkFromSrc = SrcSize > DstSize;
639 } else if (Result == Comdat::SelectionKind::SameSize) {
640 if (SrcSize != DstSize)
641 return emitError("Linking COMDATs named '" + ComdatName +
642 "': SameSize violated!");
643 LinkFromSrc = false;
644 } else {
645 llvm_unreachable("unknown selection kind");
646 }
647 break;
648 }
649 }
650
651 return false;
652}
653
654bool ModuleLinker::getComdatResult(const Comdat *SrcC,
655 Comdat::SelectionKind &Result,
656 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000657 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000658 StringRef ComdatName = SrcC->getName();
659 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
660 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000661
Rafael Espindolab16196a2014-08-11 17:07:34 +0000662 if (DstCI == ComdatSymTab.end()) {
663 // Use the comdat if it is only available in one of the modules.
664 LinkFromSrc = true;
665 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000666 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000667 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000668
669 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000670 Comdat::SelectionKind DSK = DstC->getSelectionKind();
671 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
672 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000673}
James Molloyf6f121e2013-05-28 15:17:05 +0000674
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000675bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
676 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000677 const GlobalValue &Src) {
Rafael Espindola778fcc72014-11-02 13:28:57 +0000678 // We always have to add Src if it has appending linkage.
679 if (Src.hasAppendingLinkage()) {
680 LinkFromSrc = true;
681 return false;
682 }
683
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000684 bool SrcIsDeclaration = Src.isDeclarationForLinker();
685 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000686
687 if (SrcIsDeclaration) {
688 // If Src is external or if both Src & Dest are external.. Just link the
689 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000690 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000691 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000692 LinkFromSrc = DestIsDeclaration;
693 return false;
694 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000695 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000696 LinkFromSrc = Dest.hasExternalWeakLinkage();
697 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000698 }
699
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000700 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000701 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000702 LinkFromSrc = true;
703 return false;
704 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000705
Rafael Espindola09106052014-09-09 15:59:12 +0000706 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000707 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
708 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000709 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000710 }
711
712 if (!Dest.hasCommonLinkage()) {
713 LinkFromSrc = false;
714 return false;
715 }
Rafael Espindola09106052014-09-09 15:59:12 +0000716
Rafael Espindola0ae225b2014-10-31 04:46:38 +0000717 // FIXME: Make datalayout mandatory and just use getDataLayout().
718 DataLayout DL(Dest.getParent());
719
Rafael Espindola09106052014-09-09 15:59:12 +0000720 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
721 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000722 LinkFromSrc = SrcSize > DestSize;
723 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000724 }
725
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000726 if (Src.isWeakForLinker()) {
727 assert(!Dest.hasExternalWeakLinkage());
728 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000729
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000730 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
731 LinkFromSrc = true;
732 return false;
733 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000734
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000735 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000736 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000737 }
738
739 if (Dest.isWeakForLinker()) {
740 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000741 LinkFromSrc = true;
742 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000743 }
744
745 assert(!Src.hasExternalWeakLinkage());
746 assert(!Dest.hasExternalWeakLinkage());
747 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
748 "Unexpected linkage type!");
749 return emitError("Linking globals named '" + Src.getName() +
750 "': symbol multiply defined!");
751}
752
Rafael Espindola18c89412014-10-27 02:35:46 +0000753/// Loop over all of the linked values to compute type mappings. For example,
754/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
755/// types 'Foo' but one got renamed when the module was loaded into the same
756/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000757void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000758 for (GlobalValue &SGV : SrcM->globals()) {
759 GlobalValue *DGV = getLinkedToGlobal(&SGV);
760 if (!DGV)
761 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000762
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000763 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
764 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000765 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000766 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000767
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000768 // Unify the element type of appending arrays.
769 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000770 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000771 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000772 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000773
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000774 for (GlobalValue &SGV : *SrcM) {
775 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
776 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000777 }
Bill Wendling7b464612012-02-27 22:34:19 +0000778
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000779 for (GlobalValue &SGV : SrcM->aliases()) {
780 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
781 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
782 }
783
Bill Wendlingd48b7782012-02-28 04:01:21 +0000784 // Incorporate types by name, scanning all the types in the source module.
785 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000786 // example. When the source module got loaded into the same LLVMContext, if
787 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Rafael Espindola2fa1e432014-12-03 07:18:23 +0000788 std::vector<StructType *> Types = SrcM->getIdentifiedStructTypes();
789 for (StructType *ST : Types) {
Rafael Espindola4d4c9382014-12-01 19:08:07 +0000790 if (!ST->hasName())
791 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000792
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000793 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000794 size_t DotPos = ST->getName().rfind('.');
795 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000796 ST->getName().back() == '.' ||
Rafael Espindola973b3612014-12-01 19:17:46 +0000797 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos + 1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000798 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000799
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000800 // Check to see if the destination module has a struct with the prefix name.
Rafael Espindola973b3612014-12-01 19:17:46 +0000801 StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos));
802 if (!DST)
803 continue;
804
805 // Don't use it if this actually came from the source module. They're in
806 // the same LLVMContext after all. Also don't use it unless the type is
807 // actually used in the destination module. This can happen in situations
808 // like this:
809 //
810 // Module A Module B
811 // -------- --------
812 // %Z = type { %A } %B = type { %C.1 }
813 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
814 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
815 // %C = type { i8* } %B.3 = type { %C.1 }
816 //
817 // When we link Module B with Module A, the '%B' in Module B is
818 // used. However, that would then use '%C.1'. But when we process '%C.1',
819 // we prefer to take the '%C' version. So we are then left with both
820 // '%C.1' and '%C' being used for the same types. This leads to some
821 // variables using one type and some using the other.
Rafael Espindola31ad4682014-12-03 22:36:37 +0000822 if (TypeMap.DstStructTypesSet.hasType(DST))
Rafael Espindola973b3612014-12-01 19:17:46 +0000823 TypeMap.addTypeMapping(DST, ST);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000824 }
825
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000826 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000827 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000828 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000829}
830
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000831static void upgradeGlobalArray(GlobalVariable *GV) {
832 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
833 StructType *OldTy = cast<StructType>(ATy->getElementType());
834 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
835
836 // Get the upgraded 3 element type.
837 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
838 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
839 VoidPtrTy};
840 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
841
842 // Build new constants with a null third field filled in.
843 Constant *OldInitC = GV->getInitializer();
844 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
845 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
846 // Invalid initializer; give up.
847 return;
848 std::vector<Constant *> Initializers;
849 if (OldInit && OldInit->getNumOperands()) {
850 Value *Null = Constant::getNullValue(VoidPtrTy);
851 for (Use &U : OldInit->operands()) {
852 ConstantStruct *Init = cast<ConstantStruct>(U.get());
853 Initializers.push_back(ConstantStruct::get(
854 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
855 }
856 }
857 assert(Initializers.size() == ATy->getNumElements() &&
858 "Failed to copy all array elements");
859
860 // Replace the old GV with a new one.
861 ATy = ArrayType::get(NewTy, Initializers.size());
862 Constant *NewInit = ConstantArray::get(ATy, Initializers);
863 GlobalVariable *NewGV = new GlobalVariable(
864 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
865 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
866 GV->isExternallyInitialized());
867 NewGV->copyAttributesFrom(GV);
868 NewGV->takeName(GV);
869 assert(GV->use_empty() && "program cannot use initializer list");
870 GV->eraseFromParent();
871}
872
873void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
874 // Look for the global arrays.
875 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
876 if (!DstGV)
877 return;
878 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
879 if (!SrcGV)
880 return;
881
882 // Check if the types already match.
883 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
884 auto *SrcTy =
885 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
886 if (DstTy == SrcTy)
887 return;
888
889 // Grab the element types. We can only upgrade an array of a two-field
890 // struct. Only bother if the other one has three-fields.
891 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
892 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
893 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
894 upgradeGlobalArray(DstGV);
895 return;
896 }
897 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
898 upgradeGlobalArray(SrcGV);
899
900 // We can't upgrade any other differences.
901}
902
903void ModuleLinker::upgradeMismatchedGlobals() {
904 upgradeMismatchedGlobalArray("llvm.global_ctors");
905 upgradeMismatchedGlobalArray("llvm.global_dtors");
906}
907
Rafael Espindola18c89412014-10-27 02:35:46 +0000908/// If there were any appending global variables, link them together now.
909/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000910bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000911 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000912
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000913 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
914 return emitError("Linking globals named '" + SrcGV->getName() +
915 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000916
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000917 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
918 ArrayType *SrcTy =
919 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
920 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000921
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000922 // Check to see that they two arrays agree on type.
923 if (EltTy != SrcTy->getElementType())
924 return emitError("Appending variables with different element types!");
925 if (DstGV->isConstant() != SrcGV->isConstant())
926 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000927
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000928 if (DstGV->getAlignment() != SrcGV->getAlignment())
929 return emitError(
930 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000931
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000932 if (DstGV->getVisibility() != SrcGV->getVisibility())
933 return emitError(
934 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000935
936 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
937 return emitError(
938 "Appending variables with different unnamed_addr need to be linked!");
939
Rafael Espindola64c1e182014-06-03 02:41:57 +0000940 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000941 return emitError(
942 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000943
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000944 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
945 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000946
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000947 // Create the new global variable.
948 GlobalVariable *NG =
949 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000950 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000951 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000952 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000953
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000954 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000955 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000956
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000957 AppendingVarInfo AVI;
958 AVI.NewGV = NG;
959 AVI.DstInit = DstGV->getInitializer();
960 AVI.SrcInit = SrcGV->getInitializer();
961 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000962
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000963 // Replace any uses of the two global variables with uses of the new
964 // global.
965 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000966
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000967 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
968 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000969
Tanya Lattnercbb91402011-10-11 00:24:54 +0000970 // Track the source variable so we don't try to link it.
971 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000972
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000973 return false;
974}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000975
Rafael Espindola778fcc72014-11-02 13:28:57 +0000976bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000977 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000978
Rafael Espindola778fcc72014-11-02 13:28:57 +0000979 // Handle the ultra special appending linkage case first.
980 if (DGV && DGV->hasAppendingLinkage())
981 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
982 cast<GlobalVariable>(SGV));
983
984 bool LinkFromSrc = true;
985 Comdat *C = nullptr;
986 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
987 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
988
David Majnemerdad0a642014-06-27 18:19:56 +0000989 if (const Comdat *SC = SGV->getComdat()) {
990 Comdat::SelectionKind SK;
991 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +0000992 C = DstM->getOrInsertComdat(SC->getName());
993 C->setSelectionKind(SK);
994 } else if (DGV) {
995 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
996 return true;
997 }
998
999 if (!LinkFromSrc) {
1000 // Track the source global so that we don't attempt to copy it over when
1001 // processing global initializers.
1002 DoNotLinkFromSource.insert(SGV);
1003
1004 if (DGV)
1005 // Make sure to remember this mapping.
1006 ValueMap[SGV] =
1007 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001008 }
1009
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001010 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001011 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1012 ? DGV->getVisibility()
1013 : Visibility;
1014 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1015 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001016
Rafael Espindola778fcc72014-11-02 13:28:57 +00001017 if (!LinkFromSrc && !DGV)
1018 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001019
Rafael Espindola778fcc72014-11-02 13:28:57 +00001020 GlobalValue *NewGV;
Rafael Espindola26c29512014-12-05 17:53:15 +00001021 if (!LinkFromSrc) {
1022 NewGV = DGV;
1023 } else {
1024 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV))
Rafael Espindola2bd5b9f2014-12-05 19:35:07 +00001025 NewGV = linkGlobalVariableProto(SGVar);
Rafael Espindola26c29512014-12-05 17:53:15 +00001026 else if (auto *SF = dyn_cast<Function>(SGV))
1027 NewGV = linkFunctionProto(SF, DGV);
1028 else
Rafael Espindola2bd5b9f2014-12-05 19:35:07 +00001029 NewGV = linkGlobalAliasProto(cast<GlobalAlias>(SGV));
Rafael Espindola26c29512014-12-05 17:53:15 +00001030 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001031
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001032 if (!NewGV)
1033 return false;
David Majnemerdad0a642014-06-27 18:19:56 +00001034
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001035 if (NewGV != DGV)
1036 copyGVAttributes(NewGV, SGV);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001037
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001038 NewGV->setUnnamedAddr(HasUnnamedAddr);
1039 NewGV->setVisibility(Visibility);
Rafael Espindola439835a2014-12-05 00:09:02 +00001040
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001041 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1042 if (C)
1043 NewGO->setComdat(C);
1044
1045 if (DGV && DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1046 NewGO->setAlignment(std::max(DGV->getAlignment(), SGV->getAlignment()));
1047 }
1048
Rafael Espindola879aeb72014-12-05 16:05:19 +00001049 if (auto *NewGVar = dyn_cast<GlobalVariable>(NewGV)) {
1050 auto *DGVar = dyn_cast_or_null<GlobalVariable>(DGV);
1051 auto *SGVar = dyn_cast<GlobalVariable>(SGV);
1052 if (DGVar && SGVar && DGVar->isDeclaration() && SGVar->isDeclaration() &&
1053 (!DGVar->isConstant() || !SGVar->isConstant()))
1054 NewGVar->setConstant(false);
1055 }
1056
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001057 // Make sure to remember this mapping.
1058 if (NewGV != DGV) {
1059 if (DGV) {
1060 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewGV, DGV->getType()));
1061 DGV->eraseFromParent();
Chandler Carruthfd38af22014-11-02 09:10:31 +00001062 }
Rafael Espindolaad9d0ca2014-12-05 15:42:30 +00001063 ValueMap[SGV] = NewGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001064 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001065
Rafael Espindola778fcc72014-11-02 13:28:57 +00001066 return false;
1067}
1068
1069/// Loop through the global variables in the src module and merge them into the
1070/// dest module.
Rafael Espindola2bd5b9f2014-12-05 19:35:07 +00001071GlobalValue *
1072ModuleLinker::linkGlobalVariableProto(const GlobalVariable *SGVar) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001073 // No linking to be performed or linking from the source: simply create an
1074 // identical version of the symbol over in the dest module... the
1075 // initializer will be filled in later by LinkGlobalInits.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001076 GlobalVariable *NewDGV = new GlobalVariable(
1077 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
1078 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
1079 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
1080 SGVar->getType()->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001081
Rafael Espindola778fcc72014-11-02 13:28:57 +00001082 return NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001083}
1084
Rafael Espindola18c89412014-10-27 02:35:46 +00001085/// Link the function in the source module into the destination module if
1086/// needed, setting up mapping information.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001087GlobalValue *ModuleLinker::linkFunctionProto(const Function *SF,
Rafael Espindola26c29512014-12-05 17:53:15 +00001088 GlobalValue *DGV) {
James Molloyf6f121e2013-05-28 15:17:05 +00001089 // If the function is to be lazily linked, don't create it just yet.
1090 // The ValueMaterializerTy will deal with creating it if it's used.
1091 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1092 SF->hasAvailableExternallyLinkage())) {
1093 DoNotLinkFromSource.insert(SF);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001094 return nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00001095 }
1096
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001097 // If there is no linkage to be performed or we are linking from the source,
1098 // bring SF over.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001099 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
1100 SF->getName(), DstM);
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001101}
1102
Rafael Espindola18c89412014-10-27 02:35:46 +00001103/// Set up prototypes for any aliases that come over from the source module.
Rafael Espindola2bd5b9f2014-12-05 19:35:07 +00001104GlobalValue *ModuleLinker::linkGlobalAliasProto(const GlobalAlias *SGA) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001105 // If there is no linkage to be performed or we're linking from the source,
1106 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001107 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindola778fcc72014-11-02 13:28:57 +00001108 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1109 SGA->getLinkage(), SGA->getName(), DstM);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001110}
1111
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001112static void getArrayElements(const Constant *C,
1113 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001114 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1115
1116 for (unsigned i = 0; i != NumElements; ++i)
1117 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001118}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001119
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001120void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1121 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001122 SmallVector<Constant *, 16> DstElements;
1123 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001124
Rafael Espindolad31dc042014-09-05 21:27:52 +00001125 SmallVector<Constant *, 16> SrcElements;
1126 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001127
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001128 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001129
1130 StringRef Name = AVI.NewGV->getName();
1131 bool IsNewStructor =
1132 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1133 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1134
1135 for (auto *V : SrcElements) {
1136 if (IsNewStructor) {
1137 Constant *Key = V->getAggregateElement(2);
1138 if (DoNotLinkFromSource.count(Key))
1139 continue;
1140 }
1141 DstElements.push_back(
1142 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1143 }
1144 if (IsNewStructor) {
1145 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1146 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1147 }
1148
1149 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001150}
1151
Rafael Espindola18c89412014-10-27 02:35:46 +00001152/// Update the initializers in the Dest module now that all globals that may be
1153/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001154void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001155 // Loop over all of the globals in the src module, mapping them over as we go
Rafael Espindola21ec84e2014-12-08 14:05:33 +00001156 for (GlobalVariable &Src : SrcM->globals()) {
Tanya Lattnercbb91402011-10-11 00:24:54 +00001157 // Only process initialized GV's or ones not already in dest.
Rafael Espindola21ec84e2014-12-08 14:05:33 +00001158 if (!Src.hasInitializer() || DoNotLinkFromSource.count(&Src))
1159 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001160
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001161 // Grab destination global variable.
Rafael Espindola21ec84e2014-12-08 14:05:33 +00001162 GlobalVariable *Dst = cast<GlobalVariable>(ValueMap[&Src]);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001163 // Figure out what the initializer looks like in the dest module.
Rafael Espindola21ec84e2014-12-08 14:05:33 +00001164 Dst->setInitializer(MapValue(Src.getInitializer(), ValueMap, RF_None,
1165 &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001166 }
Reid Spencer361e5132004-11-12 20:37:43 +00001167}
1168
Rafael Espindola18c89412014-10-27 02:35:46 +00001169/// Copy the source function over into the dest function and fix up references
1170/// to values. At this point we know that Dest is an external function, and
1171/// that Src is not.
Rafael Espindola3519da82014-12-08 14:25:26 +00001172bool ModuleLinker::linkFunctionBody(Function &Src) {
1173 Function *Dst = cast<Function>(ValueMap[&Src]);
1174 assert(Dst && Dst->isDeclaration() && !Src.isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001175
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001176 // Materialize if needed.
Rafael Espindola3519da82014-12-08 14:25:26 +00001177 if (std::error_code EC = Src.materialize())
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001178 return emitError(EC.message());
1179
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001180 // Link in the prefix data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001181 if (Src.hasPrefixData())
1182 Dst->setPrefixData(MapValue(Src.getPrefixData(), ValueMap, RF_None,
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001183 &TypeMap, &ValMaterializer));
1184
1185 // Link in the prologue data.
Rafael Espindola3519da82014-12-08 14:25:26 +00001186 if (Src.hasPrologueData())
1187 Dst->setPrologueData(MapValue(Src.getPrologueData(), ValueMap, RF_None,
Rafael Espindola869d1ce2014-12-08 13:44:38 +00001188 &TypeMap, &ValMaterializer));
1189
1190
Chris Lattner7391dde2004-11-16 17:12:38 +00001191 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001192 Function::arg_iterator DI = Dst->arg_begin();
Rafael Espindola3519da82014-12-08 14:25:26 +00001193 for (Argument &Arg : Src.args()) {
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001194 DI->setName(Arg.getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001195
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001196 // Add a mapping to our mapping.
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001197 ValueMap[&Arg] = DI;
1198 ++DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001199 }
1200
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001201 // Splice the body of the source function into the dest function.
Rafael Espindola3519da82014-12-08 14:25:26 +00001202 Dst->getBasicBlockList().splice(Dst->end(), Src.getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001203
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001204 // At this point, all of the instructions and values of the function are now
1205 // copied over. The only problem is that they are still referencing values in
1206 // the Source function as operands. Loop through all of the operands of the
1207 // functions and patch them up to point to the local versions.
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001208 for (BasicBlock &BB : *Dst)
1209 for (Instruction &I : BB)
1210 RemapInstruction(&I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001211 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001212
Chris Lattner7391dde2004-11-16 17:12:38 +00001213 // There is no need to map the arguments anymore.
Rafael Espindola3519da82014-12-08 14:25:26 +00001214 for (Argument &Arg : Src.args())
Rafael Espindolaa314d1a2014-12-08 14:20:10 +00001215 ValueMap.erase(&Arg);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001216
Rafael Espindola3519da82014-12-08 14:25:26 +00001217 Src.Dematerialize();
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001218 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001219}
1220
Rafael Espindola18c89412014-10-27 02:35:46 +00001221/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001222void ModuleLinker::linkAliasBodies() {
Rafael Espindola21ec84e2014-12-08 14:05:33 +00001223 for (GlobalAlias &Src : SrcM->aliases()) {
1224 if (DoNotLinkFromSource.count(&Src))
Tanya Lattnercbb91402011-10-11 00:24:54 +00001225 continue;
Rafael Espindola21ec84e2014-12-08 14:05:33 +00001226 if (Constant *Aliasee = Src.getAliasee()) {
1227 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[&Src]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001228 Constant *Val =
1229 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001230 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001231 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001232 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001233}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001234
Rafael Espindola18c89412014-10-27 02:35:46 +00001235/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001236void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001237 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001238 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1239 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001240 // Don't link module flags here. Do them separately.
1241 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001242 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1243 // Add Src elements into Dest node.
1244 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1245 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001246 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001247 }
1248}
Bill Wendling66f02412012-02-11 11:38:06 +00001249
Rafael Espindola18c89412014-10-27 02:35:46 +00001250/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001251bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001252 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001253 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1254 if (!SrcModFlags) return false;
1255
Bill Wendling66f02412012-02-11 11:38:06 +00001256 // If the destination module doesn't have module flags yet, then just copy
1257 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001258 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001259 if (DstModFlags->getNumOperands() == 0) {
1260 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1261 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1262
1263 return false;
1264 }
1265
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001266 // First build a map of the existing module flags and requirements.
1267 DenseMap<MDString*, MDNode*> Flags;
1268 SmallSetVector<MDNode*, 16> Requirements;
1269 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001270 MDNode *Op = DstModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001271 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1272 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001273
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001274 if (Behavior->getZExtValue() == Module::Require) {
1275 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1276 } else {
1277 Flags[ID] = Op;
1278 }
Bill Wendling66f02412012-02-11 11:38:06 +00001279 }
1280
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001281 // Merge in the flags from the source module, and also collect its set of
1282 // requirements.
1283 bool HasErr = false;
1284 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001285 MDNode *SrcOp = SrcModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001286 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1287 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1288 MDNode *DstOp = Flags.lookup(ID);
1289 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001290
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001291 // If this is a requirement, add it and continue.
1292 if (SrcBehaviorValue == Module::Require) {
1293 // If the destination module does not already have this requirement, add
1294 // it.
1295 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1296 DstModFlags->addOperand(SrcOp);
1297 }
1298 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001299 }
1300
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001301 // If there is no existing flag with this ID, just add it.
1302 if (!DstOp) {
1303 Flags[ID] = SrcOp;
1304 DstModFlags->addOperand(SrcOp);
1305 continue;
1306 }
1307
1308 // Otherwise, perform a merge.
1309 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1310 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1311
1312 // If either flag has override behavior, handle it first.
1313 if (DstBehaviorValue == Module::Override) {
1314 // Diagnose inconsistent flags which both have override behavior.
1315 if (SrcBehaviorValue == Module::Override &&
1316 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1317 HasErr |= emitError("linking module flags '" + ID->getString() +
1318 "': IDs have conflicting override values");
1319 }
1320 continue;
1321 } else if (SrcBehaviorValue == Module::Override) {
1322 // Update the destination flag to that of the source.
1323 DstOp->replaceOperandWith(0, SrcBehavior);
1324 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1325 continue;
1326 }
1327
1328 // Diagnose inconsistent merge behavior types.
1329 if (SrcBehaviorValue != DstBehaviorValue) {
1330 HasErr |= emitError("linking module flags '" + ID->getString() +
1331 "': IDs have conflicting behaviors");
1332 continue;
1333 }
1334
1335 // Perform the merge for standard behavior types.
1336 switch (SrcBehaviorValue) {
1337 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001338 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001339 case Module::Error: {
1340 // Emit an error if the values differ.
1341 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1342 HasErr |= emitError("linking module flags '" + ID->getString() +
1343 "': IDs have conflicting values");
1344 }
1345 continue;
1346 }
1347 case Module::Warning: {
1348 // Emit a warning if the values differ.
1349 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001350 emitWarning("linking module flags '" + ID->getString() +
1351 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001352 }
1353 continue;
1354 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001355 case Module::Append: {
1356 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1357 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1358 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1359 Value **VP, **Values = VP = new Value*[NumOps];
1360 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1361 *VP = DstValue->getOperand(i);
1362 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1363 *VP = SrcValue->getOperand(i);
1364 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1365 ArrayRef<Value*>(Values,
1366 NumOps)));
1367 delete[] Values;
1368 break;
1369 }
1370 case Module::AppendUnique: {
1371 SmallSetVector<Value*, 16> Elts;
1372 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1373 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1374 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1375 Elts.insert(DstValue->getOperand(i));
1376 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1377 Elts.insert(SrcValue->getOperand(i));
1378 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1379 ArrayRef<Value*>(Elts.begin(),
1380 Elts.end())));
1381 break;
1382 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001383 }
Bill Wendling66f02412012-02-11 11:38:06 +00001384 }
1385
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001386 // Check all of the requirements.
1387 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1388 MDNode *Requirement = Requirements[I];
1389 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1390 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001391
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001392 MDNode *Op = Flags[Flag];
1393 if (!Op || Op->getOperand(2) != ReqValue) {
1394 HasErr |= emitError("linking module flags '" + Flag->getString() +
1395 "': does not have the required value");
1396 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001397 }
1398 }
1399
1400 return HasErr;
1401}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001402
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001403bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001404 assert(DstM && "Null destination module");
1405 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001406
1407 // Inherit the target data from the source module if the destination module
1408 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001409 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001410 DstM->setDataLayout(SrcM->getDataLayout());
1411
1412 // Copy the target triple from the source to dest if the dest's is empty.
1413 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1414 DstM->setTargetTriple(SrcM->getTargetTriple());
1415
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001416 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001417 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001418 emitWarning("Linking two modules of different data layouts: '" +
1419 SrcM->getModuleIdentifier() + "' is '" +
1420 SrcM->getDataLayoutStr() + "' whereas '" +
1421 DstM->getModuleIdentifier() + "' is '" +
1422 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001423 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001424 if (!SrcM->getTargetTriple().empty() &&
1425 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001426 emitWarning("Linking two modules of different target triples: " +
1427 SrcM->getModuleIdentifier() + "' is '" +
1428 SrcM->getTargetTriple() + "' whereas '" +
1429 DstM->getModuleIdentifier() + "' is '" +
1430 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001431 }
1432
1433 // Append the module inline asm string.
1434 if (!SrcM->getModuleInlineAsm().empty()) {
1435 if (DstM->getModuleInlineAsm().empty())
1436 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1437 else
1438 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1439 SrcM->getModuleInlineAsm());
1440 }
1441
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001442 // Loop over all of the linked values to compute type mappings.
1443 computeTypeMapping();
1444
David Majnemerdad0a642014-06-27 18:19:56 +00001445 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001446 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001447 const Comdat &C = SMEC.getValue();
1448 if (ComdatsChosen.count(&C))
1449 continue;
1450 Comdat::SelectionKind SK;
1451 bool LinkFromSrc;
1452 if (getComdatResult(&C, SK, LinkFromSrc))
1453 return true;
1454 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1455 }
1456
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001457 // Upgrade mismatched global arrays.
1458 upgradeMismatchedGlobals();
1459
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001460 // Insert all of the globals in src into the DstM module... without linking
1461 // initializers (which could refer to functions not yet mapped over).
1462 for (Module::global_iterator I = SrcM->global_begin(),
1463 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001464 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001465 return true;
1466
1467 // Link the functions together between the two modules, without doing function
1468 // bodies... this just adds external function prototypes to the DstM
1469 // function... We do this so that when we begin processing function bodies,
1470 // all of the global values that may be referenced are available in our
1471 // ValueMap.
1472 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001473 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001474 return true;
1475
1476 // If there were any aliases, link them now.
1477 for (Module::alias_iterator I = SrcM->alias_begin(),
1478 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001479 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001480 return true;
1481
1482 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1483 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001484
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001485 // Link in the function bodies that are defined in the source module into
1486 // DstM.
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001487 for (Function &SF : *SrcM) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001488 // Skip if no body (function is external).
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001489 if (SF.isDeclaration())
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001490 continue;
1491
Rafael Espindolaf97d0cb2014-12-08 13:35:09 +00001492 // Skip if not linking from source.
1493 if (DoNotLinkFromSource.count(&SF))
1494 continue;
1495
Rafael Espindola3519da82014-12-08 14:25:26 +00001496 if (linkFunctionBody(SF))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001497 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001498 }
1499
1500 // Resolve all uses of aliases with aliasees.
1501 linkAliasBodies();
1502
Bill Wendling66f02412012-02-11 11:38:06 +00001503 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001504 // after linking GlobalValues so that MDNodes that reference GlobalValues
1505 // are properly remapped.
1506 linkNamedMDNodes();
1507
Bill Wendling66f02412012-02-11 11:38:06 +00001508 // Merge the module flags into the DstM module.
1509 if (linkModuleFlagsMetadata())
1510 return true;
1511
Bill Wendling91686d62014-01-16 06:29:36 +00001512 // Update the initializers in the DstM module now that all globals that may
1513 // be referenced are in DstM.
1514 linkGlobalInits();
1515
Tanya Lattner0a48b872011-11-02 00:24:56 +00001516 // Process vector of lazily linked in functions.
Rafael Espindola28a24512014-12-05 21:04:36 +00001517 while (!LazilyLinkFunctions.empty()) {
1518 Function *SF = LazilyLinkFunctions.back();
1519 LazilyLinkFunctions.pop_back();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001520
Rafael Espindola3519da82014-12-08 14:25:26 +00001521 if (linkFunctionBody(*SF))
Rafael Espindola40d7ebe2014-12-08 13:29:33 +00001522 return true;
Rafael Espindola28a24512014-12-05 21:04:36 +00001523 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001524
Anton Korobeynikov26098882008-03-05 23:21:39 +00001525 return false;
1526}
Reid Spencer361e5132004-11-12 20:37:43 +00001527
Rafael Espindola31ad4682014-12-03 22:36:37 +00001528Linker::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P)
1529 : ETypes(E), IsPacked(P) {}
1530
1531Linker::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST)
1532 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
1533
1534bool Linker::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const {
1535 if (IsPacked != That.IsPacked)
1536 return false;
1537 if (ETypes != That.ETypes)
1538 return false;
1539 return true;
1540}
1541
1542bool Linker::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const {
1543 return !this->operator==(That);
1544}
1545
1546StructType *Linker::StructTypeKeyInfo::getEmptyKey() {
1547 return DenseMapInfo<StructType *>::getEmptyKey();
1548}
1549
1550StructType *Linker::StructTypeKeyInfo::getTombstoneKey() {
1551 return DenseMapInfo<StructType *>::getTombstoneKey();
1552}
1553
1554unsigned Linker::StructTypeKeyInfo::getHashValue(const KeyTy &Key) {
1555 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
1556 Key.IsPacked);
1557}
1558
1559unsigned Linker::StructTypeKeyInfo::getHashValue(const StructType *ST) {
1560 return getHashValue(KeyTy(ST));
1561}
1562
1563bool Linker::StructTypeKeyInfo::isEqual(const KeyTy &LHS,
1564 const StructType *RHS) {
1565 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
1566 return false;
1567 return LHS == KeyTy(RHS);
1568}
1569
1570bool Linker::StructTypeKeyInfo::isEqual(const StructType *LHS,
1571 const StructType *RHS) {
1572 if (RHS == getEmptyKey())
1573 return LHS == getEmptyKey();
1574
1575 if (RHS == getTombstoneKey())
1576 return LHS == getTombstoneKey();
1577
1578 return KeyTy(LHS) == KeyTy(RHS);
1579}
1580
1581void Linker::IdentifiedStructTypeSet::addNonOpaque(StructType *Ty) {
1582 assert(!Ty->isOpaque());
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001583 NonOpaqueStructTypes.insert(Ty);
Rafael Espindola31ad4682014-12-03 22:36:37 +00001584}
1585
1586void Linker::IdentifiedStructTypeSet::addOpaque(StructType *Ty) {
1587 assert(Ty->isOpaque());
1588 OpaqueStructTypes.insert(Ty);
1589}
1590
1591StructType *
1592Linker::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes,
1593 bool IsPacked) {
1594 Linker::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked);
1595 auto I = NonOpaqueStructTypes.find_as(Key);
1596 if (I == NonOpaqueStructTypes.end())
1597 return nullptr;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001598 return *I;
Rafael Espindola31ad4682014-12-03 22:36:37 +00001599}
1600
1601bool Linker::IdentifiedStructTypeSet::hasType(StructType *Ty) {
1602 if (Ty->isOpaque())
1603 return OpaqueStructTypes.count(Ty);
1604 auto I = NonOpaqueStructTypes.find(Ty);
1605 if (I == NonOpaqueStructTypes.end())
1606 return false;
Benjamin Kramer3280a5d2014-12-06 19:22:54 +00001607 return *I == Ty;
Rafael Espindola31ad4682014-12-03 22:36:37 +00001608}
1609
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001610void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1611 this->Composite = M;
1612 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001613
1614 TypeFinder StructTypes;
1615 StructTypes.run(*M, true);
Rafael Espindola31ad4682014-12-03 22:36:37 +00001616 for (StructType *Ty : StructTypes) {
1617 if (Ty->isOpaque())
1618 IdentifiedStructTypes.addOpaque(Ty);
1619 else
1620 IdentifiedStructTypes.addNonOpaque(Ty);
1621 }
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001622}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001623
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001624Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1625 init(M, DiagnosticHandler);
1626}
1627
1628Linker::Linker(Module *M) {
1629 init(M, [this](const DiagnosticInfo &DI) {
1630 Composite->getContext().diagnose(DI);
1631 });
1632}
1633
Rafael Espindola3df61b72013-05-04 03:48:37 +00001634Linker::~Linker() {
1635}
1636
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001637void Linker::deleteModule() {
1638 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001639 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001640}
1641
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001642bool Linker::linkInModule(Module *Src) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001643 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1644 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001645 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001646}
1647
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001648//===----------------------------------------------------------------------===//
1649// LinkModules entrypoint.
1650//===----------------------------------------------------------------------===//
1651
Rafael Espindola18c89412014-10-27 02:35:46 +00001652/// This function links two modules together, with the resulting Dest module
1653/// modified to be the composite of the two input modules. If an error occurs,
1654/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1655/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1656/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001657bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001658 DiagnosticHandlerFunction DiagnosticHandler) {
1659 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001660 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001661}
1662
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001663bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001664 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001665 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001666}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001667
1668//===----------------------------------------------------------------------===//
1669// C API.
1670//===----------------------------------------------------------------------===//
1671
1672LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1673 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001674 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001675 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001676 raw_string_ostream Stream(Message);
1677 DiagnosticPrinterRawOStream DP(Stream);
1678
1679 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001680 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001681
1682 if (OutMessages && Result)
1683 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001684 return Result;
1685}