blob: 176df428cb64660a4a10af32be29fc8a2eb8bf50 [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 Espindolaa96f2352014-11-28 16:41:24 +000050 SmallVector<StructType*, 16> SpeculativeDstOpaqueTypes;
51
Rafael Espindola18c89412014-10-27 02:35:46 +000052 /// This is a list of non-opaque structs in the source module that are mapped
53 /// to an opaque struct in the destination module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000054 SmallVector<StructType*, 16> SrcDefinitionsToResolve;
Rafael Espindolaed6dc372014-05-09 14:39:25 +000055
Rafael Espindola18c89412014-10-27 02:35:46 +000056 /// This is the set of opaque types in the destination modules who are
57 /// getting a body from the source module.
Chris Lattner5e3bd972011-12-20 00:03:52 +000058 SmallPtrSet<StructType*, 16> DstResolvedOpaqueTypes;
Bill Wendling8c2cc412012-03-22 20:30:41 +000059
Chris Lattner56cdea62008-06-16 23:06:51 +000060public:
Rafael Espindolaa4e85e32014-12-01 16:32:20 +000061 TypeMapTy(TypeSet &Set) : DstStructTypesSet(Set) {}
Rafael Espindolaaa9918a2013-05-04 05:05:18 +000062
Rafael Espindolaa4e85e32014-12-01 16:32:20 +000063 TypeSet &DstStructTypesSet;
Rafael Espindola18c89412014-10-27 02:35:46 +000064 /// Indicate that the specified type in the destination module is conceptually
65 /// equivalent to the specified type in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000066 void addTypeMapping(Type *DstTy, Type *SrcTy);
67
Rafael Espindolad2a13a22014-11-25 04:28:31 +000068 /// Produce a body for an opaque type in the dest module from a type
69 /// definition in the source module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000070 void linkDefinedTypeBodies();
Rafael Espindolaed6dc372014-05-09 14:39:25 +000071
Rafael Espindola18c89412014-10-27 02:35:46 +000072 /// Return the mapped type to use for the specified input type from the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000073 /// source module.
74 Type *get(Type *SrcTy);
75
Rafael Espindola290e2cc2014-11-25 14:35:53 +000076 FunctionType *get(FunctionType *T) {
77 return cast<FunctionType>(get((Type *)T));
78 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000079
Rafael Espindola18c89412014-10-27 02:35:46 +000080 /// Dump out the type map for debugging purposes.
Bill Wendlingb6af2f32012-03-22 20:28:27 +000081 void dump() const {
Rafael Espindola8f144712014-11-25 06:16:27 +000082 for (auto &Pair : MappedTypes) {
Bill Wendlingb6af2f32012-03-22 20:28:27 +000083 dbgs() << "TypeMap: ";
Rafael Espindola8f144712014-11-25 06:16:27 +000084 Pair.first->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000085 dbgs() << " => ";
Rafael Espindola8f144712014-11-25 06:16:27 +000086 Pair.second->print(dbgs());
Bill Wendlingb6af2f32012-03-22 20:28:27 +000087 dbgs() << '\n';
88 }
89 }
Bill Wendlingb6af2f32012-03-22 20:28:27 +000090
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000091private:
Rafael Espindola290e2cc2014-11-25 14:35:53 +000092 Type *remapType(Type *SrcTy) override { return get(SrcTy); }
Rafael Espindolaed6dc372014-05-09 14:39:25 +000093
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000094 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
Chris Lattnereee6f992008-06-16 21:00:18 +000095};
96}
97
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000098void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
Rafael Espindola3d097412014-11-28 16:26:14 +000099 assert(SpeculativeTypes.empty());
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000100 assert(SpeculativeDstOpaqueTypes.empty());
Rafael Espindola3d097412014-11-28 16:26:14 +0000101
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000102 // Check to see if these types are recursively isomorphic and establish a
103 // mapping between them if so.
Duncan P. N. Exon Smithc586eaa2014-11-27 17:01:10 +0000104 if (!areTypesIsomorphic(DstTy, SrcTy)) {
105 // Oops, they aren't isomorphic. Just discard this request by rolling out
106 // any speculative mappings we've established.
Rafael Espindola3d097412014-11-28 16:26:14 +0000107 for (Type *Ty : SpeculativeTypes)
108 MappedTypes.erase(Ty);
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000109
110 SrcDefinitionsToResolve.resize(SrcDefinitionsToResolve.size() -
111 SpeculativeDstOpaqueTypes.size());
112 for (StructType *Ty : SpeculativeDstOpaqueTypes)
113 DstResolvedOpaqueTypes.erase(Ty);
Rafael Espindola04a74af2014-12-01 04:15:59 +0000114 } else {
115 for (Type *Ty : SpeculativeTypes)
116 if (auto *STy = dyn_cast<StructType>(Ty))
117 if (STy->hasName())
118 STy->setName("");
Bill Wendlingd48b7782012-02-28 04:01:21 +0000119 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000120 SpeculativeTypes.clear();
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000121 SpeculativeDstOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000122}
Chris Lattnereee6f992008-06-16 21:00:18 +0000123
Rafael Espindola18c89412014-10-27 02:35:46 +0000124/// Recursively walk this pair of types, returning true if they are isomorphic,
125/// false if they are not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000126bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
127 // Two types with differing kinds are clearly not isomorphic.
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000128 if (DstTy->getTypeID() != SrcTy->getTypeID())
129 return false;
Misha Brukman10468d82005-04-21 22:55:34 +0000130
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000131 // If we have an entry in the MappedTypes table, then we have our answer.
132 Type *&Entry = MappedTypes[SrcTy];
133 if (Entry)
134 return Entry == DstTy;
Misha Brukman10468d82005-04-21 22:55:34 +0000135
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000136 // Two identical types are clearly isomorphic. Remember this
137 // non-speculatively.
138 if (DstTy == SrcTy) {
139 Entry = DstTy;
Chris Lattnerfe677e92008-06-16 20:03:01 +0000140 return true;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000141 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000142
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000143 // Okay, we have two types with identical kinds that we haven't seen before.
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000144
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000145 // If this is an opaque struct type, special case it.
146 if (StructType *SSTy = dyn_cast<StructType>(SrcTy)) {
147 // Mapping an opaque type to any struct, just keep the dest struct.
148 if (SSTy->isOpaque()) {
149 Entry = DstTy;
150 SpeculativeTypes.push_back(SrcTy);
Reid Spencer361e5132004-11-12 20:37:43 +0000151 return true;
Chris Lattner9be15892008-06-16 21:17:12 +0000152 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000153
Chris Lattner5e3bd972011-12-20 00:03:52 +0000154 // Mapping a non-opaque source type to an opaque dest. If this is the first
155 // type that we're mapping onto this destination type then we succeed. Keep
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000156 // the dest, but fill it in later. If this is the second (different) type
157 // that we're trying to map onto the same opaque type then we fail.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000158 if (cast<StructType>(DstTy)->isOpaque()) {
Chris Lattner5e3bd972011-12-20 00:03:52 +0000159 // We can only map one source type onto the opaque destination type.
David Blaikie70573dc2014-11-19 07:49:26 +0000160 if (!DstResolvedOpaqueTypes.insert(cast<StructType>(DstTy)).second)
Chris Lattner5e3bd972011-12-20 00:03:52 +0000161 return false;
162 SrcDefinitionsToResolve.push_back(SSTy);
Rafael Espindolaa96f2352014-11-28 16:41:24 +0000163 SpeculativeTypes.push_back(SrcTy);
164 SpeculativeDstOpaqueTypes.push_back(cast<StructType>(DstTy));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000165 Entry = DstTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000166 return true;
167 }
168 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000169
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000170 // If the number of subtypes disagree between the two types, then we fail.
171 if (SrcTy->getNumContainedTypes() != DstTy->getNumContainedTypes())
Reid Spencer361e5132004-11-12 20:37:43 +0000172 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000173
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000174 // Fail if any of the extra properties (e.g. array size) of the type disagree.
175 if (isa<IntegerType>(DstTy))
176 return false; // bitwidth disagrees.
177 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
178 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
179 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000180
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000181 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
182 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
183 return false;
184 } else if (StructType *DSTy = dyn_cast<StructType>(DstTy)) {
185 StructType *SSTy = cast<StructType>(SrcTy);
Chris Lattner44f7ab42011-08-12 18:07:26 +0000186 if (DSTy->isLiteral() != SSTy->isLiteral() ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000187 DSTy->isPacked() != SSTy->isPacked())
188 return false;
189 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
190 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
191 return false;
192 } else if (VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Joey Gouly5fad3e92013-01-10 10:49:36 +0000193 if (DVTy->getNumElements() != cast<VectorType>(SrcTy)->getNumElements())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000194 return false;
Reid Spencer361e5132004-11-12 20:37:43 +0000195 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000196
197 // Otherwise, we speculate that these two types will line up and recursively
198 // check the subelements.
199 Entry = DstTy;
200 SpeculativeTypes.push_back(SrcTy);
201
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000202 for (unsigned I = 0, E = SrcTy->getNumContainedTypes(); I != E; ++I)
203 if (!areTypesIsomorphic(DstTy->getContainedType(I),
204 SrcTy->getContainedType(I)))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000205 return false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000206
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000207 // If everything seems to have lined up, then everything is great.
208 return true;
209}
210
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000211void TypeMapTy::linkDefinedTypeBodies() {
212 SmallVector<Type*, 16> Elements;
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000213 for (StructType *SrcSTy : SrcDefinitionsToResolve) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000214 StructType *DstSTy = cast<StructType>(MappedTypes[SrcSTy]);
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000215 assert(DstSTy->isOpaque());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000216
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000217 // Map the body of the source type over to a new body for the dest type.
218 Elements.resize(SrcSTy->getNumElements());
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000219 for (unsigned I = 0, E = Elements.size(); I != E; ++I)
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000220 Elements[I] = get(SrcSTy->getElementType(I));
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000221
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000222 DstSTy->setBody(Elements, SrcSTy->isPacked());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000223 }
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000224 SrcDefinitionsToResolve.clear();
Chris Lattner5e3bd972011-12-20 00:03:52 +0000225 DstResolvedOpaqueTypes.clear();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000226}
227
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000228Type *TypeMapTy::get(Type *Ty) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000229#ifndef NDEBUG
230 for (auto &Pair : MappedTypes) {
231 assert(!(Pair.first != Ty && Pair.second == Ty) &&
232 "mapping to a source type");
233 }
234#endif
235
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000236 // If we already have an entry for this type, return it.
237 Type **Entry = &MappedTypes[Ty];
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000238 if (*Entry)
239 return *Entry;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000240
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000241 // If this is not a named struct type, then just map all of the elements and
242 // then rebuild the type from inside out.
Chris Lattner44f7ab42011-08-12 18:07:26 +0000243 if (!isa<StructType>(Ty) || cast<StructType>(Ty)->isLiteral()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000244 // If there are no element types to map, then the type is itself. This is
245 // true for the anonymous {} struct, things like 'float', integers, etc.
246 if (Ty->getNumContainedTypes() == 0)
247 return *Entry = Ty;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000248
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000249 // Remap all of the elements, keeping track of whether any of them change.
250 bool AnyChange = false;
251 SmallVector<Type*, 4> ElementTypes;
252 ElementTypes.resize(Ty->getNumContainedTypes());
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000253 for (unsigned I = 0, E = Ty->getNumContainedTypes(); I != E; ++I) {
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000254 ElementTypes[I] = get(Ty->getContainedType(I));
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000255 AnyChange |= ElementTypes[I] != Ty->getContainedType(I);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000256 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000257
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000258 // If we found our type while recursively processing stuff, just use it.
259 Entry = &MappedTypes[Ty];
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000260 if (*Entry)
261 return *Entry;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000262
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000263 // If all of the element types mapped directly over, then the type is usable
264 // as-is.
265 if (!AnyChange)
266 return *Entry = Ty;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000267
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000268 // Otherwise, rebuild a modified type.
269 switch (Ty->getTypeID()) {
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000270 default:
271 llvm_unreachable("unknown derived type to remap");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000272 case Type::ArrayTyID:
273 return *Entry = ArrayType::get(ElementTypes[0],
274 cast<ArrayType>(Ty)->getNumElements());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000275 case Type::VectorTyID:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000276 return *Entry = VectorType::get(ElementTypes[0],
277 cast<VectorType>(Ty)->getNumElements());
278 case Type::PointerTyID:
Rafael Espindola290e2cc2014-11-25 14:35:53 +0000279 return *Entry = PointerType::get(
280 ElementTypes[0], cast<PointerType>(Ty)->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000281 case Type::FunctionTyID:
282 return *Entry = FunctionType::get(ElementTypes[0],
Frits van Bommel717d7ed2011-07-18 12:00:32 +0000283 makeArrayRef(ElementTypes).slice(1),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000284 cast<FunctionType>(Ty)->isVarArg());
285 case Type::StructTyID:
286 // Note that this is only reached for anonymous structs.
287 return *Entry = StructType::get(Ty->getContext(), ElementTypes,
288 cast<StructType>(Ty)->isPacked());
289 }
290 }
291
292 // Otherwise, this is an unmapped named struct. If the struct can be directly
293 // mapped over, just use it as-is. This happens in a case when the linked-in
294 // module has something like:
295 // %T = type {%T*, i32}
296 // @GV = global %T* null
297 // where T does not exist at all in the destination module.
298 //
299 // The other case we watch for is when the type is not in the destination
300 // module, but that it has to be rebuilt because it refers to something that
301 // is already mapped. For example, if the destination module has:
302 // %A = type { i32 }
303 // and the source module has something like
304 // %A' = type { i32 }
305 // %B = type { %A'* }
306 // @GV = global %B* null
307 // then we want to create a new type: "%B = type { %A*}" and have it take the
308 // pristine "%B" name from the source module.
309 //
310 // To determine which case this is, we have to recursively walk the type graph
311 // speculating that we'll be able to reuse it unmodified. Only if this is
312 // safe would we map the entire thing over. Because this is an optimization,
313 // and is not required for the prettiness of the linked module, we just skip
314 // it and always rebuild a type here.
315 StructType *STy = cast<StructType>(Ty);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000316
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000317 // If the type is opaque, we can just use it directly.
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000318 if (STy->isOpaque()) {
319 // A named structure type from src module is used. Add it to the Set of
320 // identified structs in the destination module.
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000321 DstStructTypesSet.insert(STy);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000322 return *Entry = STy;
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000323 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000324
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000325 // Otherwise we create a new type.
Chris Lattner5e3bd972011-12-20 00:03:52 +0000326 StructType *DTy = StructType::create(STy->getContext());
Rafael Espindolaaa9918a2013-05-04 05:05:18 +0000327 // A new identified structure type was created. Add it to the set of
328 // identified structs in the destination module.
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000329 DstStructTypesSet.insert(DTy);
Rafael Espindolac81c3f52014-11-25 15:33:40 +0000330 *Entry = DTy;
331
332 SmallVector<Type*, 4> ElementTypes;
333 ElementTypes.resize(STy->getNumElements());
334 for (unsigned I = 0, E = ElementTypes.size(); I != E; ++I)
335 ElementTypes[I] = get(STy->getElementType(I));
336 DTy->setBody(ElementTypes, STy->isPacked());
337
338 // Steal STy's name.
339 if (STy->hasName()) {
340 SmallString<16> TmpName = STy->getName();
341 STy->setName("");
342 DTy->setName(TmpName);
343 }
344
345 return DTy;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000346}
347
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000348//===----------------------------------------------------------------------===//
349// ModuleLinker implementation.
350//===----------------------------------------------------------------------===//
351
352namespace {
Rafael Espindolac84f6082014-11-25 06:11:24 +0000353class ModuleLinker;
James Molloyf6f121e2013-05-28 15:17:05 +0000354
Rafael Espindolac84f6082014-11-25 06:11:24 +0000355/// Creates prototypes for functions that are lazily linked on the fly. This
356/// speeds up linking for modules with many/ lazily linked functions of which
357/// few get used.
358class ValueMaterializerTy : public ValueMaterializer {
359 TypeMapTy &TypeMap;
360 Module *DstM;
361 std::vector<Function *> &LazilyLinkFunctions;
James Molloyf6f121e2013-05-28 15:17:05 +0000362
Rafael Espindolac84f6082014-11-25 06:11:24 +0000363public:
364 ValueMaterializerTy(TypeMapTy &TypeMap, Module *DstM,
365 std::vector<Function *> &LazilyLinkFunctions)
366 : ValueMaterializer(), TypeMap(TypeMap), DstM(DstM),
367 LazilyLinkFunctions(LazilyLinkFunctions) {}
368
369 Value *materializeValueFor(Value *V) override;
370};
371
372class LinkDiagnosticInfo : public DiagnosticInfo {
373 const Twine &Msg;
374
375public:
376 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
377 void print(DiagnosticPrinter &DP) const override;
378};
379LinkDiagnosticInfo::LinkDiagnosticInfo(DiagnosticSeverity Severity,
380 const Twine &Msg)
381 : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {}
382void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; }
383
384/// This is an implementation class for the LinkModules function, which is the
385/// entrypoint for this file.
386class ModuleLinker {
387 Module *DstM, *SrcM;
388
389 TypeMapTy TypeMap;
390 ValueMaterializerTy ValMaterializer;
391
392 /// Mapping of values from what they used to be in Src, to what they are now
393 /// in DstM. ValueToValueMapTy is a ValueMap, which involves some overhead
394 /// due to the use of Value handles which the Linker doesn't actually need,
395 /// but this allows us to reuse the ValueMapper code.
396 ValueToValueMapTy ValueMap;
397
398 struct AppendingVarInfo {
399 GlobalVariable *NewGV; // New aggregate global in dest module.
400 const Constant *DstInit; // Old initializer from dest module.
401 const Constant *SrcInit; // Old initializer from src module.
James Molloyf6f121e2013-05-28 15:17:05 +0000402 };
403
Rafael Espindolac84f6082014-11-25 06:11:24 +0000404 std::vector<AppendingVarInfo> AppendingVars;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000405
Rafael Espindolac84f6082014-11-25 06:11:24 +0000406 // Set of items not to link in from source.
407 SmallPtrSet<const Value *, 16> DoNotLinkFromSource;
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000408
Rafael Espindolac84f6082014-11-25 06:11:24 +0000409 // Vector of functions to lazily link in.
410 std::vector<Function *> LazilyLinkFunctions;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000411
Rafael Espindolac84f6082014-11-25 06:11:24 +0000412 Linker::DiagnosticHandlerFunction DiagnosticHandler;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000413
Rafael Espindolac84f6082014-11-25 06:11:24 +0000414public:
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000415 ModuleLinker(Module *dstM, TypeSet &Set, Module *srcM,
Rafael Espindolac84f6082014-11-25 06:11:24 +0000416 Linker::DiagnosticHandlerFunction DiagnosticHandler)
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000417 : DstM(dstM), SrcM(srcM), TypeMap(Set),
Rafael Espindolac84f6082014-11-25 06:11:24 +0000418 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions),
419 DiagnosticHandler(DiagnosticHandler) {}
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000420
Rafael Espindolac84f6082014-11-25 06:11:24 +0000421 bool run();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000422
Rafael Espindolac84f6082014-11-25 06:11:24 +0000423private:
424 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
425 const GlobalValue &Src);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000426
Rafael Espindolac84f6082014-11-25 06:11:24 +0000427 /// Helper method for setting a message and returning an error code.
428 bool emitError(const Twine &Message) {
429 DiagnosticHandler(LinkDiagnosticInfo(DS_Error, Message));
430 return true;
431 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000432
Rafael Espindolac84f6082014-11-25 06:11:24 +0000433 void emitWarning(const Twine &Message) {
434 DiagnosticHandler(LinkDiagnosticInfo(DS_Warning, Message));
435 }
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000436
Rafael Espindolac84f6082014-11-25 06:11:24 +0000437 bool getComdatLeader(Module *M, StringRef ComdatName,
438 const GlobalVariable *&GVar);
439 bool computeResultingSelectionKind(StringRef ComdatName,
440 Comdat::SelectionKind Src,
441 Comdat::SelectionKind Dst,
442 Comdat::SelectionKind &Result,
443 bool &LinkFromSrc);
444 std::map<const Comdat *, std::pair<Comdat::SelectionKind, bool>>
445 ComdatsChosen;
446 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
447 bool &LinkFromSrc);
Rafael Espindola4160f5d2014-10-27 23:02:10 +0000448
Rafael Espindolac84f6082014-11-25 06:11:24 +0000449 /// Given a global in the source module, return the global in the
450 /// destination module that is being linked to, if any.
451 GlobalValue *getLinkedToGlobal(const GlobalValue *SrcGV) {
452 // If the source has no name it can't link. If it has local linkage,
453 // there is no name match-up going on.
454 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage())
455 return nullptr;
Eli Bendersky7da92ed2014-02-20 22:19:24 +0000456
Rafael Espindolac84f6082014-11-25 06:11:24 +0000457 // Otherwise see if we have a match in the destination module's symtab.
458 GlobalValue *DGV = DstM->getNamedValue(SrcGV->getName());
459 if (!DGV)
460 return nullptr;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000461
Rafael Espindolac84f6082014-11-25 06:11:24 +0000462 // If we found a global with the same name in the dest module, but it has
463 // internal linkage, we are really not doing any linkage here.
464 if (DGV->hasLocalLinkage())
465 return nullptr;
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000466
Rafael Espindolac84f6082014-11-25 06:11:24 +0000467 // Otherwise, we do in fact link to the destination global.
468 return DGV;
469 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000470
Rafael Espindolac84f6082014-11-25 06:11:24 +0000471 void computeTypeMapping();
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000472
Rafael Espindolac84f6082014-11-25 06:11:24 +0000473 void upgradeMismatchedGlobalArray(StringRef Name);
474 void upgradeMismatchedGlobals();
David Majnemerdad0a642014-06-27 18:19:56 +0000475
Rafael Espindolac84f6082014-11-25 06:11:24 +0000476 bool linkAppendingVarProto(GlobalVariable *DstGV,
477 const GlobalVariable *SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000478
Rafael Espindolac84f6082014-11-25 06:11:24 +0000479 bool linkGlobalValueProto(GlobalValue *GV);
480 GlobalValue *linkGlobalVariableProto(const GlobalVariable *SGVar,
481 GlobalValue *DGV, bool LinkFromSrc);
482 GlobalValue *linkFunctionProto(const Function *SF, GlobalValue *DGV,
483 bool LinkFromSrc);
484 GlobalValue *linkGlobalAliasProto(const GlobalAlias *SGA, GlobalValue *DGV,
485 bool LinkFromSrc);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000486
Rafael Espindolac84f6082014-11-25 06:11:24 +0000487 bool linkModuleFlagsMetadata();
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000488
Rafael Espindolac84f6082014-11-25 06:11:24 +0000489 void linkAppendingVarInit(const AppendingVarInfo &AVI);
490 void linkGlobalInits();
491 void linkFunctionBody(Function *Dst, Function *Src);
492 void linkAliasBodies();
493 void linkNamedMDNodes();
494};
Bill Wendlingd48b7782012-02-28 04:01:21 +0000495}
496
Rafael Espindola18c89412014-10-27 02:35:46 +0000497/// The LLVM SymbolTable class autorenames globals that conflict in the symbol
498/// table. This is good for all clients except for us. Go through the trouble
499/// to force this back.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000500static void forceRenaming(GlobalValue *GV, StringRef Name) {
501 // If the global doesn't force its name or if it already has the right name,
502 // there is nothing for us to do.
503 if (GV->hasLocalLinkage() || GV->getName() == Name)
504 return;
505
506 Module *M = GV->getParent();
Reid Spencer361e5132004-11-12 20:37:43 +0000507
508 // If there is a conflict, rename the conflict.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000509 if (GlobalValue *ConflictGV = M->getNamedValue(Name)) {
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000510 GV->takeName(ConflictGV);
511 ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000512 assert(ConflictGV->getName() != Name && "forceRenaming didn't work");
Chris Lattner2a8d2e02007-02-11 00:39:38 +0000513 } else {
514 GV->setName(Name); // Force the name back
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000515 }
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000516}
Reid Spencer90246aa2007-02-04 04:29:21 +0000517
Rafael Espindola18c89412014-10-27 02:35:46 +0000518/// copy additional attributes (those not needed to construct a GlobalValue)
519/// from the SrcGV to the DestGV.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000520static void copyGVAttributes(GlobalValue *DestGV, const GlobalValue *SrcGV) {
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000521 // Use the maximum alignment, rather than just copying the alignment of SrcGV.
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000522 auto *DestGO = dyn_cast<GlobalObject>(DestGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000523 unsigned Alignment;
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000524 if (DestGO)
525 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000526
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000527 DestGV->copyAttributesFrom(SrcGV);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000528
Rafael Espindola99e05cf2014-05-13 18:45:48 +0000529 if (DestGO)
530 DestGO->setAlignment(Alignment);
Rafael Espindolaa7d9c692014-05-06 14:51:36 +0000531
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000532 forceRenaming(DestGV, SrcGV->getName());
Reid Spencer361e5132004-11-12 20:37:43 +0000533}
534
Rafael Espindola23f8d642012-01-05 23:02:01 +0000535static bool isLessConstraining(GlobalValue::VisibilityTypes a,
536 GlobalValue::VisibilityTypes b) {
537 if (a == GlobalValue::HiddenVisibility)
538 return false;
539 if (b == GlobalValue::HiddenVisibility)
540 return true;
541 if (a == GlobalValue::ProtectedVisibility)
542 return false;
543 if (b == GlobalValue::ProtectedVisibility)
544 return true;
545 return false;
546}
547
James Molloyf6f121e2013-05-28 15:17:05 +0000548Value *ValueMaterializerTy::materializeValueFor(Value *V) {
549 Function *SF = dyn_cast<Function>(V);
550 if (!SF)
Craig Topper2617dcc2014-04-15 06:32:26 +0000551 return nullptr;
James Molloyf6f121e2013-05-28 15:17:05 +0000552
553 Function *DF = Function::Create(TypeMap.get(SF->getFunctionType()),
554 SF->getLinkage(), SF->getName(), DstM);
555 copyGVAttributes(DF, SF);
556
Rafael Espindola3931c282014-08-15 20:17:08 +0000557 if (Comdat *SC = SF->getComdat()) {
558 Comdat *DC = DstM->getOrInsertComdat(SC->getName());
559 DF->setComdat(DC);
560 }
561
James Molloyf6f121e2013-05-28 15:17:05 +0000562 LazilyLinkFunctions.push_back(SF);
563 return DF;
564}
565
David Majnemerdad0a642014-06-27 18:19:56 +0000566bool ModuleLinker::getComdatLeader(Module *M, StringRef ComdatName,
567 const GlobalVariable *&GVar) {
568 const GlobalValue *GVal = M->getNamedValue(ComdatName);
569 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
570 GVal = GA->getBaseObject();
571 if (!GVal)
572 // We cannot resolve the size of the aliasee yet.
573 return emitError("Linking COMDATs named '" + ComdatName +
574 "': COMDAT key involves incomputable alias size.");
575 }
576
577 GVar = dyn_cast_or_null<GlobalVariable>(GVal);
578 if (!GVar)
579 return emitError(
580 "Linking COMDATs named '" + ComdatName +
581 "': GlobalVariable required for data dependent selection!");
582
583 return false;
584}
585
586bool ModuleLinker::computeResultingSelectionKind(StringRef ComdatName,
587 Comdat::SelectionKind Src,
588 Comdat::SelectionKind Dst,
589 Comdat::SelectionKind &Result,
590 bool &LinkFromSrc) {
591 // The ability to mix Comdat::SelectionKind::Any with
592 // Comdat::SelectionKind::Largest is a behavior that comes from COFF.
593 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
594 Dst == Comdat::SelectionKind::Largest;
595 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
596 Src == Comdat::SelectionKind::Largest;
597 if (DstAnyOrLargest && SrcAnyOrLargest) {
598 if (Dst == Comdat::SelectionKind::Largest ||
599 Src == Comdat::SelectionKind::Largest)
600 Result = Comdat::SelectionKind::Largest;
601 else
602 Result = Comdat::SelectionKind::Any;
603 } else if (Src == Dst) {
604 Result = Dst;
605 } else {
606 return emitError("Linking COMDATs named '" + ComdatName +
607 "': invalid selection kinds!");
608 }
609
610 switch (Result) {
611 case Comdat::SelectionKind::Any:
612 // Go with Dst.
613 LinkFromSrc = false;
614 break;
615 case Comdat::SelectionKind::NoDuplicates:
616 return emitError("Linking COMDATs named '" + ComdatName +
617 "': noduplicates has been violated!");
618 case Comdat::SelectionKind::ExactMatch:
619 case Comdat::SelectionKind::Largest:
620 case Comdat::SelectionKind::SameSize: {
621 const GlobalVariable *DstGV;
622 const GlobalVariable *SrcGV;
623 if (getComdatLeader(DstM, ComdatName, DstGV) ||
624 getComdatLeader(SrcM, ComdatName, SrcGV))
625 return true;
626
627 const DataLayout *DstDL = DstM->getDataLayout();
628 const DataLayout *SrcDL = SrcM->getDataLayout();
629 if (!DstDL || !SrcDL) {
630 return emitError(
631 "Linking COMDATs named '" + ComdatName +
632 "': can't do size dependent selection without DataLayout!");
633 }
634 uint64_t DstSize =
635 DstDL->getTypeAllocSize(DstGV->getType()->getPointerElementType());
636 uint64_t SrcSize =
637 SrcDL->getTypeAllocSize(SrcGV->getType()->getPointerElementType());
638 if (Result == Comdat::SelectionKind::ExactMatch) {
639 if (SrcGV->getInitializer() != DstGV->getInitializer())
640 return emitError("Linking COMDATs named '" + ComdatName +
641 "': ExactMatch violated!");
642 LinkFromSrc = false;
643 } else if (Result == Comdat::SelectionKind::Largest) {
644 LinkFromSrc = SrcSize > DstSize;
645 } else if (Result == Comdat::SelectionKind::SameSize) {
646 if (SrcSize != DstSize)
647 return emitError("Linking COMDATs named '" + ComdatName +
648 "': SameSize violated!");
649 LinkFromSrc = false;
650 } else {
651 llvm_unreachable("unknown selection kind");
652 }
653 break;
654 }
655 }
656
657 return false;
658}
659
660bool ModuleLinker::getComdatResult(const Comdat *SrcC,
661 Comdat::SelectionKind &Result,
662 bool &LinkFromSrc) {
Rafael Espindolab16196a2014-08-11 17:07:34 +0000663 Comdat::SelectionKind SSK = SrcC->getSelectionKind();
David Majnemerdad0a642014-06-27 18:19:56 +0000664 StringRef ComdatName = SrcC->getName();
665 Module::ComdatSymTabType &ComdatSymTab = DstM->getComdatSymbolTable();
666 Module::ComdatSymTabType::iterator DstCI = ComdatSymTab.find(ComdatName);
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000667
Rafael Espindolab16196a2014-08-11 17:07:34 +0000668 if (DstCI == ComdatSymTab.end()) {
669 // Use the comdat if it is only available in one of the modules.
670 LinkFromSrc = true;
671 Result = SSK;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000672 return false;
Rafael Espindolab16196a2014-08-11 17:07:34 +0000673 }
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000674
675 const Comdat *DstC = &DstCI->second;
Rafael Espindola2ef3f292014-08-11 16:55:42 +0000676 Comdat::SelectionKind DSK = DstC->getSelectionKind();
677 return computeResultingSelectionKind(ComdatName, SSK, DSK, Result,
678 LinkFromSrc);
David Majnemerdad0a642014-06-27 18:19:56 +0000679}
James Molloyf6f121e2013-05-28 15:17:05 +0000680
Rafael Espindolad12b4a32014-10-25 04:06:10 +0000681bool ModuleLinker::shouldLinkFromSource(bool &LinkFromSrc,
682 const GlobalValue &Dest,
Rafael Espindoladbb0bd12014-09-09 15:21:00 +0000683 const GlobalValue &Src) {
Rafael Espindola778fcc72014-11-02 13:28:57 +0000684 // We always have to add Src if it has appending linkage.
685 if (Src.hasAppendingLinkage()) {
686 LinkFromSrc = true;
687 return false;
688 }
689
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 Espindola18c89412014-10-27 02:35:46 +0000759/// Loop over all of the linked values to compute type mappings. For example,
760/// if we link "extern Foo *x" and "Foo *x = NULL", then we have two struct
761/// types 'Foo' but one got renamed when the module was loaded into the same
762/// LLVMContext.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000763void ModuleLinker::computeTypeMapping() {
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000764 for (GlobalValue &SGV : SrcM->globals()) {
765 GlobalValue *DGV = getLinkedToGlobal(&SGV);
766 if (!DGV)
767 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000768
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000769 if (!DGV->hasAppendingLinkage() || !SGV.hasAppendingLinkage()) {
770 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000771 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000772 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000773
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000774 // Unify the element type of appending arrays.
775 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000776 ArrayType *SAT = cast<ArrayType>(SGV.getType()->getElementType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000777 TypeMap.addTypeMapping(DAT->getElementType(), SAT->getElementType());
Devang Patel5c310be2009-08-11 18:01:24 +0000778 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000779
Rafael Espindolac8a476e2014-11-25 04:26:19 +0000780 for (GlobalValue &SGV : *SrcM) {
781 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
782 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000783 }
Bill Wendling7b464612012-02-27 22:34:19 +0000784
Rafael Espindolae96d7eb2014-11-25 04:43:59 +0000785 for (GlobalValue &SGV : SrcM->aliases()) {
786 if (GlobalValue *DGV = getLinkedToGlobal(&SGV))
787 TypeMap.addTypeMapping(DGV->getType(), SGV.getType());
788 }
789
Bill Wendlingd48b7782012-02-28 04:01:21 +0000790 // Incorporate types by name, scanning all the types in the source module.
791 // At this point, the destination module may have a type "%foo = { i32 }" for
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000792 // example. When the source module got loaded into the same LLVMContext, if
793 // it had the same type, it would have been renamed to "%foo.42 = { i32 }".
Bill Wendling8555a372012-08-03 00:30:35 +0000794 TypeFinder SrcStructTypes;
795 SrcStructTypes.run(*SrcM, true);
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000796 SmallPtrSet<StructType*, 32> SrcStructTypesSet(SrcStructTypes.begin(),
797 SrcStructTypes.end());
Bill Wendling87374802012-03-23 23:17:38 +0000798
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000799 for (unsigned i = 0, e = SrcStructTypes.size(); i != e; ++i) {
800 StructType *ST = SrcStructTypes[i];
801 if (!ST->hasName()) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000802
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000803 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000804 size_t DotPos = ST->getName().rfind('.');
805 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000806 ST->getName().back() == '.' ||
807 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000808 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000809
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000810 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000811 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000812 // Don't use it if this actually came from the source module. They're in
813 // the same LLVMContext after all. Also don't use it unless the type is
814 // actually used in the destination module. This can happen in situations
815 // like this:
816 //
817 // Module A Module B
818 // -------- --------
819 // %Z = type { %A } %B = type { %C.1 }
820 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
821 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
822 // %C = type { i8* } %B.3 = type { %C.1 }
823 //
824 // When we link Module B with Module A, the '%B' in Module B is
825 // used. However, that would then use '%C.1'. But when we process '%C.1',
826 // we prefer to take the '%C' version. So we are then left with both
827 // '%C.1' and '%C' being used for the same types. This leads to some
828 // variables using one type and some using the other.
Rafael Espindolaa4e85e32014-12-01 16:32:20 +0000829 if (!SrcStructTypesSet.count(DST) && TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000830 TypeMap.addTypeMapping(DST, ST);
831 }
832
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000833 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000834 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000835 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000836}
837
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000838static void upgradeGlobalArray(GlobalVariable *GV) {
839 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
840 StructType *OldTy = cast<StructType>(ATy->getElementType());
841 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
842
843 // Get the upgraded 3 element type.
844 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
845 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
846 VoidPtrTy};
847 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
848
849 // Build new constants with a null third field filled in.
850 Constant *OldInitC = GV->getInitializer();
851 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
852 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
853 // Invalid initializer; give up.
854 return;
855 std::vector<Constant *> Initializers;
856 if (OldInit && OldInit->getNumOperands()) {
857 Value *Null = Constant::getNullValue(VoidPtrTy);
858 for (Use &U : OldInit->operands()) {
859 ConstantStruct *Init = cast<ConstantStruct>(U.get());
860 Initializers.push_back(ConstantStruct::get(
861 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
862 }
863 }
864 assert(Initializers.size() == ATy->getNumElements() &&
865 "Failed to copy all array elements");
866
867 // Replace the old GV with a new one.
868 ATy = ArrayType::get(NewTy, Initializers.size());
869 Constant *NewInit = ConstantArray::get(ATy, Initializers);
870 GlobalVariable *NewGV = new GlobalVariable(
871 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
872 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
873 GV->isExternallyInitialized());
874 NewGV->copyAttributesFrom(GV);
875 NewGV->takeName(GV);
876 assert(GV->use_empty() && "program cannot use initializer list");
877 GV->eraseFromParent();
878}
879
880void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
881 // Look for the global arrays.
882 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
883 if (!DstGV)
884 return;
885 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
886 if (!SrcGV)
887 return;
888
889 // Check if the types already match.
890 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
891 auto *SrcTy =
892 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
893 if (DstTy == SrcTy)
894 return;
895
896 // Grab the element types. We can only upgrade an array of a two-field
897 // struct. Only bother if the other one has three-fields.
898 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
899 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
900 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
901 upgradeGlobalArray(DstGV);
902 return;
903 }
904 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
905 upgradeGlobalArray(SrcGV);
906
907 // We can't upgrade any other differences.
908}
909
910void ModuleLinker::upgradeMismatchedGlobals() {
911 upgradeMismatchedGlobalArray("llvm.global_ctors");
912 upgradeMismatchedGlobalArray("llvm.global_dtors");
913}
914
Rafael Espindola18c89412014-10-27 02:35:46 +0000915/// If there were any appending global variables, link them together now.
916/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000917bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000918 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000919
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000920 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
921 return emitError("Linking globals named '" + SrcGV->getName() +
922 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000923
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000924 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
925 ArrayType *SrcTy =
926 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
927 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000928
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000929 // Check to see that they two arrays agree on type.
930 if (EltTy != SrcTy->getElementType())
931 return emitError("Appending variables with different element types!");
932 if (DstGV->isConstant() != SrcGV->isConstant())
933 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000934
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000935 if (DstGV->getAlignment() != SrcGV->getAlignment())
936 return emitError(
937 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000938
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000939 if (DstGV->getVisibility() != SrcGV->getVisibility())
940 return emitError(
941 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000942
943 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
944 return emitError(
945 "Appending variables with different unnamed_addr need to be linked!");
946
Rafael Espindola64c1e182014-06-03 02:41:57 +0000947 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000948 return emitError(
949 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000950
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000951 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
952 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000953
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000954 // Create the new global variable.
955 GlobalVariable *NG =
956 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000957 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000958 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000959 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000960
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000961 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000962 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000963
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000964 AppendingVarInfo AVI;
965 AVI.NewGV = NG;
966 AVI.DstInit = DstGV->getInitializer();
967 AVI.SrcInit = SrcGV->getInitializer();
968 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000969
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000970 // Replace any uses of the two global variables with uses of the new
971 // global.
972 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000973
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000974 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
975 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000976
Tanya Lattnercbb91402011-10-11 00:24:54 +0000977 // Track the source variable so we don't try to link it.
978 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000979
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000980 return false;
981}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000982
Rafael Espindola778fcc72014-11-02 13:28:57 +0000983bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000984 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000985
Rafael Espindola778fcc72014-11-02 13:28:57 +0000986 // Handle the ultra special appending linkage case first.
987 if (DGV && DGV->hasAppendingLinkage())
988 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
989 cast<GlobalVariable>(SGV));
990
991 bool LinkFromSrc = true;
992 Comdat *C = nullptr;
993 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
994 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
995
David Majnemerdad0a642014-06-27 18:19:56 +0000996 if (const Comdat *SC = SGV->getComdat()) {
997 Comdat::SelectionKind SK;
998 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +0000999 C = DstM->getOrInsertComdat(SC->getName());
1000 C->setSelectionKind(SK);
1001 } else if (DGV) {
1002 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1003 return true;
1004 }
1005
1006 if (!LinkFromSrc) {
1007 // Track the source global so that we don't attempt to copy it over when
1008 // processing global initializers.
1009 DoNotLinkFromSource.insert(SGV);
1010
1011 if (DGV)
1012 // Make sure to remember this mapping.
1013 ValueMap[SGV] =
1014 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001015 }
1016
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001017 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001018 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1019 ? DGV->getVisibility()
1020 : Visibility;
1021 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1022 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001023
Rafael Espindola778fcc72014-11-02 13:28:57 +00001024 if (!LinkFromSrc && !DGV)
1025 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001026
Rafael Espindola778fcc72014-11-02 13:28:57 +00001027 GlobalValue *NewGV;
1028 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) {
1029 NewGV = linkGlobalVariableProto(SGVar, DGV, LinkFromSrc);
1030 if (!NewGV)
1031 return true;
1032 } else if (auto *SF = dyn_cast<Function>(SGV)) {
1033 NewGV = linkFunctionProto(SF, DGV, LinkFromSrc);
1034 } else {
1035 NewGV = linkGlobalAliasProto(cast<GlobalAlias>(SGV), DGV, LinkFromSrc);
1036 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001037
Rafael Espindola778fcc72014-11-02 13:28:57 +00001038 if (NewGV) {
1039 if (NewGV != DGV)
1040 copyGVAttributes(NewGV, SGV);
David Majnemerdad0a642014-06-27 18:19:56 +00001041
Rafael Espindola778fcc72014-11-02 13:28:57 +00001042 NewGV->setUnnamedAddr(HasUnnamedAddr);
1043 NewGV->setVisibility(Visibility);
1044
1045 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1046 if (C)
1047 NewGO->setComdat(C);
Chandler Carruthfd38af22014-11-02 09:10:31 +00001048 }
1049
Rafael Espindola778fcc72014-11-02 13:28:57 +00001050 // Make sure to remember this mapping.
1051 if (NewGV != DGV) {
1052 if (DGV) {
1053 DGV->replaceAllUsesWith(
1054 ConstantExpr::getBitCast(NewGV, DGV->getType()));
1055 DGV->eraseFromParent();
1056 }
1057 ValueMap[SGV] = NewGV;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001058 }
Reid Spencer361e5132004-11-12 20:37:43 +00001059 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001060
Rafael Espindola778fcc72014-11-02 13:28:57 +00001061 return false;
1062}
1063
1064/// Loop through the global variables in the src module and merge them into the
1065/// dest module.
1066GlobalValue *ModuleLinker::linkGlobalVariableProto(const GlobalVariable *SGVar,
1067 GlobalValue *DGV,
1068 bool LinkFromSrc) {
1069 unsigned Alignment = 0;
1070 bool ClearConstant = false;
1071
1072 if (DGV) {
1073 if (DGV->hasCommonLinkage() && SGVar->hasCommonLinkage())
1074 Alignment = std::max(SGVar->getAlignment(), DGV->getAlignment());
1075
1076 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
1077 if (!SGVar->isConstant() || (DGVar && !DGVar->isConstant()))
1078 ClearConstant = true;
1079 }
1080
1081 if (!LinkFromSrc) {
1082 if (auto *NewGVar = dyn_cast<GlobalVariable>(DGV)) {
1083 if (Alignment)
1084 NewGVar->setAlignment(Alignment);
1085 if (NewGVar->isDeclaration() && ClearConstant)
1086 NewGVar->setConstant(false);
1087 }
1088 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001089 }
1090
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001091 // No linking to be performed or linking from the source: simply create an
1092 // identical version of the symbol over in the dest module... the
1093 // initializer will be filled in later by LinkGlobalInits.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001094 GlobalVariable *NewDGV = new GlobalVariable(
1095 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
1096 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
1097 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
1098 SGVar->getType()->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001099
Rafael Espindola778fcc72014-11-02 13:28:57 +00001100 if (Alignment)
1101 NewDGV->setAlignment(Alignment);
David Majnemerdad0a642014-06-27 18:19:56 +00001102
Rafael Espindola778fcc72014-11-02 13:28:57 +00001103 return NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001104}
1105
Rafael Espindola18c89412014-10-27 02:35:46 +00001106/// Link the function in the source module into the destination module if
1107/// needed, setting up mapping information.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001108GlobalValue *ModuleLinker::linkFunctionProto(const Function *SF,
1109 GlobalValue *DGV,
1110 bool LinkFromSrc) {
1111 if (!LinkFromSrc)
1112 return DGV;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001113
James Molloyf6f121e2013-05-28 15:17:05 +00001114 // If the function is to be lazily linked, don't create it just yet.
1115 // The ValueMaterializerTy will deal with creating it if it's used.
1116 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1117 SF->hasAvailableExternallyLinkage())) {
1118 DoNotLinkFromSource.insert(SF);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001119 return nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00001120 }
1121
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001122 // If there is no linkage to be performed or we are linking from the source,
1123 // bring SF over.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001124 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
1125 SF->getName(), DstM);
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001126}
1127
Rafael Espindola18c89412014-10-27 02:35:46 +00001128/// Set up prototypes for any aliases that come over from the source module.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001129GlobalValue *ModuleLinker::linkGlobalAliasProto(const GlobalAlias *SGA,
1130 GlobalValue *DGV,
1131 bool LinkFromSrc) {
1132 if (!LinkFromSrc)
1133 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001134
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001135 // If there is no linkage to be performed or we're linking from the source,
1136 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001137 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindola778fcc72014-11-02 13:28:57 +00001138 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1139 SGA->getLinkage(), SGA->getName(), DstM);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001140}
1141
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001142static void getArrayElements(const Constant *C,
1143 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001144 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1145
1146 for (unsigned i = 0; i != NumElements; ++i)
1147 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001148}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001149
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001150void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1151 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001152 SmallVector<Constant *, 16> DstElements;
1153 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001154
Rafael Espindolad31dc042014-09-05 21:27:52 +00001155 SmallVector<Constant *, 16> SrcElements;
1156 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001157
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001158 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001159
1160 StringRef Name = AVI.NewGV->getName();
1161 bool IsNewStructor =
1162 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1163 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1164
1165 for (auto *V : SrcElements) {
1166 if (IsNewStructor) {
1167 Constant *Key = V->getAggregateElement(2);
1168 if (DoNotLinkFromSource.count(Key))
1169 continue;
1170 }
1171 DstElements.push_back(
1172 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1173 }
1174 if (IsNewStructor) {
1175 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1176 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1177 }
1178
1179 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001180}
1181
Rafael Espindola18c89412014-10-27 02:35:46 +00001182/// Update the initializers in the Dest module now that all globals that may be
1183/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001184void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001185 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001186 for (Module::const_global_iterator I = SrcM->global_begin(),
1187 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001188
Tanya Lattnercbb91402011-10-11 00:24:54 +00001189 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001190 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1191
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001192 // Grab destination global variable.
1193 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1194 // Figure out what the initializer looks like in the dest module.
1195 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001196 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001197 }
Reid Spencer361e5132004-11-12 20:37:43 +00001198}
1199
Rafael Espindola18c89412014-10-27 02:35:46 +00001200/// Copy the source function over into the dest function and fix up references
1201/// to values. At this point we know that Dest is an external function, and
1202/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001203void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1204 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001205
Chris Lattner7391dde2004-11-16 17:12:38 +00001206 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001207 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001208 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001209 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001210 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001211
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001212 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001213 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001214 }
1215
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001216 // Splice the body of the source function into the dest function.
1217 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001218
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001219 // At this point, all of the instructions and values of the function are now
1220 // copied over. The only problem is that they are still referencing values in
1221 // the Source function as operands. Loop through all of the operands of the
1222 // functions and patch them up to point to the local versions.
1223 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1224 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1225 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
1226 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001227
Chris Lattner7391dde2004-11-16 17:12:38 +00001228 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001229 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1230 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001231 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001232
Reid Spencer361e5132004-11-12 20:37:43 +00001233}
1234
Rafael Espindola18c89412014-10-27 02:35:46 +00001235/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001236void ModuleLinker::linkAliasBodies() {
1237 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001238 I != E; ++I) {
1239 if (DoNotLinkFromSource.count(I))
1240 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001241 if (Constant *Aliasee = I->getAliasee()) {
1242 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001243 Constant *Val =
1244 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001245 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001246 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001247 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001248}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001249
Rafael Espindola18c89412014-10-27 02:35:46 +00001250/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001251void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001252 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001253 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1254 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001255 // Don't link module flags here. Do them separately.
1256 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001257 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1258 // Add Src elements into Dest node.
1259 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1260 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001261 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001262 }
1263}
Bill Wendling66f02412012-02-11 11:38:06 +00001264
Rafael Espindola18c89412014-10-27 02:35:46 +00001265/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001266bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001267 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001268 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1269 if (!SrcModFlags) return false;
1270
Bill Wendling66f02412012-02-11 11:38:06 +00001271 // If the destination module doesn't have module flags yet, then just copy
1272 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001273 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001274 if (DstModFlags->getNumOperands() == 0) {
1275 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1276 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1277
1278 return false;
1279 }
1280
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001281 // First build a map of the existing module flags and requirements.
1282 DenseMap<MDString*, MDNode*> Flags;
1283 SmallSetVector<MDNode*, 16> Requirements;
1284 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001285 MDNode *Op = DstModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001286 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1287 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001288
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001289 if (Behavior->getZExtValue() == Module::Require) {
1290 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1291 } else {
1292 Flags[ID] = Op;
1293 }
Bill Wendling66f02412012-02-11 11:38:06 +00001294 }
1295
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001296 // Merge in the flags from the source module, and also collect its set of
1297 // requirements.
1298 bool HasErr = false;
1299 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001300 MDNode *SrcOp = SrcModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001301 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1302 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1303 MDNode *DstOp = Flags.lookup(ID);
1304 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001305
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001306 // If this is a requirement, add it and continue.
1307 if (SrcBehaviorValue == Module::Require) {
1308 // If the destination module does not already have this requirement, add
1309 // it.
1310 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1311 DstModFlags->addOperand(SrcOp);
1312 }
1313 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001314 }
1315
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001316 // If there is no existing flag with this ID, just add it.
1317 if (!DstOp) {
1318 Flags[ID] = SrcOp;
1319 DstModFlags->addOperand(SrcOp);
1320 continue;
1321 }
1322
1323 // Otherwise, perform a merge.
1324 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1325 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1326
1327 // If either flag has override behavior, handle it first.
1328 if (DstBehaviorValue == Module::Override) {
1329 // Diagnose inconsistent flags which both have override behavior.
1330 if (SrcBehaviorValue == Module::Override &&
1331 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1332 HasErr |= emitError("linking module flags '" + ID->getString() +
1333 "': IDs have conflicting override values");
1334 }
1335 continue;
1336 } else if (SrcBehaviorValue == Module::Override) {
1337 // Update the destination flag to that of the source.
1338 DstOp->replaceOperandWith(0, SrcBehavior);
1339 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1340 continue;
1341 }
1342
1343 // Diagnose inconsistent merge behavior types.
1344 if (SrcBehaviorValue != DstBehaviorValue) {
1345 HasErr |= emitError("linking module flags '" + ID->getString() +
1346 "': IDs have conflicting behaviors");
1347 continue;
1348 }
1349
1350 // Perform the merge for standard behavior types.
1351 switch (SrcBehaviorValue) {
1352 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001353 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001354 case Module::Error: {
1355 // Emit an error if the values differ.
1356 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1357 HasErr |= emitError("linking module flags '" + ID->getString() +
1358 "': IDs have conflicting values");
1359 }
1360 continue;
1361 }
1362 case Module::Warning: {
1363 // Emit a warning if the values differ.
1364 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001365 emitWarning("linking module flags '" + ID->getString() +
1366 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001367 }
1368 continue;
1369 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001370 case Module::Append: {
1371 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1372 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1373 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1374 Value **VP, **Values = VP = new Value*[NumOps];
1375 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1376 *VP = DstValue->getOperand(i);
1377 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1378 *VP = SrcValue->getOperand(i);
1379 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1380 ArrayRef<Value*>(Values,
1381 NumOps)));
1382 delete[] Values;
1383 break;
1384 }
1385 case Module::AppendUnique: {
1386 SmallSetVector<Value*, 16> Elts;
1387 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1388 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1389 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1390 Elts.insert(DstValue->getOperand(i));
1391 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1392 Elts.insert(SrcValue->getOperand(i));
1393 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1394 ArrayRef<Value*>(Elts.begin(),
1395 Elts.end())));
1396 break;
1397 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001398 }
Bill Wendling66f02412012-02-11 11:38:06 +00001399 }
1400
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001401 // Check all of the requirements.
1402 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1403 MDNode *Requirement = Requirements[I];
1404 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1405 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001406
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001407 MDNode *Op = Flags[Flag];
1408 if (!Op || Op->getOperand(2) != ReqValue) {
1409 HasErr |= emitError("linking module flags '" + Flag->getString() +
1410 "': does not have the required value");
1411 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001412 }
1413 }
1414
1415 return HasErr;
1416}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001417
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001418bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001419 assert(DstM && "Null destination module");
1420 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001421
1422 // Inherit the target data from the source module if the destination module
1423 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001424 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001425 DstM->setDataLayout(SrcM->getDataLayout());
1426
1427 // Copy the target triple from the source to dest if the dest's is empty.
1428 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1429 DstM->setTargetTriple(SrcM->getTargetTriple());
1430
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001431 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001432 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001433 emitWarning("Linking two modules of different data layouts: '" +
1434 SrcM->getModuleIdentifier() + "' is '" +
1435 SrcM->getDataLayoutStr() + "' whereas '" +
1436 DstM->getModuleIdentifier() + "' is '" +
1437 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001438 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001439 if (!SrcM->getTargetTriple().empty() &&
1440 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001441 emitWarning("Linking two modules of different target triples: " +
1442 SrcM->getModuleIdentifier() + "' is '" +
1443 SrcM->getTargetTriple() + "' whereas '" +
1444 DstM->getModuleIdentifier() + "' is '" +
1445 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001446 }
1447
1448 // Append the module inline asm string.
1449 if (!SrcM->getModuleInlineAsm().empty()) {
1450 if (DstM->getModuleInlineAsm().empty())
1451 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1452 else
1453 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1454 SrcM->getModuleInlineAsm());
1455 }
1456
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001457 // Loop over all of the linked values to compute type mappings.
1458 computeTypeMapping();
1459
David Majnemerdad0a642014-06-27 18:19:56 +00001460 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001461 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001462 const Comdat &C = SMEC.getValue();
1463 if (ComdatsChosen.count(&C))
1464 continue;
1465 Comdat::SelectionKind SK;
1466 bool LinkFromSrc;
1467 if (getComdatResult(&C, SK, LinkFromSrc))
1468 return true;
1469 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1470 }
1471
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001472 // Upgrade mismatched global arrays.
1473 upgradeMismatchedGlobals();
1474
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001475 // Insert all of the globals in src into the DstM module... without linking
1476 // initializers (which could refer to functions not yet mapped over).
1477 for (Module::global_iterator I = SrcM->global_begin(),
1478 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001479 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001480 return true;
1481
1482 // Link the functions together between the two modules, without doing function
1483 // bodies... this just adds external function prototypes to the DstM
1484 // function... We do this so that when we begin processing function bodies,
1485 // all of the global values that may be referenced are available in our
1486 // ValueMap.
1487 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001488 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001489 return true;
1490
1491 // If there were any aliases, link them now.
1492 for (Module::alias_iterator I = SrcM->alias_begin(),
1493 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001494 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001495 return true;
1496
1497 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1498 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001499
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001500 // Link in the function bodies that are defined in the source module into
1501 // DstM.
1502 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001503 // Skip if not linking from source.
1504 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001505
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001506 Function *DF = cast<Function>(ValueMap[SF]);
1507 if (SF->hasPrefixData()) {
1508 // Link in the prefix data.
1509 DF->setPrefixData(MapValue(
1510 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1511 }
1512
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001513 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001514 if (std::error_code EC = SF->materialize())
1515 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001516
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001517 // Skip if no body (function is external).
1518 if (SF->isDeclaration())
1519 continue;
1520
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001521 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001522 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001523 }
1524
1525 // Resolve all uses of aliases with aliasees.
1526 linkAliasBodies();
1527
Bill Wendling66f02412012-02-11 11:38:06 +00001528 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001529 // after linking GlobalValues so that MDNodes that reference GlobalValues
1530 // are properly remapped.
1531 linkNamedMDNodes();
1532
Bill Wendling66f02412012-02-11 11:38:06 +00001533 // Merge the module flags into the DstM module.
1534 if (linkModuleFlagsMetadata())
1535 return true;
1536
Bill Wendling91686d62014-01-16 06:29:36 +00001537 // Update the initializers in the DstM module now that all globals that may
1538 // be referenced are in DstM.
1539 linkGlobalInits();
1540
Tanya Lattner0a48b872011-11-02 00:24:56 +00001541 // Process vector of lazily linked in functions.
1542 bool LinkedInAnyFunctions;
1543 do {
1544 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001545
Bill Wendlingfa2287822013-03-27 17:54:41 +00001546 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001547 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001548 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001549 if (!SF)
1550 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001551
James Molloyf6f121e2013-05-28 15:17:05 +00001552 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001553 if (SF->hasPrefixData()) {
1554 // Link in the prefix data.
1555 DF->setPrefixData(MapValue(SF->getPrefixData(),
1556 ValueMap,
1557 RF_None,
1558 &TypeMap,
1559 &ValMaterializer));
1560 }
James Molloyf6f121e2013-05-28 15:17:05 +00001561
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001562 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001563 if (std::error_code EC = SF->materialize())
1564 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001565
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001566 // Skip if no body (function is external).
1567 if (SF->isDeclaration())
1568 continue;
1569
James Molloyf6f121e2013-05-28 15:17:05 +00001570 // Erase from vector *before* the function body is linked - linkFunctionBody could
1571 // invalidate I.
1572 LazilyLinkFunctions.erase(I);
1573
1574 // Link in function body.
1575 linkFunctionBody(DF, SF);
1576 SF->Dematerialize();
1577
1578 // Set flag to indicate we may have more functions to lazily link in
1579 // since we linked in a function.
1580 LinkedInAnyFunctions = true;
1581 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001582 }
1583 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001584
Anton Korobeynikov26098882008-03-05 23:21:39 +00001585 return false;
1586}
Reid Spencer361e5132004-11-12 20:37:43 +00001587
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001588void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1589 this->Composite = M;
1590 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001591
1592 TypeFinder StructTypes;
1593 StructTypes.run(*M, true);
1594 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001595}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001596
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001597Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1598 init(M, DiagnosticHandler);
1599}
1600
1601Linker::Linker(Module *M) {
1602 init(M, [this](const DiagnosticInfo &DI) {
1603 Composite->getContext().diagnose(DI);
1604 });
1605}
1606
Rafael Espindola3df61b72013-05-04 03:48:37 +00001607Linker::~Linker() {
1608}
1609
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001610void Linker::deleteModule() {
1611 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001612 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001613}
1614
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001615bool Linker::linkInModule(Module *Src) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001616 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1617 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001618 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001619}
1620
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001621//===----------------------------------------------------------------------===//
1622// LinkModules entrypoint.
1623//===----------------------------------------------------------------------===//
1624
Rafael Espindola18c89412014-10-27 02:35:46 +00001625/// This function links two modules together, with the resulting Dest module
1626/// modified to be the composite of the two input modules. If an error occurs,
1627/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1628/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1629/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001630bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001631 DiagnosticHandlerFunction DiagnosticHandler) {
1632 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001633 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001634}
1635
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001636bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001637 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001638 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001639}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001640
1641//===----------------------------------------------------------------------===//
1642// C API.
1643//===----------------------------------------------------------------------===//
1644
1645LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1646 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001647 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001648 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001649 raw_string_ostream Stream(Message);
1650 DiagnosticPrinterRawOStream DP(Stream);
1651
1652 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001653 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001654
1655 if (OutMessages && Result)
1656 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001657 return Result;
1658}