blob: 1e08262c8bd0ef1344ab94c3751ec2acd8aab15e [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
66 /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
67 /// module from a type definition in the source module.
68 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.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000110 if (!areTypesIsomorphic(DstTy, SrcTy)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000111 // Oops, they aren't isomorphic. Just discard this request by rolling out
112 // any speculative mappings we've established.
113 for (unsigned i = 0, e = SpeculativeTypes.size(); i != e; ++i)
114 MappedTypes.erase(SpeculativeTypes[i]);
Bill Wendlingd48b7782012-02-28 04:01:21 +0000115 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000116 SpeculativeTypes.clear();
117}
Chris Lattnereee6f992008-06-16 21:00:18 +0000118
Rafael Espindola18c89412014-10-27 02:35:46 +0000119/// Recursively walk this pair of types, returning true if they are isomorphic,
120/// false if they are not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000121bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
122 // Two types with differing kinds are clearly not isomorphic.
123 if (DstTy->getTypeID() != SrcTy->getTypeID()) return false;
Misha Brukman10468d82005-04-21 22:55:34 +0000124
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000125 // If we have an entry in the MappedTypes table, then we have our answer.
126 Type *&Entry = MappedTypes[SrcTy];
127 if (Entry)
128 return Entry == DstTy;
Misha Brukman10468d82005-04-21 22:55:34 +0000129
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000130 // Two identical types are clearly isomorphic. Remember this
131 // non-speculatively.
132 if (DstTy == SrcTy) {
133 Entry = DstTy;
Chris Lattnerfe677e92008-06-16 20:03:01 +0000134 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000135 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000136
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000137 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000138
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000139 // If this is an opaque struct type, special case it.
140 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
141 // Mapping an opaque type to any struct, just keep the dest struct.
142 if (SSTy->isOpaque()) {
143 Entry = DstTy;
144 SpeculativeTypes.push_back(SrcTy);
Reid Spencer361e5132004-11-12 20:37:43 +0000145 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000146 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000147
Chris Lattner5e3bd972011-12-20 00:03:52 +0000148 // Mapping a non-opaque source type to an opaque dest. If this is the first
149 // type that we're mapping onto this destination type then we succeed. Keep
150 // the dest, but fill it in later. This doesn't need to be speculative. If
151 // this is the second (different) type that we're trying to map onto the
152 // same opaque type then we fail.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000153 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-12-20 00:03:52 +0000154 // We can only map one source type onto the opaque destination type.
155 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)))
156 return false;
157 SrcDefinitionsToResolve.push_back(SSTy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000158 Entry = DstTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000159 return true;
160 }
161 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000162
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000163 // If the number of subtypes disagree between the two types, then we fail.
164 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
Reid Spencer361e5132004-11-12 20:37:43 +0000165 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000166
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000167 // Fail if any of the extra properties (e.g. array size) of the type disagree.
168 if (isa<IntegerType>(DstTy))
169 return false; // bitwidth disagrees.
170 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
171 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
172 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000173
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000174 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
175 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
176 return false;
177 } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) {
178 StructType *SSTy = cast<StructType>(SrcTy);
Chris Lattner44f7ab42011-08-12 18:07:26 +0000179 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000180 DSTy->isPacked() != SSTy->isPacked())
181 return false;
182 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
183 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
184 return false;
185 } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Joey Gouly5fad3e92013-01-10 10:49:36 +0000186 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000187 return false;
Reid Spencer361e5132004-11-12 20:37:43 +0000188 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000189
190 // Otherwise, we speculate that these two types will line up and recursively
191 // check the subelements.
192 Entry = DstTy;
193 SpeculativeTypes.push_back(SrcTy);
194
Bill Wendlingd48b7782012-02-28 04:01:21 +0000195 for (unsigned i = 0, e = SrcTy->getNumContainedTypes(); i != e; ++i)
196 if (!areTypesIsomorphic(DstTy->getContainedType(i),
197 SrcTy->getContainedType(i)))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000198 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000199
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000200 // If everything seems to have lined up, then everything is great.
201 return true;
202}
203
Rafael Espindola18c89412014-10-27 02:35:46 +0000204/// Produce a body for an opaque type in the dest module from a type definition
205/// in the source module.
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 {
James Molloyf6f121e2013-05-28 15:17:05 +0000358 class ModuleLinker;
359
Rafael Espindola18c89412014-10-27 02:35:46 +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.
James Molloyf6f121e2013-05-28 15:17:05 +0000363 class ValueMaterializerTy : public ValueMaterializer {
364 TypeMapTy &TypeMap;
365 Module *DstM;
366 std::vector<Function*> &LazilyLinkFunctions;
367 public:
368 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
369 std::vector<Function*> &LazilyLinkFunctions) :
370 ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
371 LazilyLinkFunctions(LazilyLinkFunctions) {
372 }
373
Craig Topper85482992014-03-05 07:52:44 +0000374 Value *materializeValueFor(Value *V) override;
James Molloyf6f121e2013-05-28 15:17:05 +0000375 };
376
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000377 namespace {
378 class LinkDiagnosticInfo : public DiagnosticInfo {
379 const Twine &Msg;
380
381 public:
382 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
383 void print(DiagnosticPrinter &DP) const override;
384 };
385 LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
386 const Twine &Msg)
387 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
388 void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
389 }
390
Rafael Espindola18c89412014-10-27 02:35:46 +0000391 /// This is an implementation class for the LinkModules function, which is the
392 /// entrypoint for this file.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000393 class ModuleLinker {
394 Module *DstM, *SrcM;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000395
396 TypeMapTy TypeMap;
James Molloyf6f121e2013-05-28 15:17:05 +0000397 ValueMaterializerTy ValMaterializer;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000398
Rafael Espindola18c89412014-10-27 02:35:46 +0000399 /// Mapping of values from what they used to be in Src, to what they are now
400 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
401 /// due to the use of Value handles which the Linker doesn't actually need,
402 /// but this allows us to reuse the ValueMapper code.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000403 ValueToValueMapTy ValueMap;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000404
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000405 struct AppendingVarInfo {
406 GlobalVariable *NewGV; // New aggregate global in dest module.
407 Constant *DstInit; // Old initializer from dest module.
408 Constant *SrcInit; // Old initializer from src module.
409 };
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000410
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000411 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000412
Tanya Lattnercbb91402011-10-11 00:24:54 +0000413 unsigned Mode; // Mode to treat source module.
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000414
Tanya Lattnercbb91402011-10-11 00:24:54 +0000415 // Set of items not to link in from source.
416 SmallPtrSet<const Value*, 16> DoNotLinkFromSource;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000417
Tanya Lattner0a48b872011-11-02 00:24:56 +0000418 // Vector of functions to lazily link in.
Bill Wendlingfa2287822013-03-27 17:54:41 +0000419 std::vector<Function*> LazilyLinkFunctions;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000420
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000421 Linker::DiagnosticHandlerFunction DiagnosticHandler;
422
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000423 public:
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000424 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode,
425 Linker::DiagnosticHandlerFunction DiagnosticHandler)
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000426 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000427 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions), Mode(mode),
428 DiagnosticHandler(DiagnosticHandler) {}
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000429
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000430 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000431
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000432 private:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000433 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
434 const GlobalValue &Src);
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000435
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000436 /// Helper method for setting a message and returning an error code.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000437 bool emitError(const Twine &Message) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000438 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
Chris Lattner99953022008-06-16 18:27:53 +0000439 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000440 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000441
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000442 void emitWarning(const Twine &Message) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000443 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000444 }
445
David Majnemerdad0a642014-06-27 18:19:56 +0000446 bool getComdatLeader(Module *M, StringRef ComdatName,
447 const GlobalVariable *&GVar);
448 bool computeResultingSelectionKind(StringRef ComdatName,
449 Comdat::SelectionKind Src,
450 Comdat::SelectionKind Dst,
451 Comdat::SelectionKind &Result,
452 bool &LinkFromSrc);
453 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
454 ComdatsChosen;
455 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
456 bool &LinkFromSrc);
457
Rafael Espindola18c89412014-10-27 02:35:46 +0000458 /// This analyzes the two global values and determines what the result will
459 /// look like in the destination module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000460 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000461 GlobalValue::LinkageTypes &LT,
462 GlobalValue::VisibilityTypes &Vis,
463 bool &LinkFromSrc);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000464
Rafael Espindola18c89412014-10-27 02:35:46 +0000465 /// Given a global in the source module, return the global in the
466 /// destination module that is being linked to, if any.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000467 GlobalValue *getLinkedToGlobal(GlobalValue *SrcGV) {
468 // If the source has no name it can't link. If it has local linkage,
469 // there is no name match-up going on.
470 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000471 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000472
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000473 // Otherwise see if we have a match in the destination module's symtab.
474 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
Craig Topper2617dcc2014-04-15 06:32:26 +0000475 if (!DGV) return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000476
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000477 // If we found a global with the same name in the dest module, but it has
478 // internal linkage, we are really not doing any linkage here.
479 if (DGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000480 return nullptr;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000481
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000482 // Otherwise, we do in fact link to the destination global.
483 return DGV;
484 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000485
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000486 void computeTypeMapping();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000487
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000488 void upgradeMismatchedGlobalArray(StringRef Name);
489 void upgradeMismatchedGlobals();
490
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000491 bool linkAppendingVarProto(GlobalVariable *DstGV, GlobalVariable *SrcGV);
492 bool linkGlobalProto(GlobalVariable *SrcGV);
493 bool linkFunctionProto(Function *SrcF);
494 bool linkAliasProto(GlobalAlias *SrcA);
Bill Wendling66f02412012-02-11 11:38:06 +0000495 bool linkModuleFlagsMetadata();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000496
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000497 void linkAppendingVarInit(const AppendingVarInfo &AVI);
498 void linkGlobalInits();
499 void linkFunctionBody(Function *Dst, Function *Src);
500 void linkAliasBodies();
501 void linkNamedMDNodes();
502 };
Bill Wendlingd48b7782012-02-28 04:01:21 +0000503}
504
Rafael Espindola18c89412014-10-27 02:35:46 +0000505/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
506/// table. This is good for all clients except for us. Go through the trouble
507/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000508static void forceRenaming(GlobalValue *GV, StringRef Name) {
509 // If the global doesn't force its name or if it already has the right name,
510 // there is nothing for us to do.
511 if (GV->hasLocalLinkage() || GV->getName() == Name)
512 return;
513
514 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000515
516 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000517 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000518 GV->takeName(ConflictGV);
519 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000520 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000521 } else {
522 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000523 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000524}
Reid Spencer90246aa2007-02-04 04:29:21 +0000525
Rafael Espindola18c89412014-10-27 02:35:46 +0000526/// copy additional attributes (those not needed to construct a GlobalValue)
527/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000528static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000529 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000530 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000531 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000532 if (DestGO)
533 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000534
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000535 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000536
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000537 if (DestGO)
538 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000539
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000540 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000541}
542
Rafael Espindola23f8d642012-01-05 23:02:01 +0000543static bool isLessConstraining(GlobalValue::VisibilityTypes a,
544 GlobalValue::VisibilityTypes b) {
545 if (a == GlobalValue::HiddenVisibility)
546 return false;
547 if (b == GlobalValue::HiddenVisibility)
548 return true;
549 if (a == GlobalValue::ProtectedVisibility)
550 return false;
551 if (b == GlobalValue::ProtectedVisibility)
552 return true;
553 return false;
554}
555
James Molloyf6f121e2013-05-28 15:17:05 +0000556Value *ValueMaterializerTy::materializeValueFor(Value *V) {
557 Function *SF = dyn_cast<Function>(V);
558 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000559 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000560
561 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
562 SF->getLinkage(), SF->getName(), DstM);
563 copyGVAttributes(DF, SF);
564
Rafael Espindola3931c282014-08-15 20:17:08 +0000565 if (Comdat *SC = SF->getComdat()) {
566 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
567 DF->setComdat(DC);
568 }
569
James Molloyf6f121e2013-05-28 15:17:05 +0000570 LazilyLinkFunctions.push_back(SF);
571 return DF;
572}
573
David Majnemerdad0a642014-06-27 18:19:56 +0000574bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
575 const GlobalVariable *&GVar) {
576 const GlobalValue *GVal = M->getNamedValue(ComdatName);
577 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
578 GVal = GA->getBaseObject();
579 if (!GVal)
580 // We cannot resolve the size of the aliasee yet.
581 return emitError("Linking COMDATs named '" + ComdatName +
582 "': COMDAT key involves incomputable alias size.");
583 }
584
585 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
586 if (!GVar)
587 return emitError(
588 "Linking COMDATs named '" + ComdatName +
589 "': GlobalVariable required for data dependent selection!");
590
591 return false;
592}
593
594bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
595 Comdat::SelectionKind Src,
596 Comdat::SelectionKind Dst,
597 Comdat::SelectionKind &Result,
598 bool &LinkFromSrc) {
599 // The ability to mix Comdat::SelectionKind::Any with
600 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
601 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
602 Dst == Comdat::SelectionKind::Largest;
603 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
604 Src == Comdat::SelectionKind::Largest;
605 if (DstAnyOrLargest && SrcAnyOrLargest) {
606 if (Dst == Comdat::SelectionKind::Largest ||
607 Src == Comdat::SelectionKind::Largest)
608 Result = Comdat::SelectionKind::Largest;
609 else
610 Result = Comdat::SelectionKind::Any;
611 } else if (Src == Dst) {
612 Result = Dst;
613 } else {
614 return emitError("Linking COMDATs named '" + ComdatName +
615 "': invalid selection kinds!");
616 }
617
618 switch (Result) {
619 case Comdat::SelectionKind::Any:
620 // Go with Dst.
621 LinkFromSrc = false;
622 break;
623 case Comdat::SelectionKind::NoDuplicates:
624 return emitError("Linking COMDATs named '" + ComdatName +
625 "': noduplicates has been violated!");
626 case Comdat::SelectionKind::ExactMatch:
627 case Comdat::SelectionKind::Largest:
628 case Comdat::SelectionKind::SameSize: {
629 const GlobalVariable *DstGV;
630 const GlobalVariable *SrcGV;
631 if (getComdatLeader(DstM, ComdatName, DstGV) ||
632 getComdatLeader(SrcM, ComdatName, SrcGV))
633 return true;
634
635 const DataLayout *DstDL = DstM->getDataLayout();
636 const DataLayout *SrcDL = SrcM->getDataLayout();
637 if (!DstDL || !SrcDL) {
638 return emitError(
639 "Linking COMDATs named '" + ComdatName +
640 "': can't do size dependent selection without DataLayout!");
641 }
642 uint64_t DstSize =
643 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
644 uint64_t SrcSize =
645 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
646 if (Result == Comdat::SelectionKind::ExactMatch) {
647 if (SrcGV->getInitializer() != DstGV->getInitializer())
648 return emitError("Linking COMDATs named '" + ComdatName +
649 "': ExactMatch violated!");
650 LinkFromSrc = false;
651 } else if (Result == Comdat::SelectionKind::Largest) {
652 LinkFromSrc = SrcSize > DstSize;
653 } else if (Result == Comdat::SelectionKind::SameSize) {
654 if (SrcSize != DstSize)
655 return emitError("Linking COMDATs named '" + ComdatName +
656 "': SameSize violated!");
657 LinkFromSrc = false;
658 } else {
659 llvm_unreachable("unknown selection kind");
660 }
661 break;
662 }
663 }
664
665 return false;
666}
667
668bool ModuleLinker::getComdatResult(const Comdat *SrcC,
669 Comdat::SelectionKind &Result,
670 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000671 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000672 StringRef ComdatName = SrcC->getName();
673 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
674 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000675
Rafael Espindolab16196a2014-08-11 17:07:34 +0000676 if (DstCI == ComdatSymTab.end()) {
677 // Use the comdat if it is only available in one of the modules.
678 LinkFromSrc = true;
679 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000680 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000681 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000682
683 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000684 Comdat::SelectionKind DSK = DstC->getSelectionKind();
685 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
686 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000687}
James Molloyf6f121e2013-05-28 15:17:05 +0000688
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000689bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
690 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000691 const GlobalValue &Src) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000692 bool SrcIsDeclaration = Src.isDeclarationForLinker();
693 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000694
Rafael Espindola09106052014-09-09 15:59:12 +0000695 // FIXME: Make datalayout mandatory and just use getDataLayout().
696 DataLayout DL(Dest.getParent());
697
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000698 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
728 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
729 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000730 LinkFromSrc = SrcSize > DestSize;
731 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000732 }
733
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000734 if (Src.isWeakForLinker()) {
735 assert(!Dest.hasExternalWeakLinkage());
736 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000737
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000738 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
739 LinkFromSrc = true;
740 return false;
741 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000742
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000743 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000744 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000745 }
746
747 if (Dest.isWeakForLinker()) {
748 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000749 LinkFromSrc = true;
750 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000751 }
752
753 assert(!Src.hasExternalWeakLinkage());
754 assert(!Dest.hasExternalWeakLinkage());
755 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
756 "Unexpected linkage type!");
757 return emitError("Linking globals named '" + Src.getName() +
758 "': symbol multiply defined!");
759}
760
Rafael Espindola83a7ddb2014-09-09 14:07:40 +0000761/// This analyzes the two global values and determines what the result will look
762/// like in the destination module. In particular, it computes the resultant
763/// linkage type and visibility, computes whether the global in the source
764/// should be copied over to the destination (replacing the existing one), and
765/// computes whether this linkage is an error or not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000766bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000767 GlobalValue::LinkageTypes &LT,
768 GlobalValue::VisibilityTypes &Vis,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000769 bool &LinkFromSrc) {
770 assert(Dest && "Must have two globals being queried");
771 assert(!Src->hasLocalLinkage() &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000772 "If Src has internal linkage, Dest shouldn't be set!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000773
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000774 if (shouldLinkFromSource(LinkFromSrc, *Dest, *Src))
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000775 return true;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000776
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000777 if (LinkFromSrc)
Chris Lattnerfc61de32004-12-03 22:18:41 +0000778 LT = Src->getLinkage();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000779 else
780 LT = Dest->getLinkage();
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000781
Rafael Espindola23f8d642012-01-05 23:02:01 +0000782 // Compute the visibility. We follow the rules in the System V Application
783 // Binary Interface.
Duncan P. N. Exon Smithb2becfd2014-05-07 22:55:46 +0000784 assert(!GlobalValue::isLocalLinkage(LT) &&
785 "Symbols with local linkage should not be merged");
Rafael Espindola23f8d642012-01-05 23:02:01 +0000786 Vis = isLessConstraining(Src->getVisibility(), Dest->getVisibility()) ?
787 Dest->getVisibility() : Src->getVisibility();
Chris Lattnerfc61de32004-12-03 22:18:41 +0000788 return false;
789}
Reid Spencer361e5132004-11-12 20:37:43 +0000790
Rafael Espindola18c89412014-10-27 02:35:46 +0000791/// Loop over all of the linked values to compute type mappings. For example,
792/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
793/// types 'Foo' but one got renamed when the module was loaded into the same
794/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000795void ModuleLinker::computeTypeMapping() {
796 // Incorporate globals.
797 for (Module::global_iterator I = SrcM->global_begin(),
798 E = SrcM->global_end(); I != E; ++I) {
799 GlobalValue *DGV = getLinkedToGlobal(I);
Craig Topper2617dcc2014-04-15 06:32:26 +0000800 if (!DGV) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000801
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000802 if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) {
803 TypeMap.addTypeMapping(DGV->getType(), I->getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000804 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000805 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000806
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000807 // Unify the element type of appending arrays.
808 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
809 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
810 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000811 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000812
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000813 // Incorporate functions.
814 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
815 if (GlobalValue *DGV = getLinkedToGlobal(I))
816 TypeMap.addTypeMapping(DGV->getType(), I->getType());
817 }
Bill Wendling7b464612012-02-27 22:34:19 +0000818
Bill Wendlingd48b7782012-02-28 04:01:21 +0000819 // Incorporate types by name, scanning all the types in the source module.
820 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000821 // example. When the source module got loaded into the same LLVMContext, if
822 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000823 TypeFinder SrcStructTypes;
824 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000825 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
826 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000827
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000828 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
829 StructType *ST = SrcStructTypes[i];
830 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000831
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000832 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000833 size_t DotPos = ST->getName().rfind('.');
834 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000835 ST->getName().back() == '.' ||
836 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000837 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000838
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000839 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000840 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000841 // Don't use it if this actually came from the source module. They're in
842 // the same LLVMContext after all. Also don't use it unless the type is
843 // actually used in the destination module. This can happen in situations
844 // like this:
845 //
846 // Module A Module B
847 // -------- --------
848 // %Z = type { %A } %B = type { %C.1 }
849 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
850 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
851 // %C = type { i8* } %B.3 = type { %C.1 }
852 //
853 // When we link Module B with Module A, the '%B' in Module B is
854 // used. However, that would then use '%C.1'. But when we process '%C.1',
855 // we prefer to take the '%C' version. So we are then left with both
856 // '%C.1' and '%C' being used for the same types. This leads to some
857 // variables using one type and some using the other.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000858 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000859 TypeMap.addTypeMapping(DST, ST);
860 }
861
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000862 // Don't bother incorporating aliases, they aren't generally typed well.
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000863
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000864 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000865 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000866 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000867}
868
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000869static void upgradeGlobalArray(GlobalVariable *GV) {
870 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
871 StructType *OldTy = cast<StructType>(ATy->getElementType());
872 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
873
874 // Get the upgraded 3 element type.
875 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
876 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
877 VoidPtrTy};
878 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
879
880 // Build new constants with a null third field filled in.
881 Constant *OldInitC = GV->getInitializer();
882 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
883 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
884 // Invalid initializer; give up.
885 return;
886 std::vector<Constant *> Initializers;
887 if (OldInit && OldInit->getNumOperands()) {
888 Value *Null = Constant::getNullValue(VoidPtrTy);
889 for (Use &U : OldInit->operands()) {
890 ConstantStruct *Init = cast<ConstantStruct>(U.get());
891 Initializers.push_back(ConstantStruct::get(
892 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
893 }
894 }
895 assert(Initializers.size() == ATy->getNumElements() &&
896 "Failed to copy all array elements");
897
898 // Replace the old GV with a new one.
899 ATy = ArrayType::get(NewTy, Initializers.size());
900 Constant *NewInit = ConstantArray::get(ATy, Initializers);
901 GlobalVariable *NewGV = new GlobalVariable(
902 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
903 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
904 GV->isExternallyInitialized());
905 NewGV->copyAttributesFrom(GV);
906 NewGV->takeName(GV);
907 assert(GV->use_empty() && "program cannot use initializer list");
908 GV->eraseFromParent();
909}
910
911void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
912 // Look for the global arrays.
913 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
914 if (!DstGV)
915 return;
916 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
917 if (!SrcGV)
918 return;
919
920 // Check if the types already match.
921 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
922 auto *SrcTy =
923 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
924 if (DstTy == SrcTy)
925 return;
926
927 // Grab the element types. We can only upgrade an array of a two-field
928 // struct. Only bother if the other one has three-fields.
929 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
930 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
931 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
932 upgradeGlobalArray(DstGV);
933 return;
934 }
935 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
936 upgradeGlobalArray(SrcGV);
937
938 // We can't upgrade any other differences.
939}
940
941void ModuleLinker::upgradeMismatchedGlobals() {
942 upgradeMismatchedGlobalArray("llvm.global_ctors");
943 upgradeMismatchedGlobalArray("llvm.global_dtors");
944}
945
Rafael Espindola18c89412014-10-27 02:35:46 +0000946/// If there were any appending global variables, link them together now.
947/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000948bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
949 GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000950
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000951 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
952 return emitError("Linking globals named '" + SrcGV->getName() +
953 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000954
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000955 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
956 ArrayType *SrcTy =
957 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
958 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000959
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000960 // Check to see that they two arrays agree on type.
961 if (EltTy != SrcTy->getElementType())
962 return emitError("Appending variables with different element types!");
963 if (DstGV->isConstant() != SrcGV->isConstant())
964 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000965
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000966 if (DstGV->getAlignment() != SrcGV->getAlignment())
967 return emitError(
968 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000969
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000970 if (DstGV->getVisibility() != SrcGV->getVisibility())
971 return emitError(
972 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000973
974 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
975 return emitError(
976 "Appending variables with different unnamed_addr need to be linked!");
977
Rafael Espindola64c1e182014-06-03 02:41:57 +0000978 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000979 return emitError(
980 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000981
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000982 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
983 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000984
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000985 // Create the new global variable.
986 GlobalVariable *NG =
987 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000988 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000989 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000990 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000991
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000992 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000993 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000994
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000995 AppendingVarInfo AVI;
996 AVI.NewGV = NG;
997 AVI.DstInit = DstGV->getInitializer();
998 AVI.SrcInit = SrcGV->getInitializer();
999 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001000
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001001 // Replace any uses of the two global variables with uses of the new
1002 // global.
1003 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +00001004
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001005 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
1006 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001007
Tanya Lattnercbb91402011-10-11 00:24:54 +00001008 // Track the source variable so we don't try to link it.
1009 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001010
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001011 return false;
1012}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001013
Rafael Espindola18c89412014-10-27 02:35:46 +00001014/// Loop through the global variables in the src module and merge them into the
1015/// dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001016bool ModuleLinker::linkGlobalProto(GlobalVariable *SGV) {
1017 GlobalValue *DGV = getLinkedToGlobal(SGV);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001018 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindolad4885da2013-09-04 14:05:09 +00001019 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001020 unsigned Alignment = SGV->getAlignment();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001021
David Majnemerdad0a642014-06-27 18:19:56 +00001022 bool LinkFromSrc = false;
1023 Comdat *DC = nullptr;
1024 if (const Comdat *SC = SGV->getComdat()) {
1025 Comdat::SelectionKind SK;
1026 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1027 DC = DstM->getOrInsertComdat(SC->getName());
1028 DC->setSelectionKind(SK);
1029 }
1030
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001031 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001032 if (!DC) {
1033 // Concatenation of appending linkage variables is magic and handled later.
1034 if (DGV->hasAppendingLinkage() || SGV->hasAppendingLinkage())
1035 return linkAppendingVarProto(cast<GlobalVariable>(DGV), SGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001036
David Majnemerdad0a642014-06-27 18:19:56 +00001037 // Determine whether linkage of these two globals follows the source
1038 // module's definition or the destination module's definition.
1039 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1040 GlobalValue::VisibilityTypes NV;
1041 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
1042 return true;
1043 NewVisibility = NV;
1044 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001045 if (DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1046 Alignment = std::max(Alignment, DGV->getAlignment());
1047 else if (!LinkFromSrc)
1048 Alignment = DGV->getAlignment();
Reid Spencer361e5132004-11-12 20:37:43 +00001049
David Majnemerdad0a642014-06-27 18:19:56 +00001050 // If we're not linking from the source, then keep the definition that we
1051 // have.
1052 if (!LinkFromSrc) {
1053 // Special case for const propagation.
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001054 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
1055 DGVar->setAlignment(Alignment);
1056
David Majnemerdad0a642014-06-27 18:19:56 +00001057 if (DGVar->isDeclaration() && SGV->isConstant() &&
1058 !DGVar->isConstant())
1059 DGVar->setConstant(true);
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001060 }
David Majnemerdad0a642014-06-27 18:19:56 +00001061
1062 // Set calculated linkage, visibility and unnamed_addr.
1063 DGV->setLinkage(NewLinkage);
1064 DGV->setVisibility(*NewVisibility);
1065 DGV->setUnnamedAddr(HasUnnamedAddr);
1066 }
1067 }
1068
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001069 if (!LinkFromSrc) {
Chris Lattner0ead7a52008-07-14 07:23:24 +00001070 // Make sure to remember this mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001071 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001072
1073 // Track the source global so that we don't attempt to copy it over when
Tanya Lattnercbb91402011-10-11 00:24:54 +00001074 // processing global initializers.
1075 DoNotLinkFromSource.insert(SGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001076
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001077 return false;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001078 }
Reid Spencer361e5132004-11-12 20:37:43 +00001079 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001080
David Majnemerdad0a642014-06-27 18:19:56 +00001081 // If the Comdat this variable was inside of wasn't selected, skip it.
1082 if (DC && !DGV && !LinkFromSrc) {
1083 DoNotLinkFromSource.insert(SGV);
1084 return false;
1085 }
1086
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001087 // No linking to be performed or linking from the source: simply create an
1088 // identical version of the symbol over in the dest module... the
1089 // initializer will be filled in later by LinkGlobalInits.
1090 GlobalVariable *NewDGV =
1091 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
Craig Topper2617dcc2014-04-15 06:32:26 +00001092 SGV->isConstant(), SGV->getLinkage(), /*init*/nullptr,
1093 SGV->getName(), /*insertbefore*/nullptr,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001094 SGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001095 SGV->getType()->getAddressSpace());
1096 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001097 copyGVAttributes(NewDGV, SGV);
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001098 NewDGV->setAlignment(Alignment);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001099 if (NewVisibility)
1100 NewDGV->setVisibility(*NewVisibility);
Rafael Espindolad4885da2013-09-04 14:05:09 +00001101 NewDGV->setUnnamedAddr(HasUnnamedAddr);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001102
David Majnemerdad0a642014-06-27 18:19:56 +00001103 if (DC)
1104 NewDGV->setComdat(DC);
1105
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001106 if (DGV) {
1107 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType()));
1108 DGV->eraseFromParent();
1109 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001110
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001111 // Make sure to remember this mapping.
1112 ValueMap[SGV] = NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001113 return false;
1114}
1115
Rafael Espindola18c89412014-10-27 02:35:46 +00001116/// Link the function in the source module into the destination module if
1117/// needed, setting up mapping information.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001118bool ModuleLinker::linkFunctionProto(Function *SF) {
1119 GlobalValue *DGV = getLinkedToGlobal(SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001120 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindolafd9a9412013-09-04 14:59:03 +00001121 bool HasUnnamedAddr = SF->hasUnnamedAddr();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001122
David Majnemerdad0a642014-06-27 18:19:56 +00001123 bool LinkFromSrc = false;
1124 Comdat *DC = nullptr;
1125 if (const Comdat *SC = SF->getComdat()) {
1126 Comdat::SelectionKind SK;
1127 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1128 DC = DstM->getOrInsertComdat(SC->getName());
1129 DC->setSelectionKind(SK);
1130 }
1131
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001132 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001133 if (!DC) {
1134 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1135 GlobalValue::VisibilityTypes NV;
1136 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
1137 return true;
1138 NewVisibility = NV;
1139 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1140
1141 if (!LinkFromSrc) {
1142 // Set calculated linkage
1143 DGV->setLinkage(NewLinkage);
1144 DGV->setVisibility(*NewVisibility);
1145 DGV->setUnnamedAddr(HasUnnamedAddr);
1146 }
1147 }
Rafael Espindola23f8d642012-01-05 23:02:01 +00001148
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001149 if (!LinkFromSrc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001150 // Make sure to remember this mapping.
1151 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001152
1153 // Track the function from the source module so we don't attempt to remap
Tanya Lattnercbb91402011-10-11 00:24:54 +00001154 // it.
1155 DoNotLinkFromSource.insert(SF);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001156
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001157 return false;
1158 }
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +00001159 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001160
James Molloyf6f121e2013-05-28 15:17:05 +00001161 // If the function is to be lazily linked, don't create it just yet.
1162 // The ValueMaterializerTy will deal with creating it if it's used.
1163 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1164 SF->hasAvailableExternallyLinkage())) {
1165 DoNotLinkFromSource.insert(SF);
1166 return false;
1167 }
1168
David Majnemerdad0a642014-06-27 18:19:56 +00001169 // If the Comdat this function was inside of wasn't selected, skip it.
1170 if (DC && !DGV && !LinkFromSrc) {
1171 DoNotLinkFromSource.insert(SF);
1172 return false;
1173 }
1174
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001175 // If there is no linkage to be performed or we are linking from the source,
1176 // bring SF over.
1177 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()),
1178 SF->getLinkage(), SF->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001179 copyGVAttributes(NewDF, SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001180 if (NewVisibility)
1181 NewDF->setVisibility(*NewVisibility);
Rafael Espindolafd9a9412013-09-04 14:59:03 +00001182 NewDF->setUnnamedAddr(HasUnnamedAddr);
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +00001183
David Majnemerdad0a642014-06-27 18:19:56 +00001184 if (DC)
1185 NewDF->setComdat(DC);
1186
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001187 if (DGV) {
1188 // Any uses of DF need to change to NewDF, with cast.
1189 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType()));
1190 DGV->eraseFromParent();
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001191 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001192
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001193 ValueMap[SF] = NewDF;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001194 return false;
1195}
1196
Rafael Espindola18c89412014-10-27 02:35:46 +00001197/// Set up prototypes for any aliases that come over from the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001198bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) {
1199 GlobalValue *DGV = getLinkedToGlobal(SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001200 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +00001201 bool HasUnnamedAddr = SGA->hasUnnamedAddr();
Rafael Espindola23f8d642012-01-05 23:02:01 +00001202
David Majnemerdad0a642014-06-27 18:19:56 +00001203 bool LinkFromSrc = false;
1204 Comdat *DC = nullptr;
1205 if (const Comdat *SC = SGA->getComdat()) {
1206 Comdat::SelectionKind SK;
1207 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1208 DC = DstM->getOrInsertComdat(SC->getName());
1209 DC->setSelectionKind(SK);
1210 }
1211
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001212 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001213 if (!DC) {
1214 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1215 GlobalValue::VisibilityTypes NV;
1216 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
1217 return true;
1218 NewVisibility = NV;
1219 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1220
1221 if (!LinkFromSrc) {
1222 // Set calculated linkage.
1223 DGV->setLinkage(NewLinkage);
1224 DGV->setVisibility(*NewVisibility);
1225 DGV->setUnnamedAddr(HasUnnamedAddr);
1226 }
1227 }
Rafael Espindola23f8d642012-01-05 23:02:01 +00001228
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001229 if (!LinkFromSrc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001230 // Make sure to remember this mapping.
1231 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001232
Tanya Lattnercbb91402011-10-11 00:24:54 +00001233 // Track the alias from the source module so we don't attempt to remap it.
1234 DoNotLinkFromSource.insert(SGA);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001235
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001236 return false;
1237 }
1238 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001239
David Majnemerdad0a642014-06-27 18:19:56 +00001240 // If the Comdat this alias was inside of wasn't selected, skip it.
1241 if (DC && !DGV && !LinkFromSrc) {
1242 DoNotLinkFromSource.insert(SGA);
1243 return false;
1244 }
1245
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001246 // If there is no linkage to be performed or we're linking from the source,
1247 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001248 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindolaf1bedd3742014-05-17 21:29:57 +00001249 auto *NewDA =
1250 GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1251 SGA->getLinkage(), SGA->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001252 copyGVAttributes(NewDA, SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001253 if (NewVisibility)
1254 NewDA->setVisibility(*NewVisibility);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +00001255 NewDA->setUnnamedAddr(HasUnnamedAddr);
Reid Spencer361e5132004-11-12 20:37:43 +00001256
Rafael Espindola64c1e182014-06-03 02:41:57 +00001257 if (DGV) {
1258 // Any uses of DGV need to change to NewDA, with cast.
1259 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDA, DGV->getType()));
1260 DGV->eraseFromParent();
1261 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001262
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001263 ValueMap[SGA] = NewDA;
1264 return false;
1265}
1266
Chris Lattner00245f42012-01-24 13:41:11 +00001267static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001268 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1269
1270 for (unsigned i = 0; i != NumElements; ++i)
1271 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001272}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001273
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001274void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1275 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001276 SmallVector<Constant *, 16> DstElements;
1277 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001278
Rafael Espindolad31dc042014-09-05 21:27:52 +00001279 SmallVector<Constant *, 16> SrcElements;
1280 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001281
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001282 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001283
1284 StringRef Name = AVI.NewGV->getName();
1285 bool IsNewStructor =
1286 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1287 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1288
1289 for (auto *V : SrcElements) {
1290 if (IsNewStructor) {
1291 Constant *Key = V->getAggregateElement(2);
1292 if (DoNotLinkFromSource.count(Key))
1293 continue;
1294 }
1295 DstElements.push_back(
1296 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1297 }
1298 if (IsNewStructor) {
1299 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1300 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1301 }
1302
1303 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001304}
1305
Rafael Espindola18c89412014-10-27 02:35:46 +00001306/// Update the initializers in the Dest module now that all globals that may be
1307/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001308void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001309 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001310 for (Module::const_global_iterator I = SrcM->global_begin(),
1311 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001312
Tanya Lattnercbb91402011-10-11 00:24:54 +00001313 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001314 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1315
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001316 // Grab destination global variable.
1317 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1318 // Figure out what the initializer looks like in the dest module.
1319 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001320 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001321 }
Reid Spencer361e5132004-11-12 20:37:43 +00001322}
1323
Rafael Espindola18c89412014-10-27 02:35:46 +00001324/// Copy the source function over into the dest function and fix up references
1325/// to values. At this point we know that Dest is an external function, and
1326/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001327void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1328 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001329
Chris Lattner7391dde2004-11-16 17:12:38 +00001330 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001331 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001332 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001333 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001334 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001335
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001336 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001337 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001338 }
1339
Tanya Lattnercbb91402011-10-11 00:24:54 +00001340 if (Mode == Linker::DestroySource) {
1341 // Splice the body of the source function into the dest function.
1342 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001343
Tanya Lattnercbb91402011-10-11 00:24:54 +00001344 // At this point, all of the instructions and values of the function are now
1345 // copied over. The only problem is that they are still referencing values in
1346 // the Source function as operands. Loop through all of the operands of the
1347 // functions and patch them up to point to the local versions.
1348 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1349 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
James Molloyf6f121e2013-05-28 15:17:05 +00001350 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries,
1351 &TypeMap, &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001352
Tanya Lattnercbb91402011-10-11 00:24:54 +00001353 } else {
1354 // Clone the body of the function into the dest function.
1355 SmallVector<ReturnInst*, 8> Returns; // Ignore returns.
Craig Topper2617dcc2014-04-15 06:32:26 +00001356 CloneFunctionInto(Dst, Src, ValueMap, false, Returns, "", nullptr,
James Molloyf6f121e2013-05-28 15:17:05 +00001357 &TypeMap, &ValMaterializer);
Tanya Lattnercbb91402011-10-11 00:24:54 +00001358 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001359
Chris Lattner7391dde2004-11-16 17:12:38 +00001360 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001361 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1362 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001363 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001364
Reid Spencer361e5132004-11-12 20:37:43 +00001365}
1366
Rafael Espindola18c89412014-10-27 02:35:46 +00001367/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001368void ModuleLinker::linkAliasBodies() {
1369 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001370 I != E; ++I) {
1371 if (DoNotLinkFromSource.count(I))
1372 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001373 if (Constant *Aliasee = I->getAliasee()) {
1374 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001375 Constant *Val =
1376 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001377 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001378 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001379 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001380}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001381
Rafael Espindola18c89412014-10-27 02:35:46 +00001382/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001383void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001384 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001385 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1386 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001387 // Don't link module flags here. Do them separately.
1388 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001389 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1390 // Add Src elements into Dest node.
1391 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1392 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001393 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001394 }
1395}
Bill Wendling66f02412012-02-11 11:38:06 +00001396
Rafael Espindola18c89412014-10-27 02:35:46 +00001397/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001398bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001399 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001400 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1401 if (!SrcModFlags) return false;
1402
Bill Wendling66f02412012-02-11 11:38:06 +00001403 // If the destination module doesn't have module flags yet, then just copy
1404 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001405 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001406 if (DstModFlags->getNumOperands() == 0) {
1407 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1408 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1409
1410 return false;
1411 }
1412
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001413 // First build a map of the existing module flags and requirements.
1414 DenseMap<MDString*, MDNode*> Flags;
1415 SmallSetVector<MDNode*, 16> Requirements;
1416 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
1417 MDNode *Op = DstModFlags->getOperand(I);
1418 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1419 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001420
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001421 if (Behavior->getZExtValue() == Module::Require) {
1422 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1423 } else {
1424 Flags[ID] = Op;
1425 }
Bill Wendling66f02412012-02-11 11:38:06 +00001426 }
1427
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001428 // Merge in the flags from the source module, and also collect its set of
1429 // requirements.
1430 bool HasErr = false;
1431 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
1432 MDNode *SrcOp = SrcModFlags->getOperand(I);
1433 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1434 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1435 MDNode *DstOp = Flags.lookup(ID);
1436 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001437
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001438 // If this is a requirement, add it and continue.
1439 if (SrcBehaviorValue == Module::Require) {
1440 // If the destination module does not already have this requirement, add
1441 // it.
1442 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1443 DstModFlags->addOperand(SrcOp);
1444 }
1445 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001446 }
1447
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001448 // If there is no existing flag with this ID, just add it.
1449 if (!DstOp) {
1450 Flags[ID] = SrcOp;
1451 DstModFlags->addOperand(SrcOp);
1452 continue;
1453 }
1454
1455 // Otherwise, perform a merge.
1456 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1457 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1458
1459 // If either flag has override behavior, handle it first.
1460 if (DstBehaviorValue == Module::Override) {
1461 // Diagnose inconsistent flags which both have override behavior.
1462 if (SrcBehaviorValue == Module::Override &&
1463 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1464 HasErr |= emitError("linking module flags '" + ID->getString() +
1465 "': IDs have conflicting override values");
1466 }
1467 continue;
1468 } else if (SrcBehaviorValue == Module::Override) {
1469 // Update the destination flag to that of the source.
1470 DstOp->replaceOperandWith(0, SrcBehavior);
1471 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1472 continue;
1473 }
1474
1475 // Diagnose inconsistent merge behavior types.
1476 if (SrcBehaviorValue != DstBehaviorValue) {
1477 HasErr |= emitError("linking module flags '" + ID->getString() +
1478 "': IDs have conflicting behaviors");
1479 continue;
1480 }
1481
1482 // Perform the merge for standard behavior types.
1483 switch (SrcBehaviorValue) {
1484 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001485 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001486 case Module::Error: {
1487 // Emit an error if the values differ.
1488 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1489 HasErr |= emitError("linking module flags '" + ID->getString() +
1490 "': IDs have conflicting values");
1491 }
1492 continue;
1493 }
1494 case Module::Warning: {
1495 // Emit a warning if the values differ.
1496 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001497 emitWarning("linking module flags '" + ID->getString() +
1498 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001499 }
1500 continue;
1501 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001502 case Module::Append: {
1503 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1504 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1505 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1506 Value **VP, **Values = VP = new Value*[NumOps];
1507 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1508 *VP = DstValue->getOperand(i);
1509 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1510 *VP = SrcValue->getOperand(i);
1511 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1512 ArrayRef<Value*>(Values,
1513 NumOps)));
1514 delete[] Values;
1515 break;
1516 }
1517 case Module::AppendUnique: {
1518 SmallSetVector<Value*, 16> Elts;
1519 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1520 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1521 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1522 Elts.insert(DstValue->getOperand(i));
1523 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1524 Elts.insert(SrcValue->getOperand(i));
1525 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1526 ArrayRef<Value*>(Elts.begin(),
1527 Elts.end())));
1528 break;
1529 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001530 }
Bill Wendling66f02412012-02-11 11:38:06 +00001531 }
1532
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001533 // Check all of the requirements.
1534 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1535 MDNode *Requirement = Requirements[I];
1536 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1537 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001538
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001539 MDNode *Op = Flags[Flag];
1540 if (!Op || Op->getOperand(2) != ReqValue) {
1541 HasErr |= emitError("linking module flags '" + Flag->getString() +
1542 "': does not have the required value");
1543 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001544 }
1545 }
1546
1547 return HasErr;
1548}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001549
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001550bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001551 assert(DstM && "Null destination module");
1552 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001553
1554 // Inherit the target data from the source module if the destination module
1555 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001556 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001557 DstM->setDataLayout(SrcM->getDataLayout());
1558
1559 // Copy the target triple from the source to dest if the dest's is empty.
1560 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1561 DstM->setTargetTriple(SrcM->getTargetTriple());
1562
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001563 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001564 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001565 emitWarning("Linking two modules of different data layouts: '" +
1566 SrcM->getModuleIdentifier() + "' is '" +
1567 SrcM->getDataLayoutStr() + "' whereas '" +
1568 DstM->getModuleIdentifier() + "' is '" +
1569 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001570 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001571 if (!SrcM->getTargetTriple().empty() &&
1572 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001573 emitWarning("Linking two modules of different target triples: " +
1574 SrcM->getModuleIdentifier() + "' is '" +
1575 SrcM->getTargetTriple() + "' whereas '" +
1576 DstM->getModuleIdentifier() + "' is '" +
1577 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001578 }
1579
1580 // Append the module inline asm string.
1581 if (!SrcM->getModuleInlineAsm().empty()) {
1582 if (DstM->getModuleInlineAsm().empty())
1583 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1584 else
1585 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1586 SrcM->getModuleInlineAsm());
1587 }
1588
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001589 // Loop over all of the linked values to compute type mappings.
1590 computeTypeMapping();
1591
David Majnemerdad0a642014-06-27 18:19:56 +00001592 ComdatsChosen.clear();
1593 for (const StringMapEntry<llvm::Comdat> &SMEC : SrcM->getComdatSymbolTable()) {
1594 const Comdat &C = SMEC.getValue();
1595 if (ComdatsChosen.count(&C))
1596 continue;
1597 Comdat::SelectionKind SK;
1598 bool LinkFromSrc;
1599 if (getComdatResult(&C, SK, LinkFromSrc))
1600 return true;
1601 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1602 }
1603
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001604 // Upgrade mismatched global arrays.
1605 upgradeMismatchedGlobals();
1606
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001607 // Insert all of the globals in src into the DstM module... without linking
1608 // initializers (which could refer to functions not yet mapped over).
1609 for (Module::global_iterator I = SrcM->global_begin(),
1610 E = SrcM->global_end(); I != E; ++I)
1611 if (linkGlobalProto(I))
1612 return true;
1613
1614 // Link the functions together between the two modules, without doing function
1615 // bodies... this just adds external function prototypes to the DstM
1616 // function... We do this so that when we begin processing function bodies,
1617 // all of the global values that may be referenced are available in our
1618 // ValueMap.
1619 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
1620 if (linkFunctionProto(I))
1621 return true;
1622
1623 // If there were any aliases, link them now.
1624 for (Module::alias_iterator I = SrcM->alias_begin(),
1625 E = SrcM->alias_end(); I != E; ++I)
1626 if (linkAliasProto(I))
1627 return true;
1628
1629 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1630 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001631
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001632 // Link in the function bodies that are defined in the source module into
1633 // DstM.
1634 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001635 // Skip if not linking from source.
1636 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001637
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001638 Function *DF = cast<Function>(ValueMap[SF]);
1639 if (SF->hasPrefixData()) {
1640 // Link in the prefix data.
1641 DF->setPrefixData(MapValue(
1642 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1643 }
1644
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001645 // Materialize if needed.
1646 if (SF->isMaterializable()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001647 if (std::error_code EC = SF->materialize())
1648 return emitError(EC.message());
Tanya Lattnerea166d42011-10-14 22:17:46 +00001649 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001650
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001651 // Skip if no body (function is external).
1652 if (SF->isDeclaration())
1653 continue;
1654
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001655 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001656 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001657 }
1658
1659 // Resolve all uses of aliases with aliasees.
1660 linkAliasBodies();
1661
Bill Wendling66f02412012-02-11 11:38:06 +00001662 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001663 // after linking GlobalValues so that MDNodes that reference GlobalValues
1664 // are properly remapped.
1665 linkNamedMDNodes();
1666
Bill Wendling66f02412012-02-11 11:38:06 +00001667 // Merge the module flags into the DstM module.
1668 if (linkModuleFlagsMetadata())
1669 return true;
1670
Bill Wendling91686d62014-01-16 06:29:36 +00001671 // Update the initializers in the DstM module now that all globals that may
1672 // be referenced are in DstM.
1673 linkGlobalInits();
1674
Tanya Lattner0a48b872011-11-02 00:24:56 +00001675 // Process vector of lazily linked in functions.
1676 bool LinkedInAnyFunctions;
1677 do {
1678 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001679
Bill Wendlingfa2287822013-03-27 17:54:41 +00001680 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001681 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001682 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001683 if (!SF)
1684 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001685
James Molloyf6f121e2013-05-28 15:17:05 +00001686 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001687 if (SF->hasPrefixData()) {
1688 // Link in the prefix data.
1689 DF->setPrefixData(MapValue(SF->getPrefixData(),
1690 ValueMap,
1691 RF_None,
1692 &TypeMap,
1693 &ValMaterializer));
1694 }
James Molloyf6f121e2013-05-28 15:17:05 +00001695
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001696 // Materialize if needed.
1697 if (SF->isMaterializable()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001698 if (std::error_code EC = SF->materialize())
1699 return emitError(EC.message());
Tanya Lattner0a48b872011-11-02 00:24:56 +00001700 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001701
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001702 // Skip if no body (function is external).
1703 if (SF->isDeclaration())
1704 continue;
1705
James Molloyf6f121e2013-05-28 15:17:05 +00001706 // Erase from vector *before* the function body is linked - linkFunctionBody could
1707 // invalidate I.
1708 LazilyLinkFunctions.erase(I);
1709
1710 // Link in function body.
1711 linkFunctionBody(DF, SF);
1712 SF->Dematerialize();
1713
1714 // Set flag to indicate we may have more functions to lazily link in
1715 // since we linked in a function.
1716 LinkedInAnyFunctions = true;
1717 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001718 }
1719 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001720
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001721 // Now that all of the types from the source are used, resolve any structs
1722 // copied over to the dest that didn't exist there.
1723 TypeMap.linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001724
Anton Korobeynikov26098882008-03-05 23:21:39 +00001725 return false;
1726}
Reid Spencer361e5132004-11-12 20:37:43 +00001727
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001728Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler)
1729 : Composite(M), DiagnosticHandler(DiagnosticHandler) {}
1730
1731Linker::Linker(Module *M)
1732 : Composite(M), DiagnosticHandler([this](const DiagnosticInfo &DI) {
1733 Composite->getContext().diagnose(DI);
1734 }) {
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001735 TypeFinder StructTypes;
1736 StructTypes.run(*M, true);
1737 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
1738}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001739
1740Linker::~Linker() {
1741}
1742
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001743void Linker::deleteModule() {
1744 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001745 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001746}
1747
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001748bool Linker::linkInModule(Module *Src, unsigned Mode) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001749 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, Mode, DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001750 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001751}
1752
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001753//===----------------------------------------------------------------------===//
1754// LinkModules entrypoint.
1755//===----------------------------------------------------------------------===//
1756
Rafael Espindola18c89412014-10-27 02:35:46 +00001757/// This function links two modules together, with the resulting Dest module
1758/// modified to be the composite of the two input modules. If an error occurs,
1759/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1760/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1761/// relied on to be consistent.
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001762bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode,
1763 DiagnosticHandlerFunction DiagnosticHandler) {
1764 Linker L(Dest, DiagnosticHandler);
1765 return L.linkInModule(Src, Mode);
1766}
1767
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001768bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001769 Linker L(Dest);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001770 return L.linkInModule(Src, Mode);
Reid Spencer361e5132004-11-12 20:37:43 +00001771}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001772
1773//===----------------------------------------------------------------------===//
1774// C API.
1775//===----------------------------------------------------------------------===//
1776
1777LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1778 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001779 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001780 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001781 raw_string_ostream Stream(Message);
1782 DiagnosticPrinterRawOStream DP(Stream);
1783
1784 LLVMBool Result = Linker::LinkModules(
1785 D, unwrap(Src), Mode, [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001786
1787 if (OutMessages && Result)
1788 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001789 return Result;
1790}