blob: 037b1b86453c6de0f852109e5b05b2de6c8d5024 [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 {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000367class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000368
Rafael Espindolac84f6082014-11-25 06:11:24 +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.
372class ValueMaterializerTy : public ValueMaterializer {
373 TypeMapTy &TypeMap;
374 Module *DstM;
375 std::vector<Function *> &LazilyLinkFunctions;
James Molloyf6f121e2013-05-28 15:17:05 +0000376
Rafael Espindolac84f6082014-11-25 06:11:24 +0000377public:
378 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
379 std::vector<Function *> &LazilyLinkFunctions)
380 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
381 LazilyLinkFunctions(LazilyLinkFunctions) {}
382
383 Value *materializeValueFor(Value *V) override;
384};
385
386class LinkDiagnosticInfo : public DiagnosticInfo {
387 const Twine &Msg;
388
389public:
390 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
391 void print(DiagnosticPrinter &DP) const override;
392};
393LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
394 const Twine &Msg)
395 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
396void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
397
398/// This is an implementation class for the LinkModules function, which is the
399/// entrypoint for this file.
400class ModuleLinker {
401 Module *DstM, *SrcM;
402
403 TypeMapTy TypeMap;
404 ValueMaterializerTy ValMaterializer;
405
406 /// 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.
410 ValueToValueMapTy ValueMap;
411
412 struct AppendingVarInfo {
413 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.
James Molloyf6f121e2013-05-28 15:17:05 +0000416 };
417
Rafael Espindolac84f6082014-11-25 06:11:24 +0000418 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000419
Rafael Espindolac84f6082014-11-25 06:11:24 +0000420 // Set of items not to link in from source.
421 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000422
Rafael Espindolac84f6082014-11-25 06:11:24 +0000423 // Vector of functions to lazily link in.
424 std::vector<Function *> LazilyLinkFunctions;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000425
Rafael Espindolac84f6082014-11-25 06:11:24 +0000426 Linker::DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000427
Rafael Espindolac84f6082014-11-25 06:11:24 +0000428public:
429 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM,
430 Linker::DiagnosticHandlerFunction DiagnosticHandler)
431 : DstM(dstM), SrcM(srcM), TypeMap(Set),
432 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions),
433 DiagnosticHandler(DiagnosticHandler) {}
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000434
Rafael Espindolac84f6082014-11-25 06:11:24 +0000435 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000436
Rafael Espindolac84f6082014-11-25 06:11:24 +0000437private:
438 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
439 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000440
Rafael Espindolac84f6082014-11-25 06:11:24 +0000441 /// Helper method for setting a message and returning an error code.
442 bool emitError(const Twine &Message) {
443 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
444 return true;
445 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000446
Rafael Espindolac84f6082014-11-25 06:11:24 +0000447 void emitWarning(const Twine &Message) {
448 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
449 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000450
Rafael Espindolac84f6082014-11-25 06:11:24 +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);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000462
Rafael Espindolac84f6082014-11-25 06:11:24 +0000463 /// Given a global in the source module, return the global in the
464 /// destination module that is being linked to, if any.
465 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
466 // 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())
469 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000470
Rafael Espindolac84f6082014-11-25 06:11:24 +0000471 // Otherwise see if we have a match in the destination module's symtab.
472 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
473 if (!DGV)
474 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000475
Rafael Espindolac84f6082014-11-25 06:11:24 +0000476 // If we found a global with the same name in the dest module, but it has
477 // internal linkage, we are really not doing any linkage here.
478 if (DGV->hasLocalLinkage())
479 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000480
Rafael Espindolac84f6082014-11-25 06:11:24 +0000481 // Otherwise, we do in fact link to the destination global.
482 return DGV;
483 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000484
Rafael Espindolac84f6082014-11-25 06:11:24 +0000485 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000486
Rafael Espindolac84f6082014-11-25 06:11:24 +0000487 void upgradeMismatchedGlobalArray(StringRef Name);
488 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000489
Rafael Espindolac84f6082014-11-25 06:11:24 +0000490 bool linkAppendingVarProto(GlobalVariable *DstGV,
491 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000492
Rafael Espindolac84f6082014-11-25 06:11:24 +0000493 bool linkGlobalValueProto(GlobalValue *GV);
494 GlobalValue *linkGlobalVariableProto(const GlobalVariable *SGVar,
495 GlobalValue *DGV, bool LinkFromSrc);
496 GlobalValue *linkFunctionProto(const Function *SF, GlobalValue *DGV,
497 bool LinkFromSrc);
498 GlobalValue *linkGlobalAliasProto(const GlobalAlias *SGA, GlobalValue *DGV,
499 bool LinkFromSrc);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000500
Rafael Espindolac84f6082014-11-25 06:11:24 +0000501 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000502
Rafael Espindolac84f6082014-11-25 06:11:24 +0000503 void linkAppendingVarInit(const AppendingVarInfo &AVI);
504 void linkGlobalInits();
505 void linkFunctionBody(Function *Dst, Function *Src);
506 void linkAliasBodies();
507 void linkNamedMDNodes();
508};
Bill Wendlingd48b7782012-02-28 04:01:21 +0000509}
510
Rafael Espindola18c89412014-10-27 02:35:46 +0000511/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
512/// table. This is good for all clients except for us. Go through the trouble
513/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000514static void forceRenaming(GlobalValue *GV, StringRef Name) {
515 // If the global doesn't force its name or if it already has the right name,
516 // there is nothing for us to do.
517 if (GV->hasLocalLinkage() || GV->getName() == Name)
518 return;
519
520 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000521
522 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000523 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000524 GV->takeName(ConflictGV);
525 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000526 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000527 } else {
528 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000529 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000530}
Reid Spencer90246aa2007-02-04 04:29:21 +0000531
Rafael Espindola18c89412014-10-27 02:35:46 +0000532/// copy additional attributes (those not needed to construct a GlobalValue)
533/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000534static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000535 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000536 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000537 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000538 if (DestGO)
539 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000540
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000541 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000542
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000543 if (DestGO)
544 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000545
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000546 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000547}
548
Rafael Espindola23f8d642012-01-05 23:02:01 +0000549static bool isLessConstraining(GlobalValue::VisibilityTypes a,
550 GlobalValue::VisibilityTypes b) {
551 if (a == GlobalValue::HiddenVisibility)
552 return false;
553 if (b == GlobalValue::HiddenVisibility)
554 return true;
555 if (a == GlobalValue::ProtectedVisibility)
556 return false;
557 if (b == GlobalValue::ProtectedVisibility)
558 return true;
559 return false;
560}
561
James Molloyf6f121e2013-05-28 15:17:05 +0000562Value *ValueMaterializerTy::materializeValueFor(Value *V) {
563 Function *SF = dyn_cast<Function>(V);
564 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000565 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000566
567 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
568 SF->getLinkage(), SF->getName(), DstM);
569 copyGVAttributes(DF, SF);
570
Rafael Espindola3931c282014-08-15 20:17:08 +0000571 if (Comdat *SC = SF->getComdat()) {
572 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
573 DF->setComdat(DC);
574 }
575
James Molloyf6f121e2013-05-28 15:17:05 +0000576 LazilyLinkFunctions.push_back(SF);
577 return DF;
578}
579
David Majnemerdad0a642014-06-27 18:19:56 +0000580bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
581 const GlobalVariable *&GVar) {
582 const GlobalValue *GVal = M->getNamedValue(ComdatName);
583 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
584 GVal = GA->getBaseObject();
585 if (!GVal)
586 // We cannot resolve the size of the aliasee yet.
587 return emitError("Linking COMDATs named '" + ComdatName +
588 "': COMDAT key involves incomputable alias size.");
589 }
590
591 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
592 if (!GVar)
593 return emitError(
594 "Linking COMDATs named '" + ComdatName +
595 "': GlobalVariable required for data dependent selection!");
596
597 return false;
598}
599
600bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
601 Comdat::SelectionKind Src,
602 Comdat::SelectionKind Dst,
603 Comdat::SelectionKind &Result,
604 bool &LinkFromSrc) {
605 // The ability to mix Comdat::SelectionKind::Any with
606 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
607 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
608 Dst == Comdat::SelectionKind::Largest;
609 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
610 Src == Comdat::SelectionKind::Largest;
611 if (DstAnyOrLargest && SrcAnyOrLargest) {
612 if (Dst == Comdat::SelectionKind::Largest ||
613 Src == Comdat::SelectionKind::Largest)
614 Result = Comdat::SelectionKind::Largest;
615 else
616 Result = Comdat::SelectionKind::Any;
617 } else if (Src == Dst) {
618 Result = Dst;
619 } else {
620 return emitError("Linking COMDATs named '" + ComdatName +
621 "': invalid selection kinds!");
622 }
623
624 switch (Result) {
625 case Comdat::SelectionKind::Any:
626 // Go with Dst.
627 LinkFromSrc = false;
628 break;
629 case Comdat::SelectionKind::NoDuplicates:
630 return emitError("Linking COMDATs named '" + ComdatName +
631 "': noduplicates has been violated!");
632 case Comdat::SelectionKind::ExactMatch:
633 case Comdat::SelectionKind::Largest:
634 case Comdat::SelectionKind::SameSize: {
635 const GlobalVariable *DstGV;
636 const GlobalVariable *SrcGV;
637 if (getComdatLeader(DstM, ComdatName, DstGV) ||
638 getComdatLeader(SrcM, ComdatName, SrcGV))
639 return true;
640
641 const DataLayout *DstDL = DstM->getDataLayout();
642 const DataLayout *SrcDL = SrcM->getDataLayout();
643 if (!DstDL || !SrcDL) {
644 return emitError(
645 "Linking COMDATs named '" + ComdatName +
646 "': can't do size dependent selection without DataLayout!");
647 }
648 uint64_t DstSize =
649 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
650 uint64_t SrcSize =
651 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
652 if (Result == Comdat::SelectionKind::ExactMatch) {
653 if (SrcGV->getInitializer() != DstGV->getInitializer())
654 return emitError("Linking COMDATs named '" + ComdatName +
655 "': ExactMatch violated!");
656 LinkFromSrc = false;
657 } else if (Result == Comdat::SelectionKind::Largest) {
658 LinkFromSrc = SrcSize > DstSize;
659 } else if (Result == Comdat::SelectionKind::SameSize) {
660 if (SrcSize != DstSize)
661 return emitError("Linking COMDATs named '" + ComdatName +
662 "': SameSize violated!");
663 LinkFromSrc = false;
664 } else {
665 llvm_unreachable("unknown selection kind");
666 }
667 break;
668 }
669 }
670
671 return false;
672}
673
674bool ModuleLinker::getComdatResult(const Comdat *SrcC,
675 Comdat::SelectionKind &Result,
676 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000677 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000678 StringRef ComdatName = SrcC->getName();
679 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
680 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000681
Rafael Espindolab16196a2014-08-11 17:07:34 +0000682 if (DstCI == ComdatSymTab.end()) {
683 // Use the comdat if it is only available in one of the modules.
684 LinkFromSrc = true;
685 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000686 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000687 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000688
689 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000690 Comdat::SelectionKind DSK = DstC->getSelectionKind();
691 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
692 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000693}
James Molloyf6f121e2013-05-28 15:17:05 +0000694
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000695bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
696 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000697 const GlobalValue &Src) {
Rafael Espindola778fcc72014-11-02 13:28:57 +0000698 // We always have to add Src if it has appending linkage.
699 if (Src.hasAppendingLinkage()) {
700 LinkFromSrc = true;
701 return false;
702 }
703
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000704 bool SrcIsDeclaration = Src.isDeclarationForLinker();
705 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000706
707 if (SrcIsDeclaration) {
708 // If Src is external or if both Src & Dest are external.. Just link the
709 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000710 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000711 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000712 LinkFromSrc = DestIsDeclaration;
713 return false;
714 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000715 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000716 LinkFromSrc = Dest.hasExternalWeakLinkage();
717 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000718 }
719
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000720 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000721 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000722 LinkFromSrc = true;
723 return false;
724 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000725
Rafael Espindola09106052014-09-09 15:59:12 +0000726 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000727 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
728 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000729 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000730 }
731
732 if (!Dest.hasCommonLinkage()) {
733 LinkFromSrc = false;
734 return false;
735 }
Rafael Espindola09106052014-09-09 15:59:12 +0000736
Rafael Espindola0ae225b2014-10-31 04:46:38 +0000737 // FIXME: Make datalayout mandatory and just use getDataLayout().
738 DataLayout DL(Dest.getParent());
739
Rafael Espindola09106052014-09-09 15:59:12 +0000740 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
741 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000742 LinkFromSrc = SrcSize > DestSize;
743 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000744 }
745
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000746 if (Src.isWeakForLinker()) {
747 assert(!Dest.hasExternalWeakLinkage());
748 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000749
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000750 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
751 LinkFromSrc = true;
752 return false;
753 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000754
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000755 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000756 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000757 }
758
759 if (Dest.isWeakForLinker()) {
760 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000761 LinkFromSrc = true;
762 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000763 }
764
765 assert(!Src.hasExternalWeakLinkage());
766 assert(!Dest.hasExternalWeakLinkage());
767 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
768 "Unexpected linkage type!");
769 return emitError("Linking globals named '" + Src.getName() +
770 "': symbol multiply defined!");
771}
772
Rafael Espindola18c89412014-10-27 02:35:46 +0000773/// Loop over all of the linked values to compute type mappings. For example,
774/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
775/// types 'Foo' but one got renamed when the module was loaded into the same
776/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000777void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000778 for (GlobalValue &SGV : SrcM->globals()) {
779 GlobalValue *DGV = getLinkedToGlobal(&SGV);
780 if (!DGV)
781 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000782
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000783 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
784 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000785 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000786 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000787
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000788 // Unify the element type of appending arrays.
789 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000790 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000791 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000792 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000793
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000794 for (GlobalValue &SGV : *SrcM) {
795 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
796 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000797 }
Bill Wendling7b464612012-02-27 22:34:19 +0000798
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000799 for (GlobalValue &SGV : SrcM->aliases()) {
800 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
801 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
802 }
803
Bill Wendlingd48b7782012-02-28 04:01:21 +0000804 // Incorporate types by name, scanning all the types in the source module.
805 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000806 // example. When the source module got loaded into the same LLVMContext, if
807 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000808 TypeFinder SrcStructTypes;
809 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000810 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
811 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000812
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000813 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
814 StructType *ST = SrcStructTypes[i];
815 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000816
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000817 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000818 size_t DotPos = ST->getName().rfind('.');
819 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000820 ST->getName().back() == '.' ||
821 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000822 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000823
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000824 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000825 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000826 // Don't use it if this actually came from the source module. They're in
827 // the same LLVMContext after all. Also don't use it unless the type is
828 // actually used in the destination module. This can happen in situations
829 // like this:
830 //
831 // Module A Module B
832 // -------- --------
833 // %Z = type { %A } %B = type { %C.1 }
834 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
835 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
836 // %C = type { i8* } %B.3 = type { %C.1 }
837 //
838 // When we link Module B with Module A, the '%B' in Module B is
839 // used. However, that would then use '%C.1'. But when we process '%C.1',
840 // we prefer to take the '%C' version. So we are then left with both
841 // '%C.1' and '%C' being used for the same types. This leads to some
842 // variables using one type and some using the other.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000843 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000844 TypeMap.addTypeMapping(DST, ST);
845 }
846
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000847 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000848 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000849 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000850}
851
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000852static void upgradeGlobalArray(GlobalVariable *GV) {
853 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
854 StructType *OldTy = cast<StructType>(ATy->getElementType());
855 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
856
857 // Get the upgraded 3 element type.
858 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
859 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
860 VoidPtrTy};
861 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
862
863 // Build new constants with a null third field filled in.
864 Constant *OldInitC = GV->getInitializer();
865 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
866 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
867 // Invalid initializer; give up.
868 return;
869 std::vector<Constant *> Initializers;
870 if (OldInit && OldInit->getNumOperands()) {
871 Value *Null = Constant::getNullValue(VoidPtrTy);
872 for (Use &U : OldInit->operands()) {
873 ConstantStruct *Init = cast<ConstantStruct>(U.get());
874 Initializers.push_back(ConstantStruct::get(
875 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
876 }
877 }
878 assert(Initializers.size() == ATy->getNumElements() &&
879 "Failed to copy all array elements");
880
881 // Replace the old GV with a new one.
882 ATy = ArrayType::get(NewTy, Initializers.size());
883 Constant *NewInit = ConstantArray::get(ATy, Initializers);
884 GlobalVariable *NewGV = new GlobalVariable(
885 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
886 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
887 GV->isExternallyInitialized());
888 NewGV->copyAttributesFrom(GV);
889 NewGV->takeName(GV);
890 assert(GV->use_empty() && "program cannot use initializer list");
891 GV->eraseFromParent();
892}
893
894void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
895 // Look for the global arrays.
896 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
897 if (!DstGV)
898 return;
899 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
900 if (!SrcGV)
901 return;
902
903 // Check if the types already match.
904 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
905 auto *SrcTy =
906 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
907 if (DstTy == SrcTy)
908 return;
909
910 // Grab the element types. We can only upgrade an array of a two-field
911 // struct. Only bother if the other one has three-fields.
912 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
913 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
914 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
915 upgradeGlobalArray(DstGV);
916 return;
917 }
918 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
919 upgradeGlobalArray(SrcGV);
920
921 // We can't upgrade any other differences.
922}
923
924void ModuleLinker::upgradeMismatchedGlobals() {
925 upgradeMismatchedGlobalArray("llvm.global_ctors");
926 upgradeMismatchedGlobalArray("llvm.global_dtors");
927}
928
Rafael Espindola18c89412014-10-27 02:35:46 +0000929/// If there were any appending global variables, link them together now.
930/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000931bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000932 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000933
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000934 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
935 return emitError("Linking globals named '" + SrcGV->getName() +
936 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000937
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000938 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
939 ArrayType *SrcTy =
940 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
941 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000942
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000943 // Check to see that they two arrays agree on type.
944 if (EltTy != SrcTy->getElementType())
945 return emitError("Appending variables with different element types!");
946 if (DstGV->isConstant() != SrcGV->isConstant())
947 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000948
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000949 if (DstGV->getAlignment() != SrcGV->getAlignment())
950 return emitError(
951 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000952
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000953 if (DstGV->getVisibility() != SrcGV->getVisibility())
954 return emitError(
955 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000956
957 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
958 return emitError(
959 "Appending variables with different unnamed_addr need to be linked!");
960
Rafael Espindola64c1e182014-06-03 02:41:57 +0000961 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000962 return emitError(
963 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000964
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000965 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
966 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000967
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000968 // Create the new global variable.
969 GlobalVariable *NG =
970 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000971 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000972 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000973 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000974
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000975 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000976 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000977
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000978 AppendingVarInfo AVI;
979 AVI.NewGV = NG;
980 AVI.DstInit = DstGV->getInitializer();
981 AVI.SrcInit = SrcGV->getInitializer();
982 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000983
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000984 // Replace any uses of the two global variables with uses of the new
985 // global.
986 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000987
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000988 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
989 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000990
Tanya Lattnercbb91402011-10-11 00:24:54 +0000991 // Track the source variable so we don't try to link it.
992 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000993
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000994 return false;
995}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000996
Rafael Espindola778fcc72014-11-02 13:28:57 +0000997bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000998 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000999
Rafael Espindola778fcc72014-11-02 13:28:57 +00001000 // Handle the ultra special appending linkage case first.
1001 if (DGV && DGV->hasAppendingLinkage())
1002 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
1003 cast<GlobalVariable>(SGV));
1004
1005 bool LinkFromSrc = true;
1006 Comdat *C = nullptr;
1007 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
1008 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
1009
David Majnemerdad0a642014-06-27 18:19:56 +00001010 if (const Comdat *SC = SGV->getComdat()) {
1011 Comdat::SelectionKind SK;
1012 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +00001013 C = DstM->getOrInsertComdat(SC->getName());
1014 C->setSelectionKind(SK);
1015 } else if (DGV) {
1016 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1017 return true;
1018 }
1019
1020 if (!LinkFromSrc) {
1021 // Track the source global so that we don't attempt to copy it over when
1022 // processing global initializers.
1023 DoNotLinkFromSource.insert(SGV);
1024
1025 if (DGV)
1026 // Make sure to remember this mapping.
1027 ValueMap[SGV] =
1028 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001029 }
1030
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001031 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001032 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1033 ? DGV->getVisibility()
1034 : Visibility;
1035 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1036 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001037
Rafael Espindola778fcc72014-11-02 13:28:57 +00001038 if (!LinkFromSrc && !DGV)
1039 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001040
Rafael Espindola778fcc72014-11-02 13:28:57 +00001041 GlobalValue *NewGV;
1042 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) {
1043 NewGV = linkGlobalVariableProto(SGVar, DGV, LinkFromSrc);
1044 if (!NewGV)
1045 return true;
1046 } else if (auto *SF = dyn_cast<Function>(SGV)) {
1047 NewGV = linkFunctionProto(SF, DGV, LinkFromSrc);
1048 } else {
1049 NewGV = linkGlobalAliasProto(cast<GlobalAlias>(SGV), DGV, LinkFromSrc);
1050 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001051
Rafael Espindola778fcc72014-11-02 13:28:57 +00001052 if (NewGV) {
1053 if (NewGV != DGV)
1054 copyGVAttributes(NewGV, SGV);
David Majnemerdad0a642014-06-27 18:19:56 +00001055
Rafael Espindola778fcc72014-11-02 13:28:57 +00001056 NewGV->setUnnamedAddr(HasUnnamedAddr);
1057 NewGV->setVisibility(Visibility);
1058
1059 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1060 if (C)
1061 NewGO->setComdat(C);
Chandler Carruthfd38af22014-11-02 09:10:31 +00001062 }
1063
Rafael Espindola778fcc72014-11-02 13:28:57 +00001064 // Make sure to remember this mapping.
1065 if (NewGV != DGV) {
1066 if (DGV) {
1067 DGV->replaceAllUsesWith(
1068 ConstantExpr::getBitCast(NewGV, DGV->getType()));
1069 DGV->eraseFromParent();
1070 }
1071 ValueMap[SGV] = NewGV;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001072 }
Reid Spencer361e5132004-11-12 20:37:43 +00001073 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001074
Rafael Espindola778fcc72014-11-02 13:28:57 +00001075 return false;
1076}
1077
1078/// Loop through the global variables in the src module and merge them into the
1079/// dest module.
1080GlobalValue *ModuleLinker::linkGlobalVariableProto(const GlobalVariable *SGVar,
1081 GlobalValue *DGV,
1082 bool LinkFromSrc) {
1083 unsigned Alignment = 0;
1084 bool ClearConstant = false;
1085
1086 if (DGV) {
1087 if (DGV->hasCommonLinkage() && SGVar->hasCommonLinkage())
1088 Alignment = std::max(SGVar->getAlignment(), DGV->getAlignment());
1089
1090 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
1091 if (!SGVar->isConstant() || (DGVar && !DGVar->isConstant()))
1092 ClearConstant = true;
1093 }
1094
1095 if (!LinkFromSrc) {
1096 if (auto *NewGVar = dyn_cast<GlobalVariable>(DGV)) {
1097 if (Alignment)
1098 NewGVar->setAlignment(Alignment);
1099 if (NewGVar->isDeclaration() && ClearConstant)
1100 NewGVar->setConstant(false);
1101 }
1102 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001103 }
1104
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001105 // No linking to be performed or linking from the source: simply create an
1106 // identical version of the symbol over in the dest module... the
1107 // initializer will be filled in later by LinkGlobalInits.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001108 GlobalVariable *NewDGV = new GlobalVariable(
1109 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
1110 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
1111 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
1112 SGVar->getType()->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001113
Rafael Espindola778fcc72014-11-02 13:28:57 +00001114 if (Alignment)
1115 NewDGV->setAlignment(Alignment);
David Majnemerdad0a642014-06-27 18:19:56 +00001116
Rafael Espindola778fcc72014-11-02 13:28:57 +00001117 return NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001118}
1119
Rafael Espindola18c89412014-10-27 02:35:46 +00001120/// Link the function in the source module into the destination module if
1121/// needed, setting up mapping information.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001122GlobalValue *ModuleLinker::linkFunctionProto(const Function *SF,
1123 GlobalValue *DGV,
1124 bool LinkFromSrc) {
1125 if (!LinkFromSrc)
1126 return DGV;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001127
James Molloyf6f121e2013-05-28 15:17:05 +00001128 // If the function is to be lazily linked, don't create it just yet.
1129 // The ValueMaterializerTy will deal with creating it if it's used.
1130 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1131 SF->hasAvailableExternallyLinkage())) {
1132 DoNotLinkFromSource.insert(SF);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001133 return nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00001134 }
1135
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001136 // If there is no linkage to be performed or we are linking from the source,
1137 // bring SF over.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001138 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
1139 SF->getName(), DstM);
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001140}
1141
Rafael Espindola18c89412014-10-27 02:35:46 +00001142/// Set up prototypes for any aliases that come over from the source module.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001143GlobalValue *ModuleLinker::linkGlobalAliasProto(const GlobalAlias *SGA,
1144 GlobalValue *DGV,
1145 bool LinkFromSrc) {
1146 if (!LinkFromSrc)
1147 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001148
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001149 // If there is no linkage to be performed or we're linking from the source,
1150 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001151 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindola778fcc72014-11-02 13:28:57 +00001152 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1153 SGA->getLinkage(), SGA->getName(), DstM);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001154}
1155
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001156static void getArrayElements(const Constant *C,
1157 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001158 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1159
1160 for (unsigned i = 0; i != NumElements; ++i)
1161 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001162}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001163
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001164void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1165 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001166 SmallVector<Constant *, 16> DstElements;
1167 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001168
Rafael Espindolad31dc042014-09-05 21:27:52 +00001169 SmallVector<Constant *, 16> SrcElements;
1170 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001171
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001172 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001173
1174 StringRef Name = AVI.NewGV->getName();
1175 bool IsNewStructor =
1176 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1177 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1178
1179 for (auto *V : SrcElements) {
1180 if (IsNewStructor) {
1181 Constant *Key = V->getAggregateElement(2);
1182 if (DoNotLinkFromSource.count(Key))
1183 continue;
1184 }
1185 DstElements.push_back(
1186 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1187 }
1188 if (IsNewStructor) {
1189 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1190 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1191 }
1192
1193 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001194}
1195
Rafael Espindola18c89412014-10-27 02:35:46 +00001196/// Update the initializers in the Dest module now that all globals that may be
1197/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001198void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001199 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001200 for (Module::const_global_iterator I = SrcM->global_begin(),
1201 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001202
Tanya Lattnercbb91402011-10-11 00:24:54 +00001203 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001204 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1205
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001206 // Grab destination global variable.
1207 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1208 // Figure out what the initializer looks like in the dest module.
1209 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001210 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001211 }
Reid Spencer361e5132004-11-12 20:37:43 +00001212}
1213
Rafael Espindola18c89412014-10-27 02:35:46 +00001214/// Copy the source function over into the dest function and fix up references
1215/// to values. At this point we know that Dest is an external function, and
1216/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001217void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1218 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001219
Chris Lattner7391dde2004-11-16 17:12:38 +00001220 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001221 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001222 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001223 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001224 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001225
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001226 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001227 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001228 }
1229
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001230 // Splice the body of the source function into the dest function.
1231 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001232
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001233 // At this point, all of the instructions and values of the function are now
1234 // copied over. The only problem is that they are still referencing values in
1235 // the Source function as operands. Loop through all of the operands of the
1236 // functions and patch them up to point to the local versions.
1237 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1238 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1239 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
1240 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001241
Chris Lattner7391dde2004-11-16 17:12:38 +00001242 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001243 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1244 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001245 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001246
Reid Spencer361e5132004-11-12 20:37:43 +00001247}
1248
Rafael Espindola18c89412014-10-27 02:35:46 +00001249/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001250void ModuleLinker::linkAliasBodies() {
1251 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001252 I != E; ++I) {
1253 if (DoNotLinkFromSource.count(I))
1254 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001255 if (Constant *Aliasee = I->getAliasee()) {
1256 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001257 Constant *Val =
1258 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001259 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001260 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001261 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001262}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001263
Rafael Espindola18c89412014-10-27 02:35:46 +00001264/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001265void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001266 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001267 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1268 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001269 // Don't link module flags here. Do them separately.
1270 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001271 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1272 // Add Src elements into Dest node.
1273 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1274 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001275 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001276 }
1277}
Bill Wendling66f02412012-02-11 11:38:06 +00001278
Rafael Espindola18c89412014-10-27 02:35:46 +00001279/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001280bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001281 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001282 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1283 if (!SrcModFlags) return false;
1284
Bill Wendling66f02412012-02-11 11:38:06 +00001285 // If the destination module doesn't have module flags yet, then just copy
1286 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001287 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001288 if (DstModFlags->getNumOperands() == 0) {
1289 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1290 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1291
1292 return false;
1293 }
1294
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001295 // First build a map of the existing module flags and requirements.
1296 DenseMap<MDString*, MDNode*> Flags;
1297 SmallSetVector<MDNode*, 16> Requirements;
1298 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001299 MDNode *Op = DstModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001300 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1301 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001302
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001303 if (Behavior->getZExtValue() == Module::Require) {
1304 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1305 } else {
1306 Flags[ID] = Op;
1307 }
Bill Wendling66f02412012-02-11 11:38:06 +00001308 }
1309
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001310 // Merge in the flags from the source module, and also collect its set of
1311 // requirements.
1312 bool HasErr = false;
1313 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001314 MDNode *SrcOp = SrcModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001315 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1316 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1317 MDNode *DstOp = Flags.lookup(ID);
1318 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001319
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001320 // If this is a requirement, add it and continue.
1321 if (SrcBehaviorValue == Module::Require) {
1322 // If the destination module does not already have this requirement, add
1323 // it.
1324 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1325 DstModFlags->addOperand(SrcOp);
1326 }
1327 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001328 }
1329
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001330 // If there is no existing flag with this ID, just add it.
1331 if (!DstOp) {
1332 Flags[ID] = SrcOp;
1333 DstModFlags->addOperand(SrcOp);
1334 continue;
1335 }
1336
1337 // Otherwise, perform a merge.
1338 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1339 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1340
1341 // If either flag has override behavior, handle it first.
1342 if (DstBehaviorValue == Module::Override) {
1343 // Diagnose inconsistent flags which both have override behavior.
1344 if (SrcBehaviorValue == Module::Override &&
1345 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1346 HasErr |= emitError("linking module flags '" + ID->getString() +
1347 "': IDs have conflicting override values");
1348 }
1349 continue;
1350 } else if (SrcBehaviorValue == Module::Override) {
1351 // Update the destination flag to that of the source.
1352 DstOp->replaceOperandWith(0, SrcBehavior);
1353 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1354 continue;
1355 }
1356
1357 // Diagnose inconsistent merge behavior types.
1358 if (SrcBehaviorValue != DstBehaviorValue) {
1359 HasErr |= emitError("linking module flags '" + ID->getString() +
1360 "': IDs have conflicting behaviors");
1361 continue;
1362 }
1363
1364 // Perform the merge for standard behavior types.
1365 switch (SrcBehaviorValue) {
1366 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001367 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001368 case Module::Error: {
1369 // Emit an error if the values differ.
1370 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1371 HasErr |= emitError("linking module flags '" + ID->getString() +
1372 "': IDs have conflicting values");
1373 }
1374 continue;
1375 }
1376 case Module::Warning: {
1377 // Emit a warning if the values differ.
1378 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001379 emitWarning("linking module flags '" + ID->getString() +
1380 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001381 }
1382 continue;
1383 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001384 case Module::Append: {
1385 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1386 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1387 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1388 Value **VP, **Values = VP = new Value*[NumOps];
1389 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1390 *VP = DstValue->getOperand(i);
1391 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1392 *VP = SrcValue->getOperand(i);
1393 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1394 ArrayRef<Value*>(Values,
1395 NumOps)));
1396 delete[] Values;
1397 break;
1398 }
1399 case Module::AppendUnique: {
1400 SmallSetVector<Value*, 16> Elts;
1401 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1402 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1403 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1404 Elts.insert(DstValue->getOperand(i));
1405 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1406 Elts.insert(SrcValue->getOperand(i));
1407 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1408 ArrayRef<Value*>(Elts.begin(),
1409 Elts.end())));
1410 break;
1411 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001412 }
Bill Wendling66f02412012-02-11 11:38:06 +00001413 }
1414
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001415 // Check all of the requirements.
1416 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1417 MDNode *Requirement = Requirements[I];
1418 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1419 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001420
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001421 MDNode *Op = Flags[Flag];
1422 if (!Op || Op->getOperand(2) != ReqValue) {
1423 HasErr |= emitError("linking module flags '" + Flag->getString() +
1424 "': does not have the required value");
1425 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001426 }
1427 }
1428
1429 return HasErr;
1430}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001431
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001432bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001433 assert(DstM && "Null destination module");
1434 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001435
1436 // Inherit the target data from the source module if the destination module
1437 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001438 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001439 DstM->setDataLayout(SrcM->getDataLayout());
1440
1441 // Copy the target triple from the source to dest if the dest's is empty.
1442 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1443 DstM->setTargetTriple(SrcM->getTargetTriple());
1444
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001445 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001446 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001447 emitWarning("Linking two modules of different data layouts: '" +
1448 SrcM->getModuleIdentifier() + "' is '" +
1449 SrcM->getDataLayoutStr() + "' whereas '" +
1450 DstM->getModuleIdentifier() + "' is '" +
1451 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001452 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001453 if (!SrcM->getTargetTriple().empty() &&
1454 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001455 emitWarning("Linking two modules of different target triples: " +
1456 SrcM->getModuleIdentifier() + "' is '" +
1457 SrcM->getTargetTriple() + "' whereas '" +
1458 DstM->getModuleIdentifier() + "' is '" +
1459 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001460 }
1461
1462 // Append the module inline asm string.
1463 if (!SrcM->getModuleInlineAsm().empty()) {
1464 if (DstM->getModuleInlineAsm().empty())
1465 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1466 else
1467 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1468 SrcM->getModuleInlineAsm());
1469 }
1470
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001471 // Loop over all of the linked values to compute type mappings.
1472 computeTypeMapping();
1473
David Majnemerdad0a642014-06-27 18:19:56 +00001474 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001475 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001476 const Comdat &C = SMEC.getValue();
1477 if (ComdatsChosen.count(&C))
1478 continue;
1479 Comdat::SelectionKind SK;
1480 bool LinkFromSrc;
1481 if (getComdatResult(&C, SK, LinkFromSrc))
1482 return true;
1483 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1484 }
1485
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001486 // Upgrade mismatched global arrays.
1487 upgradeMismatchedGlobals();
1488
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001489 // Insert all of the globals in src into the DstM module... without linking
1490 // initializers (which could refer to functions not yet mapped over).
1491 for (Module::global_iterator I = SrcM->global_begin(),
1492 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001493 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001494 return true;
1495
1496 // Link the functions together between the two modules, without doing function
1497 // bodies... this just adds external function prototypes to the DstM
1498 // function... We do this so that when we begin processing function bodies,
1499 // all of the global values that may be referenced are available in our
1500 // ValueMap.
1501 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001502 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001503 return true;
1504
1505 // If there were any aliases, link them now.
1506 for (Module::alias_iterator I = SrcM->alias_begin(),
1507 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001508 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001509 return true;
1510
1511 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1512 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001513
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001514 // Link in the function bodies that are defined in the source module into
1515 // DstM.
1516 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001517 // Skip if not linking from source.
1518 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001519
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001520 Function *DF = cast<Function>(ValueMap[SF]);
1521 if (SF->hasPrefixData()) {
1522 // Link in the prefix data.
1523 DF->setPrefixData(MapValue(
1524 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1525 }
1526
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001527 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001528 if (std::error_code EC = SF->materialize())
1529 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001530
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001531 // Skip if no body (function is external).
1532 if (SF->isDeclaration())
1533 continue;
1534
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001535 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001536 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001537 }
1538
1539 // Resolve all uses of aliases with aliasees.
1540 linkAliasBodies();
1541
Bill Wendling66f02412012-02-11 11:38:06 +00001542 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001543 // after linking GlobalValues so that MDNodes that reference GlobalValues
1544 // are properly remapped.
1545 linkNamedMDNodes();
1546
Bill Wendling66f02412012-02-11 11:38:06 +00001547 // Merge the module flags into the DstM module.
1548 if (linkModuleFlagsMetadata())
1549 return true;
1550
Bill Wendling91686d62014-01-16 06:29:36 +00001551 // Update the initializers in the DstM module now that all globals that may
1552 // be referenced are in DstM.
1553 linkGlobalInits();
1554
Tanya Lattner0a48b872011-11-02 00:24:56 +00001555 // Process vector of lazily linked in functions.
1556 bool LinkedInAnyFunctions;
1557 do {
1558 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001559
Bill Wendlingfa2287822013-03-27 17:54:41 +00001560 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001561 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001562 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001563 if (!SF)
1564 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001565
James Molloyf6f121e2013-05-28 15:17:05 +00001566 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001567 if (SF->hasPrefixData()) {
1568 // Link in the prefix data.
1569 DF->setPrefixData(MapValue(SF->getPrefixData(),
1570 ValueMap,
1571 RF_None,
1572 &TypeMap,
1573 &ValMaterializer));
1574 }
James Molloyf6f121e2013-05-28 15:17:05 +00001575
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001576 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001577 if (std::error_code EC = SF->materialize())
1578 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001579
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001580 // Skip if no body (function is external).
1581 if (SF->isDeclaration())
1582 continue;
1583
James Molloyf6f121e2013-05-28 15:17:05 +00001584 // Erase from vector *before* the function body is linked - linkFunctionBody could
1585 // invalidate I.
1586 LazilyLinkFunctions.erase(I);
1587
1588 // Link in function body.
1589 linkFunctionBody(DF, SF);
1590 SF->Dematerialize();
1591
1592 // Set flag to indicate we may have more functions to lazily link in
1593 // since we linked in a function.
1594 LinkedInAnyFunctions = true;
1595 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001596 }
1597 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001598
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001599 // Now that all of the types from the source are used, resolve any structs
1600 // copied over to the dest that didn't exist there.
1601 TypeMap.linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001602
Anton Korobeynikov26098882008-03-05 23:21:39 +00001603 return false;
1604}
Reid Spencer361e5132004-11-12 20:37:43 +00001605
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001606void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1607 this->Composite = M;
1608 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001609
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001610 TypeFinder StructTypes;
1611 StructTypes.run(*M, true);
1612 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
1613}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001614
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001615Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1616 init(M, DiagnosticHandler);
1617}
1618
1619Linker::Linker(Module *M) {
1620 init(M, [this](const DiagnosticInfo &DI) {
1621 Composite->getContext().diagnose(DI);
1622 });
1623}
1624
Rafael Espindola3df61b72013-05-04 03:48:37 +00001625Linker::~Linker() {
1626}
1627
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001628void Linker::deleteModule() {
1629 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001630 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001631}
1632
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001633bool Linker::linkInModule(Module *Src) {
1634 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1635 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001636 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001637}
1638
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001639//===----------------------------------------------------------------------===//
1640// LinkModules entrypoint.
1641//===----------------------------------------------------------------------===//
1642
Rafael Espindola18c89412014-10-27 02:35:46 +00001643/// This function links two modules together, with the resulting Dest module
1644/// modified to be the composite of the two input modules. If an error occurs,
1645/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1646/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1647/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001648bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001649 DiagnosticHandlerFunction DiagnosticHandler) {
1650 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001651 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001652}
1653
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001654bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001655 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001656 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001657}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001658
1659//===----------------------------------------------------------------------===//
1660// C API.
1661//===----------------------------------------------------------------------===//
1662
1663LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1664 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001665 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001666 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001667 raw_string_ostream Stream(Message);
1668 DiagnosticPrinterRawOStream DP(Stream);
1669
1670 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001671 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001672
1673 if (OutMessages && Result)
1674 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001675 return Result;
1676}