blob: 412ccd88b2a2866f85fc87561e22b89410049794 [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 Wendling87374802012-03-23 23:17:38 +0000796
Rafael Espindola4d4c9382014-12-01 19:08:07 +0000797 for (StructType *ST : SrcStructTypes) {
798 if (!ST->hasName())
799 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000800
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000801 // Check to see if there is a dot in the name followed by a digit.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000802 size_t DotPos = ST->getName().rfind('.');
803 if (DotPos == 0 || DotPos == StringRef::npos ||
Guy Benyei83c74e92013-02-12 21:21:59 +0000804 ST->getName().back() == '.' ||
805 !isdigit(static_cast<unsigned char>(ST->getName()[DotPos+1])))
Bill Wendlingd48b7782012-02-28 04:01:21 +0000806 continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000807
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000808 // Check to see if the destination module has a struct with the prefix name.
Bill Wendlingd48b7782012-02-28 04:01:21 +0000809 if (StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)))
Bill Wendling87374802012-03-23 23:17:38 +0000810 // Don't use it if this actually came from the source module. They're in
811 // the same LLVMContext after all. Also don't use it unless the type is
812 // actually used in the destination module. This can happen in situations
813 // like this:
814 //
815 // Module A Module B
816 // -------- --------
817 // %Z = type { %A } %B = type { %C.1 }
818 // %A = type { %B.1, [7 x i8] } %C.1 = type { i8* }
819 // %B.1 = type { %C } %A.2 = type { %B.3, [5 x i8] }
820 // %C = type { i8* } %B.3 = type { %C.1 }
821 //
822 // When we link Module B with Module A, the '%B' in Module B is
823 // used. However, that would then use '%C.1'. But when we process '%C.1',
824 // we prefer to take the '%C' version. So we are then left with both
825 // '%C.1' and '%C' being used for the same types. This leads to some
826 // variables using one type and some using the other.
Rafael Espindoladd42b532014-12-01 18:42:18 +0000827 if (TypeMap.DstStructTypesSet.count(DST))
Bill Wendling2b3f61a2012-02-27 23:48:30 +0000828 TypeMap.addTypeMapping(DST, ST);
829 }
830
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000831 // Now that we have discovered all of the type equivalences, get a body for
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000832 // any 'opaque' types in the dest module that are now resolved.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000833 TypeMap.linkDefinedTypeBodies();
Devang Patel5c310be2009-08-11 18:01:24 +0000834}
835
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +0000836static void upgradeGlobalArray(GlobalVariable *GV) {
837 ArrayType *ATy = cast<ArrayType>(GV->getType()->getElementType());
838 StructType *OldTy = cast<StructType>(ATy->getElementType());
839 assert(OldTy->getNumElements() == 2 && "Expected to upgrade from 2 elements");
840
841 // Get the upgraded 3 element type.
842 PointerType *VoidPtrTy = Type::getInt8Ty(GV->getContext())->getPointerTo();
843 Type *Tys[3] = {OldTy->getElementType(0), OldTy->getElementType(1),
844 VoidPtrTy};
845 StructType *NewTy = StructType::get(GV->getContext(), Tys, false);
846
847 // Build new constants with a null third field filled in.
848 Constant *OldInitC = GV->getInitializer();
849 ConstantArray *OldInit = dyn_cast<ConstantArray>(OldInitC);
850 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
851 // Invalid initializer; give up.
852 return;
853 std::vector<Constant *> Initializers;
854 if (OldInit && OldInit->getNumOperands()) {
855 Value *Null = Constant::getNullValue(VoidPtrTy);
856 for (Use &U : OldInit->operands()) {
857 ConstantStruct *Init = cast<ConstantStruct>(U.get());
858 Initializers.push_back(ConstantStruct::get(
859 NewTy, Init->getOperand(0), Init->getOperand(1), Null, nullptr));
860 }
861 }
862 assert(Initializers.size() == ATy->getNumElements() &&
863 "Failed to copy all array elements");
864
865 // Replace the old GV with a new one.
866 ATy = ArrayType::get(NewTy, Initializers.size());
867 Constant *NewInit = ConstantArray::get(ATy, Initializers);
868 GlobalVariable *NewGV = new GlobalVariable(
869 *GV->getParent(), ATy, GV->isConstant(), GV->getLinkage(), NewInit, "",
870 GV, GV->getThreadLocalMode(), GV->getType()->getAddressSpace(),
871 GV->isExternallyInitialized());
872 NewGV->copyAttributesFrom(GV);
873 NewGV->takeName(GV);
874 assert(GV->use_empty() && "program cannot use initializer list");
875 GV->eraseFromParent();
876}
877
878void ModuleLinker::upgradeMismatchedGlobalArray(StringRef Name) {
879 // Look for the global arrays.
880 auto *DstGV = dyn_cast_or_null<GlobalVariable>(DstM->getNamedValue(Name));
881 if (!DstGV)
882 return;
883 auto *SrcGV = dyn_cast_or_null<GlobalVariable>(SrcM->getNamedValue(Name));
884 if (!SrcGV)
885 return;
886
887 // Check if the types already match.
888 auto *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
889 auto *SrcTy =
890 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
891 if (DstTy == SrcTy)
892 return;
893
894 // Grab the element types. We can only upgrade an array of a two-field
895 // struct. Only bother if the other one has three-fields.
896 auto *DstEltTy = cast<StructType>(DstTy->getElementType());
897 auto *SrcEltTy = cast<StructType>(SrcTy->getElementType());
898 if (DstEltTy->getNumElements() == 2 && SrcEltTy->getNumElements() == 3) {
899 upgradeGlobalArray(DstGV);
900 return;
901 }
902 if (DstEltTy->getNumElements() == 3 && SrcEltTy->getNumElements() == 2)
903 upgradeGlobalArray(SrcGV);
904
905 // We can't upgrade any other differences.
906}
907
908void ModuleLinker::upgradeMismatchedGlobals() {
909 upgradeMismatchedGlobalArray("llvm.global_ctors");
910 upgradeMismatchedGlobalArray("llvm.global_dtors");
911}
912
Rafael Espindola18c89412014-10-27 02:35:46 +0000913/// If there were any appending global variables, link them together now.
914/// Return true on error.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000915bool ModuleLinker::linkAppendingVarProto(GlobalVariable *DstGV,
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +0000916 const GlobalVariable *SrcGV) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000917
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000918 if (!SrcGV->hasAppendingLinkage() || !DstGV->hasAppendingLinkage())
919 return emitError("Linking globals named '" + SrcGV->getName() +
920 "': can only link appending global with another appending global!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000921
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000922 ArrayType *DstTy = cast<ArrayType>(DstGV->getType()->getElementType());
923 ArrayType *SrcTy =
924 cast<ArrayType>(TypeMap.get(SrcGV->getType()->getElementType()));
925 Type *EltTy = DstTy->getElementType();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000926
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000927 // Check to see that they two arrays agree on type.
928 if (EltTy != SrcTy->getElementType())
929 return emitError("Appending variables with different element types!");
930 if (DstGV->isConstant() != SrcGV->isConstant())
931 return emitError("Appending variables linked with different const'ness!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000932
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000933 if (DstGV->getAlignment() != SrcGV->getAlignment())
934 return emitError(
935 "Appending variables with different alignment need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000936
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000937 if (DstGV->getVisibility() != SrcGV->getVisibility())
938 return emitError(
939 "Appending variables with different visibility need to be linked!");
Rafael Espindolafac3a012013-09-04 15:33:34 +0000940
941 if (DstGV->hasUnnamedAddr() != SrcGV->hasUnnamedAddr())
942 return emitError(
943 "Appending variables with different unnamed_addr need to be linked!");
944
Rafael Espindola64c1e182014-06-03 02:41:57 +0000945 if (StringRef(DstGV->getSection()) != SrcGV->getSection())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000946 return emitError(
947 "Appending variables with different section name need to be linked!");
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000948
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000949 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
950 ArrayType *NewType = ArrayType::get(EltTy, NewSize);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000951
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000952 // Create the new global variable.
953 GlobalVariable *NG =
954 new GlobalVariable(*DstGV->getParent(), NewType, SrcGV->isConstant(),
Craig Topper2617dcc2014-04-15 06:32:26 +0000955 DstGV->getLinkage(), /*init*/nullptr, /*name*/"", DstGV,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000956 DstGV->getThreadLocalMode(),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000957 DstGV->getType()->getAddressSpace());
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000958
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000959 // Propagate alignment, visibility and section info.
Bill Wendlingb6af2f32012-03-22 20:28:27 +0000960 copyGVAttributes(NG, DstGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000961
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000962 AppendingVarInfo AVI;
963 AVI.NewGV = NG;
964 AVI.DstInit = DstGV->getInitializer();
965 AVI.SrcInit = SrcGV->getInitializer();
966 AppendingVars.push_back(AVI);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000967
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000968 // Replace any uses of the two global variables with uses of the new
969 // global.
970 ValueMap[SrcGV] = ConstantExpr::getBitCast(NG, TypeMap.get(SrcGV->getType()));
Anton Korobeynikove79f4c72008-03-10 22:34:28 +0000971
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000972 DstGV->replaceAllUsesWith(ConstantExpr::getBitCast(NG, DstGV->getType()));
973 DstGV->eraseFromParent();
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000974
Tanya Lattnercbb91402011-10-11 00:24:54 +0000975 // Track the source variable so we don't try to link it.
976 DoNotLinkFromSource.insert(SrcGV);
Rafael Espindolaed6dc372014-05-09 14:39:25 +0000977
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000978 return false;
979}
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000980
Rafael Espindola778fcc72014-11-02 13:28:57 +0000981bool ModuleLinker::linkGlobalValueProto(GlobalValue *SGV) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000982 GlobalValue *DGV = getLinkedToGlobal(SGV);
Mikhail Glushenkov766d4892009-03-03 07:22:23 +0000983
Rafael Espindola778fcc72014-11-02 13:28:57 +0000984 // Handle the ultra special appending linkage case first.
985 if (DGV && DGV->hasAppendingLinkage())
986 return linkAppendingVarProto(cast<GlobalVariable>(DGV),
987 cast<GlobalVariable>(SGV));
988
989 bool LinkFromSrc = true;
990 Comdat *C = nullptr;
991 GlobalValue::VisibilityTypes Visibility = SGV->getVisibility();
992 bool HasUnnamedAddr = SGV->hasUnnamedAddr();
993
David Majnemerdad0a642014-06-27 18:19:56 +0000994 if (const Comdat *SC = SGV->getComdat()) {
995 Comdat::SelectionKind SK;
996 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
Rafael Espindola778fcc72014-11-02 13:28:57 +0000997 C = DstM->getOrInsertComdat(SC->getName());
998 C->setSelectionKind(SK);
999 } else if (DGV) {
1000 if (shouldLinkFromSource(LinkFromSrc, *DGV, *SGV))
1001 return true;
1002 }
1003
1004 if (!LinkFromSrc) {
1005 // Track the source global so that we don't attempt to copy it over when
1006 // processing global initializers.
1007 DoNotLinkFromSource.insert(SGV);
1008
1009 if (DGV)
1010 // Make sure to remember this mapping.
1011 ValueMap[SGV] =
1012 ConstantExpr::getBitCast(DGV, TypeMap.get(SGV->getType()));
David Majnemerdad0a642014-06-27 18:19:56 +00001013 }
1014
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001015 if (DGV) {
Rafael Espindola778fcc72014-11-02 13:28:57 +00001016 Visibility = isLessConstraining(Visibility, DGV->getVisibility())
1017 ? DGV->getVisibility()
1018 : Visibility;
1019 HasUnnamedAddr = HasUnnamedAddr && DGV->hasUnnamedAddr();
1020 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001021
Rafael Espindola778fcc72014-11-02 13:28:57 +00001022 if (!LinkFromSrc && !DGV)
1023 return false;
Reid Spencer361e5132004-11-12 20:37:43 +00001024
Rafael Espindola778fcc72014-11-02 13:28:57 +00001025 GlobalValue *NewGV;
1026 if (auto *SGVar = dyn_cast<GlobalVariable>(SGV)) {
1027 NewGV = linkGlobalVariableProto(SGVar, DGV, LinkFromSrc);
1028 if (!NewGV)
1029 return true;
1030 } else if (auto *SF = dyn_cast<Function>(SGV)) {
1031 NewGV = linkFunctionProto(SF, DGV, LinkFromSrc);
1032 } else {
1033 NewGV = linkGlobalAliasProto(cast<GlobalAlias>(SGV), DGV, LinkFromSrc);
1034 }
Rafael Espindolafe3842c2014-09-09 17:48:18 +00001035
Rafael Espindola778fcc72014-11-02 13:28:57 +00001036 if (NewGV) {
1037 if (NewGV != DGV)
1038 copyGVAttributes(NewGV, SGV);
David Majnemerdad0a642014-06-27 18:19:56 +00001039
Rafael Espindola778fcc72014-11-02 13:28:57 +00001040 NewGV->setUnnamedAddr(HasUnnamedAddr);
1041 NewGV->setVisibility(Visibility);
1042
1043 if (auto *NewGO = dyn_cast<GlobalObject>(NewGV)) {
1044 if (C)
1045 NewGO->setComdat(C);
Chandler Carruthfd38af22014-11-02 09:10:31 +00001046 }
1047
Rafael Espindola778fcc72014-11-02 13:28:57 +00001048 // Make sure to remember this mapping.
1049 if (NewGV != DGV) {
1050 if (DGV) {
1051 DGV->replaceAllUsesWith(
1052 ConstantExpr::getBitCast(NewGV, DGV->getType()));
1053 DGV->eraseFromParent();
1054 }
1055 ValueMap[SGV] = NewGV;
Chris Lattner0ead7a52008-07-14 07:23:24 +00001056 }
Reid Spencer361e5132004-11-12 20:37:43 +00001057 }
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001058
Rafael Espindola778fcc72014-11-02 13:28:57 +00001059 return false;
1060}
1061
1062/// Loop through the global variables in the src module and merge them into the
1063/// dest module.
1064GlobalValue *ModuleLinker::linkGlobalVariableProto(const GlobalVariable *SGVar,
1065 GlobalValue *DGV,
1066 bool LinkFromSrc) {
1067 unsigned Alignment = 0;
1068 bool ClearConstant = false;
1069
1070 if (DGV) {
1071 if (DGV->hasCommonLinkage() && SGVar->hasCommonLinkage())
1072 Alignment = std::max(SGVar->getAlignment(), DGV->getAlignment());
1073
1074 auto *DGVar = dyn_cast<GlobalVariable>(DGV);
1075 if (!SGVar->isConstant() || (DGVar && !DGVar->isConstant()))
1076 ClearConstant = true;
1077 }
1078
1079 if (!LinkFromSrc) {
1080 if (auto *NewGVar = dyn_cast<GlobalVariable>(DGV)) {
1081 if (Alignment)
1082 NewGVar->setAlignment(Alignment);
1083 if (NewGVar->isDeclaration() && ClearConstant)
1084 NewGVar->setConstant(false);
1085 }
1086 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001087 }
1088
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001089 // No linking to be performed or linking from the source: simply create an
1090 // identical version of the symbol over in the dest module... the
1091 // initializer will be filled in later by LinkGlobalInits.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001092 GlobalVariable *NewDGV = new GlobalVariable(
1093 *DstM, TypeMap.get(SGVar->getType()->getElementType()),
1094 SGVar->isConstant(), SGVar->getLinkage(), /*init*/ nullptr,
1095 SGVar->getName(), /*insertbefore*/ nullptr, SGVar->getThreadLocalMode(),
1096 SGVar->getType()->getAddressSpace());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001097
Rafael Espindola778fcc72014-11-02 13:28:57 +00001098 if (Alignment)
1099 NewDGV->setAlignment(Alignment);
David Majnemerdad0a642014-06-27 18:19:56 +00001100
Rafael Espindola778fcc72014-11-02 13:28:57 +00001101 return NewDGV;
Reid Spencer361e5132004-11-12 20:37:43 +00001102}
1103
Rafael Espindola18c89412014-10-27 02:35:46 +00001104/// Link the function in the source module into the destination module if
1105/// needed, setting up mapping information.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001106GlobalValue *ModuleLinker::linkFunctionProto(const Function *SF,
1107 GlobalValue *DGV,
1108 bool LinkFromSrc) {
1109 if (!LinkFromSrc)
1110 return DGV;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001111
James Molloyf6f121e2013-05-28 15:17:05 +00001112 // If the function is to be lazily linked, don't create it just yet.
1113 // The ValueMaterializerTy will deal with creating it if it's used.
1114 if (!DGV && (SF->hasLocalLinkage() || SF->hasLinkOnceLinkage() ||
1115 SF->hasAvailableExternallyLinkage())) {
1116 DoNotLinkFromSource.insert(SF);
Rafael Espindola778fcc72014-11-02 13:28:57 +00001117 return nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00001118 }
1119
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001120 // If there is no linkage to be performed or we are linking from the source,
1121 // bring SF over.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001122 return Function::Create(TypeMap.get(SF->getFunctionType()), SF->getLinkage(),
1123 SF->getName(), DstM);
Lauro Ramos Venanciob00c9c02007-06-28 19:02:54 +00001124}
1125
Rafael Espindola18c89412014-10-27 02:35:46 +00001126/// Set up prototypes for any aliases that come over from the source module.
Rafael Espindola778fcc72014-11-02 13:28:57 +00001127GlobalValue *ModuleLinker::linkGlobalAliasProto(const GlobalAlias *SGA,
1128 GlobalValue *DGV,
1129 bool LinkFromSrc) {
1130 if (!LinkFromSrc)
1131 return DGV;
David Majnemerdad0a642014-06-27 18:19:56 +00001132
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001133 // If there is no linkage to be performed or we're linking from the source,
1134 // bring over SGA.
Rafael Espindola4fe00942014-05-16 13:34:04 +00001135 auto *PTy = cast<PointerType>(TypeMap.get(SGA->getType()));
Rafael Espindola778fcc72014-11-02 13:28:57 +00001136 return GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1137 SGA->getLinkage(), SGA->getName(), DstM);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001138}
1139
Rafael Espindola3e8bc6a2014-10-31 16:08:17 +00001140static void getArrayElements(const Constant *C,
1141 SmallVectorImpl<Constant *> &Dest) {
Chris Lattner67058832012-01-25 06:48:06 +00001142 unsigned NumElements = cast<ArrayType>(C->getType())->getNumElements();
1143
1144 for (unsigned i = 0; i != NumElements; ++i)
1145 Dest.push_back(C->getAggregateElement(i));
Chris Lattner00245f42012-01-24 13:41:11 +00001146}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001147
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001148void ModuleLinker::linkAppendingVarInit(const AppendingVarInfo &AVI) {
1149 // Merge the initializer.
Rafael Espindolad31dc042014-09-05 21:27:52 +00001150 SmallVector<Constant *, 16> DstElements;
1151 getArrayElements(AVI.DstInit, DstElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001152
Rafael Espindolad31dc042014-09-05 21:27:52 +00001153 SmallVector<Constant *, 16> SrcElements;
1154 getArrayElements(AVI.SrcInit, SrcElements);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001155
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001156 ArrayType *NewType = cast<ArrayType>(AVI.NewGV->getType()->getElementType());
Rafael Espindolad31dc042014-09-05 21:27:52 +00001157
1158 StringRef Name = AVI.NewGV->getName();
1159 bool IsNewStructor =
1160 (Name == "llvm.global_ctors" || Name == "llvm.global_dtors") &&
1161 cast<StructType>(NewType->getElementType())->getNumElements() == 3;
1162
1163 for (auto *V : SrcElements) {
1164 if (IsNewStructor) {
1165 Constant *Key = V->getAggregateElement(2);
1166 if (DoNotLinkFromSource.count(Key))
1167 continue;
1168 }
1169 DstElements.push_back(
1170 MapValue(V, ValueMap, RF_None, &TypeMap, &ValMaterializer));
1171 }
1172 if (IsNewStructor) {
1173 NewType = ArrayType::get(NewType->getElementType(), DstElements.size());
1174 AVI.NewGV->mutateType(PointerType::get(NewType, 0));
1175 }
1176
1177 AVI.NewGV->setInitializer(ConstantArray::get(NewType, DstElements));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001178}
1179
Rafael Espindola18c89412014-10-27 02:35:46 +00001180/// Update the initializers in the Dest module now that all globals that may be
1181/// referenced are in Dest.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001182void ModuleLinker::linkGlobalInits() {
Reid Spencer361e5132004-11-12 20:37:43 +00001183 // Loop over all of the globals in the src module, mapping them over as we go
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001184 for (Module::const_global_iterator I = SrcM->global_begin(),
1185 E = SrcM->global_end(); I != E; ++I) {
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001186
Tanya Lattnercbb91402011-10-11 00:24:54 +00001187 // Only process initialized GV's or ones not already in dest.
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001188 if (!I->hasInitializer() || DoNotLinkFromSource.count(I)) continue;
1189
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001190 // Grab destination global variable.
1191 GlobalVariable *DGV = cast<GlobalVariable>(ValueMap[I]);
1192 // Figure out what the initializer looks like in the dest module.
1193 DGV->setInitializer(MapValue(I->getInitializer(), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001194 RF_None, &TypeMap, &ValMaterializer));
Reid Spencer361e5132004-11-12 20:37:43 +00001195 }
Reid Spencer361e5132004-11-12 20:37:43 +00001196}
1197
Rafael Espindola18c89412014-10-27 02:35:46 +00001198/// Copy the source function over into the dest function and fix up references
1199/// to values. At this point we know that Dest is an external function, and
1200/// that Src is not.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001201void ModuleLinker::linkFunctionBody(Function *Dst, Function *Src) {
1202 assert(Src && Dst && Dst->isDeclaration() && !Src->isDeclaration());
Reid Spencer361e5132004-11-12 20:37:43 +00001203
Chris Lattner7391dde2004-11-16 17:12:38 +00001204 // Go through and convert function arguments over, remembering the mapping.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001205 Function::arg_iterator DI = Dst->arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +00001206 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
Reid Spencer361e5132004-11-12 20:37:43 +00001207 I != E; ++I, ++DI) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001208 DI->setName(I->getName()); // Copy the name over.
Reid Spencer361e5132004-11-12 20:37:43 +00001209
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001210 // Add a mapping to our mapping.
Anton Korobeynikov66a62712008-03-10 22:36:08 +00001211 ValueMap[I] = DI;
Reid Spencer361e5132004-11-12 20:37:43 +00001212 }
1213
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001214 // Splice the body of the source function into the dest function.
1215 Dst->getBasicBlockList().splice(Dst->end(), Src->getBasicBlockList());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001216
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001217 // At this point, all of the instructions and values of the function are now
1218 // copied over. The only problem is that they are still referencing values in
1219 // the Source function as operands. Loop through all of the operands of the
1220 // functions and patch them up to point to the local versions.
1221 for (Function::iterator BB = Dst->begin(), BE = Dst->end(); BB != BE; ++BB)
1222 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1223 RemapInstruction(I, ValueMap, RF_IgnoreMissingEntries, &TypeMap,
1224 &ValMaterializer);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001225
Chris Lattner7391dde2004-11-16 17:12:38 +00001226 // There is no need to map the arguments anymore.
Chris Lattner44ab8ae2006-06-16 01:24:04 +00001227 for (Function::arg_iterator I = Src->arg_begin(), E = Src->arg_end();
1228 I != E; ++I)
Reid Spencer3aaaa0b2007-02-05 20:47:22 +00001229 ValueMap.erase(I);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001230
Reid Spencer361e5132004-11-12 20:37:43 +00001231}
1232
Rafael Espindola18c89412014-10-27 02:35:46 +00001233/// Insert all of the aliases in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001234void ModuleLinker::linkAliasBodies() {
1235 for (Module::alias_iterator I = SrcM->alias_begin(), E = SrcM->alias_end();
Tanya Lattnercbb91402011-10-11 00:24:54 +00001236 I != E; ++I) {
1237 if (DoNotLinkFromSource.count(I))
1238 continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001239 if (Constant *Aliasee = I->getAliasee()) {
1240 GlobalAlias *DA = cast<GlobalAlias>(ValueMap[I]);
Rafael Espindola6b238632014-05-16 19:35:39 +00001241 Constant *Val =
1242 MapValue(Aliasee, ValueMap, RF_None, &TypeMap, &ValMaterializer);
Rafael Espindola64c1e182014-06-03 02:41:57 +00001243 DA->setAliasee(Val);
David Chisnall2c4a34a2010-01-09 16:27:31 +00001244 }
Tanya Lattnercbb91402011-10-11 00:24:54 +00001245 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001246}
Anton Korobeynikov26098882008-03-05 23:21:39 +00001247
Rafael Espindola18c89412014-10-27 02:35:46 +00001248/// Insert all of the named MDNodes in Src into the Dest module.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001249void ModuleLinker::linkNamedMDNodes() {
Bill Wendling66f02412012-02-11 11:38:06 +00001250 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001251 for (Module::const_named_metadata_iterator I = SrcM->named_metadata_begin(),
1252 E = SrcM->named_metadata_end(); I != E; ++I) {
Bill Wendling66f02412012-02-11 11:38:06 +00001253 // Don't link module flags here. Do them separately.
1254 if (&*I == SrcModFlags) continue;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001255 NamedMDNode *DestNMD = DstM->getOrInsertNamedMetadata(I->getName());
1256 // Add Src elements into Dest node.
1257 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1258 DestNMD->addOperand(MapValue(I->getOperand(i), ValueMap,
James Molloyf6f121e2013-05-28 15:17:05 +00001259 RF_None, &TypeMap, &ValMaterializer));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001260 }
1261}
Bill Wendling66f02412012-02-11 11:38:06 +00001262
Rafael Espindola18c89412014-10-27 02:35:46 +00001263/// Merge the linker flags in Src into the Dest module.
Bill Wendling66f02412012-02-11 11:38:06 +00001264bool ModuleLinker::linkModuleFlagsMetadata() {
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001265 // If the source module has no module flags, we are done.
Bill Wendling66f02412012-02-11 11:38:06 +00001266 const NamedMDNode *SrcModFlags = SrcM->getModuleFlagsMetadata();
1267 if (!SrcModFlags) return false;
1268
Bill Wendling66f02412012-02-11 11:38:06 +00001269 // If the destination module doesn't have module flags yet, then just copy
1270 // over the source module's flags.
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001271 NamedMDNode *DstModFlags = DstM->getOrInsertModuleFlagsMetadata();
Bill Wendling66f02412012-02-11 11:38:06 +00001272 if (DstModFlags->getNumOperands() == 0) {
1273 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I)
1274 DstModFlags->addOperand(SrcModFlags->getOperand(I));
1275
1276 return false;
1277 }
1278
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001279 // First build a map of the existing module flags and requirements.
1280 DenseMap<MDString*, MDNode*> Flags;
1281 SmallSetVector<MDNode*, 16> Requirements;
1282 for (unsigned I = 0, E = DstModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001283 MDNode *Op = DstModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001284 ConstantInt *Behavior = cast<ConstantInt>(Op->getOperand(0));
1285 MDString *ID = cast<MDString>(Op->getOperand(1));
Bill Wendling66f02412012-02-11 11:38:06 +00001286
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001287 if (Behavior->getZExtValue() == Module::Require) {
1288 Requirements.insert(cast<MDNode>(Op->getOperand(2)));
1289 } else {
1290 Flags[ID] = Op;
1291 }
Bill Wendling66f02412012-02-11 11:38:06 +00001292 }
1293
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001294 // Merge in the flags from the source module, and also collect its set of
1295 // requirements.
1296 bool HasErr = false;
1297 for (unsigned I = 0, E = SrcModFlags->getNumOperands(); I != E; ++I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001298 MDNode *SrcOp = SrcModFlags->getOperand(I);
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001299 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0));
1300 MDString *ID = cast<MDString>(SrcOp->getOperand(1));
1301 MDNode *DstOp = Flags.lookup(ID);
1302 unsigned SrcBehaviorValue = SrcBehavior->getZExtValue();
Bill Wendling66f02412012-02-11 11:38:06 +00001303
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001304 // If this is a requirement, add it and continue.
1305 if (SrcBehaviorValue == Module::Require) {
1306 // If the destination module does not already have this requirement, add
1307 // it.
1308 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) {
1309 DstModFlags->addOperand(SrcOp);
1310 }
1311 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001312 }
1313
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001314 // If there is no existing flag with this ID, just add it.
1315 if (!DstOp) {
1316 Flags[ID] = SrcOp;
1317 DstModFlags->addOperand(SrcOp);
1318 continue;
1319 }
1320
1321 // Otherwise, perform a merge.
1322 ConstantInt *DstBehavior = cast<ConstantInt>(DstOp->getOperand(0));
1323 unsigned DstBehaviorValue = DstBehavior->getZExtValue();
1324
1325 // If either flag has override behavior, handle it first.
1326 if (DstBehaviorValue == Module::Override) {
1327 // Diagnose inconsistent flags which both have override behavior.
1328 if (SrcBehaviorValue == Module::Override &&
1329 SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1330 HasErr |= emitError("linking module flags '" + ID->getString() +
1331 "': IDs have conflicting override values");
1332 }
1333 continue;
1334 } else if (SrcBehaviorValue == Module::Override) {
1335 // Update the destination flag to that of the source.
1336 DstOp->replaceOperandWith(0, SrcBehavior);
1337 DstOp->replaceOperandWith(2, SrcOp->getOperand(2));
1338 continue;
1339 }
1340
1341 // Diagnose inconsistent merge behavior types.
1342 if (SrcBehaviorValue != DstBehaviorValue) {
1343 HasErr |= emitError("linking module flags '" + ID->getString() +
1344 "': IDs have conflicting behaviors");
1345 continue;
1346 }
1347
1348 // Perform the merge for standard behavior types.
1349 switch (SrcBehaviorValue) {
1350 case Module::Require:
Craig Topper2a30d782014-06-18 05:05:13 +00001351 case Module::Override: llvm_unreachable("not possible");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001352 case Module::Error: {
1353 // Emit an error if the values differ.
1354 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
1355 HasErr |= emitError("linking module flags '" + ID->getString() +
1356 "': IDs have conflicting values");
1357 }
1358 continue;
1359 }
1360 case Module::Warning: {
1361 // Emit a warning if the values differ.
1362 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001363 emitWarning("linking module flags '" + ID->getString() +
1364 "': IDs have conflicting values");
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001365 }
1366 continue;
1367 }
Daniel Dunbard77d9fb2013-01-16 21:38:56 +00001368 case Module::Append: {
1369 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1370 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1371 unsigned NumOps = DstValue->getNumOperands() + SrcValue->getNumOperands();
1372 Value **VP, **Values = VP = new Value*[NumOps];
1373 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP)
1374 *VP = DstValue->getOperand(i);
1375 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP)
1376 *VP = SrcValue->getOperand(i);
1377 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1378 ArrayRef<Value*>(Values,
1379 NumOps)));
1380 delete[] Values;
1381 break;
1382 }
1383 case Module::AppendUnique: {
1384 SmallSetVector<Value*, 16> Elts;
1385 MDNode *DstValue = cast<MDNode>(DstOp->getOperand(2));
1386 MDNode *SrcValue = cast<MDNode>(SrcOp->getOperand(2));
1387 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i)
1388 Elts.insert(DstValue->getOperand(i));
1389 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i)
1390 Elts.insert(SrcValue->getOperand(i));
1391 DstOp->replaceOperandWith(2, MDNode::get(DstM->getContext(),
1392 ArrayRef<Value*>(Elts.begin(),
1393 Elts.end())));
1394 break;
1395 }
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001396 }
Bill Wendling66f02412012-02-11 11:38:06 +00001397 }
1398
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001399 // Check all of the requirements.
1400 for (unsigned I = 0, E = Requirements.size(); I != E; ++I) {
1401 MDNode *Requirement = Requirements[I];
1402 MDString *Flag = cast<MDString>(Requirement->getOperand(0));
1403 Value *ReqValue = Requirement->getOperand(1);
Bill Wendling66f02412012-02-11 11:38:06 +00001404
Daniel Dunbar0ec72bb2013-01-16 18:39:23 +00001405 MDNode *Op = Flags[Flag];
1406 if (!Op || Op->getOperand(2) != ReqValue) {
1407 HasErr |= emitError("linking module flags '" + Flag->getString() +
1408 "': does not have the required value");
1409 continue;
Bill Wendling66f02412012-02-11 11:38:06 +00001410 }
1411 }
1412
1413 return HasErr;
1414}
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001415
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001416bool ModuleLinker::run() {
Bill Wendling66f02412012-02-11 11:38:06 +00001417 assert(DstM && "Null destination module");
1418 assert(SrcM && "Null source module");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001419
1420 // Inherit the target data from the source module if the destination module
1421 // doesn't have one already.
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001422 if (!DstM->getDataLayout() && SrcM->getDataLayout())
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001423 DstM->setDataLayout(SrcM->getDataLayout());
1424
1425 // Copy the target triple from the source to dest if the dest's is empty.
1426 if (DstM->getTargetTriple().empty() && !SrcM->getTargetTriple().empty())
1427 DstM->setTargetTriple(SrcM->getTargetTriple());
1428
Rafael Espindolaf863ee22014-02-25 20:01:08 +00001429 if (SrcM->getDataLayout() && DstM->getDataLayout() &&
Rafael Espindolaae593f12014-02-26 17:02:08 +00001430 *SrcM->getDataLayout() != *DstM->getDataLayout()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001431 emitWarning("Linking two modules of different data layouts: '" +
1432 SrcM->getModuleIdentifier() + "' is '" +
1433 SrcM->getDataLayoutStr() + "' whereas '" +
1434 DstM->getModuleIdentifier() + "' is '" +
1435 DstM->getDataLayoutStr() + "'\n");
Eli Benderskye17f3702014-02-06 18:01:56 +00001436 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001437 if (!SrcM->getTargetTriple().empty() &&
1438 DstM->getTargetTriple() != SrcM->getTargetTriple()) {
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001439 emitWarning("Linking two modules of different target triples: " +
1440 SrcM->getModuleIdentifier() + "' is '" +
1441 SrcM->getTargetTriple() + "' whereas '" +
1442 DstM->getModuleIdentifier() + "' is '" +
1443 DstM->getTargetTriple() + "'\n");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001444 }
1445
1446 // Append the module inline asm string.
1447 if (!SrcM->getModuleInlineAsm().empty()) {
1448 if (DstM->getModuleInlineAsm().empty())
1449 DstM->setModuleInlineAsm(SrcM->getModuleInlineAsm());
1450 else
1451 DstM->setModuleInlineAsm(DstM->getModuleInlineAsm()+"\n"+
1452 SrcM->getModuleInlineAsm());
1453 }
1454
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001455 // Loop over all of the linked values to compute type mappings.
1456 computeTypeMapping();
1457
David Majnemerdad0a642014-06-27 18:19:56 +00001458 ComdatsChosen.clear();
David Blaikie5106ce72014-11-19 05:49:42 +00001459 for (const auto &SMEC : SrcM->getComdatSymbolTable()) {
David Majnemerdad0a642014-06-27 18:19:56 +00001460 const Comdat &C = SMEC.getValue();
1461 if (ComdatsChosen.count(&C))
1462 continue;
1463 Comdat::SelectionKind SK;
1464 bool LinkFromSrc;
1465 if (getComdatResult(&C, SK, LinkFromSrc))
1466 return true;
1467 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc);
1468 }
1469
Duncan P. N. Exon Smith09d84ad2014-08-12 16:46:37 +00001470 // Upgrade mismatched global arrays.
1471 upgradeMismatchedGlobals();
1472
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001473 // Insert all of the globals in src into the DstM module... without linking
1474 // initializers (which could refer to functions not yet mapped over).
1475 for (Module::global_iterator I = SrcM->global_begin(),
1476 E = SrcM->global_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001477 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001478 return true;
1479
1480 // Link the functions together between the two modules, without doing function
1481 // bodies... this just adds external function prototypes to the DstM
1482 // function... We do this so that when we begin processing function bodies,
1483 // all of the global values that may be referenced are available in our
1484 // ValueMap.
1485 for (Module::iterator I = SrcM->begin(), E = SrcM->end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001486 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001487 return true;
1488
1489 // If there were any aliases, link them now.
1490 for (Module::alias_iterator I = SrcM->alias_begin(),
1491 E = SrcM->alias_end(); I != E; ++I)
Rafael Espindola778fcc72014-11-02 13:28:57 +00001492 if (linkGlobalValueProto(I))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001493 return true;
1494
1495 for (unsigned i = 0, e = AppendingVars.size(); i != e; ++i)
1496 linkAppendingVarInit(AppendingVars[i]);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001497
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001498 // Link in the function bodies that are defined in the source module into
1499 // DstM.
1500 for (Module::iterator SF = SrcM->begin(), E = SrcM->end(); SF != E; ++SF) {
Tanya Lattnerea166d42011-10-14 22:17:46 +00001501 // Skip if not linking from source.
1502 if (DoNotLinkFromSource.count(SF)) continue;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001503
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001504 Function *DF = cast<Function>(ValueMap[SF]);
1505 if (SF->hasPrefixData()) {
1506 // Link in the prefix data.
1507 DF->setPrefixData(MapValue(
1508 SF->getPrefixData(), ValueMap, RF_None, &TypeMap, &ValMaterializer));
1509 }
1510
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001511 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001512 if (std::error_code EC = SF->materialize())
1513 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001514
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001515 // Skip if no body (function is external).
1516 if (SF->isDeclaration())
1517 continue;
1518
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001519 linkFunctionBody(DF, SF);
Bill Wendling00623782012-03-23 07:22:49 +00001520 SF->Dematerialize();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001521 }
1522
1523 // Resolve all uses of aliases with aliasees.
1524 linkAliasBodies();
1525
Bill Wendling66f02412012-02-11 11:38:06 +00001526 // Remap all of the named MDNodes in Src into the DstM module. We do this
Devang Patel6ddbb2e2011-08-04 19:44:28 +00001527 // after linking GlobalValues so that MDNodes that reference GlobalValues
1528 // are properly remapped.
1529 linkNamedMDNodes();
1530
Bill Wendling66f02412012-02-11 11:38:06 +00001531 // Merge the module flags into the DstM module.
1532 if (linkModuleFlagsMetadata())
1533 return true;
1534
Bill Wendling91686d62014-01-16 06:29:36 +00001535 // Update the initializers in the DstM module now that all globals that may
1536 // be referenced are in DstM.
1537 linkGlobalInits();
1538
Tanya Lattner0a48b872011-11-02 00:24:56 +00001539 // Process vector of lazily linked in functions.
1540 bool LinkedInAnyFunctions;
1541 do {
1542 LinkedInAnyFunctions = false;
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001543
Bill Wendlingfa2287822013-03-27 17:54:41 +00001544 for(std::vector<Function*>::iterator I = LazilyLinkFunctions.begin(),
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001545 E = LazilyLinkFunctions.end(); I != E; ++I) {
Bill Wendlingfa2287822013-03-27 17:54:41 +00001546 Function *SF = *I;
James Molloyf6f121e2013-05-28 15:17:05 +00001547 if (!SF)
1548 continue;
Bill Wendling00623782012-03-23 07:22:49 +00001549
James Molloyf6f121e2013-05-28 15:17:05 +00001550 Function *DF = cast<Function>(ValueMap[SF]);
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00001551 if (SF->hasPrefixData()) {
1552 // Link in the prefix data.
1553 DF->setPrefixData(MapValue(SF->getPrefixData(),
1554 ValueMap,
1555 RF_None,
1556 &TypeMap,
1557 &ValMaterializer));
1558 }
James Molloyf6f121e2013-05-28 15:17:05 +00001559
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001560 // Materialize if needed.
Rafael Espindola246c4fb2014-11-01 16:46:18 +00001561 if (std::error_code EC = SF->materialize())
1562 return emitError(EC.message());
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001563
Rafael Espindolad4bcefc2014-10-24 18:13:04 +00001564 // Skip if no body (function is external).
1565 if (SF->isDeclaration())
1566 continue;
1567
James Molloyf6f121e2013-05-28 15:17:05 +00001568 // Erase from vector *before* the function body is linked - linkFunctionBody could
1569 // invalidate I.
1570 LazilyLinkFunctions.erase(I);
1571
1572 // Link in function body.
1573 linkFunctionBody(DF, SF);
1574 SF->Dematerialize();
1575
1576 // Set flag to indicate we may have more functions to lazily link in
1577 // since we linked in a function.
1578 LinkedInAnyFunctions = true;
1579 break;
Tanya Lattner0a48b872011-11-02 00:24:56 +00001580 }
1581 } while (LinkedInAnyFunctions);
Rafael Espindolaed6dc372014-05-09 14:39:25 +00001582
Anton Korobeynikov26098882008-03-05 23:21:39 +00001583 return false;
1584}
Reid Spencer361e5132004-11-12 20:37:43 +00001585
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001586void Linker::init(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1587 this->Composite = M;
1588 this->DiagnosticHandler = DiagnosticHandler;
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001589
1590 TypeFinder StructTypes;
1591 StructTypes.run(*M, true);
1592 IdentifiedStructTypes.insert(StructTypes.begin(), StructTypes.end());
Rafael Espindolaaa9918a2013-05-04 05:05:18 +00001593}
Rafael Espindola3df61b72013-05-04 03:48:37 +00001594
Rafael Espindola5cb9c822014-11-17 20:51:01 +00001595Linker::Linker(Module *M, DiagnosticHandlerFunction DiagnosticHandler) {
1596 init(M, DiagnosticHandler);
1597}
1598
1599Linker::Linker(Module *M) {
1600 init(M, [this](const DiagnosticInfo &DI) {
1601 Composite->getContext().diagnose(DI);
1602 });
1603}
1604
Rafael Espindola3df61b72013-05-04 03:48:37 +00001605Linker::~Linker() {
1606}
1607
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001608void Linker::deleteModule() {
1609 delete Composite;
Craig Topper2617dcc2014-04-15 06:32:26 +00001610 Composite = nullptr;
Bill Wendling91e6f6e2013-10-16 08:59:57 +00001611}
1612
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001613bool Linker::linkInModule(Module *Src) {
Rafael Espindolaa4e85e32014-12-01 16:32:20 +00001614 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src,
1615 DiagnosticHandler);
Rafael Espindolad12b4a32014-10-25 04:06:10 +00001616 return TheLinker.run();
Rafael Espindola3df61b72013-05-04 03:48:37 +00001617}
1618
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001619//===----------------------------------------------------------------------===//
1620// LinkModules entrypoint.
1621//===----------------------------------------------------------------------===//
1622
Rafael Espindola18c89412014-10-27 02:35:46 +00001623/// This function links two modules together, with the resulting Dest module
1624/// modified to be the composite of the two input modules. If an error occurs,
1625/// true is returned and ErrorMsg (if not null) is set to indicate the problem.
1626/// Upon failure, the Dest module could be in a modified state, and shouldn't be
1627/// relied on to be consistent.
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001628bool Linker::LinkModules(Module *Dest, Module *Src,
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001629 DiagnosticHandlerFunction DiagnosticHandler) {
1630 Linker L(Dest, DiagnosticHandler);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001631 return L.linkInModule(Src);
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001632}
1633
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001634bool Linker::LinkModules(Module *Dest, Module *Src) {
Rafael Espindola287f18b2013-05-04 04:08:02 +00001635 Linker L(Dest);
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001636 return L.linkInModule(Src);
Reid Spencer361e5132004-11-12 20:37:43 +00001637}
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001638
1639//===----------------------------------------------------------------------===//
1640// C API.
1641//===----------------------------------------------------------------------===//
1642
1643LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
1644 LLVMLinkerMode Mode, char **OutMessages) {
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001645 Module *D = unwrap(Dest);
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001646 std::string Message;
Rafael Espindola4160f5d2014-10-27 23:02:10 +00001647 raw_string_ostream Stream(Message);
1648 DiagnosticPrinterRawOStream DP(Stream);
1649
1650 LLVMBool Result = Linker::LinkModules(
Rafael Espindola9f8eff32014-10-28 00:24:16 +00001651 D, unwrap(Src), [&](const DiagnosticInfo &DI) { DI.print(DP); });
Rafael Espindola98ab63c2014-10-25 04:31:08 +00001652
1653 if (OutMessages && Result)
1654 *OutMessages = strdup(Message.c_str());
Bill Wendlinga3aeb982012-05-09 08:55:40 +00001655 return Result;
1656}