blob: aa0f961e3da974ade11b88b2898c7b2d26af34d5 [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 Espindola23f8d642012-01-05 23:02:01 +000016#include "llvm/ADT/Optional.h"
Bill Wendling66f02412012-02-11 11:38:06 +000017#include "llvm/ADT/SetVector.h"
Eli Bendersky0f7fd362013-03-19 15:26:24 +000018#include "llvm/ADT/SmallString.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/Constants.h"
Rafael Espindolad12b4a32014-10-25 04:06:10 +000020#include "llvm/IR/DiagnosticInfo.h"
21#include "llvm/IR/DiagnosticPrinter.h"
22#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/Module.h"
Chandler Carruthdcb603f2013-01-07 15:43:51 +000024#include "llvm/IR/TypeFinder.h"
Eli Benderskye17f3702014-02-06 18:01:56 +000025#include "llvm/Support/CommandLine.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000026#include "llvm/Support/Debug.h"
Bill Wendlingb6af2f32012-03-22 20:28:27 +000027#include "llvm/Support/raw_ostream.h"
Tanya Lattnercbb91402011-10-11 00:24:54 +000028#include "llvm/Transforms/Utils/Cloning.h"
Will Dietz981af002013-10-12 00:55:57 +000029#include <cctype>
David Majnemer82d6ff62014-06-27 18:38:12 +000030#include <tuple>
Reid Spencer361e5132004-11-12 20:37:43 +000031using namespace llvm;
32
Eli Benderskye17f3702014-02-06 18:01:56 +000033
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000034//===----------------------------------------------------------------------===//
35// TypeMap implementation.
36//===----------------------------------------------------------------------===//
Reid Spencer361e5132004-11-12 20:37:43 +000037
Chris Lattnereee6f992008-06-16 21:00:18 +000038namespace {
Rafael Espindola18c89412014-10-27 02:35:46 +000039typedef SmallPtrSet<StructType *, 32> TypeSet;
Rafael Espindolaaa9918a2013-05-04 05:05:18 +000040
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 Espindola18c89412014-10-27 02:35:46 +000050 /// This is a list of non-opaque structs in the source module that are mapped
51 /// to an opaque struct in the destination module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000052 SmallVector<StructType*, 16> SrcDefinitionsToResolve;
Rafael Espindolaed6dc372014-05-09 14:39:25 +000053
Rafael Espindola18c89412014-10-27 02:35:46 +000054 /// This is the set of opaque types in the destination modules who are
55 /// getting a body from the source module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000056 SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes;
Bill Wendling8c2cc412012-03-22 20:30:41 +000057
Chris Lattner56cdea62008-06-16 23:06:51 +000058public:
Rafael Espindolaaa9918a2013-05-04 05:05:18 +000059 TypeMapTy(TypeSet &Set) : DstStructTypesSet(Set) {}
60
61 TypeSet &DstStructTypesSet;
Rafael Espindola18c89412014-10-27 02:35:46 +000062 /// Indicate that the specified type in the destination module is conceptually
63 /// equivalent to the specified type in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000064 void addTypeMapping(Type *DstTy, Type *SrcTy);
65
Rafael Espindolad2a13a22014-11-25 04:28:31 +000066 /// Produce a body for an opaque type in the dest module from a type
67 /// definition in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000068 void linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +000069
Rafael Espindola18c89412014-10-27 02:35:46 +000070 /// Return the mapped type to use for the specified input type from the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000071 /// source module.
72 Type *get(Type *SrcTy);
73
74 FunctionType *get(FunctionType *T) {return cast<FunctionType>(get((Type*)T));}
75
Rafael Espindola18c89412014-10-27 02:35:46 +000076 /// Dump out the type map for debugging purposes.
Bill Wendlingb6af2f32012-03-22 20:28:27 +000077 void dump() const {
78 for (DenseMap<Type*, Type*>::const_iterator
79 I = MappedTypes.begin(), E = MappedTypes.end(); I != E; ++I) {
80 dbgs() << "TypeMap: ";
Justin Bognerc0087f32014-08-12 03:24:59 +000081 I->first->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000082 dbgs() << " => ";
Justin Bognerc0087f32014-08-12 03:24:59 +000083 I->second->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000084 dbgs() << '\n';
85 }
86 }
Bill Wendlingb6af2f32012-03-22 20:28:27 +000087
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000088private:
89 Type *getImpl(Type *T);
Rafael Espindola18c89412014-10-27 02:35:46 +000090 /// Implement the ValueMapTypeRemapper interface.
Craig Topper85482992014-03-05 07:52:44 +000091 Type *remapType(Type *SrcTy) override {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000092 return get(SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000093 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +000094
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000095 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000096};
97}
98
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000099void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
100 Type *&Entry = MappedTypes[SrcTy];
101 if (Entry) return;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000102
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000103 if (DstTy == SrcTy) {
104 Entry = DstTy;
105 return;
106 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +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.
Rafael Espindola86911442014-11-25 05:59:24 +0000110 if (areTypesIsomorphic(DstTy, SrcTy)) {
111 SpeculativeTypes.clear();
112 return;
Bill Wendlingd48b7782012-02-28 04:01:21 +0000113 }
Rafael Espindola86911442014-11-25 05:59:24 +0000114
115 // Oops, they aren't isomorphic. Just discard this request by rolling out
116 // any speculative mappings we've established.
117 unsigned Removed = 0;
118 for (unsigned I = 0, E = SpeculativeTypes.size(); I != E; ++I) {
119 Type *SrcTy = SpeculativeTypes[I];
120 auto Iter = MappedTypes.find(SrcTy);
121 auto *DstTy = dyn_cast<StructType>(Iter->second);
122 if (DstTy && DstResolvedOpaqueTypes.erase(DstTy))
123 Removed++;
124 MappedTypes.erase(Iter);
125 }
126 SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() - Removed);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000127 SpeculativeTypes.clear();
128}
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.
134 if (DstTy->getTypeID() != SrcTy->getTypeID()) return false;
Misha Brukman10468d82005-04-21 22:55:34 +0000135
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000136 // If we have an entry in the MappedTypes table, then we have our answer.
137 Type *&Entry = MappedTypes[SrcTy];
138 if (Entry)
139 return Entry == DstTy;
Misha Brukman10468d82005-04-21 22:55:34 +0000140
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000141 // Two identical types are clearly isomorphic. Remember this
142 // non-speculatively.
143 if (DstTy == SrcTy) {
144 Entry = DstTy;
Chris Lattnerfe677e92008-06-16 20:03:01 +0000145 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000146 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000147
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000148 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000149
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000150 // If this is an opaque struct type, special case it.
151 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
152 // Mapping an opaque type to any struct, just keep the dest struct.
153 if (SSTy->isOpaque()) {
154 Entry = DstTy;
155 SpeculativeTypes.push_back(SrcTy);
Reid Spencer361e5132004-11-12 20:37:43 +0000156 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000157 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000158
Chris Lattner5e3bd972011-12-20 00:03:52 +0000159 // Mapping a non-opaque source type to an opaque dest. If this is the first
160 // type that we're mapping onto this destination type then we succeed. Keep
Rafael Espindola86911442014-11-25 05:59:24 +0000161 // the dest, but fill it in later. If this is the second (different) type
162 // that we're trying to map onto the same opaque type then we fail.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000163 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-12-20 00:03:52 +0000164 // We can only map one source type onto the opaque destination type.
David Blaikie70573dc2014-11-19 07:49:26 +0000165 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second)
Chris Lattner5e3bd972011-12-20 00:03:52 +0000166 return false;
167 SrcDefinitionsToResolve.push_back(SSTy);
Rafael Espindola86911442014-11-25 05:59:24 +0000168 SpeculativeTypes.push_back(SrcTy);
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
Bill Wendlingd48b7782012-02-28 04:01:21 +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;
217 SmallString<16> TmpName;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000218
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000219 // Note that processing entries in this loop (calling 'get') can add new
Chris Lattner5e3bd972011-12-20 00:03:52 +0000220 // entries to the SrcDefinitionsToResolve vector.
221 while (!SrcDefinitionsToResolve.empty()) {
222 StructType *SrcSTy = SrcDefinitionsToResolve.pop_back_val();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000223 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000224
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000225 // TypeMap is a many-to-one mapping, if there were multiple types that
226 // provide a body for DstSTy then previous iterations of this loop may have
227 // already handled it. Just ignore this case.
228 if (!DstSTy->isOpaque()) continue;
229 assert(!SrcSTy->isOpaque() && "Not resolving a definition?");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000230
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000231 // Map the body of the source type over to a new body for the dest type.
232 Elements.resize(SrcSTy->getNumElements());
233 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
234 Elements[i] = getImpl(SrcSTy->getElementType(i));
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000235
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000236 DstSTy->setBody(Elements, SrcSTy->isPacked());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000237
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000238 // If DstSTy has no name or has a longer name than STy, then viciously steal
239 // STy's name.
240 if (!SrcSTy->hasName()) continue;
241 StringRef SrcName = SrcSTy->getName();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000242
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000243 if (!DstSTy->hasName() || DstSTy->getName().size() > SrcName.size()) {
244 TmpName.insert(TmpName.end(), SrcName.begin(), SrcName.end());
245 SrcSTy->setName("");
246 DstSTy->setName(TmpName.str());
247 TmpName.clear();
248 }
249 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000250
Chris Lattner5e3bd972011-12-20 00:03:52 +0000251 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000252}
253
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000254Type *TypeMapTy::get(Type *Ty) {
255 Type *Result = getImpl(Ty);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000256
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000257 // If this caused a reference to any struct type, resolve it before returning.
Chris Lattner5e3bd972011-12-20 00:03:52 +0000258 if (!SrcDefinitionsToResolve.empty())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000259 linkDefinedTypeBodies();
260 return Result;
261}
262
Rafael Espindola18c89412014-10-27 02:35:46 +0000263/// This is the recursive version of get().
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000264Type *TypeMapTy::getImpl(Type *Ty) {
265 // If we already have an entry for this type, return it.
266 Type **Entry = &MappedTypes[Ty];
267 if (*Entry) return *Entry;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000268
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000269 // If this is not a named struct type, then just map all of the elements and
270 // then rebuild the type from inside out.
Chris Lattner44f7ab42011-08-12 18:07:26 +0000271 if (!isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000272 // If there are no element types to map, then the type is itself. This is
273 // true for the anonymous {} struct, things like 'float', integers, etc.
274 if (Ty->getNumContainedTypes() == 0)
275 return *Entry = Ty;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000276
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000277 // Remap all of the elements, keeping track of whether any of them change.
278 bool AnyChange = false;
279 SmallVector<Type*, 4> ElementTypes;
280 ElementTypes.resize(Ty->getNumContainedTypes());
281 for (unsigned i = 0, e = Ty->getNumContainedTypes(); i != e; ++i) {
282 ElementTypes[i] = getImpl(Ty->getContainedType(i));
283 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
284 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000285
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000286 // If we found our type while recursively processing stuff, just use it.
287 Entry = &MappedTypes[Ty];
288 if (*Entry) return *Entry;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000289
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000290 // If all of the element types mapped directly over, then the type is usable
291 // as-is.
292 if (!AnyChange)
293 return *Entry = Ty;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000294
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000295 // Otherwise, rebuild a modified type.
296 switch (Ty->getTypeID()) {
Craig Toppera2886c22012-02-07 05:05:23 +0000297 default: llvm_unreachable("unknown derived type to remap");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000298 case Type::ArrayTyID:
299 return *Entry = ArrayType::get(ElementTypes[0],
300 cast<ArrayType>(Ty)->getNumElements());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000301 case Type::VectorTyID:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000302 return *Entry = VectorType::get(ElementTypes[0],
303 cast<VectorType>(Ty)->getNumElements());
304 case Type::PointerTyID:
305 return *Entry = PointerType::get(ElementTypes[0],
306 cast<PointerType>(Ty)->getAddressSpace());
307 case Type::FunctionTyID:
308 return *Entry = FunctionType::get(ElementTypes[0],
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000309 makeArrayRef(ElementTypes).slice(1),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000310 cast<FunctionType>(Ty)->isVarArg());
311 case Type::StructTyID:
312 // Note that this is only reached for anonymous structs.
313 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
314 cast<StructType>(Ty)->isPacked());
315 }
316 }
317
318 // Otherwise, this is an unmapped named struct. If the struct can be directly
319 // mapped over, just use it as-is. This happens in a case when the linked-in
320 // module has something like:
321 // %T = type {%T*, i32}
322 // @GV = global %T* null
323 // where T does not exist at all in the destination module.
324 //
325 // The other case we watch for is when the type is not in the destination
326 // module, but that it has to be rebuilt because it refers to something that
327 // is already mapped. For example, if the destination module has:
328 // %A = type { i32 }
329 // and the source module has something like
330 // %A' = type { i32 }
331 // %B = type { %A'* }
332 // @GV = global %B* null
333 // then we want to create a new type: "%B = type { %A*}" and have it take the
334 // pristine "%B" name from the source module.
335 //
336 // To determine which case this is, we have to recursively walk the type graph
337 // speculating that we'll be able to reuse it unmodified. Only if this is
338 // safe would we map the entire thing over. Because this is an optimization,
339 // and is not required for the prettiness of the linked module, we just skip
340 // it and always rebuild a type here.
341 StructType *STy = cast<StructType>(Ty);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000342
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000343 // If the type is opaque, we can just use it directly.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000344 if (STy->isOpaque()) {
345 // A named structure type from src module is used. Add it to the Set of
346 // identified structs in the destination module.
347 DstStructTypesSet.insert(STy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000348 return *Entry = STy;
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000349 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000350
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000351 // Otherwise we create a new type and resolve its body later. This will be
352 // resolved by the top level of get().
Chris Lattner5e3bd972011-12-20 00:03:52 +0000353 SrcDefinitionsToResolve.push_back(STy);
354 StructType *DTy = StructType::create(STy->getContext());
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000355 // A new identified structure type was created. Add it to the set of
356 // identified structs in the destination module.
357 DstStructTypesSet.insert(DTy);
Chris Lattner5e3bd972011-12-20 00:03:52 +0000358 DstResolvedOpaqueTypes.insert(DTy);
359 return *Entry = DTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000360}
361
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000362//===----------------------------------------------------------------------===//
363// ModuleLinker implementation.
364//===----------------------------------------------------------------------===//
365
366namespace {
James Molloyf6f121e2013-05-28 15:17:05 +0000367 class ModuleLinker;
368
Rafael Espindola18c89412014-10-27 02:35:46 +0000369 /// Creates prototypes for functions that are lazily linked on the fly. This
370 /// speeds up linking for modules with many/ lazily linked functions of which
371 /// few get used.
James Molloyf6f121e2013-05-28 15:17:05 +0000372 class ValueMaterializerTy : public ValueMaterializer {
373 TypeMapTy &TypeMap;
374 Module *DstM;
375 std::vector<Function*> &LazilyLinkFunctions;
376 public:
377 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
378 std::vector<Function*> &LazilyLinkFunctions) :
379 ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
380 LazilyLinkFunctions(LazilyLinkFunctions) {
381 }
382
Craig Topper85482992014-03-05 07:52:44 +0000383 Value *materializeValueFor(Value *V) override;
James Molloyf6f121e2013-05-28 15:17:05 +0000384 };
385
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000386 class LinkDiagnosticInfo : public DiagnosticInfo {
387 const Twine &Msg;
388
389 public:
390 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
391 void print(DiagnosticPrinter &DP) const override;
392 };
393 LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
394 const Twine &Msg)
395 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
396 void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000397
Rafael Espindola18c89412014-10-27 02:35:46 +0000398 /// This is an implementation class for the LinkModules function, which is the
399 /// entrypoint for this file.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000400 class ModuleLinker {
401 Module *DstM, *SrcM;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000402
403 TypeMapTy TypeMap;
James Molloyf6f121e2013-05-28 15:17:05 +0000404 ValueMaterializerTy ValMaterializer;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000405
Rafael Espindola18c89412014-10-27 02:35:46 +0000406 /// Mapping of values from what they used to be in Src, to what they are now
407 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
408 /// due to the use of Value handles which the Linker doesn't actually need,
409 /// but this allows us to reuse the ValueMapper code.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000410 ValueToValueMapTy ValueMap;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000411
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000412 struct AppendingVarInfo {
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000413 GlobalVariable *NewGV; // New aggregate global in dest module.
414 const Constant *DstInit; // Old initializer from dest module.
415 const Constant *SrcInit; // Old initializer from src module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000416 };
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000417
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000418 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000419
Tanya Lattnercbb91402011-10-11 00:24:54 +0000420 // Set of items not to link in from source.
421 SmallPtrSet<const Value*, 16> DoNotLinkFromSource;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000422
Tanya Lattner0a48b872011-11-02 00:24:56 +0000423 // Vector of functions to lazily link in.
Bill Wendlingfa2287822013-03-27 17:54:41 +0000424 std::vector<Function*> LazilyLinkFunctions;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000425
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000426 Linker::DiagnosticHandlerFunction DiagnosticHandler;
427
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000428 public:
Rafael Espindola9f8eff32014-10-28 00:24:16 +0000429 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM,
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000430 Linker::DiagnosticHandlerFunction DiagnosticHandler)
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000431 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindola9f8eff32014-10-28 00:24:16 +0000432 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions),
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000433 DiagnosticHandler(DiagnosticHandler) {}
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000434
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000435 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000436
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000437 private:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000438 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
439 const GlobalValue &Src);
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000440
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000441 /// Helper method for setting a message and returning an error code.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000442 bool emitError(const Twine &Message) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000443 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
Chris Lattner99953022008-06-16 18:27:53 +0000444 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000445 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000446
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000447 void emitWarning(const Twine &Message) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000448 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000449 }
450
David Majnemerdad0a642014-06-27 18:19:56 +0000451 bool getComdatLeader(Module *M, StringRef ComdatName,
452 const GlobalVariable *&GVar);
453 bool computeResultingSelectionKind(StringRef ComdatName,
454 Comdat::SelectionKind Src,
455 Comdat::SelectionKind Dst,
456 Comdat::SelectionKind &Result,
457 bool &LinkFromSrc);
458 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
459 ComdatsChosen;
460 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
461 bool &LinkFromSrc);
462
Rafael Espindola18c89412014-10-27 02:35:46 +0000463 /// Given a global in the source module, return the global in the
464 /// destination module that is being linked to, if any.
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000465 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000466 // If the source has no name it can't link. If it has local linkage,
467 // there is no name match-up going on.
468 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000469 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000470
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000471 // Otherwise see if we have a match in the destination module's symtab.
472 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
Craig Topper2617dcc2014-04-15 06:32:26 +0000473 if (!DGV) return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000474
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000475 // If we found a global with the same name in the dest module, but it has
476 // internal linkage, we are really not doing any linkage here.
477 if (DGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000478 return nullptr;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000479
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000480 // Otherwise, we do in fact link to the destination global.
481 return DGV;
482 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000483
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000484 void computeTypeMapping();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000485
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000486 void upgradeMismatchedGlobalArray(StringRef Name);
487 void upgradeMismatchedGlobals();
488
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000489 bool linkAppendingVarProto(GlobalVariable *DstGV,
490 const GlobalVariable *SrcGV);
Rafael Espindola778fcc72014-11-02 13:28:57 +0000491
492 bool linkGlobalValueProto(GlobalValue *GV);
493 GlobalValue *linkGlobalVariableProto(const GlobalVariable *SGVar,
494 GlobalValue *DGV, bool LinkFromSrc);
495 GlobalValue *linkFunctionProto(const Function *SF, GlobalValue *DGV,
496 bool LinkFromSrc);
497 GlobalValue *linkGlobalAliasProto(const GlobalAlias *SGA, GlobalValue *DGV,
498 bool LinkFromSrc);
499
Bill Wendling66f02412012-02-11 11:38:06 +0000500 bool linkModuleFlagsMetadata();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000501
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000502 void linkAppendingVarInit(const AppendingVarInfo &AVI);
503 void linkGlobalInits();
504 void linkFunctionBody(Function *Dst, Function *Src);
505 void linkAliasBodies();
506 void linkNamedMDNodes();
507 };
Bill Wendlingd48b7782012-02-28 04:01:21 +0000508}
509
Rafael Espindola18c89412014-10-27 02:35:46 +0000510/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
511/// table. This is good for all clients except for us. Go through the trouble
512/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000513static void forceRenaming(GlobalValue *GV, StringRef Name) {
514 // If the global doesn't force its name or if it already has the right name,
515 // there is nothing for us to do.
516 if (GV->hasLocalLinkage() || GV->getName() == Name)
517 return;
518
519 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000520
521 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000522 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000523 GV->takeName(ConflictGV);
524 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000525 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000526 } else {
527 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000528 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000529}
Reid Spencer90246aa2007-02-04 04:29:21 +0000530
Rafael Espindola18c89412014-10-27 02:35:46 +0000531/// copy additional attributes (those not needed to construct a GlobalValue)
532/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000533static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000534 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000535 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000536 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000537 if (DestGO)
538 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000539
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000540 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000541
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000542 if (DestGO)
543 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000544
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000545 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000546}
547
Rafael Espindola23f8d642012-01-05 23:02:01 +0000548static bool isLessConstraining(GlobalValue::VisibilityTypes a,
549 GlobalValue::VisibilityTypes b) {
550 if (a == GlobalValue::HiddenVisibility)
551 return false;
552 if (b == GlobalValue::HiddenVisibility)
553 return true;
554 if (a == GlobalValue::ProtectedVisibility)
555 return false;
556 if (b == GlobalValue::ProtectedVisibility)
557 return true;
558 return false;
559}
560
James Molloyf6f121e2013-05-28 15:17:05 +0000561Value *ValueMaterializerTy::materializeValueFor(Value *V) {
562 Function *SF = dyn_cast<Function>(V);
563 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000564 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000565
566 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
567 SF->getLinkage(), SF->getName(), DstM);
568 copyGVAttributes(DF, SF);
569
Rafael Espindola3931c282014-08-15 20:17:08 +0000570 if (Comdat *SC = SF->getComdat()) {
571 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
572 DF->setComdat(DC);
573 }
574
James Molloyf6f121e2013-05-28 15:17:05 +0000575 LazilyLinkFunctions.push_back(SF);
576 return DF;
577}
578
David Majnemerdad0a642014-06-27 18:19:56 +0000579bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
580 const GlobalVariable *&GVar) {
581 const GlobalValue *GVal = M->getNamedValue(ComdatName);
582 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
583 GVal = GA->getBaseObject();
584 if (!GVal)
585 // We cannot resolve the size of the aliasee yet.
586 return emitError("Linking COMDATs named '" + ComdatName +
587 "': COMDAT key involves incomputable alias size.");
588 }
589
590 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
591 if (!GVar)
592 return emitError(
593 "Linking COMDATs named '" + ComdatName +
594 "': GlobalVariable required for data dependent selection!");
595
596 return false;
597}
598
599bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
600 Comdat::SelectionKind Src,
601 Comdat::SelectionKind Dst,
602 Comdat::SelectionKind &Result,
603 bool &LinkFromSrc) {
604 // The ability to mix Comdat::SelectionKind::Any with
605 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
606 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
607 Dst == Comdat::SelectionKind::Largest;
608 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
609 Src == Comdat::SelectionKind::Largest;
610 if (DstAnyOrLargest && SrcAnyOrLargest) {
611 if (Dst == Comdat::SelectionKind::Largest ||
612 Src == Comdat::SelectionKind::Largest)
613 Result = Comdat::SelectionKind::Largest;
614 else
615 Result = Comdat::SelectionKind::Any;
616 } else if (Src == Dst) {
617 Result = Dst;
618 } else {
619 return emitError("Linking COMDATs named '" + ComdatName +
620 "': invalid selection kinds!");
621 }
622
623 switch (Result) {
624 case Comdat::SelectionKind::Any:
625 // Go with Dst.
626 LinkFromSrc = false;
627 break;
628 case Comdat::SelectionKind::NoDuplicates:
629 return emitError("Linking COMDATs named '" + ComdatName +
630 "': noduplicates has been violated!");
631 case Comdat::SelectionKind::ExactMatch:
632 case Comdat::SelectionKind::Largest:
633 case Comdat::SelectionKind::SameSize: {
634 const GlobalVariable *DstGV;
635 const GlobalVariable *SrcGV;
636 if (getComdatLeader(DstM, ComdatName, DstGV) ||
637 getComdatLeader(SrcM, ComdatName, SrcGV))
638 return true;
639
640 const DataLayout *DstDL = DstM->getDataLayout();
641 const DataLayout *SrcDL = SrcM->getDataLayout();
642 if (!DstDL || !SrcDL) {
643 return emitError(
644 "Linking COMDATs named '" + ComdatName +
645 "': can't do size dependent selection without DataLayout!");
646 }
647 uint64_t DstSize =
648 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
649 uint64_t SrcSize =
650 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
651 if (Result == Comdat::SelectionKind::ExactMatch) {
652 if (SrcGV->getInitializer() != DstGV->getInitializer())
653 return emitError("Linking COMDATs named '" + ComdatName +
654 "': ExactMatch violated!");
655 LinkFromSrc = false;
656 } else if (Result == Comdat::SelectionKind::Largest) {
657 LinkFromSrc = SrcSize > DstSize;
658 } else if (Result == Comdat::SelectionKind::SameSize) {
659 if (SrcSize != DstSize)
660 return emitError("Linking COMDATs named '" + ComdatName +
661 "': SameSize violated!");
662 LinkFromSrc = false;
663 } else {
664 llvm_unreachable("unknown selection kind");
665 }
666 break;
667 }
668 }
669
670 return false;
671}
672
673bool ModuleLinker::getComdatResult(const Comdat *SrcC,
674 Comdat::SelectionKind &Result,
675 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000676 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000677 StringRef ComdatName = SrcC->getName();
678 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
679 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000680
Rafael Espindolab16196a2014-08-11 17:07:34 +0000681 if (DstCI == ComdatSymTab.end()) {
682 // Use the comdat if it is only available in one of the modules.
683 LinkFromSrc = true;
684 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000685 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000686 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000687
688 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000689 Comdat::SelectionKind DSK = DstC->getSelectionKind();
690 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
691 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000692}
James Molloyf6f121e2013-05-28 15:17:05 +0000693
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000694bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
695 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000696 const GlobalValue &Src) {
Rafael Espindola778fcc72014-11-02 13:28:57 +0000697 // We always have to add Src if it has appending linkage.
698 if (Src.hasAppendingLinkage()) {
699 LinkFromSrc = true;
700 return false;
701 }
702
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000703 bool SrcIsDeclaration = Src.isDeclarationForLinker();
704 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000705
706 if (SrcIsDeclaration) {
707 // If Src is external or if both Src & Dest are external.. Just link the
708 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000709 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000710 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000711 LinkFromSrc = DestIsDeclaration;
712 return false;
713 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000714 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000715 LinkFromSrc = Dest.hasExternalWeakLinkage();
716 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000717 }
718
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000719 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000720 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000721 LinkFromSrc = true;
722 return false;
723 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000724
Rafael Espindola09106052014-09-09 15:59:12 +0000725 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000726 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
727 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000728 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000729 }
730
731 if (!Dest.hasCommonLinkage()) {
732 LinkFromSrc = false;
733 return false;
734 }
Rafael Espindola09106052014-09-09 15:59:12 +0000735
Rafael Espindola0ae225b2014-10-31 04:46:38 +0000736 // FIXME: Make datalayout mandatory and just use getDataLayout().
737 DataLayout DL(Dest.getParent());
738
Rafael Espindola09106052014-09-09 15:59:12 +0000739 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
740 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000741 LinkFromSrc = SrcSize > DestSize;
742 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000743 }
744
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000745 if (Src.isWeakForLinker()) {
746 assert(!Dest.hasExternalWeakLinkage());
747 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000748
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000749 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
750 LinkFromSrc = true;
751 return false;
752 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000753
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000754 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000755 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000756 }
757
758 if (Dest.isWeakForLinker()) {
759 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000760 LinkFromSrc = true;
761 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000762 }
763
764 assert(!Src.hasExternalWeakLinkage());
765 assert(!Dest.hasExternalWeakLinkage());
766 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
767 "Unexpected linkage type!");
768 return emitError("Linking globals named '" + Src.getName() +
769 "': symbol multiply defined!");
770}
771
Rafael Espindola18c89412014-10-27 02:35:46 +0000772/// Loop over all of the linked values to compute type mappings. For example,
773/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
774/// types 'Foo' but one got renamed when the module was loaded into the same
775/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000776void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000777 for (GlobalValue &SGV : SrcM->globals()) {
778 GlobalValue *DGV = getLinkedToGlobal(&SGV);
779 if (!DGV)
780 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000781
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000782 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
783 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000784 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000785 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000786
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000787 // Unify the element type of appending arrays.
788 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000789 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000790 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000791 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000792
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000793 for (GlobalValue &SGV : *SrcM) {
794 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
795 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000796 }
Bill Wendling7b464612012-02-27 22:34:19 +0000797
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000798 for (GlobalValue &SGV : SrcM->aliases()) {
799 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
800 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
801 }
802
Bill Wendlingd48b7782012-02-28 04:01:21 +0000803 // Incorporate types by name, scanning all the types in the source module.
804 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000805 // example. When the source module got loaded into the same LLVMContext, if
806 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000807 TypeFinder SrcStructTypes;
808 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000809 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
810 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000811
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000812 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
813 StructType *ST = SrcStructTypes[i];
814 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000815
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000816 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000817 size_t DotPos = ST->getName().rfind('.');
818 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000819 ST->getName().back() == '.' ||
820 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000821 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000822
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000823 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000824 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000825 // Don't use it if this actually came from the source module. They're in
826 // the same LLVMContext after all. Also don't use it unless the type is
827 // actually used in the destination module. This can happen in situations
828 // like this:
829 //
830 // Module A Module B
831 // -------- --------
832 // %Z = type { %A } %B = type { %C.1 }
833 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
834 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
835 // %C = type { i8* } %B.3 = type { %C.1 }
836 //
837 // When we link Module B with Module A, the '%B' in Module B is
838 // used. However, that would then use '%C.1'. But when we process '%C.1',
839 // we prefer to take the '%C' version. So we are then left with both
840 // '%C.1' and '%C' being used for the same types. This leads to some
841 // variables using one type and some using the other.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000842 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000843 TypeMap.addTypeMapping(DST, ST);
844 }
845
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000846 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000847 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000848 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000849}
850
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000851static void upgradeGlobalArray(GlobalVariable *GV) {
852 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
853 StructType *OldTy = cast<StructType>(ATy->getElementType());
854 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
855
856 // Get the upgraded 3 element type.
857 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
858 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
859 VoidPtrTy};
860 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
861
862 // Build new constants with a null third field filled in.
863 Constant *OldInitC = GV->getInitializer();
864 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
865 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
866 // Invalid initializer; give up.
867 return;
868 std::vector<Constant *> Initializers;
869 if (OldInit && OldInit->getNumOperands()) {
870 Value *Null = Constant::getNullValue(VoidPtrTy);
871 for (Use &U : OldInit->operands()) {
872 ConstantStruct *Init = cast<ConstantStruct>(U.get());
873 Initializers.push_back(ConstantStruct::get(
874 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
875 }
876 }
877 assert(Initializers.size() == ATy->getNumElements() &&
878 "Failed to copy all array elements");
879
880 // Replace the old GV with a new one.
881 ATy = ArrayType::get(NewTy, Initializers.size());
882 Constant *NewInit = ConstantArray::get(ATy, Initializers);
883 GlobalVariable *NewGV = new GlobalVariable(
884 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
885 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
886 GV->isExternallyInitialized());
887 NewGV->copyAttributesFrom(GV);
888 NewGV->takeName(GV);
889 assert(GV->use_empty() && "program cannot use initializer list");
890 GV->eraseFromParent();
891}
892
893void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
894 // Look for the global arrays.
895 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
896 if (!DstGV)
897 return;
898 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
899 if (!SrcGV)
900 return;
901
902 // Check if the types already match.
903 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
904 auto *SrcTy =
905 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
906 if (DstTy == SrcTy)
907 return;
908
909 // Grab the element types. We can only upgrade an array of a two-field
910 // struct. Only bother if the other one has three-fields.
911 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
912 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
913 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
914 upgradeGlobalArray(DstGV);
915 return;
916 }
917 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
918 upgradeGlobalArray(SrcGV);
919
920 // We can't upgrade any other differences.
921}
922
923void ModuleLinker::upgradeMismatchedGlobals() {
924 upgradeMismatchedGlobalArray("llvm.global_ctors");
925 upgradeMismatchedGlobalArray("llvm.global_dtors");
926}
927
Rafael Espindola18c89412014-10-27 02:35:46 +0000928/// If there were any appending global variables, link them together now.
929/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000930bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000931 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000932
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000933 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
934 return emitError("Linking globals named '" + SrcGV->getName() +
935 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000936
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000937 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
938 ArrayType *SrcTy =
939 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
940 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000941
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000942 // Check to see that they two arrays agree on type.
943 if (EltTy != SrcTy->getElementType())
944 return emitError("Appending variables with different element types!");
945 if (DstGV->isConstant() != SrcGV->isConstant())
946 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000947
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000948 if (DstGV->getAlignment() != SrcGV->getAlignment())
949 return emitError(
950 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000951
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000952 if (DstGV->getVisibility() != SrcGV->getVisibility())
953 return emitError(
954 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000955
956 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
957 return emitError(
958 "Appending variables with different unnamed_addr need to be linked!");
959
Rafael Espindola64c1e182014-06-03 02:41:57 +0000960 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000961 return emitError(
962 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000963
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000964 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
965 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000966
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000967 // Create the new global variable.
968 GlobalVariable *NG =
969 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000970 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000971 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000972 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000973
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000974 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000975 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000976
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000977 AppendingVarInfo AVI;
978 AVI.NewGV = NG;
979 AVI.DstInit = DstGV->getInitializer();
980 AVI.SrcInit = SrcGV->getInitializer();
981 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000982
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000983 // Replace any uses of the two global variables with uses of the new
984 // global.
985 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000986
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000987 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
988 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000989
Tanya Lattnercbb91402011-10-11 00:24:54 +0000990 // Track the source variable so we don't try to link it.
991 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000992
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000993 return false;
994}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000995
Rafael Espindola778fcc72014-11-02 13:28:57 +0000996bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000997 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000998
Rafael Espindola778fcc72014-11-02 13:28:57 +0000999 // Handle the ultra special appending linkage case first.
1000 if (DGV && DGV->hasAppendingLinkage())
1001 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
1002 cast<GlobalVariable>(SGV));
1003
1004 bool LinkFromSrc = true;
1005 Comdat *C = nullptr;
1006 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
1007 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
1008
David Majnemerdad0a642014-06-27 18:19:56 +00001009 if (const Comdat *SC = SGV->getComdat()) {
1010 Comdat::SelectionKind SK;
1011 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +00001012 C = DstM->getOrInsertComdat(SC->getName());
1013 C->setSelectionKind(SK);
1014 } else if (DGV) {
1015 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1016 return true;
1017 }
1018
1019 if (!LinkFromSrc) {
1020 // Track the source global so that we don't attempt to copy it over when
1021 // processing global initializers.
1022 DoNotLinkFromSource.insert(SGV);
1023
1024 if (DGV)
1025 // Make sure to remember this mapping.
1026 ValueMap[SGV] =
1027 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001028 }
1029
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001030 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001031 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1032 ? DGV->getVisibility()
1033 : Visibility;
1034 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1035 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001036
Rafael Espindola778fcc72014-11-02 13:28:57 +00001037 if (!LinkFromSrc && !DGV)
1038 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001039
Rafael Espindola778fcc72014-11-02 13:28:57 +00001040 GlobalValue *NewGV;
1041 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) {
1042 NewGV = linkGlobalVariableProto(SGVar, DGV, LinkFromSrc);
1043 if (!NewGV)
1044 return true;
1045 } else if (auto *SF = dyn_cast<Function>(SGV)) {
1046 NewGV = linkFunctionProto(SF, DGV, LinkFromSrc);
1047 } else {
1048 NewGV = linkGlobalAliasProto(cast<GlobalAlias>(SGV), DGV, LinkFromSrc);
1049 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001050
Rafael Espindola778fcc72014-11-02 13:28:57 +00001051 if (NewGV) {
1052 if (NewGV != DGV)
1053 copyGVAttributes(NewGV, SGV);
David Majnemerdad0a642014-06-27 18:19:56 +00001054
Rafael Espindola778fcc72014-11-02 13:28:57 +00001055 NewGV->setUnnamedAddr(HasUnnamedAddr);
1056 NewGV->setVisibility(Visibility);
1057
1058 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1059 if (C)
1060 NewGO->setComdat(C);
Chandler Carruthfd38af22014-11-02 09:10:31 +00001061 }
1062
Rafael Espindola778fcc72014-11-02 13:28:57 +00001063 // Make sure to remember this mapping.
1064 if (NewGV != DGV) {
1065 if (DGV) {
1066 DGV->replaceAllUsesWith(
1067 ConstantExpr::getBitCast(NewGV, DGV->getType()));
1068 DGV->eraseFromParent();
1069 }
1070 ValueMap[SGV] = NewGV;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001071 }
Reid Spencer361e5132004-11-12 20:37:43 +00001072 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001073
Rafael Espindola778fcc72014-11-02 13:28:57 +00001074 return false;
1075}
1076
1077/// Loop through the global variables in the src module and merge them into the
1078/// dest module.
1079GlobalValue *ModuleLinker::linkGlobalVariableProto(const GlobalVariable *SGVar,
1080 GlobalValue *DGV,
1081 bool LinkFromSrc) {
1082 unsigned Alignment = 0;
1083 bool ClearConstant = false;
1084
1085 if (DGV) {
1086 if (DGV->hasCommonLinkage() && SGVar->hasCommonLinkage())
1087 Alignment = std::max(SGVar->getAlignment(), DGV->getAlignment());
1088
1089 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
1090 if (!SGVar->isConstant() || (DGVar && !DGVar->isConstant()))
1091 ClearConstant = true;
1092 }
1093
1094 if (!LinkFromSrc) {
1095 if (auto *NewGVar = dyn_cast<GlobalVariable>(DGV)) {
1096 if (Alignment)
1097 NewGVar->setAlignment(Alignment);
1098 if (NewGVar->isDeclaration() && ClearConstant)
1099 NewGVar->setConstant(false);
1100 }
1101 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001102 }
1103
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001104 // No linking to be performed or linking from the source: simply create an
1105 // identical version of the symbol over in the dest module... the
1106 // initializer will be filled in later by LinkGlobalInits.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001107 GlobalVariable *NewDGV = new GlobalVariable(
1108 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
1109 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
1110 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
1111 SGVar->getType()->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001112
Rafael Espindola778fcc72014-11-02 13:28:57 +00001113 if (Alignment)
1114 NewDGV->setAlignment(Alignment);
David Majnemerdad0a642014-06-27 18:19:56 +00001115
Rafael Espindola778fcc72014-11-02 13:28:57 +00001116 return NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001117}
1118
Rafael Espindola18c89412014-10-27 02:35:46 +00001119/// Link the function in the source module into the destination module if
1120/// needed, setting up mapping information.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001121GlobalValue *ModuleLinker::linkFunctionProto(const Function *SF,
1122 GlobalValue *DGV,
1123 bool LinkFromSrc) {
1124 if (!LinkFromSrc)
1125 return DGV;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001126
James Molloyf6f121e2013-05-28 15:17:05 +00001127 // If the function is to be lazily linked, don't create it just yet.
1128 // The ValueMaterializerTy will deal with creating it if it's used.
1129 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1130 SF->hasAvailableExternallyLinkage())) {
1131 DoNotLinkFromSource.insert(SF);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001132 return nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00001133 }
1134
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001135 // If there is no linkage to be performed or we are linking from the source,
1136 // bring SF over.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001137 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
1138 SF->getName(), DstM);
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001139}
1140
Rafael Espindola18c89412014-10-27 02:35:46 +00001141/// Set up prototypes for any aliases that come over from the source module.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001142GlobalValue *ModuleLinker::linkGlobalAliasProto(const GlobalAlias *SGA,
1143 GlobalValue *DGV,
1144 bool LinkFromSrc) {
1145 if (!LinkFromSrc)
1146 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001147
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001148 // If there is no linkage to be performed or we're linking from the source,
1149 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001150 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindola778fcc72014-11-02 13:28:57 +00001151 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1152 SGA->getLinkage(), SGA->getName(), DstM);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001153}
1154
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001155static void getArrayElements(const Constant *C,
1156 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001157 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1158
1159 for (unsigned i = 0; i != NumElements; ++i)
1160 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001161}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001162
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001163void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1164 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001165 SmallVector<Constant *, 16> DstElements;
1166 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001167
Rafael Espindolad31dc042014-09-05 21:27:52 +00001168 SmallVector<Constant *, 16> SrcElements;
1169 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001170
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001171 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001172
1173 StringRef Name = AVI.NewGV->getName();
1174 bool IsNewStructor =
1175 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1176 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1177
1178 for (auto *V : SrcElements) {
1179 if (IsNewStructor) {
1180 Constant *Key = V->getAggregateElement(2);
1181 if (DoNotLinkFromSource.count(Key))
1182 continue;
1183 }
1184 DstElements.push_back(
1185 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1186 }
1187 if (IsNewStructor) {
1188 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1189 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1190 }
1191
1192 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001193}
1194
Rafael Espindola18c89412014-10-27 02:35:46 +00001195/// Update the initializers in the Dest module now that all globals that may be
1196/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001197void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001198 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001199 for (Module::const_global_iterator I = SrcM->global_begin(),
1200 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001201
Tanya Lattnercbb91402011-10-11 00:24:54 +00001202 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001203 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1204
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001205 // Grab destination global variable.
1206 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1207 // Figure out what the initializer looks like in the dest module.
1208 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001209 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001210 }
Reid Spencer361e5132004-11-12 20:37:43 +00001211}
1212
Rafael Espindola18c89412014-10-27 02:35:46 +00001213/// Copy the source function over into the dest function and fix up references
1214/// to values. At this point we know that Dest is an external function, and
1215/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001216void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1217 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001218
Chris Lattner7391dde2004-11-16 17:12:38 +00001219 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001220 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001221 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001222 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001223 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001224
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001225 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001226 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001227 }
1228
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001229 // Splice the body of the source function into the dest function.
1230 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001231
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001232 // At this point, all of the instructions and values of the function are now
1233 // copied over. The only problem is that they are still referencing values in
1234 // the Source function as operands. Loop through all of the operands of the
1235 // functions and patch them up to point to the local versions.
1236 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1237 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1238 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
1239 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001240
Chris Lattner7391dde2004-11-16 17:12:38 +00001241 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001242 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1243 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001244 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001245
Reid Spencer361e5132004-11-12 20:37:43 +00001246}
1247
Rafael Espindola18c89412014-10-27 02:35:46 +00001248/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001249void ModuleLinker::linkAliasBodies() {
1250 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001251 I != E; ++I) {
1252 if (DoNotLinkFromSource.count(I))
1253 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001254 if (Constant *Aliasee = I->getAliasee()) {
1255 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001256 Constant *Val =
1257 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001258 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001259 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001260 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001261}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001262
Rafael Espindola18c89412014-10-27 02:35:46 +00001263/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001264void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001265 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001266 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1267 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001268 // Don't link module flags here. Do them separately.
1269 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001270 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1271 // Add Src elements into Dest node.
1272 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1273 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001274 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001275 }
1276}
Bill Wendling66f02412012-02-11 11:38:06 +00001277
Rafael Espindola18c89412014-10-27 02:35:46 +00001278/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001279bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001280 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001281 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1282 if (!SrcModFlags) return false;
1283
Bill Wendling66f02412012-02-11 11:38:06 +00001284 // If the destination module doesn't have module flags yet, then just copy
1285 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001286 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001287 if (DstModFlags->getNumOperands() == 0) {
1288 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1289 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1290
1291 return false;
1292 }
1293
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001294 // First build a map of the existing module flags and requirements.
1295 DenseMap<MDString*, MDNode*> Flags;
1296 SmallSetVector<MDNode*, 16> Requirements;
1297 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001298 MDNode *Op = DstModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001299 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1300 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001301
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001302 if (Behavior->getZExtValue() == Module::Require) {
1303 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1304 } else {
1305 Flags[ID] = Op;
1306 }
Bill Wendling66f02412012-02-11 11:38:06 +00001307 }
1308
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001309 // Merge in the flags from the source module, and also collect its set of
1310 // requirements.
1311 bool HasErr = false;
1312 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001313 MDNode *SrcOp = SrcModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001314 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1315 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1316 MDNode *DstOp = Flags.lookup(ID);
1317 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001318
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001319 // If this is a requirement, add it and continue.
1320 if (SrcBehaviorValue == Module::Require) {
1321 // If the destination module does not already have this requirement, add
1322 // it.
1323 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1324 DstModFlags->addOperand(SrcOp);
1325 }
1326 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001327 }
1328
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001329 // If there is no existing flag with this ID, just add it.
1330 if (!DstOp) {
1331 Flags[ID] = SrcOp;
1332 DstModFlags->addOperand(SrcOp);
1333 continue;
1334 }
1335
1336 // Otherwise, perform a merge.
1337 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1338 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1339
1340 // If either flag has override behavior, handle it first.
1341 if (DstBehaviorValue == Module::Override) {
1342 // Diagnose inconsistent flags which both have override behavior.
1343 if (SrcBehaviorValue == Module::Override &&
1344 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1345 HasErr |= emitError("linking module flags '" + ID->getString() +
1346 "': IDs have conflicting override values");
1347 }
1348 continue;
1349 } else if (SrcBehaviorValue == Module::Override) {
1350 // Update the destination flag to that of the source.
1351 DstOp->replaceOperandWith(0, SrcBehavior);
1352 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1353 continue;
1354 }
1355
1356 // Diagnose inconsistent merge behavior types.
1357 if (SrcBehaviorValue != DstBehaviorValue) {
1358 HasErr |= emitError("linking module flags '" + ID->getString() +
1359 "': IDs have conflicting behaviors");
1360 continue;
1361 }
1362
1363 // Perform the merge for standard behavior types.
1364 switch (SrcBehaviorValue) {
1365 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001366 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001367 case Module::Error: {
1368 // Emit an error if the values differ.
1369 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1370 HasErr |= emitError("linking module flags '" + ID->getString() +
1371 "': IDs have conflicting values");
1372 }
1373 continue;
1374 }
1375 case Module::Warning: {
1376 // Emit a warning if the values differ.
1377 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001378 emitWarning("linking module flags '" + ID->getString() +
1379 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001380 }
1381 continue;
1382 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001383 case Module::Append: {
1384 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1385 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1386 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1387 Value **VP, **Values = VP = new Value*[NumOps];
1388 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1389 *VP = DstValue->getOperand(i);
1390 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1391 *VP = SrcValue->getOperand(i);
1392 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1393 ArrayRef<Value*>(Values,
1394 NumOps)));
1395 delete[] Values;
1396 break;
1397 }
1398 case Module::AppendUnique: {
1399 SmallSetVector<Value*, 16> Elts;
1400 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1401 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1402 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1403 Elts.insert(DstValue->getOperand(i));
1404 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1405 Elts.insert(SrcValue->getOperand(i));
1406 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1407 ArrayRef<Value*>(Elts.begin(),
1408 Elts.end())));
1409 break;
1410 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001411 }
Bill Wendling66f02412012-02-11 11:38:06 +00001412 }
1413
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001414 // Check all of the requirements.
1415 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1416 MDNode *Requirement = Requirements[I];
1417 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1418 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001419
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001420 MDNode *Op = Flags[Flag];
1421 if (!Op || Op->getOperand(2) != ReqValue) {
1422 HasErr |= emitError("linking module flags '" + Flag->getString() +
1423 "': does not have the required value");
1424 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001425 }
1426 }
1427
1428 return HasErr;
1429}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001430
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001431bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001432 assert(DstM && "Null destination module");
1433 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001434
1435 // Inherit the target data from the source module if the destination module
1436 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001437 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001438 DstM->setDataLayout(SrcM->getDataLayout());
1439
1440 // Copy the target triple from the source to dest if the dest's is empty.
1441 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1442 DstM->setTargetTriple(SrcM->getTargetTriple());
1443
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001444 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001445 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001446 emitWarning("Linking two modules of different data layouts: '" +
1447 SrcM->getModuleIdentifier() + "' is '" +
1448 SrcM->getDataLayoutStr() + "' whereas '" +
1449 DstM->getModuleIdentifier() + "' is '" +
1450 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001451 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001452 if (!SrcM->getTargetTriple().empty() &&
1453 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001454 emitWarning("Linking two modules of different target triples: " +
1455 SrcM->getModuleIdentifier() + "' is '" +
1456 SrcM->getTargetTriple() + "' whereas '" +
1457 DstM->getModuleIdentifier() + "' is '" +
1458 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001459 }
1460
1461 // Append the module inline asm string.
1462 if (!SrcM->getModuleInlineAsm().empty()) {
1463 if (DstM->getModuleInlineAsm().empty())
1464 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1465 else
1466 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1467 SrcM->getModuleInlineAsm());
1468 }
1469
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001470 // Loop over all of the linked values to compute type mappings.
1471 computeTypeMapping();
1472
David Majnemerdad0a642014-06-27 18:19:56 +00001473 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001474 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001475 const Comdat &C = SMEC.getValue();
1476 if (ComdatsChosen.count(&C))
1477 continue;
1478 Comdat::SelectionKind SK;
1479 bool LinkFromSrc;
1480 if (getComdatResult(&C, SK, LinkFromSrc))
1481 return true;
1482 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1483 }
1484
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001485 // Upgrade mismatched global arrays.
1486 upgradeMismatchedGlobals();
1487
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001488 // Insert all of the globals in src into the DstM module... without linking
1489 // initializers (which could refer to functions not yet mapped over).
1490 for (Module::global_iterator I = SrcM->global_begin(),
1491 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001492 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001493 return true;
1494
1495 // Link the functions together between the two modules, without doing function
1496 // bodies... this just adds external function prototypes to the DstM
1497 // function... We do this so that when we begin processing function bodies,
1498 // all of the global values that may be referenced are available in our
1499 // ValueMap.
1500 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001501 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001502 return true;
1503
1504 // If there were any aliases, link them now.
1505 for (Module::alias_iterator I = SrcM->alias_begin(),
1506 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001507 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001508 return true;
1509
1510 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1511 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001512
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001513 // Link in the function bodies that are defined in the source module into
1514 // DstM.
1515 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001516 // Skip if not linking from source.
1517 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001518
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001519 Function *DF = cast<Function>(ValueMap[SF]);
1520 if (SF->hasPrefixData()) {
1521 // Link in the prefix data.
1522 DF->setPrefixData(MapValue(
1523 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1524 }
1525
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001526 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001527 if (std::error_code EC = SF->materialize())
1528 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001529
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001530 // Skip if no body (function is external).
1531 if (SF->isDeclaration())
1532 continue;
1533
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001534 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001535 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001536 }
1537
1538 // Resolve all uses of aliases with aliasees.
1539 linkAliasBodies();
1540
Bill Wendling66f02412012-02-11 11:38:06 +00001541 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001542 // after linking GlobalValues so that MDNodes that reference GlobalValues
1543 // are properly remapped.
1544 linkNamedMDNodes();
1545
Bill Wendling66f02412012-02-11 11:38:06 +00001546 // Merge the module flags into the DstM module.
1547 if (linkModuleFlagsMetadata())
1548 return true;
1549
Bill Wendling91686d62014-01-16 06:29:36 +00001550 // Update the initializers in the DstM module now that all globals that may
1551 // be referenced are in DstM.
1552 linkGlobalInits();
1553
Tanya Lattner0a48b872011-11-02 00:24:56 +00001554 // Process vector of lazily linked in functions.
1555 bool LinkedInAnyFunctions;
1556 do {
1557 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001558
Bill Wendlingfa2287822013-03-27 17:54:41 +00001559 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001560 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001561 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001562 if (!SF)
1563 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001564
James Molloyf6f121e2013-05-28 15:17:05 +00001565 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001566 if (SF->hasPrefixData()) {
1567 // Link in the prefix data.
1568 DF->setPrefixData(MapValue(SF->getPrefixData(),
1569 ValueMap,
1570 RF_None,
1571 &TypeMap,
1572 &ValMaterializer));
1573 }
James Molloyf6f121e2013-05-28 15:17:05 +00001574
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001575 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001576 if (std::error_code EC = SF->materialize())
1577 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001578
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001579 // Skip if no body (function is external).
1580 if (SF->isDeclaration())
1581 continue;
1582
James Molloyf6f121e2013-05-28 15:17:05 +00001583 // Erase from vector *before* the function body is linked - linkFunctionBody could
1584 // invalidate I.
1585 LazilyLinkFunctions.erase(I);
1586
1587 // Link in function body.
1588 linkFunctionBody(DF, SF);
1589 SF->Dematerialize();
1590
1591 // Set flag to indicate we may have more functions to lazily link in
1592 // since we linked in a function.
1593 LinkedInAnyFunctions = true;
1594 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001595 }
1596 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001597
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001598 // Now that all of the types from the source are used, resolve any structs
1599 // copied over to the dest that didn't exist there.
1600 TypeMap.linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001601
Anton Korobeynikov26098882008-03-05 23:21:39 +00001602 return false;
1603}
Reid Spencer361e5132004-11-12 20:37:43 +00001604
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001605void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1606 this->Composite = M;
1607 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001608
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001609 TypeFinder StructTypes;
1610 StructTypes.run(*M, true);
1611 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
1612}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001613
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001614Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1615 init(M, DiagnosticHandler);
1616}
1617
1618Linker::Linker(Module *M) {
1619 init(M, [this](const DiagnosticInfo &DI) {
1620 Composite->getContext().diagnose(DI);
1621 });
1622}
1623
Rafael Espindola3df61b72013-05-04 03:48:37 +00001624Linker::~Linker() {
1625}
1626
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001627void Linker::deleteModule() {
1628 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001629 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001630}
1631
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001632bool Linker::linkInModule(Module *Src) {
1633 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1634 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001635 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001636}
1637
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001638//===----------------------------------------------------------------------===//
1639// LinkModules entrypoint.
1640//===----------------------------------------------------------------------===//
1641
Rafael Espindola18c89412014-10-27 02:35:46 +00001642/// This function links two modules together, with the resulting Dest module
1643/// modified to be the composite of the two input modules. If an error occurs,
1644/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1645/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1646/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001647bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001648 DiagnosticHandlerFunction DiagnosticHandler) {
1649 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001650 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001651}
1652
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001653bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001654 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001655 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001656}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001657
1658//===----------------------------------------------------------------------===//
1659// C API.
1660//===----------------------------------------------------------------------===//
1661
1662LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1663 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001664 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001665 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001666 raw_string_ostream Stream(Message);
1667 DiagnosticPrinterRawOStream DP(Stream);
1668
1669 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001670 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001671
1672 if (OutMessages && Result)
1673 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001674 return Result;
1675}