blob: f98822103cd00fd80122cb8d7f32cb2078f607bf [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 // Set of items not to link in from source.
414 SmallPtrSet<const Value*, 16> DoNotLinkFromSource;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000415
Tanya Lattner0a48b872011-11-02 00:24:56 +0000416 // Vector of functions to lazily link in.
Bill Wendlingfa2287822013-03-27 17:54:41 +0000417 std::vector<Function*> LazilyLinkFunctions;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000418
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000419 Linker::DiagnosticHandlerFunction DiagnosticHandler;
420
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000421 public:
Rafael Espindola9f8eff32014-10-28 00:24:16 +0000422 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM,
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000423 Linker::DiagnosticHandlerFunction DiagnosticHandler)
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000424 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindola9f8eff32014-10-28 00:24:16 +0000425 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions),
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000426 DiagnosticHandler(DiagnosticHandler) {}
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000427
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000428 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000429
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000430 private:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000431 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
432 const GlobalValue &Src);
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000433
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000434 /// Helper method for setting a message and returning an error code.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000435 bool emitError(const Twine &Message) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000436 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
Chris Lattner99953022008-06-16 18:27:53 +0000437 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000438 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000439
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000440 void emitWarning(const Twine &Message) {
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000441 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000442 }
443
David Majnemerdad0a642014-06-27 18:19:56 +0000444 bool getComdatLeader(Module *M, StringRef ComdatName,
445 const GlobalVariable *&GVar);
446 bool computeResultingSelectionKind(StringRef ComdatName,
447 Comdat::SelectionKind Src,
448 Comdat::SelectionKind Dst,
449 Comdat::SelectionKind &Result,
450 bool &LinkFromSrc);
451 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
452 ComdatsChosen;
453 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
454 bool &LinkFromSrc);
455
Rafael Espindola18c89412014-10-27 02:35:46 +0000456 /// This analyzes the two global values and determines what the result will
457 /// look like in the destination module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000458 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000459 GlobalValue::LinkageTypes &LT,
460 GlobalValue::VisibilityTypes &Vis,
461 bool &LinkFromSrc);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000462
Rafael Espindola18c89412014-10-27 02:35:46 +0000463 /// Given a global in the source module, return the global in the
464 /// destination module that is being linked to, if any.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000465 GlobalValue *getLinkedToGlobal(GlobalValue *SrcGV) {
466 // If the source has no name it can't link. If it has local linkage,
467 // there is no name match-up going on.
468 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000469 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000470
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000471 // Otherwise see if we have a match in the destination module's symtab.
472 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
Craig Topper2617dcc2014-04-15 06:32:26 +0000473 if (!DGV) return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000474
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000475 // If we found a global with the same name in the dest module, but it has
476 // internal linkage, we are really not doing any linkage here.
477 if (DGV->hasLocalLinkage())
Craig Topper2617dcc2014-04-15 06:32:26 +0000478 return nullptr;
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000479
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000480 // Otherwise, we do in fact link to the destination global.
481 return DGV;
482 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000483
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000484 void computeTypeMapping();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000485
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000486 void upgradeMismatchedGlobalArray(StringRef Name);
487 void upgradeMismatchedGlobals();
488
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000489 bool linkAppendingVarProto(GlobalVariable *DstGV, GlobalVariable *SrcGV);
490 bool linkGlobalProto(GlobalVariable *SrcGV);
491 bool linkFunctionProto(Function *SrcF);
492 bool linkAliasProto(GlobalAlias *SrcA);
Bill Wendling66f02412012-02-11 11:38:06 +0000493 bool linkModuleFlagsMetadata();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000494
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000495 void linkAppendingVarInit(const AppendingVarInfo &AVI);
496 void linkGlobalInits();
497 void linkFunctionBody(Function *Dst, Function *Src);
498 void linkAliasBodies();
499 void linkNamedMDNodes();
500 };
Bill Wendlingd48b7782012-02-28 04:01:21 +0000501}
502
Rafael Espindola18c89412014-10-27 02:35:46 +0000503/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
504/// table. This is good for all clients except for us. Go through the trouble
505/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000506static void forceRenaming(GlobalValue *GV, StringRef Name) {
507 // If the global doesn't force its name or if it already has the right name,
508 // there is nothing for us to do.
509 if (GV->hasLocalLinkage() || GV->getName() == Name)
510 return;
511
512 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000513
514 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000515 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000516 GV->takeName(ConflictGV);
517 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000518 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000519 } else {
520 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000521 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000522}
Reid Spencer90246aa2007-02-04 04:29:21 +0000523
Rafael Espindola18c89412014-10-27 02:35:46 +0000524/// copy additional attributes (those not needed to construct a GlobalValue)
525/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000526static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000527 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000528 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000529 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000530 if (DestGO)
531 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000532
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000533 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000534
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000535 if (DestGO)
536 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000537
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000538 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000539}
540
Rafael Espindola23f8d642012-01-05 23:02:01 +0000541static bool isLessConstraining(GlobalValue::VisibilityTypes a,
542 GlobalValue::VisibilityTypes b) {
543 if (a == GlobalValue::HiddenVisibility)
544 return false;
545 if (b == GlobalValue::HiddenVisibility)
546 return true;
547 if (a == GlobalValue::ProtectedVisibility)
548 return false;
549 if (b == GlobalValue::ProtectedVisibility)
550 return true;
551 return false;
552}
553
James Molloyf6f121e2013-05-28 15:17:05 +0000554Value *ValueMaterializerTy::materializeValueFor(Value *V) {
555 Function *SF = dyn_cast<Function>(V);
556 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000557 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000558
559 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
560 SF->getLinkage(), SF->getName(), DstM);
561 copyGVAttributes(DF, SF);
562
Rafael Espindola3931c282014-08-15 20:17:08 +0000563 if (Comdat *SC = SF->getComdat()) {
564 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
565 DF->setComdat(DC);
566 }
567
James Molloyf6f121e2013-05-28 15:17:05 +0000568 LazilyLinkFunctions.push_back(SF);
569 return DF;
570}
571
David Majnemerdad0a642014-06-27 18:19:56 +0000572bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
573 const GlobalVariable *&GVar) {
574 const GlobalValue *GVal = M->getNamedValue(ComdatName);
575 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
576 GVal = GA->getBaseObject();
577 if (!GVal)
578 // We cannot resolve the size of the aliasee yet.
579 return emitError("Linking COMDATs named '" + ComdatName +
580 "': COMDAT key involves incomputable alias size.");
581 }
582
583 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
584 if (!GVar)
585 return emitError(
586 "Linking COMDATs named '" + ComdatName +
587 "': GlobalVariable required for data dependent selection!");
588
589 return false;
590}
591
592bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
593 Comdat::SelectionKind Src,
594 Comdat::SelectionKind Dst,
595 Comdat::SelectionKind &Result,
596 bool &LinkFromSrc) {
597 // The ability to mix Comdat::SelectionKind::Any with
598 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
599 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
600 Dst == Comdat::SelectionKind::Largest;
601 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
602 Src == Comdat::SelectionKind::Largest;
603 if (DstAnyOrLargest && SrcAnyOrLargest) {
604 if (Dst == Comdat::SelectionKind::Largest ||
605 Src == Comdat::SelectionKind::Largest)
606 Result = Comdat::SelectionKind::Largest;
607 else
608 Result = Comdat::SelectionKind::Any;
609 } else if (Src == Dst) {
610 Result = Dst;
611 } else {
612 return emitError("Linking COMDATs named '" + ComdatName +
613 "': invalid selection kinds!");
614 }
615
616 switch (Result) {
617 case Comdat::SelectionKind::Any:
618 // Go with Dst.
619 LinkFromSrc = false;
620 break;
621 case Comdat::SelectionKind::NoDuplicates:
622 return emitError("Linking COMDATs named '" + ComdatName +
623 "': noduplicates has been violated!");
624 case Comdat::SelectionKind::ExactMatch:
625 case Comdat::SelectionKind::Largest:
626 case Comdat::SelectionKind::SameSize: {
627 const GlobalVariable *DstGV;
628 const GlobalVariable *SrcGV;
629 if (getComdatLeader(DstM, ComdatName, DstGV) ||
630 getComdatLeader(SrcM, ComdatName, SrcGV))
631 return true;
632
633 const DataLayout *DstDL = DstM->getDataLayout();
634 const DataLayout *SrcDL = SrcM->getDataLayout();
635 if (!DstDL || !SrcDL) {
636 return emitError(
637 "Linking COMDATs named '" + ComdatName +
638 "': can't do size dependent selection without DataLayout!");
639 }
640 uint64_t DstSize =
641 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
642 uint64_t SrcSize =
643 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
644 if (Result == Comdat::SelectionKind::ExactMatch) {
645 if (SrcGV->getInitializer() != DstGV->getInitializer())
646 return emitError("Linking COMDATs named '" + ComdatName +
647 "': ExactMatch violated!");
648 LinkFromSrc = false;
649 } else if (Result == Comdat::SelectionKind::Largest) {
650 LinkFromSrc = SrcSize > DstSize;
651 } else if (Result == Comdat::SelectionKind::SameSize) {
652 if (SrcSize != DstSize)
653 return emitError("Linking COMDATs named '" + ComdatName +
654 "': SameSize violated!");
655 LinkFromSrc = false;
656 } else {
657 llvm_unreachable("unknown selection kind");
658 }
659 break;
660 }
661 }
662
663 return false;
664}
665
666bool ModuleLinker::getComdatResult(const Comdat *SrcC,
667 Comdat::SelectionKind &Result,
668 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000669 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000670 StringRef ComdatName = SrcC->getName();
671 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
672 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000673
Rafael Espindolab16196a2014-08-11 17:07:34 +0000674 if (DstCI == ComdatSymTab.end()) {
675 // Use the comdat if it is only available in one of the modules.
676 LinkFromSrc = true;
677 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000678 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000679 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000680
681 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000682 Comdat::SelectionKind DSK = DstC->getSelectionKind();
683 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
684 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000685}
James Molloyf6f121e2013-05-28 15:17:05 +0000686
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000687bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
688 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000689 const GlobalValue &Src) {
Rafael Espindolad4bcefc2014-10-24 18:13:04 +0000690 bool SrcIsDeclaration = Src.isDeclarationForLinker();
691 bool DestIsDeclaration = Dest.isDeclarationForLinker();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000692
693 if (SrcIsDeclaration) {
694 // If Src is external or if both Src & Dest are external.. Just link the
695 // external globals, we aren't adding anything.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000696 if (Src.hasDLLImportStorageClass()) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000697 // If one of GVs is marked as DLLImport, result should be dllimport'ed.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000698 LinkFromSrc = DestIsDeclaration;
699 return false;
700 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000701 // If the Dest is weak, use the source linkage.
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000702 LinkFromSrc = Dest.hasExternalWeakLinkage();
703 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000704 }
705
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000706 if (DestIsDeclaration) {
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000707 // If Dest is external but Src is not:
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000708 LinkFromSrc = true;
709 return false;
710 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000711
Rafael Espindola09106052014-09-09 15:59:12 +0000712 if (Src.hasCommonLinkage()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000713 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) {
714 LinkFromSrc = true;
Rafael Espindola09106052014-09-09 15:59:12 +0000715 return false;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000716 }
717
718 if (!Dest.hasCommonLinkage()) {
719 LinkFromSrc = false;
720 return false;
721 }
Rafael Espindola09106052014-09-09 15:59:12 +0000722
Rafael Espindola0ae225b2014-10-31 04:46:38 +0000723 // FIXME: Make datalayout mandatory and just use getDataLayout().
724 DataLayout DL(Dest.getParent());
725
Rafael Espindola09106052014-09-09 15:59:12 +0000726 uint64_t DestSize = DL.getTypeAllocSize(Dest.getType()->getElementType());
727 uint64_t SrcSize = DL.getTypeAllocSize(Src.getType()->getElementType());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000728 LinkFromSrc = SrcSize > DestSize;
729 return false;
Rafael Espindola09106052014-09-09 15:59:12 +0000730 }
731
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000732 if (Src.isWeakForLinker()) {
733 assert(!Dest.hasExternalWeakLinkage());
734 assert(!Dest.hasAvailableExternallyLinkage());
Rafael Espindola09106052014-09-09 15:59:12 +0000735
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000736 if (Dest.hasLinkOnceLinkage() && Src.hasWeakLinkage()) {
737 LinkFromSrc = true;
738 return false;
739 }
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000740
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000741 LinkFromSrc = false;
Rafael Espindola09106052014-09-09 15:59:12 +0000742 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000743 }
744
745 if (Dest.isWeakForLinker()) {
746 assert(Src.hasExternalLinkage());
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000747 LinkFromSrc = true;
748 return false;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000749 }
750
751 assert(!Src.hasExternalWeakLinkage());
752 assert(!Dest.hasExternalWeakLinkage());
753 assert(Dest.hasExternalLinkage() && Src.hasExternalLinkage() &&
754 "Unexpected linkage type!");
755 return emitError("Linking globals named '" + Src.getName() +
756 "': symbol multiply defined!");
757}
758
Rafael Espindola83a7ddb2014-09-09 14:07:40 +0000759/// This analyzes the two global values and determines what the result will look
760/// like in the destination module. In particular, it computes the resultant
761/// linkage type and visibility, computes whether the global in the source
762/// should be copied over to the destination (replacing the existing one), and
763/// computes whether this linkage is an error or not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000764bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
Rafael Espindola23f8d642012-01-05 23:02:01 +0000765 GlobalValue::LinkageTypes &LT,
766 GlobalValue::VisibilityTypes &Vis,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000767 bool &LinkFromSrc) {
768 assert(Dest && "Must have two globals being queried");
769 assert(!Src->hasLocalLinkage() &&
Chris Lattnerfc61de32004-12-03 22:18:41 +0000770 "If Src has internal linkage, Dest shouldn't be set!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000771
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000772 if (shouldLinkFromSource(LinkFromSrc, *Dest, *Src))
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000773 return true;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000774
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000775 if (LinkFromSrc)
Chris Lattnerfc61de32004-12-03 22:18:41 +0000776 LT = Src->getLinkage();
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000777 else
778 LT = Dest->getLinkage();
Anton Korobeynikov31fc4f92007-04-29 20:56:48 +0000779
Rafael Espindola23f8d642012-01-05 23:02:01 +0000780 // Compute the visibility. We follow the rules in the System V Application
781 // Binary Interface.
Duncan P. N. Exon Smithb2becfd2014-05-07 22:55:46 +0000782 assert(!GlobalValue::isLocalLinkage(LT) &&
783 "Symbols with local linkage should not be merged");
Rafael Espindola23f8d642012-01-05 23:02:01 +0000784 Vis = isLessConstraining(Src->getVisibility(), Dest->getVisibility()) ?
785 Dest->getVisibility() : Src->getVisibility();
Chris Lattnerfc61de32004-12-03 22:18:41 +0000786 return false;
787}
Reid Spencer361e5132004-11-12 20:37:43 +0000788
Rafael Espindola18c89412014-10-27 02:35:46 +0000789/// Loop over all of the linked values to compute type mappings. For example,
790/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
791/// types 'Foo' but one got renamed when the module was loaded into the same
792/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000793void ModuleLinker::computeTypeMapping() {
794 // Incorporate globals.
795 for (Module::global_iterator I = SrcM->global_begin(),
796 E = SrcM->global_end(); I != E; ++I) {
797 GlobalValue *DGV = getLinkedToGlobal(I);
Craig Topper2617dcc2014-04-15 06:32:26 +0000798 if (!DGV) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000799
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000800 if (!DGV->hasAppendingLinkage() || !I->hasAppendingLinkage()) {
801 TypeMap.addTypeMapping(DGV->getType(), I->getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000802 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000803 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000804
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000805 // Unify the element type of appending arrays.
806 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
807 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
808 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000809 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000810
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000811 // Incorporate functions.
812 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I) {
813 if (GlobalValue *DGV = getLinkedToGlobal(I))
814 TypeMap.addTypeMapping(DGV->getType(), I->getType());
815 }
Bill Wendling7b464612012-02-27 22:34:19 +0000816
Bill Wendlingd48b7782012-02-28 04:01:21 +0000817 // Incorporate types by name, scanning all the types in the source module.
818 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000819 // example. When the source module got loaded into the same LLVMContext, if
820 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000821 TypeFinder SrcStructTypes;
822 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000823 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
824 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000825
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000826 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
827 StructType *ST = SrcStructTypes[i];
828 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000829
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000830 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000831 size_t DotPos = ST->getName().rfind('.');
832 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000833 ST->getName().back() == '.' ||
834 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000835 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000836
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000837 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000838 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000839 // Don't use it if this actually came from the source module. They're in
840 // the same LLVMContext after all. Also don't use it unless the type is
841 // actually used in the destination module. This can happen in situations
842 // like this:
843 //
844 // Module A Module B
845 // -------- --------
846 // %Z = type { %A } %B = type { %C.1 }
847 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
848 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
849 // %C = type { i8* } %B.3 = type { %C.1 }
850 //
851 // When we link Module B with Module A, the '%B' in Module B is
852 // used. However, that would then use '%C.1'. But when we process '%C.1',
853 // we prefer to take the '%C' version. So we are then left with both
854 // '%C.1' and '%C' being used for the same types. This leads to some
855 // variables using one type and some using the other.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000856 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000857 TypeMap.addTypeMapping(DST, ST);
858 }
859
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000860 // Don't bother incorporating aliases, they aren't generally typed well.
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000861
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000862 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000863 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000864 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000865}
866
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000867static void upgradeGlobalArray(GlobalVariable *GV) {
868 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
869 StructType *OldTy = cast<StructType>(ATy->getElementType());
870 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
871
872 // Get the upgraded 3 element type.
873 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
874 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
875 VoidPtrTy};
876 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
877
878 // Build new constants with a null third field filled in.
879 Constant *OldInitC = GV->getInitializer();
880 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
881 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
882 // Invalid initializer; give up.
883 return;
884 std::vector<Constant *> Initializers;
885 if (OldInit && OldInit->getNumOperands()) {
886 Value *Null = Constant::getNullValue(VoidPtrTy);
887 for (Use &U : OldInit->operands()) {
888 ConstantStruct *Init = cast<ConstantStruct>(U.get());
889 Initializers.push_back(ConstantStruct::get(
890 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
891 }
892 }
893 assert(Initializers.size() == ATy->getNumElements() &&
894 "Failed to copy all array elements");
895
896 // Replace the old GV with a new one.
897 ATy = ArrayType::get(NewTy, Initializers.size());
898 Constant *NewInit = ConstantArray::get(ATy, Initializers);
899 GlobalVariable *NewGV = new GlobalVariable(
900 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
901 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
902 GV->isExternallyInitialized());
903 NewGV->copyAttributesFrom(GV);
904 NewGV->takeName(GV);
905 assert(GV->use_empty() && "program cannot use initializer list");
906 GV->eraseFromParent();
907}
908
909void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
910 // Look for the global arrays.
911 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
912 if (!DstGV)
913 return;
914 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
915 if (!SrcGV)
916 return;
917
918 // Check if the types already match.
919 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
920 auto *SrcTy =
921 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
922 if (DstTy == SrcTy)
923 return;
924
925 // Grab the element types. We can only upgrade an array of a two-field
926 // struct. Only bother if the other one has three-fields.
927 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
928 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
929 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
930 upgradeGlobalArray(DstGV);
931 return;
932 }
933 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
934 upgradeGlobalArray(SrcGV);
935
936 // We can't upgrade any other differences.
937}
938
939void ModuleLinker::upgradeMismatchedGlobals() {
940 upgradeMismatchedGlobalArray("llvm.global_ctors");
941 upgradeMismatchedGlobalArray("llvm.global_dtors");
942}
943
Rafael Espindola18c89412014-10-27 02:35:46 +0000944/// If there were any appending global variables, link them together now.
945/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000946bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
947 GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000948
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000949 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
950 return emitError("Linking globals named '" + SrcGV->getName() +
951 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000952
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000953 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
954 ArrayType *SrcTy =
955 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
956 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000957
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000958 // Check to see that they two arrays agree on type.
959 if (EltTy != SrcTy->getElementType())
960 return emitError("Appending variables with different element types!");
961 if (DstGV->isConstant() != SrcGV->isConstant())
962 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000963
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000964 if (DstGV->getAlignment() != SrcGV->getAlignment())
965 return emitError(
966 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000967
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000968 if (DstGV->getVisibility() != SrcGV->getVisibility())
969 return emitError(
970 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000971
972 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
973 return emitError(
974 "Appending variables with different unnamed_addr need to be linked!");
975
Rafael Espindola64c1e182014-06-03 02:41:57 +0000976 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000977 return emitError(
978 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000979
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000980 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
981 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000982
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000983 // Create the new global variable.
984 GlobalVariable *NG =
985 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000986 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000987 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000988 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000989
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000990 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000991 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000992
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000993 AppendingVarInfo AVI;
994 AVI.NewGV = NG;
995 AVI.DstInit = DstGV->getInitializer();
996 AVI.SrcInit = SrcGV->getInitializer();
997 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000998
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000999 // Replace any uses of the two global variables with uses of the new
1000 // global.
1001 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +00001002
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001003 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
1004 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001005
Tanya Lattnercbb91402011-10-11 00:24:54 +00001006 // Track the source variable so we don't try to link it.
1007 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001008
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001009 return false;
1010}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001011
Rafael Espindola18c89412014-10-27 02:35:46 +00001012/// Loop through the global variables in the src module and merge them into the
1013/// dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001014bool ModuleLinker::linkGlobalProto(GlobalVariable *SGV) {
1015 GlobalValue *DGV = getLinkedToGlobal(SGV);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001016 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindolad4885da2013-09-04 14:05:09 +00001017 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001018 unsigned Alignment = SGV->getAlignment();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +00001019
David Majnemerdad0a642014-06-27 18:19:56 +00001020 bool LinkFromSrc = false;
1021 Comdat *DC = nullptr;
1022 if (const Comdat *SC = SGV->getComdat()) {
1023 Comdat::SelectionKind SK;
1024 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1025 DC = DstM->getOrInsertComdat(SC->getName());
1026 DC->setSelectionKind(SK);
1027 }
1028
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001029 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001030 if (!DC) {
1031 // Concatenation of appending linkage variables is magic and handled later.
1032 if (DGV->hasAppendingLinkage() || SGV->hasAppendingLinkage())
1033 return linkAppendingVarProto(cast<GlobalVariable>(DGV), SGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001034
David Majnemerdad0a642014-06-27 18:19:56 +00001035 // Determine whether linkage of these two globals follows the source
1036 // module's definition or the destination module's definition.
1037 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1038 GlobalValue::VisibilityTypes NV;
1039 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
1040 return true;
1041 NewVisibility = NV;
1042 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001043 if (DGV->hasCommonLinkage() && SGV->hasCommonLinkage())
1044 Alignment = std::max(Alignment, DGV->getAlignment());
1045 else if (!LinkFromSrc)
1046 Alignment = DGV->getAlignment();
Reid Spencer361e5132004-11-12 20:37:43 +00001047
David Majnemerdad0a642014-06-27 18:19:56 +00001048 // If we're not linking from the source, then keep the definition that we
1049 // have.
1050 if (!LinkFromSrc) {
1051 // Special case for const propagation.
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001052 if (GlobalVariable *DGVar = dyn_cast<GlobalVariable>(DGV)) {
1053 DGVar->setAlignment(Alignment);
1054
Rafael Espindolad1e64b12014-10-30 20:50:23 +00001055 if (DGVar->isDeclaration() && !SGV->isConstant())
1056 DGVar->setConstant(false);
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001057 }
David Majnemerdad0a642014-06-27 18:19:56 +00001058
1059 // Set calculated linkage, visibility and unnamed_addr.
1060 DGV->setLinkage(NewLinkage);
1061 DGV->setVisibility(*NewVisibility);
1062 DGV->setUnnamedAddr(HasUnnamedAddr);
1063 }
1064 }
1065
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001066 if (!LinkFromSrc) {
Chris Lattner0ead7a52008-07-14 07:23:24 +00001067 // Make sure to remember this mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001068 ValueMap[SGV] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGV->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001069
1070 // Track the source global so that we don't attempt to copy it over when
Tanya Lattnercbb91402011-10-11 00:24:54 +00001071 // processing global initializers.
1072 DoNotLinkFromSource.insert(SGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001073
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001074 return false;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001075 }
Reid Spencer361e5132004-11-12 20:37:43 +00001076 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001077
David Majnemerdad0a642014-06-27 18:19:56 +00001078 // If the Comdat this variable was inside of wasn't selected, skip it.
1079 if (DC && !DGV && !LinkFromSrc) {
1080 DoNotLinkFromSource.insert(SGV);
1081 return false;
1082 }
1083
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001084 // No linking to be performed or linking from the source: simply create an
1085 // identical version of the symbol over in the dest module... the
1086 // initializer will be filled in later by LinkGlobalInits.
1087 GlobalVariable *NewDGV =
1088 new GlobalVariable(*DstM, TypeMap.get(SGV->getType()->getElementType()),
Craig Topper2617dcc2014-04-15 06:32:26 +00001089 SGV->isConstant(), SGV->getLinkage(), /*init*/nullptr,
1090 SGV->getName(), /*insertbefore*/nullptr,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001091 SGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001092 SGV->getType()->getAddressSpace());
1093 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001094 copyGVAttributes(NewDGV, SGV);
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001095 NewDGV->setAlignment(Alignment);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001096 if (NewVisibility)
1097 NewDGV->setVisibility(*NewVisibility);
Rafael Espindolad4885da2013-09-04 14:05:09 +00001098 NewDGV->setUnnamedAddr(HasUnnamedAddr);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001099
David Majnemerdad0a642014-06-27 18:19:56 +00001100 if (DC)
1101 NewDGV->setComdat(DC);
1102
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001103 if (DGV) {
1104 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDGV, DGV->getType()));
1105 DGV->eraseFromParent();
1106 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001107
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001108 // Make sure to remember this mapping.
1109 ValueMap[SGV] = NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001110 return false;
1111}
1112
Rafael Espindola18c89412014-10-27 02:35:46 +00001113/// Link the function in the source module into the destination module if
1114/// needed, setting up mapping information.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001115bool ModuleLinker::linkFunctionProto(Function *SF) {
1116 GlobalValue *DGV = getLinkedToGlobal(SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001117 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindolafd9a9412013-09-04 14:59:03 +00001118 bool HasUnnamedAddr = SF->hasUnnamedAddr();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001119
David Majnemerdad0a642014-06-27 18:19:56 +00001120 bool LinkFromSrc = false;
1121 Comdat *DC = nullptr;
1122 if (const Comdat *SC = SF->getComdat()) {
1123 Comdat::SelectionKind SK;
1124 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1125 DC = DstM->getOrInsertComdat(SC->getName());
1126 DC->setSelectionKind(SK);
1127 }
1128
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001129 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001130 if (!DC) {
1131 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1132 GlobalValue::VisibilityTypes NV;
1133 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
1134 return true;
1135 NewVisibility = NV;
1136 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1137
1138 if (!LinkFromSrc) {
1139 // Set calculated linkage
1140 DGV->setLinkage(NewLinkage);
1141 DGV->setVisibility(*NewVisibility);
1142 DGV->setUnnamedAddr(HasUnnamedAddr);
1143 }
1144 }
Rafael Espindola23f8d642012-01-05 23:02:01 +00001145
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001146 if (!LinkFromSrc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001147 // Make sure to remember this mapping.
1148 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001149
1150 // Track the function from the source module so we don't attempt to remap
Tanya Lattnercbb91402011-10-11 00:24:54 +00001151 // it.
1152 DoNotLinkFromSource.insert(SF);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001153
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001154 return false;
1155 }
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +00001156 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001157
James Molloyf6f121e2013-05-28 15:17:05 +00001158 // If the function is to be lazily linked, don't create it just yet.
1159 // The ValueMaterializerTy will deal with creating it if it's used.
1160 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1161 SF->hasAvailableExternallyLinkage())) {
1162 DoNotLinkFromSource.insert(SF);
1163 return false;
1164 }
1165
David Majnemerdad0a642014-06-27 18:19:56 +00001166 // If the Comdat this function was inside of wasn't selected, skip it.
1167 if (DC && !DGV && !LinkFromSrc) {
1168 DoNotLinkFromSource.insert(SF);
1169 return false;
1170 }
1171
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001172 // If there is no linkage to be performed or we are linking from the source,
1173 // bring SF over.
1174 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()),
1175 SF->getLinkage(), SF->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001176 copyGVAttributes(NewDF, SF);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001177 if (NewVisibility)
1178 NewDF->setVisibility(*NewVisibility);
Rafael Espindolafd9a9412013-09-04 14:59:03 +00001179 NewDF->setUnnamedAddr(HasUnnamedAddr);
Anton Korobeynikovdac5fa92008-03-05 22:22:46 +00001180
David Majnemerdad0a642014-06-27 18:19:56 +00001181 if (DC)
1182 NewDF->setComdat(DC);
1183
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001184 if (DGV) {
1185 // Any uses of DF need to change to NewDF, with cast.
1186 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDF, DGV->getType()));
1187 DGV->eraseFromParent();
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001188 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001189
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001190 ValueMap[SF] = NewDF;
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001191 return false;
1192}
1193
Rafael Espindola18c89412014-10-27 02:35:46 +00001194/// Set up prototypes for any aliases that come over from the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001195bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) {
1196 GlobalValue *DGV = getLinkedToGlobal(SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001197 llvm::Optional<GlobalValue::VisibilityTypes> NewVisibility;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +00001198 bool HasUnnamedAddr = SGA->hasUnnamedAddr();
Rafael Espindola23f8d642012-01-05 23:02:01 +00001199
David Majnemerdad0a642014-06-27 18:19:56 +00001200 bool LinkFromSrc = false;
1201 Comdat *DC = nullptr;
1202 if (const Comdat *SC = SGA->getComdat()) {
1203 Comdat::SelectionKind SK;
1204 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
1205 DC = DstM->getOrInsertComdat(SC->getName());
1206 DC->setSelectionKind(SK);
1207 }
1208
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001209 if (DGV) {
David Majnemerdad0a642014-06-27 18:19:56 +00001210 if (!DC) {
1211 GlobalValue::LinkageTypes NewLinkage = GlobalValue::InternalLinkage;
1212 GlobalValue::VisibilityTypes NV;
1213 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
1214 return true;
1215 NewVisibility = NV;
1216 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1217
1218 if (!LinkFromSrc) {
1219 // Set calculated linkage.
1220 DGV->setLinkage(NewLinkage);
1221 DGV->setVisibility(*NewVisibility);
1222 DGV->setUnnamedAddr(HasUnnamedAddr);
1223 }
1224 }
Rafael Espindola23f8d642012-01-05 23:02:01 +00001225
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001226 if (!LinkFromSrc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001227 // Make sure to remember this mapping.
1228 ValueMap[SGA] = ConstantExpr::getBitCast(DGV,TypeMap.get(SGA->getType()));
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001229
Tanya Lattnercbb91402011-10-11 00:24:54 +00001230 // Track the alias from the source module so we don't attempt to remap it.
1231 DoNotLinkFromSource.insert(SGA);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001232
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001233 return false;
1234 }
1235 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001236
David Majnemerdad0a642014-06-27 18:19:56 +00001237 // If the Comdat this alias was inside of wasn't selected, skip it.
1238 if (DC && !DGV && !LinkFromSrc) {
1239 DoNotLinkFromSource.insert(SGA);
1240 return false;
1241 }
1242
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001243 // If there is no linkage to be performed or we're linking from the source,
1244 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001245 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindolaf1bedd3742014-05-17 21:29:57 +00001246 auto *NewDA =
1247 GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1248 SGA->getLinkage(), SGA->getName(), DstM);
Bill Wendlingb6af2f32012-03-22 20:28:27 +00001249 copyGVAttributes(NewDA, SGA);
Rafael Espindola23f8d642012-01-05 23:02:01 +00001250 if (NewVisibility)
1251 NewDA->setVisibility(*NewVisibility);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +00001252 NewDA->setUnnamedAddr(HasUnnamedAddr);
Reid Spencer361e5132004-11-12 20:37:43 +00001253
Rafael Espindola64c1e182014-06-03 02:41:57 +00001254 if (DGV) {
1255 // Any uses of DGV need to change to NewDA, with cast.
1256 DGV->replaceAllUsesWith(ConstantExpr::getBitCast(NewDA, DGV->getType()));
1257 DGV->eraseFromParent();
1258 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001259
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001260 ValueMap[SGA] = NewDA;
1261 return false;
1262}
1263
Chris Lattner00245f42012-01-24 13:41:11 +00001264static void getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001265 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1266
1267 for (unsigned i = 0; i != NumElements; ++i)
1268 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001269}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001270
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001271void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1272 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001273 SmallVector<Constant *, 16> DstElements;
1274 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001275
Rafael Espindolad31dc042014-09-05 21:27:52 +00001276 SmallVector<Constant *, 16> SrcElements;
1277 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001278
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001279 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001280
1281 StringRef Name = AVI.NewGV->getName();
1282 bool IsNewStructor =
1283 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1284 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1285
1286 for (auto *V : SrcElements) {
1287 if (IsNewStructor) {
1288 Constant *Key = V->getAggregateElement(2);
1289 if (DoNotLinkFromSource.count(Key))
1290 continue;
1291 }
1292 DstElements.push_back(
1293 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1294 }
1295 if (IsNewStructor) {
1296 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1297 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1298 }
1299
1300 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001301}
1302
Rafael Espindola18c89412014-10-27 02:35:46 +00001303/// Update the initializers in the Dest module now that all globals that may be
1304/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001305void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001306 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001307 for (Module::const_global_iterator I = SrcM->global_begin(),
1308 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001309
Tanya Lattnercbb91402011-10-11 00:24:54 +00001310 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001311 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1312
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001313 // Grab destination global variable.
1314 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1315 // Figure out what the initializer looks like in the dest module.
1316 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001317 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001318 }
Reid Spencer361e5132004-11-12 20:37:43 +00001319}
1320
Rafael Espindola18c89412014-10-27 02:35:46 +00001321/// Copy the source function over into the dest function and fix up references
1322/// to values. At this point we know that Dest is an external function, and
1323/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001324void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1325 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001326
Chris Lattner7391dde2004-11-16 17:12:38 +00001327 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001328 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001329 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001330 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001331 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001332
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001333 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001334 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001335 }
1336
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001337 // 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
Rafael Espindola9f8eff32014-10-28 00:24:16 +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)
1346 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
1347 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001348
Chris Lattner7391dde2004-11-16 17:12:38 +00001349 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001350 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1351 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001352 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001353
Reid Spencer361e5132004-11-12 20:37:43 +00001354}
1355
Rafael Espindola18c89412014-10-27 02:35:46 +00001356/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001357void ModuleLinker::linkAliasBodies() {
1358 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001359 I != E; ++I) {
1360 if (DoNotLinkFromSource.count(I))
1361 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001362 if (Constant *Aliasee = I->getAliasee()) {
1363 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001364 Constant *Val =
1365 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001366 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001367 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001368 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001369}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001370
Rafael Espindola18c89412014-10-27 02:35:46 +00001371/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001372void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001373 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001374 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1375 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001376 // Don't link module flags here. Do them separately.
1377 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001378 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1379 // Add Src elements into Dest node.
1380 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1381 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001382 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001383 }
1384}
Bill Wendling66f02412012-02-11 11:38:06 +00001385
Rafael Espindola18c89412014-10-27 02:35:46 +00001386/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001387bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001388 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001389 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1390 if (!SrcModFlags) return false;
1391
Bill Wendling66f02412012-02-11 11:38:06 +00001392 // If the destination module doesn't have module flags yet, then just copy
1393 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001394 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001395 if (DstModFlags->getNumOperands() == 0) {
1396 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1397 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1398
1399 return false;
1400 }
1401
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001402 // First build a map of the existing module flags and requirements.
1403 DenseMap<MDString*, MDNode*> Flags;
1404 SmallSetVector<MDNode*, 16> Requirements;
1405 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
1406 MDNode *Op = DstModFlags->getOperand(I);
1407 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1408 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001409
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001410 if (Behavior->getZExtValue() == Module::Require) {
1411 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1412 } else {
1413 Flags[ID] = Op;
1414 }
Bill Wendling66f02412012-02-11 11:38:06 +00001415 }
1416
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001417 // Merge in the flags from the source module, and also collect its set of
1418 // requirements.
1419 bool HasErr = false;
1420 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
1421 MDNode *SrcOp = SrcModFlags->getOperand(I);
1422 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1423 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1424 MDNode *DstOp = Flags.lookup(ID);
1425 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001426
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001427 // If this is a requirement, add it and continue.
1428 if (SrcBehaviorValue == Module::Require) {
1429 // If the destination module does not already have this requirement, add
1430 // it.
1431 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1432 DstModFlags->addOperand(SrcOp);
1433 }
1434 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001435 }
1436
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001437 // If there is no existing flag with this ID, just add it.
1438 if (!DstOp) {
1439 Flags[ID] = SrcOp;
1440 DstModFlags->addOperand(SrcOp);
1441 continue;
1442 }
1443
1444 // Otherwise, perform a merge.
1445 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1446 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1447
1448 // If either flag has override behavior, handle it first.
1449 if (DstBehaviorValue == Module::Override) {
1450 // Diagnose inconsistent flags which both have override behavior.
1451 if (SrcBehaviorValue == Module::Override &&
1452 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1453 HasErr |= emitError("linking module flags '" + ID->getString() +
1454 "': IDs have conflicting override values");
1455 }
1456 continue;
1457 } else if (SrcBehaviorValue == Module::Override) {
1458 // Update the destination flag to that of the source.
1459 DstOp->replaceOperandWith(0, SrcBehavior);
1460 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1461 continue;
1462 }
1463
1464 // Diagnose inconsistent merge behavior types.
1465 if (SrcBehaviorValue != DstBehaviorValue) {
1466 HasErr |= emitError("linking module flags '" + ID->getString() +
1467 "': IDs have conflicting behaviors");
1468 continue;
1469 }
1470
1471 // Perform the merge for standard behavior types.
1472 switch (SrcBehaviorValue) {
1473 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001474 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001475 case Module::Error: {
1476 // Emit an error if the values differ.
1477 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1478 HasErr |= emitError("linking module flags '" + ID->getString() +
1479 "': IDs have conflicting values");
1480 }
1481 continue;
1482 }
1483 case Module::Warning: {
1484 // Emit a warning if the values differ.
1485 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001486 emitWarning("linking module flags '" + ID->getString() +
1487 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001488 }
1489 continue;
1490 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001491 case Module::Append: {
1492 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1493 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1494 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1495 Value **VP, **Values = VP = new Value*[NumOps];
1496 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1497 *VP = DstValue->getOperand(i);
1498 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1499 *VP = SrcValue->getOperand(i);
1500 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1501 ArrayRef<Value*>(Values,
1502 NumOps)));
1503 delete[] Values;
1504 break;
1505 }
1506 case Module::AppendUnique: {
1507 SmallSetVector<Value*, 16> Elts;
1508 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1509 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1510 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1511 Elts.insert(DstValue->getOperand(i));
1512 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1513 Elts.insert(SrcValue->getOperand(i));
1514 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1515 ArrayRef<Value*>(Elts.begin(),
1516 Elts.end())));
1517 break;
1518 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001519 }
Bill Wendling66f02412012-02-11 11:38:06 +00001520 }
1521
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001522 // Check all of the requirements.
1523 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1524 MDNode *Requirement = Requirements[I];
1525 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1526 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001527
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001528 MDNode *Op = Flags[Flag];
1529 if (!Op || Op->getOperand(2) != ReqValue) {
1530 HasErr |= emitError("linking module flags '" + Flag->getString() +
1531 "': does not have the required value");
1532 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001533 }
1534 }
1535
1536 return HasErr;
1537}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001538
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001539bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001540 assert(DstM && "Null destination module");
1541 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001542
1543 // Inherit the target data from the source module if the destination module
1544 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001545 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001546 DstM->setDataLayout(SrcM->getDataLayout());
1547
1548 // Copy the target triple from the source to dest if the dest's is empty.
1549 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1550 DstM->setTargetTriple(SrcM->getTargetTriple());
1551
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001552 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001553 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001554 emitWarning("Linking two modules of different data layouts: '" +
1555 SrcM->getModuleIdentifier() + "' is '" +
1556 SrcM->getDataLayoutStr() + "' whereas '" +
1557 DstM->getModuleIdentifier() + "' is '" +
1558 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001559 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001560 if (!SrcM->getTargetTriple().empty() &&
1561 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001562 emitWarning("Linking two modules of different target triples: " +
1563 SrcM->getModuleIdentifier() + "' is '" +
1564 SrcM->getTargetTriple() + "' whereas '" +
1565 DstM->getModuleIdentifier() + "' is '" +
1566 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001567 }
1568
1569 // Append the module inline asm string.
1570 if (!SrcM->getModuleInlineAsm().empty()) {
1571 if (DstM->getModuleInlineAsm().empty())
1572 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1573 else
1574 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1575 SrcM->getModuleInlineAsm());
1576 }
1577
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001578 // Loop over all of the linked values to compute type mappings.
1579 computeTypeMapping();
1580
David Majnemerdad0a642014-06-27 18:19:56 +00001581 ComdatsChosen.clear();
1582 for (const StringMapEntry<llvm::Comdat> &SMEC : SrcM->getComdatSymbolTable()) {
1583 const Comdat &C = SMEC.getValue();
1584 if (ComdatsChosen.count(&C))
1585 continue;
1586 Comdat::SelectionKind SK;
1587 bool LinkFromSrc;
1588 if (getComdatResult(&C, SK, LinkFromSrc))
1589 return true;
1590 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1591 }
1592
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001593 // Upgrade mismatched global arrays.
1594 upgradeMismatchedGlobals();
1595
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001596 // Insert all of the globals in src into the DstM module... without linking
1597 // initializers (which could refer to functions not yet mapped over).
1598 for (Module::global_iterator I = SrcM->global_begin(),
1599 E = SrcM->global_end(); I != E; ++I)
1600 if (linkGlobalProto(I))
1601 return true;
1602
1603 // Link the functions together between the two modules, without doing function
1604 // bodies... this just adds external function prototypes to the DstM
1605 // function... We do this so that when we begin processing function bodies,
1606 // all of the global values that may be referenced are available in our
1607 // ValueMap.
1608 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
1609 if (linkFunctionProto(I))
1610 return true;
1611
1612 // If there were any aliases, link them now.
1613 for (Module::alias_iterator I = SrcM->alias_begin(),
1614 E = SrcM->alias_end(); I != E; ++I)
1615 if (linkAliasProto(I))
1616 return true;
1617
1618 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1619 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001620
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001621 // Link in the function bodies that are defined in the source module into
1622 // DstM.
1623 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001624 // Skip if not linking from source.
1625 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001626
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001627 Function *DF = cast<Function>(ValueMap[SF]);
1628 if (SF->hasPrefixData()) {
1629 // Link in the prefix data.
1630 DF->setPrefixData(MapValue(
1631 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1632 }
1633
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001634 // Materialize if needed.
1635 if (SF->isMaterializable()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001636 if (std::error_code EC = SF->materialize())
1637 return emitError(EC.message());
Tanya Lattnerea166d42011-10-14 22:17:46 +00001638 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001639
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001640 // Skip if no body (function is external).
1641 if (SF->isDeclaration())
1642 continue;
1643
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001644 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001645 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001646 }
1647
1648 // Resolve all uses of aliases with aliasees.
1649 linkAliasBodies();
1650
Bill Wendling66f02412012-02-11 11:38:06 +00001651 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001652 // after linking GlobalValues so that MDNodes that reference GlobalValues
1653 // are properly remapped.
1654 linkNamedMDNodes();
1655
Bill Wendling66f02412012-02-11 11:38:06 +00001656 // Merge the module flags into the DstM module.
1657 if (linkModuleFlagsMetadata())
1658 return true;
1659
Bill Wendling91686d62014-01-16 06:29:36 +00001660 // Update the initializers in the DstM module now that all globals that may
1661 // be referenced are in DstM.
1662 linkGlobalInits();
1663
Tanya Lattner0a48b872011-11-02 00:24:56 +00001664 // Process vector of lazily linked in functions.
1665 bool LinkedInAnyFunctions;
1666 do {
1667 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001668
Bill Wendlingfa2287822013-03-27 17:54:41 +00001669 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001670 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001671 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001672 if (!SF)
1673 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001674
James Molloyf6f121e2013-05-28 15:17:05 +00001675 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001676 if (SF->hasPrefixData()) {
1677 // Link in the prefix data.
1678 DF->setPrefixData(MapValue(SF->getPrefixData(),
1679 ValueMap,
1680 RF_None,
1681 &TypeMap,
1682 &ValMaterializer));
1683 }
James Molloyf6f121e2013-05-28 15:17:05 +00001684
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001685 // Materialize if needed.
1686 if (SF->isMaterializable()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001687 if (std::error_code EC = SF->materialize())
1688 return emitError(EC.message());
Tanya Lattner0a48b872011-11-02 00:24:56 +00001689 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001690
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001691 // Skip if no body (function is external).
1692 if (SF->isDeclaration())
1693 continue;
1694
James Molloyf6f121e2013-05-28 15:17:05 +00001695 // Erase from vector *before* the function body is linked - linkFunctionBody could
1696 // invalidate I.
1697 LazilyLinkFunctions.erase(I);
1698
1699 // Link in function body.
1700 linkFunctionBody(DF, SF);
1701 SF->Dematerialize();
1702
1703 // Set flag to indicate we may have more functions to lazily link in
1704 // since we linked in a function.
1705 LinkedInAnyFunctions = true;
1706 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001707 }
1708 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001709
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001710 // Now that all of the types from the source are used, resolve any structs
1711 // copied over to the dest that didn't exist there.
1712 TypeMap.linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001713
Anton Korobeynikov26098882008-03-05 23:21:39 +00001714 return false;
1715}
Reid Spencer361e5132004-11-12 20:37:43 +00001716
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001717Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler)
1718 : Composite(M), DiagnosticHandler(DiagnosticHandler) {}
1719
1720Linker::Linker(Module *M)
1721 : Composite(M), DiagnosticHandler([this](const DiagnosticInfo &DI) {
1722 Composite->getContext().diagnose(DI);
1723 }) {
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001724 TypeFinder StructTypes;
1725 StructTypes.run(*M, true);
1726 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
1727}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001728
1729Linker::~Linker() {
1730}
1731
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001732void Linker::deleteModule() {
1733 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001734 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001735}
1736
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001737bool Linker::linkInModule(Module *Src) {
1738 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1739 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001740 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 Espindola9f8eff32014-10-28 00:24:16 +00001752bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001753 DiagnosticHandlerFunction DiagnosticHandler) {
1754 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001755 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001756}
1757
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001758bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001759 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001760 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001761}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001762
1763//===----------------------------------------------------------------------===//
1764// C API.
1765//===----------------------------------------------------------------------===//
1766
1767LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1768 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001769 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001770 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001771 raw_string_ostream Stream(Message);
1772 DiagnosticPrinterRawOStream DP(Stream);
1773
1774 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001775 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001776
1777 if (OutMessages && Result)
1778 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001779 return Result;
1780}