blob: 02b8b6503ec4f898b9f2d5ca7dc374bcb03e495c [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
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000421 public:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000422 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM, unsigned mode)
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000423 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000424 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions), Mode(mode) {}
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000425
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000426 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000427
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000428 private:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000429 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
430 const GlobalValue &Src);
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000431
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000432 /// Helper method for setting a message and returning an error code.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000433 bool emitError(const Twine &Message) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000434 DstM->getContext().diagnose(LinkDiagnosticInfo(DS_Error, Message));
Chris Lattner99953022008-06-16 18:27:53 +0000435 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000436 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000437
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000438 void emitWarning(const Twine &Message) {
439 DstM->getContext().diagnose(LinkDiagnosticInfo(DS_Warning, Message));
440 }
441
David Majnemerdad0a642014-06-27 18:19:56 +0000442 bool getComdatLeader(Module *M, StringRef ComdatName,
443 const GlobalVariable *&GVar);
444 bool computeResultingSelectionKind(StringRef ComdatName,
445 Comdat::SelectionKind Src,
446 Comdat::SelectionKind Dst,
447 Comdat::SelectionKind &Result,
448 bool &LinkFromSrc);
449 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
450 ComdatsChosen;
451 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
452 bool &LinkFromSrc);
453
Rafael Espindola18c89412014-10-27 02:35:46 +0000454 /// This analyzes the two global values and determines what the result will
455 /// look like in the destination module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000456 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000457 GlobalValue::LinkageTypes &LT,
458 GlobalValue::VisibilityTypes &Vis,
459 bool &LinkFromSrc);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000460
Rafael Espindola18c89412014-10-27 02:35:46 +0000461 /// Given a global in the source module, return the global in the
462 /// destination module that is being linked to, if any.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000463 GlobalValue *getLinkedToGlobal(GlobalValue *SrcGV) {
464 // If the source has no name it can't link. If it has local linkage,
465 // there is no name match-up going on.
466 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000467 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000468
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000469 // Otherwise see if we have a match in the destination module's symtab.
470 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
Craig Topper2617dcc2014-04-15 06:32:26 +0000471 if (!DGV) return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000472
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000473 // If we found a global with the same name in the dest module, but it has
474 // internal linkage, we are really not doing any linkage here.
475 if (DGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000476 return nullptr;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000477
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000478 // Otherwise, we do in fact link to the destination global.
479 return DGV;
480 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000481
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000482 void computeTypeMapping();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000483
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000484 void upgradeMismatchedGlobalArray(StringRef Name);
485 void upgradeMismatchedGlobals();
486
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000487 bool linkAppendingVarProto(GlobalVariable *DstGV, GlobalVariable *SrcGV);
488 bool linkGlobalProto(GlobalVariable *SrcGV);
489 bool linkFunctionProto(Function *SrcF);
490 bool linkAliasProto(GlobalAlias *SrcA);
Bill Wendling66f02412012-02-11 11:38:06 +0000491 bool linkModuleFlagsMetadata();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000492
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000493 void linkAppendingVarInit(const AppendingVarInfo &AVI);
494 void linkGlobalInits();
495 void linkFunctionBody(Function *Dst, Function *Src);
496 void linkAliasBodies();
497 void linkNamedMDNodes();
498 };
Bill Wendlingd48b7782012-02-28 04:01:21 +0000499}
500
Rafael Espindola18c89412014-10-27 02:35:46 +0000501/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
502/// table. This is good for all clients except for us. Go through the trouble
503/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000504static void forceRenaming(GlobalValue *GV, StringRef Name) {
505 // If the global doesn't force its name or if it already has the right name,
506 // there is nothing for us to do.
507 if (GV->hasLocalLinkage() || GV->getName() == Name)
508 return;
509
510 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000511
512 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000513 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000514 GV->takeName(ConflictGV);
515 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000516 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000517 } else {
518 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000519 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000520}
Reid Spencer90246aa2007-02-04 04:29:21 +0000521
Rafael Espindola18c89412014-10-27 02:35:46 +0000522/// copy additional attributes (those not needed to construct a GlobalValue)
523/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000524static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000525 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000526 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000527 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000528 if (DestGO)
529 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000530
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000531 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000532
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000533 if (DestGO)
534 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000535
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000536 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000537}
538
Rafael Espindola23f8d642012-01-05 23:02:01 +0000539static bool isLessConstraining(GlobalValue::VisibilityTypes a,
540 GlobalValue::VisibilityTypes b) {
541 if (a == GlobalValue::HiddenVisibility)
542 return false;
543 if (b == GlobalValue::HiddenVisibility)
544 return true;
545 if (a == GlobalValue::ProtectedVisibility)
546 return false;
547 if (b == GlobalValue::ProtectedVisibility)
548 return true;
549 return false;
550}
551
James Molloyf6f121e2013-05-28 15:17:05 +0000552Value *ValueMaterializerTy::materializeValueFor(Value *V) {
553 Function *SF = dyn_cast<Function>(V);
554 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000555 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000556
557 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
558 SF->getLinkage(), SF->getName(), DstM);
559 copyGVAttributes(DF, SF);
560
Rafael Espindola3931c282014-08-15 20:17:08 +0000561 if (Comdat *SC = SF->getComdat()) {
562 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
563 DF->setComdat(DC);
564 }
565
James Molloyf6f121e2013-05-28 15:17:05 +0000566 LazilyLinkFunctions.push_back(SF);
567 return DF;
568}
569
David Majnemerdad0a642014-06-27 18:19:56 +0000570bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
571 const GlobalVariable *&GVar) {
572 const GlobalValue *GVal = M->getNamedValue(ComdatName);
573 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
574 GVal = GA->getBaseObject();
575 if (!GVal)
576 // We cannot resolve the size of the aliasee yet.
577 return emitError("Linking COMDATs named '" + ComdatName +
578 "': COMDAT key involves incomputable alias size.");
579 }
580
581 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
582 if (!GVar)
583 return emitError(
584 "Linking COMDATs named '" + ComdatName +
585 "': GlobalVariable required for data dependent selection!");
586
587 return false;
588}
589
590bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
591 Comdat::SelectionKind Src,
592 Comdat::SelectionKind Dst,
593 Comdat::SelectionKind &Result,
594 bool &LinkFromSrc) {
595 // The ability to mix Comdat::SelectionKind::Any with
596 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
597 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
598 Dst == Comdat::SelectionKind::Largest;
599 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
600 Src == Comdat::SelectionKind::Largest;
601 if (DstAnyOrLargest && SrcAnyOrLargest) {
602 if (Dst == Comdat::SelectionKind::Largest ||
603 Src == Comdat::SelectionKind::Largest)
604 Result = Comdat::SelectionKind::Largest;
605 else
606 Result = Comdat::SelectionKind::Any;
607 } else if (Src == Dst) {
608 Result = Dst;
609 } else {
610 return emitError("Linking COMDATs named '" + ComdatName +
611 "': invalid selection kinds!");
612 }
613
614 switch (Result) {
615 case Comdat::SelectionKind::Any:
616 // Go with Dst.
617 LinkFromSrc = false;
618 break;
619 case Comdat::SelectionKind::NoDuplicates:
620 return emitError("Linking COMDATs named '" + ComdatName +
621 "': noduplicates has been violated!");
622 case Comdat::SelectionKind::ExactMatch:
623 case Comdat::SelectionKind::Largest:
624 case Comdat::SelectionKind::SameSize: {
625 const GlobalVariable *DstGV;
626 const GlobalVariable *SrcGV;
627 if (getComdatLeader(DstM, ComdatName, DstGV) ||
628 getComdatLeader(SrcM, ComdatName, SrcGV))
629 return true;
630
631 const DataLayout *DstDL = DstM->getDataLayout();
632 const DataLayout *SrcDL = SrcM->getDataLayout();
633 if (!DstDL || !SrcDL) {
634 return emitError(
635 "Linking COMDATs named '" + ComdatName +
636 "': can't do size dependent selection without DataLayout!");
637 }
638 uint64_t DstSize =
639 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
640 uint64_t SrcSize =
641 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
642 if (Result == Comdat::SelectionKind::ExactMatch) {
643 if (SrcGV->getInitializer() != DstGV->getInitializer())
644 return emitError("Linking COMDATs named '" + ComdatName +
645 "': ExactMatch violated!");
646 LinkFromSrc = false;
647 } else if (Result == Comdat::SelectionKind::Largest) {
648 LinkFromSrc = SrcSize > DstSize;
649 } else if (Result == Comdat::SelectionKind::SameSize) {
650 if (SrcSize != DstSize)
651 return emitError("Linking COMDATs named '" + ComdatName +
652 "': SameSize violated!");
653 LinkFromSrc = false;
654 } else {
655 llvm_unreachable("unknown selection kind");
656 }
657 break;
658 }
659 }
660
661 return false;
662}
663
664bool ModuleLinker::getComdatResult(const Comdat *SrcC,
665 Comdat::SelectionKind &Result,
666 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000667 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000668 StringRef ComdatName = SrcC->getName();
669 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
670 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000671
Rafael Espindolab16196a2014-08-11 17:07:34 +0000672 if (DstCI == ComdatSymTab.end()) {
673 // Use the comdat if it is only available in one of the modules.
674 LinkFromSrc = true;
675 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000676 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000677 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000678
679 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000680 Comdat::SelectionKind DSK = DstC->getSelectionKind();
681 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
682 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000683}
James Molloyf6f121e2013-05-28 15:17:05 +0000684
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000685bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
686 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000687 const GlobalValue &Src) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000688 bool SrcIsDeclaration = Src.isDeclarationForLinker();
689 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000690
Rafael Espindola09106052014-09-09 15:59:12 +0000691 // FIXME: Make datalayout mandatory and just use getDataLayout().
692 DataLayout DL(Dest.getParent());
693
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000694 if (SrcIsDeclaration) {
695 // If Src is external or if both Src & Dest are external.. Just link the
696 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000697 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000698 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000699 LinkFromSrc = DestIsDeclaration;
700 return false;
701 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000702 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000703 LinkFromSrc = Dest.hasExternalWeakLinkage();
704 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000705 }
706
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000707 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000708 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000709 LinkFromSrc = true;
710 return false;
711 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000712
Rafael Espindola09106052014-09-09 15:59:12 +0000713 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000714 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
715 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000716 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000717 }
718
719 if (!Dest.hasCommonLinkage()) {
720 LinkFromSrc = false;
721 return false;
722 }
Rafael Espindola09106052014-09-09 15:59:12 +0000723
724 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
725 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000726 LinkFromSrc = SrcSize > DestSize;
727 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000728 }
729
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000730 if (Src.isWeakForLinker()) {
731 assert(!Dest.hasExternalWeakLinkage());
732 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000733
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000734 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
735 LinkFromSrc = true;
736 return false;
737 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000738
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000739 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000740 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000741 }
742
743 if (Dest.isWeakForLinker()) {
744 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000745 LinkFromSrc = true;
746 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000747 }
748
749 assert(!Src.hasExternalWeakLinkage());
750 assert(!Dest.hasExternalWeakLinkage());
751 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
752 "Unexpected linkage type!");
753 return emitError("Linking globals named '" + Src.getName() +
754 "': symbol multiply defined!");
755}
756
Rafael Espindola83a7ddb2014-09-09 14:07:40 +0000757/// This analyzes the two global values and determines what the result will look
758/// like in the destination module. In particular, it computes the resultant
759/// linkage type and visibility, computes whether the global in the source
760/// should be copied over to the destination (replacing the existing one), and
761/// computes whether this linkage is an error or not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000762bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000763 GlobalValue::LinkageTypes &LT,
764 GlobalValue::VisibilityTypes &Vis,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000765 bool &LinkFromSrc) {
766 assert(Dest && "Must have two globals being queried");
767 assert(!Src->hasLocalLinkage() &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000768 "If Src has internal linkage, Dest shouldn't be set!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000769
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000770 if (shouldLinkFromSource(LinkFromSrc, *Dest, *Src))
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000771 return true;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000772
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000773 if (LinkFromSrc)
Chris Lattnerfc61de32004-12-03 22:18:41 +0000774 LT = Src->getLinkage();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000775 else
776 LT = Dest->getLinkage();
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000777
Rafael Espindola23f8d642012-01-05 23:02:01 +0000778 // Compute the visibility. We follow the rules in the System V Application
779 // Binary Interface.
Duncan P. N. Exon Smithb2becfd2014-05-07 22:55:46 +0000780 assert(!GlobalValue::isLocalLinkage(LT) &&
781 "Symbols with local linkage should not be merged");
Rafael Espindola23f8d642012-01-05 23:02:01 +0000782 Vis = isLessConstraining(Src->getVisibility(), Dest->getVisibility()) ?
783 Dest->getVisibility() : Src->getVisibility();
Chris Lattnerfc61de32004-12-03 22:18:41 +0000784 return false;
785}
Reid Spencer361e5132004-11-12 20:37:43 +0000786
Rafael Espindola18c89412014-10-27 02:35:46 +0000787/// Loop over all of the linked values to compute type mappings. For example,
788/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
789/// types 'Foo' but one got renamed when the module was loaded into the same
790/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000791void ModuleLinker::computeTypeMapping() {
792 // Incorporate globals.
793 for (Module::global_iterator I = SrcM->global_begin(),
794 E = SrcM->global_end(); I != E; ++I) {
795 GlobalValue *DGV = getLinkedToGlobal(I);
Craig Topper2617dcc2014-04-15 06:32:26 +0000796 if (!DGV) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000797
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000798 if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) {
799 TypeMap.addTypeMapping(DGV->getType(), I->getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000800 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000801 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000802
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000803 // Unify the element type of appending arrays.
804 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
805 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
806 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000807 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000808
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000809 // Incorporate functions.
810 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
811 if (GlobalValue *DGV = getLinkedToGlobal(I))
812 TypeMap.addTypeMapping(DGV->getType(), I->getType());
813 }
Bill Wendling7b464612012-02-27 22:34:19 +0000814
Bill Wendlingd48b7782012-02-28 04:01:21 +0000815 // Incorporate types by name, scanning all the types in the source module.
816 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000817 // example. When the source module got loaded into the same LLVMContext, if
818 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000819 TypeFinder SrcStructTypes;
820 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000821 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
822 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000823
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000824 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
825 StructType *ST = SrcStructTypes[i];
826 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000827
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000828 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000829 size_t DotPos = ST->getName().rfind('.');
830 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000831 ST->getName().back() == '.' ||
832 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000833 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000834
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000835 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000836 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000837 // Don't use it if this actually came from the source module. They're in
838 // the same LLVMContext after all. Also don't use it unless the type is
839 // actually used in the destination module. This can happen in situations
840 // like this:
841 //
842 // Module A Module B
843 // -------- --------
844 // %Z = type { %A } %B = type { %C.1 }
845 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
846 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
847 // %C = type { i8* } %B.3 = type { %C.1 }
848 //
849 // When we link Module B with Module A, the '%B' in Module B is
850 // used. However, that would then use '%C.1'. But when we process '%C.1',
851 // we prefer to take the '%C' version. So we are then left with both
852 // '%C.1' and '%C' being used for the same types. This leads to some
853 // variables using one type and some using the other.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000854 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000855 TypeMap.addTypeMapping(DST, ST);
856 }
857
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000858 // Don't bother incorporating aliases, they aren't generally typed well.
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000859
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000860 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000861 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000862 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000863}
864
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000865static void upgradeGlobalArray(GlobalVariable *GV) {
866 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
867 StructType *OldTy = cast<StructType>(ATy->getElementType());
868 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
869
870 // Get the upgraded 3 element type.
871 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
872 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
873 VoidPtrTy};
874 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
875
876 // Build new constants with a null third field filled in.
877 Constant *OldInitC = GV->getInitializer();
878 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
879 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
880 // Invalid initializer; give up.
881 return;
882 std::vector<Constant *> Initializers;
883 if (OldInit && OldInit->getNumOperands()) {
884 Value *Null = Constant::getNullValue(VoidPtrTy);
885 for (Use &U : OldInit->operands()) {
886 ConstantStruct *Init = cast<ConstantStruct>(U.get());
887 Initializers.push_back(ConstantStruct::get(
888 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
889 }
890 }
891 assert(Initializers.size() == ATy->getNumElements() &&
892 "Failed to copy all array elements");
893
894 // Replace the old GV with a new one.
895 ATy = ArrayType::get(NewTy, Initializers.size());
896 Constant *NewInit = ConstantArray::get(ATy, Initializers);
897 GlobalVariable *NewGV = new GlobalVariable(
898 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
899 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
900 GV->isExternallyInitialized());
901 NewGV->copyAttributesFrom(GV);
902 NewGV->takeName(GV);
903 assert(GV->use_empty() && "program cannot use initializer list");
904 GV->eraseFromParent();
905}
906
907void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
908 // Look for the global arrays.
909 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
910 if (!DstGV)
911 return;
912 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
913 if (!SrcGV)
914 return;
915
916 // Check if the types already match.
917 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
918 auto *SrcTy =
919 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
920 if (DstTy == SrcTy)
921 return;
922
923 // Grab the element types. We can only upgrade an array of a two-field
924 // struct. Only bother if the other one has three-fields.
925 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
926 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
927 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
928 upgradeGlobalArray(DstGV);
929 return;
930 }
931 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
932 upgradeGlobalArray(SrcGV);
933
934 // We can't upgrade any other differences.
935}
936
937void ModuleLinker::upgradeMismatchedGlobals() {
938 upgradeMismatchedGlobalArray("llvm.global_ctors");
939 upgradeMismatchedGlobalArray("llvm.global_dtors");
940}
941
Rafael Espindola18c89412014-10-27 02:35:46 +0000942/// If there were any appending global variables, link them together now.
943/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000944bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
945 GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000946
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000947 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
948 return emitError("Linking globals named '" + SrcGV->getName() +
949 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000950
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000951 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
952 ArrayType *SrcTy =
953 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
954 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000955
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000956 // Check to see that they two arrays agree on type.
957 if (EltTy != SrcTy->getElementType())
958 return emitError("Appending variables with different element types!");
959 if (DstGV->isConstant() != SrcGV->isConstant())
960 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000961
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000962 if (DstGV->getAlignment() != SrcGV->getAlignment())
963 return emitError(
964 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000965
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000966 if (DstGV->getVisibility() != SrcGV->getVisibility())
967 return emitError(
968 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000969
970 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
971 return emitError(
972 "Appending variables with different unnamed_addr need to be linked!");
973
Rafael Espindola64c1e182014-06-03 02:41:57 +0000974 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000975 return emitError(
976 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000977
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000978 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
979 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000980
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000981 // Create the new global variable.
982 GlobalVariable *NG =
983 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000984 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000985 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000986 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000987
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000988 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000989 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000990
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000991 AppendingVarInfo AVI;
992 AVI.NewGV = NG;
993 AVI.DstInit = DstGV->getInitializer();
994 AVI.SrcInit = SrcGV->getInitializer();
995 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000996
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000997 // Replace any uses of the two global variables with uses of the new
998 // global.
999 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +00001000
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001001 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
1002 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001003
Tanya Lattnercbb91402011-10-11 00:24:54 +00001004 // Track the source variable so we don't try to link it.
1005 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001006
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001007 return false;
1008}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001009
Rafael Espindola18c89412014-10-27 02:35:46 +00001010/// Loop through the global variables in the src module and merge them into the
1011/// dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001012bool ModuleLinker::linkGlobalProto(GlobalVariable *SGV) {
1013 GlobalValue *DGV = getLinkedToGlobal(SGV);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001014 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindolad4885da2013-09-04 14:05:09 +00001015 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001016 unsigned Alignment = SGV->getAlignment();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001017
David Majnemerdad0a642014-06-27 18:19:56 +00001018 bool LinkFromSrc = false;
1019 Comdat *DC = nullptr;
1020 if (const Comdat *SC = SGV->getComdat()) {
1021 Comdat::SelectionKind SK;
1022 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1023 DC = DstM->getOrInsertComdat(SC->getName());
1024 DC->setSelectionKind(SK);
1025 }
1026
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001027 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001028 if (!DC) {
1029 // Concatenation of appending linkage variables is magic and handled later.
1030 if (DGV->hasAppendingLinkage() || SGV->hasAppendingLinkage())
1031 return linkAppendingVarProto(cast<GlobalVariable>(DGV), SGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001032
David Majnemerdad0a642014-06-27 18:19:56 +00001033 // Determine whether linkage of these two globals follows the source
1034 // module's definition or the destination module's definition.
1035 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1036 GlobalValue::VisibilityTypes NV;
1037 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
1038 return true;
1039 NewVisibility = NV;
1040 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001041 if (DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1042 Alignment = std::max(Alignment, DGV->getAlignment());
1043 else if (!LinkFromSrc)
1044 Alignment = DGV->getAlignment();
Reid Spencer361e5132004-11-12 20:37:43 +00001045
David Majnemerdad0a642014-06-27 18:19:56 +00001046 // If we're not linking from the source, then keep the definition that we
1047 // have.
1048 if (!LinkFromSrc) {
1049 // Special case for const propagation.
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001050 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
1051 DGVar->setAlignment(Alignment);
1052
David Majnemerdad0a642014-06-27 18:19:56 +00001053 if (DGVar->isDeclaration() && SGV->isConstant() &&
1054 !DGVar->isConstant())
1055 DGVar->setConstant(true);
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001056 }
David Majnemerdad0a642014-06-27 18:19:56 +00001057
1058 // Set calculated linkage, visibility and unnamed_addr.
1059 DGV->setLinkage(NewLinkage);
1060 DGV->setVisibility(*NewVisibility);
1061 DGV->setUnnamedAddr(HasUnnamedAddr);
1062 }
1063 }
1064
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001065 if (!LinkFromSrc) {
Chris Lattner0ead7a52008-07-14 07:23:24 +00001066 // Make sure to remember this mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001067 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001068
1069 // Track the source global so that we don't attempt to copy it over when
Tanya Lattnercbb91402011-10-11 00:24:54 +00001070 // processing global initializers.
1071 DoNotLinkFromSource.insert(SGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001072
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001073 return false;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001074 }
Reid Spencer361e5132004-11-12 20:37:43 +00001075 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001076
David Majnemerdad0a642014-06-27 18:19:56 +00001077 // If the Comdat this variable was inside of wasn't selected, skip it.
1078 if (DC && !DGV && !LinkFromSrc) {
1079 DoNotLinkFromSource.insert(SGV);
1080 return false;
1081 }
1082
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001083 // No linking to be performed or linking from the source: simply create an
1084 // identical version of the symbol over in the dest module... the
1085 // initializer will be filled in later by LinkGlobalInits.
1086 GlobalVariable *NewDGV =
1087 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
Craig Topper2617dcc2014-04-15 06:32:26 +00001088 SGV->isConstant(), SGV->getLinkage(), /*init*/nullptr,
1089 SGV->getName(), /*insertbefore*/nullptr,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001090 SGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001091 SGV->getType()->getAddressSpace());
1092 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001093 copyGVAttributes(NewDGV, SGV);
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001094 NewDGV->setAlignment(Alignment);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001095 if (NewVisibility)
1096 NewDGV->setVisibility(*NewVisibility);
Rafael Espindolad4885da2013-09-04 14:05:09 +00001097 NewDGV->setUnnamedAddr(HasUnnamedAddr);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001098
David Majnemerdad0a642014-06-27 18:19:56 +00001099 if (DC)
1100 NewDGV->setComdat(DC);
1101
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001102 if (DGV) {
1103 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType()));
1104 DGV->eraseFromParent();
1105 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001106
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001107 // Make sure to remember this mapping.
1108 ValueMap[SGV] = NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001109 return false;
1110}
1111
Rafael Espindola18c89412014-10-27 02:35:46 +00001112/// Link the function in the source module into the destination module if
1113/// needed, setting up mapping information.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001114bool ModuleLinker::linkFunctionProto(Function *SF) {
1115 GlobalValue *DGV = getLinkedToGlobal(SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001116 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindolafd9a9412013-09-04 14:59:03 +00001117 bool HasUnnamedAddr = SF->hasUnnamedAddr();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001118
David Majnemerdad0a642014-06-27 18:19:56 +00001119 bool LinkFromSrc = false;
1120 Comdat *DC = nullptr;
1121 if (const Comdat *SC = SF->getComdat()) {
1122 Comdat::SelectionKind SK;
1123 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1124 DC = DstM->getOrInsertComdat(SC->getName());
1125 DC->setSelectionKind(SK);
1126 }
1127
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001128 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001129 if (!DC) {
1130 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1131 GlobalValue::VisibilityTypes NV;
1132 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
1133 return true;
1134 NewVisibility = NV;
1135 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1136
1137 if (!LinkFromSrc) {
1138 // Set calculated linkage
1139 DGV->setLinkage(NewLinkage);
1140 DGV->setVisibility(*NewVisibility);
1141 DGV->setUnnamedAddr(HasUnnamedAddr);
1142 }
1143 }
Rafael Espindola23f8d642012-01-05 23:02:01 +00001144
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001145 if (!LinkFromSrc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001146 // Make sure to remember this mapping.
1147 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001148
1149 // Track the function from the source module so we don't attempt to remap
Tanya Lattnercbb91402011-10-11 00:24:54 +00001150 // it.
1151 DoNotLinkFromSource.insert(SF);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001152
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001153 return false;
1154 }
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +00001155 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001156
James Molloyf6f121e2013-05-28 15:17:05 +00001157 // If the function is to be lazily linked, don't create it just yet.
1158 // The ValueMaterializerTy will deal with creating it if it's used.
1159 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1160 SF->hasAvailableExternallyLinkage())) {
1161 DoNotLinkFromSource.insert(SF);
1162 return false;
1163 }
1164
David Majnemerdad0a642014-06-27 18:19:56 +00001165 // If the Comdat this function was inside of wasn't selected, skip it.
1166 if (DC && !DGV && !LinkFromSrc) {
1167 DoNotLinkFromSource.insert(SF);
1168 return false;
1169 }
1170
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001171 // If there is no linkage to be performed or we are linking from the source,
1172 // bring SF over.
1173 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()),
1174 SF->getLinkage(), SF->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001175 copyGVAttributes(NewDF, SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001176 if (NewVisibility)
1177 NewDF->setVisibility(*NewVisibility);
Rafael Espindolafd9a9412013-09-04 14:59:03 +00001178 NewDF->setUnnamedAddr(HasUnnamedAddr);
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +00001179
David Majnemerdad0a642014-06-27 18:19:56 +00001180 if (DC)
1181 NewDF->setComdat(DC);
1182
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001183 if (DGV) {
1184 // Any uses of DF need to change to NewDF, with cast.
1185 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType()));
1186 DGV->eraseFromParent();
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001187 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001188
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001189 ValueMap[SF] = NewDF;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001190 return false;
1191}
1192
Rafael Espindola18c89412014-10-27 02:35:46 +00001193/// Set up prototypes for any aliases that come over from the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001194bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) {
1195 GlobalValue *DGV = getLinkedToGlobal(SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001196 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +00001197 bool HasUnnamedAddr = SGA->hasUnnamedAddr();
Rafael Espindola23f8d642012-01-05 23:02:01 +00001198
David Majnemerdad0a642014-06-27 18:19:56 +00001199 bool LinkFromSrc = false;
1200 Comdat *DC = nullptr;
1201 if (const Comdat *SC = SGA->getComdat()) {
1202 Comdat::SelectionKind SK;
1203 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1204 DC = DstM->getOrInsertComdat(SC->getName());
1205 DC->setSelectionKind(SK);
1206 }
1207
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001208 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001209 if (!DC) {
1210 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1211 GlobalValue::VisibilityTypes NV;
1212 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
1213 return true;
1214 NewVisibility = NV;
1215 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1216
1217 if (!LinkFromSrc) {
1218 // Set calculated linkage.
1219 DGV->setLinkage(NewLinkage);
1220 DGV->setVisibility(*NewVisibility);
1221 DGV->setUnnamedAddr(HasUnnamedAddr);
1222 }
1223 }
Rafael Espindola23f8d642012-01-05 23:02:01 +00001224
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001225 if (!LinkFromSrc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001226 // Make sure to remember this mapping.
1227 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001228
Tanya Lattnercbb91402011-10-11 00:24:54 +00001229 // Track the alias from the source module so we don't attempt to remap it.
1230 DoNotLinkFromSource.insert(SGA);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001231
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001232 return false;
1233 }
1234 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001235
David Majnemerdad0a642014-06-27 18:19:56 +00001236 // If the Comdat this alias was inside of wasn't selected, skip it.
1237 if (DC && !DGV && !LinkFromSrc) {
1238 DoNotLinkFromSource.insert(SGA);
1239 return false;
1240 }
1241
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001242 // If there is no linkage to be performed or we're linking from the source,
1243 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001244 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindolaf1bedd3742014-05-17 21:29:57 +00001245 auto *NewDA =
1246 GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1247 SGA->getLinkage(), SGA->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001248 copyGVAttributes(NewDA, SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001249 if (NewVisibility)
1250 NewDA->setVisibility(*NewVisibility);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +00001251 NewDA->setUnnamedAddr(HasUnnamedAddr);
Reid Spencer361e5132004-11-12 20:37:43 +00001252
Rafael Espindola64c1e182014-06-03 02:41:57 +00001253 if (DGV) {
1254 // Any uses of DGV need to change to NewDA, with cast.
1255 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDA, DGV->getType()));
1256 DGV->eraseFromParent();
1257 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001258
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001259 ValueMap[SGA] = NewDA;
1260 return false;
1261}
1262
Chris Lattner00245f42012-01-24 13:41:11 +00001263static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001264 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1265
1266 for (unsigned i = 0; i != NumElements; ++i)
1267 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001268}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001269
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001270void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1271 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001272 SmallVector<Constant *, 16> DstElements;
1273 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001274
Rafael Espindolad31dc042014-09-05 21:27:52 +00001275 SmallVector<Constant *, 16> SrcElements;
1276 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001277
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001278 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001279
1280 StringRef Name = AVI.NewGV->getName();
1281 bool IsNewStructor =
1282 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1283 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1284
1285 for (auto *V : SrcElements) {
1286 if (IsNewStructor) {
1287 Constant *Key = V->getAggregateElement(2);
1288 if (DoNotLinkFromSource.count(Key))
1289 continue;
1290 }
1291 DstElements.push_back(
1292 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1293 }
1294 if (IsNewStructor) {
1295 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1296 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1297 }
1298
1299 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001300}
1301
Rafael Espindola18c89412014-10-27 02:35:46 +00001302/// Update the initializers in the Dest module now that all globals that may be
1303/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001304void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001305 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001306 for (Module::const_global_iterator I = SrcM->global_begin(),
1307 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001308
Tanya Lattnercbb91402011-10-11 00:24:54 +00001309 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001310 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1311
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001312 // Grab destination global variable.
1313 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1314 // Figure out what the initializer looks like in the dest module.
1315 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001316 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001317 }
Reid Spencer361e5132004-11-12 20:37:43 +00001318}
1319
Rafael Espindola18c89412014-10-27 02:35:46 +00001320/// Copy the source function over into the dest function and fix up references
1321/// to values. At this point we know that Dest is an external function, and
1322/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001323void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1324 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001325
Chris Lattner7391dde2004-11-16 17:12:38 +00001326 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001327 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001328 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001329 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001330 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001331
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001332 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001333 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001334 }
1335
Tanya Lattnercbb91402011-10-11 00:24:54 +00001336 if (Mode == Linker::DestroySource) {
1337 // Splice the body of the source function into the dest function.
1338 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001339
Tanya Lattnercbb91402011-10-11 00:24:54 +00001340 // At this point, all of the instructions and values of the function are now
1341 // copied over. The only problem is that they are still referencing values in
1342 // the Source function as operands. Loop through all of the operands of the
1343 // functions and patch them up to point to the local versions.
1344 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1345 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
James Molloyf6f121e2013-05-28 15:17:05 +00001346 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries,
1347 &TypeMap, &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001348
Tanya Lattnercbb91402011-10-11 00:24:54 +00001349 } else {
1350 // Clone the body of the function into the dest function.
1351 SmallVector<ReturnInst*, 8> Returns; // Ignore returns.
Craig Topper2617dcc2014-04-15 06:32:26 +00001352 CloneFunctionInto(Dst, Src, ValueMap, false, Returns, "", nullptr,
James Molloyf6f121e2013-05-28 15:17:05 +00001353 &TypeMap, &ValMaterializer);
Tanya Lattnercbb91402011-10-11 00:24:54 +00001354 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001355
Chris Lattner7391dde2004-11-16 17:12:38 +00001356 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001357 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1358 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001359 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001360
Reid Spencer361e5132004-11-12 20:37:43 +00001361}
1362
Rafael Espindola18c89412014-10-27 02:35:46 +00001363/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001364void ModuleLinker::linkAliasBodies() {
1365 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001366 I != E; ++I) {
1367 if (DoNotLinkFromSource.count(I))
1368 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001369 if (Constant *Aliasee = I->getAliasee()) {
1370 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001371 Constant *Val =
1372 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001373 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001374 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001375 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001376}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001377
Rafael Espindola18c89412014-10-27 02:35:46 +00001378/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001379void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001380 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001381 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1382 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001383 // Don't link module flags here. Do them separately.
1384 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001385 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1386 // Add Src elements into Dest node.
1387 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1388 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001389 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001390 }
1391}
Bill Wendling66f02412012-02-11 11:38:06 +00001392
Rafael Espindola18c89412014-10-27 02:35:46 +00001393/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001394bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001395 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001396 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1397 if (!SrcModFlags) return false;
1398
Bill Wendling66f02412012-02-11 11:38:06 +00001399 // If the destination module doesn't have module flags yet, then just copy
1400 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001401 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001402 if (DstModFlags->getNumOperands() == 0) {
1403 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1404 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1405
1406 return false;
1407 }
1408
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001409 // First build a map of the existing module flags and requirements.
1410 DenseMap<MDString*, MDNode*> Flags;
1411 SmallSetVector<MDNode*, 16> Requirements;
1412 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
1413 MDNode *Op = DstModFlags->getOperand(I);
1414 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1415 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001416
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001417 if (Behavior->getZExtValue() == Module::Require) {
1418 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1419 } else {
1420 Flags[ID] = Op;
1421 }
Bill Wendling66f02412012-02-11 11:38:06 +00001422 }
1423
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001424 // Merge in the flags from the source module, and also collect its set of
1425 // requirements.
1426 bool HasErr = false;
1427 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
1428 MDNode *SrcOp = SrcModFlags->getOperand(I);
1429 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1430 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1431 MDNode *DstOp = Flags.lookup(ID);
1432 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001433
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001434 // If this is a requirement, add it and continue.
1435 if (SrcBehaviorValue == Module::Require) {
1436 // If the destination module does not already have this requirement, add
1437 // it.
1438 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1439 DstModFlags->addOperand(SrcOp);
1440 }
1441 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001442 }
1443
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001444 // If there is no existing flag with this ID, just add it.
1445 if (!DstOp) {
1446 Flags[ID] = SrcOp;
1447 DstModFlags->addOperand(SrcOp);
1448 continue;
1449 }
1450
1451 // Otherwise, perform a merge.
1452 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1453 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1454
1455 // If either flag has override behavior, handle it first.
1456 if (DstBehaviorValue == Module::Override) {
1457 // Diagnose inconsistent flags which both have override behavior.
1458 if (SrcBehaviorValue == Module::Override &&
1459 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1460 HasErr |= emitError("linking module flags '" + ID->getString() +
1461 "': IDs have conflicting override values");
1462 }
1463 continue;
1464 } else if (SrcBehaviorValue == Module::Override) {
1465 // Update the destination flag to that of the source.
1466 DstOp->replaceOperandWith(0, SrcBehavior);
1467 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1468 continue;
1469 }
1470
1471 // Diagnose inconsistent merge behavior types.
1472 if (SrcBehaviorValue != DstBehaviorValue) {
1473 HasErr |= emitError("linking module flags '" + ID->getString() +
1474 "': IDs have conflicting behaviors");
1475 continue;
1476 }
1477
1478 // Perform the merge for standard behavior types.
1479 switch (SrcBehaviorValue) {
1480 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001481 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001482 case Module::Error: {
1483 // Emit an error if the values differ.
1484 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1485 HasErr |= emitError("linking module flags '" + ID->getString() +
1486 "': IDs have conflicting values");
1487 }
1488 continue;
1489 }
1490 case Module::Warning: {
1491 // Emit a warning if the values differ.
1492 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001493 emitWarning("linking module flags '" + ID->getString() +
1494 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001495 }
1496 continue;
1497 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001498 case Module::Append: {
1499 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1500 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1501 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1502 Value **VP, **Values = VP = new Value*[NumOps];
1503 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1504 *VP = DstValue->getOperand(i);
1505 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1506 *VP = SrcValue->getOperand(i);
1507 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1508 ArrayRef<Value*>(Values,
1509 NumOps)));
1510 delete[] Values;
1511 break;
1512 }
1513 case Module::AppendUnique: {
1514 SmallSetVector<Value*, 16> Elts;
1515 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1516 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1517 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1518 Elts.insert(DstValue->getOperand(i));
1519 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1520 Elts.insert(SrcValue->getOperand(i));
1521 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1522 ArrayRef<Value*>(Elts.begin(),
1523 Elts.end())));
1524 break;
1525 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001526 }
Bill Wendling66f02412012-02-11 11:38:06 +00001527 }
1528
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001529 // Check all of the requirements.
1530 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1531 MDNode *Requirement = Requirements[I];
1532 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1533 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001534
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001535 MDNode *Op = Flags[Flag];
1536 if (!Op || Op->getOperand(2) != ReqValue) {
1537 HasErr |= emitError("linking module flags '" + Flag->getString() +
1538 "': does not have the required value");
1539 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001540 }
1541 }
1542
1543 return HasErr;
1544}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001545
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001546bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001547 assert(DstM && "Null destination module");
1548 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001549
1550 // Inherit the target data from the source module if the destination module
1551 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001552 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001553 DstM->setDataLayout(SrcM->getDataLayout());
1554
1555 // Copy the target triple from the source to dest if the dest's is empty.
1556 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1557 DstM->setTargetTriple(SrcM->getTargetTriple());
1558
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001559 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001560 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001561 emitWarning("Linking two modules of different data layouts: '" +
1562 SrcM->getModuleIdentifier() + "' is '" +
1563 SrcM->getDataLayoutStr() + "' whereas '" +
1564 DstM->getModuleIdentifier() + "' is '" +
1565 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001566 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001567 if (!SrcM->getTargetTriple().empty() &&
1568 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001569 emitWarning("Linking two modules of different target triples: " +
1570 SrcM->getModuleIdentifier() + "' is '" +
1571 SrcM->getTargetTriple() + "' whereas '" +
1572 DstM->getModuleIdentifier() + "' is '" +
1573 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001574 }
1575
1576 // Append the module inline asm string.
1577 if (!SrcM->getModuleInlineAsm().empty()) {
1578 if (DstM->getModuleInlineAsm().empty())
1579 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1580 else
1581 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1582 SrcM->getModuleInlineAsm());
1583 }
1584
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001585 // Loop over all of the linked values to compute type mappings.
1586 computeTypeMapping();
1587
David Majnemerdad0a642014-06-27 18:19:56 +00001588 ComdatsChosen.clear();
1589 for (const StringMapEntry<llvm::Comdat> &SMEC : SrcM->getComdatSymbolTable()) {
1590 const Comdat &C = SMEC.getValue();
1591 if (ComdatsChosen.count(&C))
1592 continue;
1593 Comdat::SelectionKind SK;
1594 bool LinkFromSrc;
1595 if (getComdatResult(&C, SK, LinkFromSrc))
1596 return true;
1597 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1598 }
1599
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001600 // Upgrade mismatched global arrays.
1601 upgradeMismatchedGlobals();
1602
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001603 // Insert all of the globals in src into the DstM module... without linking
1604 // initializers (which could refer to functions not yet mapped over).
1605 for (Module::global_iterator I = SrcM->global_begin(),
1606 E = SrcM->global_end(); I != E; ++I)
1607 if (linkGlobalProto(I))
1608 return true;
1609
1610 // Link the functions together between the two modules, without doing function
1611 // bodies... this just adds external function prototypes to the DstM
1612 // function... We do this so that when we begin processing function bodies,
1613 // all of the global values that may be referenced are available in our
1614 // ValueMap.
1615 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
1616 if (linkFunctionProto(I))
1617 return true;
1618
1619 // If there were any aliases, link them now.
1620 for (Module::alias_iterator I = SrcM->alias_begin(),
1621 E = SrcM->alias_end(); I != E; ++I)
1622 if (linkAliasProto(I))
1623 return true;
1624
1625 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1626 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001627
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001628 // Link in the function bodies that are defined in the source module into
1629 // DstM.
1630 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001631 // Skip if not linking from source.
1632 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001633
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001634 Function *DF = cast<Function>(ValueMap[SF]);
1635 if (SF->hasPrefixData()) {
1636 // Link in the prefix data.
1637 DF->setPrefixData(MapValue(
1638 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1639 }
1640
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001641 // Materialize if needed.
1642 if (SF->isMaterializable()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001643 if (std::error_code EC = SF->materialize())
1644 return emitError(EC.message());
Tanya Lattnerea166d42011-10-14 22:17:46 +00001645 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001646
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001647 // Skip if no body (function is external).
1648 if (SF->isDeclaration())
1649 continue;
1650
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001651 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001652 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001653 }
1654
1655 // Resolve all uses of aliases with aliasees.
1656 linkAliasBodies();
1657
Bill Wendling66f02412012-02-11 11:38:06 +00001658 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001659 // after linking GlobalValues so that MDNodes that reference GlobalValues
1660 // are properly remapped.
1661 linkNamedMDNodes();
1662
Bill Wendling66f02412012-02-11 11:38:06 +00001663 // Merge the module flags into the DstM module.
1664 if (linkModuleFlagsMetadata())
1665 return true;
1666
Bill Wendling91686d62014-01-16 06:29:36 +00001667 // Update the initializers in the DstM module now that all globals that may
1668 // be referenced are in DstM.
1669 linkGlobalInits();
1670
Tanya Lattner0a48b872011-11-02 00:24:56 +00001671 // Process vector of lazily linked in functions.
1672 bool LinkedInAnyFunctions;
1673 do {
1674 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001675
Bill Wendlingfa2287822013-03-27 17:54:41 +00001676 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001677 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001678 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001679 if (!SF)
1680 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001681
James Molloyf6f121e2013-05-28 15:17:05 +00001682 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001683 if (SF->hasPrefixData()) {
1684 // Link in the prefix data.
1685 DF->setPrefixData(MapValue(SF->getPrefixData(),
1686 ValueMap,
1687 RF_None,
1688 &TypeMap,
1689 &ValMaterializer));
1690 }
James Molloyf6f121e2013-05-28 15:17:05 +00001691
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001692 // Materialize if needed.
1693 if (SF->isMaterializable()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001694 if (std::error_code EC = SF->materialize())
1695 return emitError(EC.message());
Tanya Lattner0a48b872011-11-02 00:24:56 +00001696 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001697
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001698 // Skip if no body (function is external).
1699 if (SF->isDeclaration())
1700 continue;
1701
James Molloyf6f121e2013-05-28 15:17:05 +00001702 // Erase from vector *before* the function body is linked - linkFunctionBody could
1703 // invalidate I.
1704 LazilyLinkFunctions.erase(I);
1705
1706 // Link in function body.
1707 linkFunctionBody(DF, SF);
1708 SF->Dematerialize();
1709
1710 // Set flag to indicate we may have more functions to lazily link in
1711 // since we linked in a function.
1712 LinkedInAnyFunctions = true;
1713 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001714 }
1715 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001716
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001717 // Now that all of the types from the source are used, resolve any structs
1718 // copied over to the dest that didn't exist there.
1719 TypeMap.linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001720
Anton Korobeynikov26098882008-03-05 23:21:39 +00001721 return false;
1722}
Reid Spencer361e5132004-11-12 20:37:43 +00001723
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001724Linker::Linker(Module *M) : Composite(M) {
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001725 TypeFinder StructTypes;
1726 StructTypes.run(*M, true);
1727 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
1728}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001729
1730Linker::~Linker() {
1731}
1732
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001733void Linker::deleteModule() {
1734 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001735 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001736}
1737
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001738bool Linker::linkInModule(Module *Src, unsigned Mode) {
1739 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, Mode);
1740 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001741}
1742
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001743//===----------------------------------------------------------------------===//
1744// LinkModules entrypoint.
1745//===----------------------------------------------------------------------===//
1746
Rafael Espindola18c89412014-10-27 02:35:46 +00001747/// This function links two modules together, with the resulting Dest module
1748/// modified to be the composite of the two input modules. If an error occurs,
1749/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1750/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1751/// relied on to be consistent.
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001752bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001753 Linker L(Dest);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001754 return L.linkInModule(Src, Mode);
Reid Spencer361e5132004-11-12 20:37:43 +00001755}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001756
1757//===----------------------------------------------------------------------===//
1758// C API.
1759//===----------------------------------------------------------------------===//
1760
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001761static void bindingDiagnosticHandler(const llvm::DiagnosticInfo &DI,
1762 void *Context) {
1763 if (DI.getSeverity() != DS_Error)
1764 return;
1765
1766 std::string *Message = (std::string *)Context;
1767 {
1768 raw_string_ostream Stream(*Message);
1769 DiagnosticPrinterRawOStream DP(Stream);
1770 DI.print(DP);
1771 }
1772}
1773
1774
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001775LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1776 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001777 Module *D = unwrap(Dest);
1778 LLVMContext &Ctx = D->getContext();
1779
1780 LLVMContext::DiagnosticHandlerTy OldHandler = Ctx.getDiagnosticHandler();
1781 void *OldDiagnosticContext = Ctx.getDiagnosticContext();
1782 std::string Message;
1783 Ctx.setDiagnosticHandler(bindingDiagnosticHandler, &Message);
1784 LLVMBool Result = Linker::LinkModules(D, unwrap(Src), Mode);
1785 Ctx.setDiagnosticHandler(OldHandler, OldDiagnosticContext);
1786
1787 if (OutMessages && Result)
1788 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001789 return Result;
1790}