blob: 44b4bce313115e72773a7474ddedfbb1938e0671 [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 {
Rafael Espindola8f144712014-11-25 06:16:27 +000078 for (auto &Pair : MappedTypes) {
Bill Wendlingb6af2f32012-03-22 20:28:27 +000079 dbgs() << "TypeMap: ";
Rafael Espindola8f144712014-11-25 06:16:27 +000080 Pair.first->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000081 dbgs() << " => ";
Rafael Espindola8f144712014-11-25 06:16:27 +000082 Pair.second->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000083 dbgs() << '\n';
84 }
85 }
Bill Wendlingb6af2f32012-03-22 20:28:27 +000086
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000087private:
88 Type *getImpl(Type *T);
Rafael Espindola18c89412014-10-27 02:35:46 +000089 /// Implement the ValueMapTypeRemapper interface.
Craig Topper85482992014-03-05 07:52:44 +000090 Type *remapType(Type *SrcTy) override {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000091 return get(SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000092 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +000093
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000094 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000095};
96}
97
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000098void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000099 // Check to see if these types are recursively isomorphic and establish a
100 // mapping between them if so.
Rafael Espindola86911442014-11-25 05:59:24 +0000101 if (areTypesIsomorphic(DstTy, SrcTy)) {
102 SpeculativeTypes.clear();
103 return;
Bill Wendlingd48b7782012-02-28 04:01:21 +0000104 }
Rafael Espindola86911442014-11-25 05:59:24 +0000105
106 // Oops, they aren't isomorphic. Just discard this request by rolling out
107 // any speculative mappings we've established.
108 unsigned Removed = 0;
109 for (unsigned I = 0, E = SpeculativeTypes.size(); I != E; ++I) {
110 Type *SrcTy = SpeculativeTypes[I];
111 auto Iter = MappedTypes.find(SrcTy);
112 auto *DstTy = dyn_cast<StructType>(Iter->second);
113 if (DstTy && DstResolvedOpaqueTypes.erase(DstTy))
114 Removed++;
115 MappedTypes.erase(Iter);
116 }
117 SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() - Removed);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000118 SpeculativeTypes.clear();
119}
Chris Lattnereee6f992008-06-16 21:00:18 +0000120
Rafael Espindola18c89412014-10-27 02:35:46 +0000121/// Recursively walk this pair of types, returning true if they are isomorphic,
122/// false if they are not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000123bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
124 // Two types with differing kinds are clearly not isomorphic.
125 if (DstTy->getTypeID() != SrcTy->getTypeID()) return false;
Misha Brukman10468d82005-04-21 22:55:34 +0000126
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000127 // If we have an entry in the MappedTypes table, then we have our answer.
128 Type *&Entry = MappedTypes[SrcTy];
129 if (Entry)
130 return Entry == DstTy;
Misha Brukman10468d82005-04-21 22:55:34 +0000131
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000132 // Two identical types are clearly isomorphic. Remember this
133 // non-speculatively.
134 if (DstTy == SrcTy) {
135 Entry = DstTy;
Chris Lattnerfe677e92008-06-16 20:03:01 +0000136 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000137 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000138
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000139 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000140
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000141 // If this is an opaque struct type, special case it.
142 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
143 // Mapping an opaque type to any struct, just keep the dest struct.
144 if (SSTy->isOpaque()) {
145 Entry = DstTy;
146 SpeculativeTypes.push_back(SrcTy);
Reid Spencer361e5132004-11-12 20:37:43 +0000147 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000148 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000149
Chris Lattner5e3bd972011-12-20 00:03:52 +0000150 // Mapping a non-opaque source type to an opaque dest. If this is the first
151 // type that we're mapping onto this destination type then we succeed. Keep
Rafael Espindola86911442014-11-25 05:59:24 +0000152 // the dest, but fill it in later. If this is the second (different) type
153 // that we're trying to map onto the same opaque type then we fail.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000154 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-12-20 00:03:52 +0000155 // We can only map one source type onto the opaque destination type.
David Blaikie70573dc2014-11-19 07:49:26 +0000156 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second)
Chris Lattner5e3bd972011-12-20 00:03:52 +0000157 return false;
158 SrcDefinitionsToResolve.push_back(SSTy);
Rafael Espindola86911442014-11-25 05:59:24 +0000159 SpeculativeTypes.push_back(SrcTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000160 Entry = DstTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000161 return true;
162 }
163 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000164
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000165 // If the number of subtypes disagree between the two types, then we fail.
166 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
Reid Spencer361e5132004-11-12 20:37:43 +0000167 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000168
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000169 // Fail if any of the extra properties (e.g. array size) of the type disagree.
170 if (isa<IntegerType>(DstTy))
171 return false; // bitwidth disagrees.
172 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
173 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
174 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000175
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000176 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
177 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
178 return false;
179 } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) {
180 StructType *SSTy = cast<StructType>(SrcTy);
Chris Lattner44f7ab42011-08-12 18:07:26 +0000181 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000182 DSTy->isPacked() != SSTy->isPacked())
183 return false;
184 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
185 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
186 return false;
187 } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Joey Gouly5fad3e92013-01-10 10:49:36 +0000188 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000189 return false;
Reid Spencer361e5132004-11-12 20:37:43 +0000190 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000191
192 // Otherwise, we speculate that these two types will line up and recursively
193 // check the subelements.
194 Entry = DstTy;
195 SpeculativeTypes.push_back(SrcTy);
196
Bill Wendlingd48b7782012-02-28 04:01:21 +0000197 for (unsigned i = 0, e = SrcTy->getNumContainedTypes(); i != e; ++i)
198 if (!areTypesIsomorphic(DstTy->getContainedType(i),
199 SrcTy->getContainedType(i)))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000200 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000201
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000202 // If everything seems to have lined up, then everything is great.
203 return true;
204}
205
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000206void TypeMapTy::linkDefinedTypeBodies() {
207 SmallVector<Type*, 16> Elements;
208 SmallString<16> TmpName;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000209
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000210 // Note that processing entries in this loop (calling 'get') can add new
Chris Lattner5e3bd972011-12-20 00:03:52 +0000211 // entries to the SrcDefinitionsToResolve vector.
212 while (!SrcDefinitionsToResolve.empty()) {
213 StructType *SrcSTy = SrcDefinitionsToResolve.pop_back_val();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000214 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000215
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000216 // TypeMap is a many-to-one mapping, if there were multiple types that
217 // provide a body for DstSTy then previous iterations of this loop may have
218 // already handled it. Just ignore this case.
219 if (!DstSTy->isOpaque()) continue;
220 assert(!SrcSTy->isOpaque() && "Not resolving a definition?");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000221
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000222 // Map the body of the source type over to a new body for the dest type.
223 Elements.resize(SrcSTy->getNumElements());
224 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
225 Elements[i] = getImpl(SrcSTy->getElementType(i));
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000226
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000227 DstSTy->setBody(Elements, SrcSTy->isPacked());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000228
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000229 // If DstSTy has no name or has a longer name than STy, then viciously steal
230 // STy's name.
231 if (!SrcSTy->hasName()) continue;
232 StringRef SrcName = SrcSTy->getName();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000233
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000234 if (!DstSTy->hasName() || DstSTy->getName().size() > SrcName.size()) {
235 TmpName.insert(TmpName.end(), SrcName.begin(), SrcName.end());
236 SrcSTy->setName("");
237 DstSTy->setName(TmpName.str());
238 TmpName.clear();
239 }
240 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000241
Chris Lattner5e3bd972011-12-20 00:03:52 +0000242 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000243}
244
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000245Type *TypeMapTy::get(Type *Ty) {
246 Type *Result = getImpl(Ty);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000247
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000248 // If this caused a reference to any struct type, resolve it before returning.
Chris Lattner5e3bd972011-12-20 00:03:52 +0000249 if (!SrcDefinitionsToResolve.empty())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000250 linkDefinedTypeBodies();
251 return Result;
252}
253
Rafael Espindola18c89412014-10-27 02:35:46 +0000254/// This is the recursive version of get().
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000255Type *TypeMapTy::getImpl(Type *Ty) {
256 // If we already have an entry for this type, return it.
257 Type **Entry = &MappedTypes[Ty];
258 if (*Entry) return *Entry;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000259
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000260 // If this is not a named struct type, then just map all of the elements and
261 // then rebuild the type from inside out.
Chris Lattner44f7ab42011-08-12 18:07:26 +0000262 if (!isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000263 // If there are no element types to map, then the type is itself. This is
264 // true for the anonymous {} struct, things like 'float', integers, etc.
265 if (Ty->getNumContainedTypes() == 0)
266 return *Entry = Ty;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000267
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000268 // Remap all of the elements, keeping track of whether any of them change.
269 bool AnyChange = false;
270 SmallVector<Type*, 4> ElementTypes;
271 ElementTypes.resize(Ty->getNumContainedTypes());
272 for (unsigned i = 0, e = Ty->getNumContainedTypes(); i != e; ++i) {
273 ElementTypes[i] = getImpl(Ty->getContainedType(i));
274 AnyChange |= ElementTypes[i] != Ty->getContainedType(i);
275 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000276
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000277 // If we found our type while recursively processing stuff, just use it.
278 Entry = &MappedTypes[Ty];
279 if (*Entry) return *Entry;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000280
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000281 // If all of the element types mapped directly over, then the type is usable
282 // as-is.
283 if (!AnyChange)
284 return *Entry = Ty;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000285
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000286 // Otherwise, rebuild a modified type.
287 switch (Ty->getTypeID()) {
Craig Toppera2886c22012-02-07 05:05:23 +0000288 default: llvm_unreachable("unknown derived type to remap");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000289 case Type::ArrayTyID:
290 return *Entry = ArrayType::get(ElementTypes[0],
291 cast<ArrayType>(Ty)->getNumElements());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000292 case Type::VectorTyID:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000293 return *Entry = VectorType::get(ElementTypes[0],
294 cast<VectorType>(Ty)->getNumElements());
295 case Type::PointerTyID:
296 return *Entry = PointerType::get(ElementTypes[0],
297 cast<PointerType>(Ty)->getAddressSpace());
298 case Type::FunctionTyID:
299 return *Entry = FunctionType::get(ElementTypes[0],
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000300 makeArrayRef(ElementTypes).slice(1),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000301 cast<FunctionType>(Ty)->isVarArg());
302 case Type::StructTyID:
303 // Note that this is only reached for anonymous structs.
304 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
305 cast<StructType>(Ty)->isPacked());
306 }
307 }
308
309 // Otherwise, this is an unmapped named struct. If the struct can be directly
310 // mapped over, just use it as-is. This happens in a case when the linked-in
311 // module has something like:
312 // %T = type {%T*, i32}
313 // @GV = global %T* null
314 // where T does not exist at all in the destination module.
315 //
316 // The other case we watch for is when the type is not in the destination
317 // module, but that it has to be rebuilt because it refers to something that
318 // is already mapped. For example, if the destination module has:
319 // %A = type { i32 }
320 // and the source module has something like
321 // %A' = type { i32 }
322 // %B = type { %A'* }
323 // @GV = global %B* null
324 // then we want to create a new type: "%B = type { %A*}" and have it take the
325 // pristine "%B" name from the source module.
326 //
327 // To determine which case this is, we have to recursively walk the type graph
328 // speculating that we'll be able to reuse it unmodified. Only if this is
329 // safe would we map the entire thing over. Because this is an optimization,
330 // and is not required for the prettiness of the linked module, we just skip
331 // it and always rebuild a type here.
332 StructType *STy = cast<StructType>(Ty);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000333
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000334 // If the type is opaque, we can just use it directly.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000335 if (STy->isOpaque()) {
336 // A named structure type from src module is used. Add it to the Set of
337 // identified structs in the destination module.
338 DstStructTypesSet.insert(STy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000339 return *Entry = STy;
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000340 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000341
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000342 // Otherwise we create a new type and resolve its body later. This will be
343 // resolved by the top level of get().
Chris Lattner5e3bd972011-12-20 00:03:52 +0000344 SrcDefinitionsToResolve.push_back(STy);
345 StructType *DTy = StructType::create(STy->getContext());
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000346 // A new identified structure type was created. Add it to the set of
347 // identified structs in the destination module.
348 DstStructTypesSet.insert(DTy);
Chris Lattner5e3bd972011-12-20 00:03:52 +0000349 DstResolvedOpaqueTypes.insert(DTy);
350 return *Entry = DTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000351}
352
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000353//===----------------------------------------------------------------------===//
354// ModuleLinker implementation.
355//===----------------------------------------------------------------------===//
356
357namespace {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000358class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000359
Rafael Espindolac84f6082014-11-25 06:11:24 +0000360/// Creates prototypes for functions that are lazily linked on the fly. This
361/// speeds up linking for modules with many/ lazily linked functions of which
362/// few get used.
363class ValueMaterializerTy : public ValueMaterializer {
364 TypeMapTy &TypeMap;
365 Module *DstM;
366 std::vector<Function *> &LazilyLinkFunctions;
James Molloyf6f121e2013-05-28 15:17:05 +0000367
Rafael Espindolac84f6082014-11-25 06:11:24 +0000368public:
369 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
370 std::vector<Function *> &LazilyLinkFunctions)
371 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
372 LazilyLinkFunctions(LazilyLinkFunctions) {}
373
374 Value *materializeValueFor(Value *V) override;
375};
376
377class LinkDiagnosticInfo : public DiagnosticInfo {
378 const Twine &Msg;
379
380public:
381 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
382 void print(DiagnosticPrinter &DP) const override;
383};
384LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
385 const Twine &Msg)
386 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
387void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
388
389/// This is an implementation class for the LinkModules function, which is the
390/// entrypoint for this file.
391class ModuleLinker {
392 Module *DstM, *SrcM;
393
394 TypeMapTy TypeMap;
395 ValueMaterializerTy ValMaterializer;
396
397 /// Mapping of values from what they used to be in Src, to what they are now
398 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
399 /// due to the use of Value handles which the Linker doesn't actually need,
400 /// but this allows us to reuse the ValueMapper code.
401 ValueToValueMapTy ValueMap;
402
403 struct AppendingVarInfo {
404 GlobalVariable *NewGV; // New aggregate global in dest module.
405 const Constant *DstInit; // Old initializer from dest module.
406 const Constant *SrcInit; // Old initializer from src module.
James Molloyf6f121e2013-05-28 15:17:05 +0000407 };
408
Rafael Espindolac84f6082014-11-25 06:11:24 +0000409 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000410
Rafael Espindolac84f6082014-11-25 06:11:24 +0000411 // Set of items not to link in from source.
412 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000413
Rafael Espindolac84f6082014-11-25 06:11:24 +0000414 // Vector of functions to lazily link in.
415 std::vector<Function *> LazilyLinkFunctions;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000416
Rafael Espindolac84f6082014-11-25 06:11:24 +0000417 Linker::DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000418
Rafael Espindolac84f6082014-11-25 06:11:24 +0000419public:
420 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM,
421 Linker::DiagnosticHandlerFunction DiagnosticHandler)
422 : DstM(dstM), SrcM(srcM), TypeMap(Set),
423 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions),
424 DiagnosticHandler(DiagnosticHandler) {}
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000425
Rafael Espindolac84f6082014-11-25 06:11:24 +0000426 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000427
Rafael Espindolac84f6082014-11-25 06:11:24 +0000428private:
429 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
430 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000431
Rafael Espindolac84f6082014-11-25 06:11:24 +0000432 /// Helper method for setting a message and returning an error code.
433 bool emitError(const Twine &Message) {
434 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
435 return true;
436 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000437
Rafael Espindolac84f6082014-11-25 06:11:24 +0000438 void emitWarning(const Twine &Message) {
439 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
440 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000441
Rafael Espindolac84f6082014-11-25 06:11:24 +0000442 bool getComdatLeader(Module *M, StringRef ComdatName,
443 const GlobalVariable *&GVar);
444 bool computeResultingSelectionKind(StringRef ComdatName,
445 Comdat::SelectionKind Src,
446 Comdat::SelectionKind Dst,
447 Comdat::SelectionKind &Result,
448 bool &LinkFromSrc);
449 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
450 ComdatsChosen;
451 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
452 bool &LinkFromSrc);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000453
Rafael Espindolac84f6082014-11-25 06:11:24 +0000454 /// Given a global in the source module, return the global in the
455 /// destination module that is being linked to, if any.
456 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
457 // If the source has no name it can't link. If it has local linkage,
458 // there is no name match-up going on.
459 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
460 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000461
Rafael Espindolac84f6082014-11-25 06:11:24 +0000462 // Otherwise see if we have a match in the destination module's symtab.
463 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
464 if (!DGV)
465 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000466
Rafael Espindolac84f6082014-11-25 06:11:24 +0000467 // If we found a global with the same name in the dest module, but it has
468 // internal linkage, we are really not doing any linkage here.
469 if (DGV->hasLocalLinkage())
470 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000471
Rafael Espindolac84f6082014-11-25 06:11:24 +0000472 // Otherwise, we do in fact link to the destination global.
473 return DGV;
474 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000475
Rafael Espindolac84f6082014-11-25 06:11:24 +0000476 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000477
Rafael Espindolac84f6082014-11-25 06:11:24 +0000478 void upgradeMismatchedGlobalArray(StringRef Name);
479 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000480
Rafael Espindolac84f6082014-11-25 06:11:24 +0000481 bool linkAppendingVarProto(GlobalVariable *DstGV,
482 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000483
Rafael Espindolac84f6082014-11-25 06:11:24 +0000484 bool linkGlobalValueProto(GlobalValue *GV);
485 GlobalValue *linkGlobalVariableProto(const GlobalVariable *SGVar,
486 GlobalValue *DGV, bool LinkFromSrc);
487 GlobalValue *linkFunctionProto(const Function *SF, GlobalValue *DGV,
488 bool LinkFromSrc);
489 GlobalValue *linkGlobalAliasProto(const GlobalAlias *SGA, GlobalValue *DGV,
490 bool LinkFromSrc);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000491
Rafael Espindolac84f6082014-11-25 06:11:24 +0000492 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000493
Rafael Espindolac84f6082014-11-25 06:11:24 +0000494 void linkAppendingVarInit(const AppendingVarInfo &AVI);
495 void linkGlobalInits();
496 void linkFunctionBody(Function *Dst, Function *Src);
497 void linkAliasBodies();
498 void linkNamedMDNodes();
499};
Bill Wendlingd48b7782012-02-28 04:01:21 +0000500}
501
Rafael Espindola18c89412014-10-27 02:35:46 +0000502/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
503/// table. This is good for all clients except for us. Go through the trouble
504/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000505static void forceRenaming(GlobalValue *GV, StringRef Name) {
506 // If the global doesn't force its name or if it already has the right name,
507 // there is nothing for us to do.
508 if (GV->hasLocalLinkage() || GV->getName() == Name)
509 return;
510
511 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000512
513 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000514 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000515 GV->takeName(ConflictGV);
516 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000517 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000518 } else {
519 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000520 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000521}
Reid Spencer90246aa2007-02-04 04:29:21 +0000522
Rafael Espindola18c89412014-10-27 02:35:46 +0000523/// copy additional attributes (those not needed to construct a GlobalValue)
524/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000525static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000526 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000527 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000528 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000529 if (DestGO)
530 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000531
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000532 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000533
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000534 if (DestGO)
535 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000536
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000537 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000538}
539
Rafael Espindola23f8d642012-01-05 23:02:01 +0000540static bool isLessConstraining(GlobalValue::VisibilityTypes a,
541 GlobalValue::VisibilityTypes b) {
542 if (a == GlobalValue::HiddenVisibility)
543 return false;
544 if (b == GlobalValue::HiddenVisibility)
545 return true;
546 if (a == GlobalValue::ProtectedVisibility)
547 return false;
548 if (b == GlobalValue::ProtectedVisibility)
549 return true;
550 return false;
551}
552
James Molloyf6f121e2013-05-28 15:17:05 +0000553Value *ValueMaterializerTy::materializeValueFor(Value *V) {
554 Function *SF = dyn_cast<Function>(V);
555 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000556 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000557
558 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
559 SF->getLinkage(), SF->getName(), DstM);
560 copyGVAttributes(DF, SF);
561
Rafael Espindola3931c282014-08-15 20:17:08 +0000562 if (Comdat *SC = SF->getComdat()) {
563 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
564 DF->setComdat(DC);
565 }
566
James Molloyf6f121e2013-05-28 15:17:05 +0000567 LazilyLinkFunctions.push_back(SF);
568 return DF;
569}
570
David Majnemerdad0a642014-06-27 18:19:56 +0000571bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
572 const GlobalVariable *&GVar) {
573 const GlobalValue *GVal = M->getNamedValue(ComdatName);
574 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
575 GVal = GA->getBaseObject();
576 if (!GVal)
577 // We cannot resolve the size of the aliasee yet.
578 return emitError("Linking COMDATs named '" + ComdatName +
579 "': COMDAT key involves incomputable alias size.");
580 }
581
582 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
583 if (!GVar)
584 return emitError(
585 "Linking COMDATs named '" + ComdatName +
586 "': GlobalVariable required for data dependent selection!");
587
588 return false;
589}
590
591bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
592 Comdat::SelectionKind Src,
593 Comdat::SelectionKind Dst,
594 Comdat::SelectionKind &Result,
595 bool &LinkFromSrc) {
596 // The ability to mix Comdat::SelectionKind::Any with
597 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
598 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
599 Dst == Comdat::SelectionKind::Largest;
600 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
601 Src == Comdat::SelectionKind::Largest;
602 if (DstAnyOrLargest && SrcAnyOrLargest) {
603 if (Dst == Comdat::SelectionKind::Largest ||
604 Src == Comdat::SelectionKind::Largest)
605 Result = Comdat::SelectionKind::Largest;
606 else
607 Result = Comdat::SelectionKind::Any;
608 } else if (Src == Dst) {
609 Result = Dst;
610 } else {
611 return emitError("Linking COMDATs named '" + ComdatName +
612 "': invalid selection kinds!");
613 }
614
615 switch (Result) {
616 case Comdat::SelectionKind::Any:
617 // Go with Dst.
618 LinkFromSrc = false;
619 break;
620 case Comdat::SelectionKind::NoDuplicates:
621 return emitError("Linking COMDATs named '" + ComdatName +
622 "': noduplicates has been violated!");
623 case Comdat::SelectionKind::ExactMatch:
624 case Comdat::SelectionKind::Largest:
625 case Comdat::SelectionKind::SameSize: {
626 const GlobalVariable *DstGV;
627 const GlobalVariable *SrcGV;
628 if (getComdatLeader(DstM, ComdatName, DstGV) ||
629 getComdatLeader(SrcM, ComdatName, SrcGV))
630 return true;
631
632 const DataLayout *DstDL = DstM->getDataLayout();
633 const DataLayout *SrcDL = SrcM->getDataLayout();
634 if (!DstDL || !SrcDL) {
635 return emitError(
636 "Linking COMDATs named '" + ComdatName +
637 "': can't do size dependent selection without DataLayout!");
638 }
639 uint64_t DstSize =
640 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
641 uint64_t SrcSize =
642 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
643 if (Result == Comdat::SelectionKind::ExactMatch) {
644 if (SrcGV->getInitializer() != DstGV->getInitializer())
645 return emitError("Linking COMDATs named '" + ComdatName +
646 "': ExactMatch violated!");
647 LinkFromSrc = false;
648 } else if (Result == Comdat::SelectionKind::Largest) {
649 LinkFromSrc = SrcSize > DstSize;
650 } else if (Result == Comdat::SelectionKind::SameSize) {
651 if (SrcSize != DstSize)
652 return emitError("Linking COMDATs named '" + ComdatName +
653 "': SameSize violated!");
654 LinkFromSrc = false;
655 } else {
656 llvm_unreachable("unknown selection kind");
657 }
658 break;
659 }
660 }
661
662 return false;
663}
664
665bool ModuleLinker::getComdatResult(const Comdat *SrcC,
666 Comdat::SelectionKind &Result,
667 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000668 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000669 StringRef ComdatName = SrcC->getName();
670 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
671 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000672
Rafael Espindolab16196a2014-08-11 17:07:34 +0000673 if (DstCI == ComdatSymTab.end()) {
674 // Use the comdat if it is only available in one of the modules.
675 LinkFromSrc = true;
676 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000677 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000678 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000679
680 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000681 Comdat::SelectionKind DSK = DstC->getSelectionKind();
682 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
683 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000684}
James Molloyf6f121e2013-05-28 15:17:05 +0000685
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000686bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
687 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000688 const GlobalValue &Src) {
Rafael Espindola778fcc72014-11-02 13:28:57 +0000689 // We always have to add Src if it has appending linkage.
690 if (Src.hasAppendingLinkage()) {
691 LinkFromSrc = true;
692 return false;
693 }
694
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000695 bool SrcIsDeclaration = Src.isDeclarationForLinker();
696 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000697
698 if (SrcIsDeclaration) {
699 // If Src is external or if both Src & Dest are external.. Just link the
700 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000701 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000702 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000703 LinkFromSrc = DestIsDeclaration;
704 return false;
705 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000706 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000707 LinkFromSrc = Dest.hasExternalWeakLinkage();
708 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000709 }
710
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000711 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000712 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000713 LinkFromSrc = true;
714 return false;
715 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000716
Rafael Espindola09106052014-09-09 15:59:12 +0000717 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000718 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
719 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000720 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000721 }
722
723 if (!Dest.hasCommonLinkage()) {
724 LinkFromSrc = false;
725 return false;
726 }
Rafael Espindola09106052014-09-09 15:59:12 +0000727
Rafael Espindola0ae225b2014-10-31 04:46:38 +0000728 // FIXME: Make datalayout mandatory and just use getDataLayout().
729 DataLayout DL(Dest.getParent());
730
Rafael Espindola09106052014-09-09 15:59:12 +0000731 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
732 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000733 LinkFromSrc = SrcSize > DestSize;
734 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000735 }
736
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000737 if (Src.isWeakForLinker()) {
738 assert(!Dest.hasExternalWeakLinkage());
739 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000740
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000741 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
742 LinkFromSrc = true;
743 return false;
744 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000745
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000746 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000747 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000748 }
749
750 if (Dest.isWeakForLinker()) {
751 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000752 LinkFromSrc = true;
753 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000754 }
755
756 assert(!Src.hasExternalWeakLinkage());
757 assert(!Dest.hasExternalWeakLinkage());
758 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
759 "Unexpected linkage type!");
760 return emitError("Linking globals named '" + Src.getName() +
761 "': symbol multiply defined!");
762}
763
Rafael Espindola18c89412014-10-27 02:35:46 +0000764/// Loop over all of the linked values to compute type mappings. For example,
765/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
766/// types 'Foo' but one got renamed when the module was loaded into the same
767/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000768void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000769 for (GlobalValue &SGV : SrcM->globals()) {
770 GlobalValue *DGV = getLinkedToGlobal(&SGV);
771 if (!DGV)
772 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000773
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000774 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
775 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000776 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000777 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000778
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000779 // Unify the element type of appending arrays.
780 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000781 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000782 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000783 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000784
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000785 for (GlobalValue &SGV : *SrcM) {
786 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
787 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000788 }
Bill Wendling7b464612012-02-27 22:34:19 +0000789
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000790 for (GlobalValue &SGV : SrcM->aliases()) {
791 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
792 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
793 }
794
Bill Wendlingd48b7782012-02-28 04:01:21 +0000795 // Incorporate types by name, scanning all the types in the source module.
796 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000797 // example. When the source module got loaded into the same LLVMContext, if
798 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000799 TypeFinder SrcStructTypes;
800 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000801 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
802 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000803
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000804 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
805 StructType *ST = SrcStructTypes[i];
806 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000807
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000808 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000809 size_t DotPos = ST->getName().rfind('.');
810 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000811 ST->getName().back() == '.' ||
812 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000813 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000814
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000815 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000816 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000817 // Don't use it if this actually came from the source module. They're in
818 // the same LLVMContext after all. Also don't use it unless the type is
819 // actually used in the destination module. This can happen in situations
820 // like this:
821 //
822 // Module A Module B
823 // -------- --------
824 // %Z = type { %A } %B = type { %C.1 }
825 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
826 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
827 // %C = type { i8* } %B.3 = type { %C.1 }
828 //
829 // When we link Module B with Module A, the '%B' in Module B is
830 // used. However, that would then use '%C.1'. But when we process '%C.1',
831 // we prefer to take the '%C' version. So we are then left with both
832 // '%C.1' and '%C' being used for the same types. This leads to some
833 // variables using one type and some using the other.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000834 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000835 TypeMap.addTypeMapping(DST, ST);
836 }
837
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000838 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000839 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000840 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000841}
842
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000843static void upgradeGlobalArray(GlobalVariable *GV) {
844 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
845 StructType *OldTy = cast<StructType>(ATy->getElementType());
846 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
847
848 // Get the upgraded 3 element type.
849 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
850 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
851 VoidPtrTy};
852 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
853
854 // Build new constants with a null third field filled in.
855 Constant *OldInitC = GV->getInitializer();
856 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
857 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
858 // Invalid initializer; give up.
859 return;
860 std::vector<Constant *> Initializers;
861 if (OldInit && OldInit->getNumOperands()) {
862 Value *Null = Constant::getNullValue(VoidPtrTy);
863 for (Use &U : OldInit->operands()) {
864 ConstantStruct *Init = cast<ConstantStruct>(U.get());
865 Initializers.push_back(ConstantStruct::get(
866 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
867 }
868 }
869 assert(Initializers.size() == ATy->getNumElements() &&
870 "Failed to copy all array elements");
871
872 // Replace the old GV with a new one.
873 ATy = ArrayType::get(NewTy, Initializers.size());
874 Constant *NewInit = ConstantArray::get(ATy, Initializers);
875 GlobalVariable *NewGV = new GlobalVariable(
876 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
877 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
878 GV->isExternallyInitialized());
879 NewGV->copyAttributesFrom(GV);
880 NewGV->takeName(GV);
881 assert(GV->use_empty() && "program cannot use initializer list");
882 GV->eraseFromParent();
883}
884
885void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
886 // Look for the global arrays.
887 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
888 if (!DstGV)
889 return;
890 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
891 if (!SrcGV)
892 return;
893
894 // Check if the types already match.
895 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
896 auto *SrcTy =
897 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
898 if (DstTy == SrcTy)
899 return;
900
901 // Grab the element types. We can only upgrade an array of a two-field
902 // struct. Only bother if the other one has three-fields.
903 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
904 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
905 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
906 upgradeGlobalArray(DstGV);
907 return;
908 }
909 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
910 upgradeGlobalArray(SrcGV);
911
912 // We can't upgrade any other differences.
913}
914
915void ModuleLinker::upgradeMismatchedGlobals() {
916 upgradeMismatchedGlobalArray("llvm.global_ctors");
917 upgradeMismatchedGlobalArray("llvm.global_dtors");
918}
919
Rafael Espindola18c89412014-10-27 02:35:46 +0000920/// If there were any appending global variables, link them together now.
921/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000922bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000923 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000924
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000925 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
926 return emitError("Linking globals named '" + SrcGV->getName() +
927 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000928
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000929 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
930 ArrayType *SrcTy =
931 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
932 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000933
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000934 // Check to see that they two arrays agree on type.
935 if (EltTy != SrcTy->getElementType())
936 return emitError("Appending variables with different element types!");
937 if (DstGV->isConstant() != SrcGV->isConstant())
938 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000939
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000940 if (DstGV->getAlignment() != SrcGV->getAlignment())
941 return emitError(
942 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000943
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000944 if (DstGV->getVisibility() != SrcGV->getVisibility())
945 return emitError(
946 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000947
948 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
949 return emitError(
950 "Appending variables with different unnamed_addr need to be linked!");
951
Rafael Espindola64c1e182014-06-03 02:41:57 +0000952 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000953 return emitError(
954 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000955
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000956 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
957 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000958
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000959 // Create the new global variable.
960 GlobalVariable *NG =
961 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000962 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000963 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000964 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000965
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000966 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000967 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000968
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000969 AppendingVarInfo AVI;
970 AVI.NewGV = NG;
971 AVI.DstInit = DstGV->getInitializer();
972 AVI.SrcInit = SrcGV->getInitializer();
973 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000974
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000975 // Replace any uses of the two global variables with uses of the new
976 // global.
977 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000978
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000979 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
980 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000981
Tanya Lattnercbb91402011-10-11 00:24:54 +0000982 // Track the source variable so we don't try to link it.
983 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000984
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000985 return false;
986}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000987
Rafael Espindola778fcc72014-11-02 13:28:57 +0000988bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000989 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000990
Rafael Espindola778fcc72014-11-02 13:28:57 +0000991 // Handle the ultra special appending linkage case first.
992 if (DGV && DGV->hasAppendingLinkage())
993 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
994 cast<GlobalVariable>(SGV));
995
996 bool LinkFromSrc = true;
997 Comdat *C = nullptr;
998 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
999 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
1000
David Majnemerdad0a642014-06-27 18:19:56 +00001001 if (const Comdat *SC = SGV->getComdat()) {
1002 Comdat::SelectionKind SK;
1003 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +00001004 C = DstM->getOrInsertComdat(SC->getName());
1005 C->setSelectionKind(SK);
1006 } else if (DGV) {
1007 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1008 return true;
1009 }
1010
1011 if (!LinkFromSrc) {
1012 // Track the source global so that we don't attempt to copy it over when
1013 // processing global initializers.
1014 DoNotLinkFromSource.insert(SGV);
1015
1016 if (DGV)
1017 // Make sure to remember this mapping.
1018 ValueMap[SGV] =
1019 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001020 }
1021
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001022 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001023 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1024 ? DGV->getVisibility()
1025 : Visibility;
1026 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1027 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001028
Rafael Espindola778fcc72014-11-02 13:28:57 +00001029 if (!LinkFromSrc && !DGV)
1030 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001031
Rafael Espindola778fcc72014-11-02 13:28:57 +00001032 GlobalValue *NewGV;
1033 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) {
1034 NewGV = linkGlobalVariableProto(SGVar, DGV, LinkFromSrc);
1035 if (!NewGV)
1036 return true;
1037 } else if (auto *SF = dyn_cast<Function>(SGV)) {
1038 NewGV = linkFunctionProto(SF, DGV, LinkFromSrc);
1039 } else {
1040 NewGV = linkGlobalAliasProto(cast<GlobalAlias>(SGV), DGV, LinkFromSrc);
1041 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001042
Rafael Espindola778fcc72014-11-02 13:28:57 +00001043 if (NewGV) {
1044 if (NewGV != DGV)
1045 copyGVAttributes(NewGV, SGV);
David Majnemerdad0a642014-06-27 18:19:56 +00001046
Rafael Espindola778fcc72014-11-02 13:28:57 +00001047 NewGV->setUnnamedAddr(HasUnnamedAddr);
1048 NewGV->setVisibility(Visibility);
1049
1050 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1051 if (C)
1052 NewGO->setComdat(C);
Chandler Carruthfd38af22014-11-02 09:10:31 +00001053 }
1054
Rafael Espindola778fcc72014-11-02 13:28:57 +00001055 // Make sure to remember this mapping.
1056 if (NewGV != DGV) {
1057 if (DGV) {
1058 DGV->replaceAllUsesWith(
1059 ConstantExpr::getBitCast(NewGV, DGV->getType()));
1060 DGV->eraseFromParent();
1061 }
1062 ValueMap[SGV] = NewGV;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001063 }
Reid Spencer361e5132004-11-12 20:37:43 +00001064 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001065
Rafael Espindola778fcc72014-11-02 13:28:57 +00001066 return false;
1067}
1068
1069/// Loop through the global variables in the src module and merge them into the
1070/// dest module.
1071GlobalValue *ModuleLinker::linkGlobalVariableProto(const GlobalVariable *SGVar,
1072 GlobalValue *DGV,
1073 bool LinkFromSrc) {
1074 unsigned Alignment = 0;
1075 bool ClearConstant = false;
1076
1077 if (DGV) {
1078 if (DGV->hasCommonLinkage() && SGVar->hasCommonLinkage())
1079 Alignment = std::max(SGVar->getAlignment(), DGV->getAlignment());
1080
1081 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
1082 if (!SGVar->isConstant() || (DGVar && !DGVar->isConstant()))
1083 ClearConstant = true;
1084 }
1085
1086 if (!LinkFromSrc) {
1087 if (auto *NewGVar = dyn_cast<GlobalVariable>(DGV)) {
1088 if (Alignment)
1089 NewGVar->setAlignment(Alignment);
1090 if (NewGVar->isDeclaration() && ClearConstant)
1091 NewGVar->setConstant(false);
1092 }
1093 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001094 }
1095
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001096 // No linking to be performed or linking from the source: simply create an
1097 // identical version of the symbol over in the dest module... the
1098 // initializer will be filled in later by LinkGlobalInits.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001099 GlobalVariable *NewDGV = new GlobalVariable(
1100 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
1101 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
1102 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
1103 SGVar->getType()->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001104
Rafael Espindola778fcc72014-11-02 13:28:57 +00001105 if (Alignment)
1106 NewDGV->setAlignment(Alignment);
David Majnemerdad0a642014-06-27 18:19:56 +00001107
Rafael Espindola778fcc72014-11-02 13:28:57 +00001108 return NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001109}
1110
Rafael Espindola18c89412014-10-27 02:35:46 +00001111/// Link the function in the source module into the destination module if
1112/// needed, setting up mapping information.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001113GlobalValue *ModuleLinker::linkFunctionProto(const Function *SF,
1114 GlobalValue *DGV,
1115 bool LinkFromSrc) {
1116 if (!LinkFromSrc)
1117 return DGV;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001118
James Molloyf6f121e2013-05-28 15:17:05 +00001119 // If the function is to be lazily linked, don't create it just yet.
1120 // The ValueMaterializerTy will deal with creating it if it's used.
1121 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1122 SF->hasAvailableExternallyLinkage())) {
1123 DoNotLinkFromSource.insert(SF);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001124 return nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00001125 }
1126
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001127 // If there is no linkage to be performed or we are linking from the source,
1128 // bring SF over.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001129 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
1130 SF->getName(), DstM);
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001131}
1132
Rafael Espindola18c89412014-10-27 02:35:46 +00001133/// Set up prototypes for any aliases that come over from the source module.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001134GlobalValue *ModuleLinker::linkGlobalAliasProto(const GlobalAlias *SGA,
1135 GlobalValue *DGV,
1136 bool LinkFromSrc) {
1137 if (!LinkFromSrc)
1138 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001139
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001140 // If there is no linkage to be performed or we're linking from the source,
1141 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001142 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindola778fcc72014-11-02 13:28:57 +00001143 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1144 SGA->getLinkage(), SGA->getName(), DstM);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001145}
1146
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001147static void getArrayElements(const Constant *C,
1148 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001149 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1150
1151 for (unsigned i = 0; i != NumElements; ++i)
1152 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001153}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001154
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001155void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1156 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001157 SmallVector<Constant *, 16> DstElements;
1158 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001159
Rafael Espindolad31dc042014-09-05 21:27:52 +00001160 SmallVector<Constant *, 16> SrcElements;
1161 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001162
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001163 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001164
1165 StringRef Name = AVI.NewGV->getName();
1166 bool IsNewStructor =
1167 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1168 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1169
1170 for (auto *V : SrcElements) {
1171 if (IsNewStructor) {
1172 Constant *Key = V->getAggregateElement(2);
1173 if (DoNotLinkFromSource.count(Key))
1174 continue;
1175 }
1176 DstElements.push_back(
1177 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1178 }
1179 if (IsNewStructor) {
1180 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1181 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1182 }
1183
1184 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001185}
1186
Rafael Espindola18c89412014-10-27 02:35:46 +00001187/// Update the initializers in the Dest module now that all globals that may be
1188/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001189void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001190 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001191 for (Module::const_global_iterator I = SrcM->global_begin(),
1192 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001193
Tanya Lattnercbb91402011-10-11 00:24:54 +00001194 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001195 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1196
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001197 // Grab destination global variable.
1198 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1199 // Figure out what the initializer looks like in the dest module.
1200 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001201 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001202 }
Reid Spencer361e5132004-11-12 20:37:43 +00001203}
1204
Rafael Espindola18c89412014-10-27 02:35:46 +00001205/// Copy the source function over into the dest function and fix up references
1206/// to values. At this point we know that Dest is an external function, and
1207/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001208void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1209 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001210
Chris Lattner7391dde2004-11-16 17:12:38 +00001211 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001212 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001213 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001214 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001215 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001216
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001217 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001218 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001219 }
1220
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001221 // Splice the body of the source function into the dest function.
1222 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001223
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001224 // At this point, all of the instructions and values of the function are now
1225 // copied over. The only problem is that they are still referencing values in
1226 // the Source function as operands. Loop through all of the operands of the
1227 // functions and patch them up to point to the local versions.
1228 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1229 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1230 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
1231 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001232
Chris Lattner7391dde2004-11-16 17:12:38 +00001233 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001234 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1235 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001236 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001237
Reid Spencer361e5132004-11-12 20:37:43 +00001238}
1239
Rafael Espindola18c89412014-10-27 02:35:46 +00001240/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001241void ModuleLinker::linkAliasBodies() {
1242 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001243 I != E; ++I) {
1244 if (DoNotLinkFromSource.count(I))
1245 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001246 if (Constant *Aliasee = I->getAliasee()) {
1247 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001248 Constant *Val =
1249 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001250 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001251 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001252 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001253}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001254
Rafael Espindola18c89412014-10-27 02:35:46 +00001255/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001256void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001257 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001258 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1259 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001260 // Don't link module flags here. Do them separately.
1261 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001262 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1263 // Add Src elements into Dest node.
1264 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1265 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001266 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001267 }
1268}
Bill Wendling66f02412012-02-11 11:38:06 +00001269
Rafael Espindola18c89412014-10-27 02:35:46 +00001270/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001271bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001272 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001273 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1274 if (!SrcModFlags) return false;
1275
Bill Wendling66f02412012-02-11 11:38:06 +00001276 // If the destination module doesn't have module flags yet, then just copy
1277 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001278 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001279 if (DstModFlags->getNumOperands() == 0) {
1280 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1281 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1282
1283 return false;
1284 }
1285
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001286 // First build a map of the existing module flags and requirements.
1287 DenseMap<MDString*, MDNode*> Flags;
1288 SmallSetVector<MDNode*, 16> Requirements;
1289 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001290 MDNode *Op = DstModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001291 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1292 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001293
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001294 if (Behavior->getZExtValue() == Module::Require) {
1295 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1296 } else {
1297 Flags[ID] = Op;
1298 }
Bill Wendling66f02412012-02-11 11:38:06 +00001299 }
1300
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001301 // Merge in the flags from the source module, and also collect its set of
1302 // requirements.
1303 bool HasErr = false;
1304 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001305 MDNode *SrcOp = SrcModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001306 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1307 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1308 MDNode *DstOp = Flags.lookup(ID);
1309 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001310
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001311 // If this is a requirement, add it and continue.
1312 if (SrcBehaviorValue == Module::Require) {
1313 // If the destination module does not already have this requirement, add
1314 // it.
1315 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1316 DstModFlags->addOperand(SrcOp);
1317 }
1318 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001319 }
1320
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001321 // If there is no existing flag with this ID, just add it.
1322 if (!DstOp) {
1323 Flags[ID] = SrcOp;
1324 DstModFlags->addOperand(SrcOp);
1325 continue;
1326 }
1327
1328 // Otherwise, perform a merge.
1329 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1330 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1331
1332 // If either flag has override behavior, handle it first.
1333 if (DstBehaviorValue == Module::Override) {
1334 // Diagnose inconsistent flags which both have override behavior.
1335 if (SrcBehaviorValue == Module::Override &&
1336 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1337 HasErr |= emitError("linking module flags '" + ID->getString() +
1338 "': IDs have conflicting override values");
1339 }
1340 continue;
1341 } else if (SrcBehaviorValue == Module::Override) {
1342 // Update the destination flag to that of the source.
1343 DstOp->replaceOperandWith(0, SrcBehavior);
1344 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1345 continue;
1346 }
1347
1348 // Diagnose inconsistent merge behavior types.
1349 if (SrcBehaviorValue != DstBehaviorValue) {
1350 HasErr |= emitError("linking module flags '" + ID->getString() +
1351 "': IDs have conflicting behaviors");
1352 continue;
1353 }
1354
1355 // Perform the merge for standard behavior types.
1356 switch (SrcBehaviorValue) {
1357 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001358 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001359 case Module::Error: {
1360 // Emit an error if the values differ.
1361 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1362 HasErr |= emitError("linking module flags '" + ID->getString() +
1363 "': IDs have conflicting values");
1364 }
1365 continue;
1366 }
1367 case Module::Warning: {
1368 // Emit a warning if the values differ.
1369 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001370 emitWarning("linking module flags '" + ID->getString() +
1371 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001372 }
1373 continue;
1374 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001375 case Module::Append: {
1376 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1377 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1378 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1379 Value **VP, **Values = VP = new Value*[NumOps];
1380 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1381 *VP = DstValue->getOperand(i);
1382 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1383 *VP = SrcValue->getOperand(i);
1384 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1385 ArrayRef<Value*>(Values,
1386 NumOps)));
1387 delete[] Values;
1388 break;
1389 }
1390 case Module::AppendUnique: {
1391 SmallSetVector<Value*, 16> Elts;
1392 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1393 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1394 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1395 Elts.insert(DstValue->getOperand(i));
1396 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1397 Elts.insert(SrcValue->getOperand(i));
1398 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1399 ArrayRef<Value*>(Elts.begin(),
1400 Elts.end())));
1401 break;
1402 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001403 }
Bill Wendling66f02412012-02-11 11:38:06 +00001404 }
1405
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001406 // Check all of the requirements.
1407 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1408 MDNode *Requirement = Requirements[I];
1409 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1410 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001411
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001412 MDNode *Op = Flags[Flag];
1413 if (!Op || Op->getOperand(2) != ReqValue) {
1414 HasErr |= emitError("linking module flags '" + Flag->getString() +
1415 "': does not have the required value");
1416 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001417 }
1418 }
1419
1420 return HasErr;
1421}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001422
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001423bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001424 assert(DstM && "Null destination module");
1425 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001426
1427 // Inherit the target data from the source module if the destination module
1428 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001429 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001430 DstM->setDataLayout(SrcM->getDataLayout());
1431
1432 // Copy the target triple from the source to dest if the dest's is empty.
1433 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1434 DstM->setTargetTriple(SrcM->getTargetTriple());
1435
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001436 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001437 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001438 emitWarning("Linking two modules of different data layouts: '" +
1439 SrcM->getModuleIdentifier() + "' is '" +
1440 SrcM->getDataLayoutStr() + "' whereas '" +
1441 DstM->getModuleIdentifier() + "' is '" +
1442 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001443 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001444 if (!SrcM->getTargetTriple().empty() &&
1445 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001446 emitWarning("Linking two modules of different target triples: " +
1447 SrcM->getModuleIdentifier() + "' is '" +
1448 SrcM->getTargetTriple() + "' whereas '" +
1449 DstM->getModuleIdentifier() + "' is '" +
1450 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001451 }
1452
1453 // Append the module inline asm string.
1454 if (!SrcM->getModuleInlineAsm().empty()) {
1455 if (DstM->getModuleInlineAsm().empty())
1456 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1457 else
1458 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1459 SrcM->getModuleInlineAsm());
1460 }
1461
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001462 // Loop over all of the linked values to compute type mappings.
1463 computeTypeMapping();
1464
David Majnemerdad0a642014-06-27 18:19:56 +00001465 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001466 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001467 const Comdat &C = SMEC.getValue();
1468 if (ComdatsChosen.count(&C))
1469 continue;
1470 Comdat::SelectionKind SK;
1471 bool LinkFromSrc;
1472 if (getComdatResult(&C, SK, LinkFromSrc))
1473 return true;
1474 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1475 }
1476
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001477 // Upgrade mismatched global arrays.
1478 upgradeMismatchedGlobals();
1479
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001480 // Insert all of the globals in src into the DstM module... without linking
1481 // initializers (which could refer to functions not yet mapped over).
1482 for (Module::global_iterator I = SrcM->global_begin(),
1483 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001484 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001485 return true;
1486
1487 // Link the functions together between the two modules, without doing function
1488 // bodies... this just adds external function prototypes to the DstM
1489 // function... We do this so that when we begin processing function bodies,
1490 // all of the global values that may be referenced are available in our
1491 // ValueMap.
1492 for (Module::iterator I = SrcM->begin(), E = SrcM->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 // If there were any aliases, link them now.
1497 for (Module::alias_iterator I = SrcM->alias_begin(),
1498 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001499 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001500 return true;
1501
1502 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1503 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001504
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001505 // Link in the function bodies that are defined in the source module into
1506 // DstM.
1507 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001508 // Skip if not linking from source.
1509 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001510
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001511 Function *DF = cast<Function>(ValueMap[SF]);
1512 if (SF->hasPrefixData()) {
1513 // Link in the prefix data.
1514 DF->setPrefixData(MapValue(
1515 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1516 }
1517
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001518 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001519 if (std::error_code EC = SF->materialize())
1520 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001521
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001522 // Skip if no body (function is external).
1523 if (SF->isDeclaration())
1524 continue;
1525
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001526 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001527 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001528 }
1529
1530 // Resolve all uses of aliases with aliasees.
1531 linkAliasBodies();
1532
Bill Wendling66f02412012-02-11 11:38:06 +00001533 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001534 // after linking GlobalValues so that MDNodes that reference GlobalValues
1535 // are properly remapped.
1536 linkNamedMDNodes();
1537
Bill Wendling66f02412012-02-11 11:38:06 +00001538 // Merge the module flags into the DstM module.
1539 if (linkModuleFlagsMetadata())
1540 return true;
1541
Bill Wendling91686d62014-01-16 06:29:36 +00001542 // Update the initializers in the DstM module now that all globals that may
1543 // be referenced are in DstM.
1544 linkGlobalInits();
1545
Tanya Lattner0a48b872011-11-02 00:24:56 +00001546 // Process vector of lazily linked in functions.
1547 bool LinkedInAnyFunctions;
1548 do {
1549 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001550
Bill Wendlingfa2287822013-03-27 17:54:41 +00001551 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001552 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001553 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001554 if (!SF)
1555 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001556
James Molloyf6f121e2013-05-28 15:17:05 +00001557 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001558 if (SF->hasPrefixData()) {
1559 // Link in the prefix data.
1560 DF->setPrefixData(MapValue(SF->getPrefixData(),
1561 ValueMap,
1562 RF_None,
1563 &TypeMap,
1564 &ValMaterializer));
1565 }
James Molloyf6f121e2013-05-28 15:17:05 +00001566
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001567 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001568 if (std::error_code EC = SF->materialize())
1569 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001570
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001571 // Skip if no body (function is external).
1572 if (SF->isDeclaration())
1573 continue;
1574
James Molloyf6f121e2013-05-28 15:17:05 +00001575 // Erase from vector *before* the function body is linked - linkFunctionBody could
1576 // invalidate I.
1577 LazilyLinkFunctions.erase(I);
1578
1579 // Link in function body.
1580 linkFunctionBody(DF, SF);
1581 SF->Dematerialize();
1582
1583 // Set flag to indicate we may have more functions to lazily link in
1584 // since we linked in a function.
1585 LinkedInAnyFunctions = true;
1586 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001587 }
1588 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001589
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001590 // Now that all of the types from the source are used, resolve any structs
1591 // copied over to the dest that didn't exist there.
1592 TypeMap.linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001593
Anton Korobeynikov26098882008-03-05 23:21:39 +00001594 return false;
1595}
Reid Spencer361e5132004-11-12 20:37:43 +00001596
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001597void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1598 this->Composite = M;
1599 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001600
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001601 TypeFinder StructTypes;
1602 StructTypes.run(*M, true);
1603 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
1604}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001605
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001606Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1607 init(M, DiagnosticHandler);
1608}
1609
1610Linker::Linker(Module *M) {
1611 init(M, [this](const DiagnosticInfo &DI) {
1612 Composite->getContext().diagnose(DI);
1613 });
1614}
1615
Rafael Espindola3df61b72013-05-04 03:48:37 +00001616Linker::~Linker() {
1617}
1618
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001619void Linker::deleteModule() {
1620 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001621 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001622}
1623
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001624bool Linker::linkInModule(Module *Src) {
1625 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1626 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001627 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001628}
1629
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001630//===----------------------------------------------------------------------===//
1631// LinkModules entrypoint.
1632//===----------------------------------------------------------------------===//
1633
Rafael Espindola18c89412014-10-27 02:35:46 +00001634/// This function links two modules together, with the resulting Dest module
1635/// modified to be the composite of the two input modules. If an error occurs,
1636/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1637/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1638/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001639bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001640 DiagnosticHandlerFunction DiagnosticHandler) {
1641 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001642 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001643}
1644
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001645bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001646 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001647 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001648}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001649
1650//===----------------------------------------------------------------------===//
1651// C API.
1652//===----------------------------------------------------------------------===//
1653
1654LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1655 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001656 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001657 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001658 raw_string_ostream Stream(Message);
1659 DiagnosticPrinterRawOStream DP(Stream);
1660
1661 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001662 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001663
1664 if (OutMessages && Result)
1665 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001666 return Result;
1667}