xref: /llvm-project/llvm/lib/Transforms/Utils/CloneModule.cpp (revision 2b898afdef7c8f40e74af9379a1cc7cf372ecb65)
1 //===- CloneModule.cpp - Clone an entire module ---------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the CloneModule interface which makes a copy of an
10 // entire module.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/IR/DerivedTypes.h"
15 #include "llvm/IR/Module.h"
16 #include "llvm/Transforms/Utils/Cloning.h"
17 #include "llvm/Transforms/Utils/ValueMapper.h"
18 using namespace llvm;
19 
20 namespace llvm {
21 class Constant;
22 }
23 
24 static void copyComdat(GlobalObject *Dst, const GlobalObject *Src) {
25   const Comdat *SC = Src->getComdat();
26   if (!SC)
27     return;
28   Comdat *DC = Dst->getParent()->getOrInsertComdat(SC->getName());
29   DC->setSelectionKind(SC->getSelectionKind());
30   Dst->setComdat(DC);
31 }
32 
33 /// This is not as easy as it might seem because we have to worry about making
34 /// copies of global variables and functions, and making their (initializers and
35 /// references, respectively) refer to the right globals.
36 ///
37 /// Cloning un-materialized modules is not currently supported, so any
38 /// modules initialized via lazy loading should be materialized before cloning
39 std::unique_ptr<Module> llvm::CloneModule(const Module &M) {
40   // Create the value map that maps things from the old module over to the new
41   // module.
42   ValueToValueMapTy VMap;
43   return CloneModule(M, VMap);
44 }
45 
46 std::unique_ptr<Module> llvm::CloneModule(const Module &M,
47                                           ValueToValueMapTy &VMap) {
48   return CloneModule(M, VMap, [](const GlobalValue *GV) { return true; });
49 }
50 
51 std::unique_ptr<Module> llvm::CloneModule(
52     const Module &M, ValueToValueMapTy &VMap,
53     function_ref<bool(const GlobalValue *)> ShouldCloneDefinition) {
54 
55   assert(M.isMaterialized() && "Module must be materialized before cloning!");
56 
57   // First off, we need to create the new module.
58   std::unique_ptr<Module> New =
59       std::make_unique<Module>(M.getModuleIdentifier(), M.getContext());
60   New->setSourceFileName(M.getSourceFileName());
61   New->setDataLayout(M.getDataLayout());
62   New->setTargetTriple(M.getTargetTriple());
63   New->setModuleInlineAsm(M.getModuleInlineAsm());
64 
65   // Loop over all of the global variables, making corresponding globals in the
66   // new module.  Here we add them to the VMap and to the new Module.  We
67   // don't worry about attributes or initializers, they will come later.
68   //
69   for (const GlobalVariable &I : M.globals()) {
70     GlobalVariable *NewGV = new GlobalVariable(
71         *New, I.getValueType(), I.isConstant(), I.getLinkage(),
72         (Constant *)nullptr, I.getName(), (GlobalVariable *)nullptr,
73         I.getThreadLocalMode(), I.getType()->getAddressSpace());
74     NewGV->copyAttributesFrom(&I);
75     VMap[&I] = NewGV;
76   }
77 
78   // Loop over the functions in the module, making external functions as before
79   for (const Function &I : M) {
80     Function *NF =
81         Function::Create(cast<FunctionType>(I.getValueType()), I.getLinkage(),
82                          I.getAddressSpace(), I.getName(), New.get());
83     NF->copyAttributesFrom(&I);
84     VMap[&I] = NF;
85   }
86 
87   // Loop over the aliases in the module
88   for (const GlobalAlias &I : M.aliases()) {
89     if (!ShouldCloneDefinition(&I)) {
90       // An alias cannot act as an external reference, so we need to create
91       // either a function or a global variable depending on the value type.
92       // FIXME: Once pointee types are gone we can probably pick one or the
93       // other.
94       GlobalValue *GV;
95       if (I.getValueType()->isFunctionTy())
96         GV = Function::Create(cast<FunctionType>(I.getValueType()),
97                               GlobalValue::ExternalLinkage, I.getAddressSpace(),
98                               I.getName(), New.get());
99       else
100         GV = new GlobalVariable(*New, I.getValueType(), false,
101                                 GlobalValue::ExternalLinkage, nullptr,
102                                 I.getName(), nullptr, I.getThreadLocalMode(),
103                                 I.getType()->getAddressSpace());
104       VMap[&I] = GV;
105       // We do not copy attributes (mainly because copying between different
106       // kinds of globals is forbidden), but this is generally not required for
107       // correctness.
108       continue;
109     }
110     auto *GA = GlobalAlias::create(I.getValueType(),
111                                    I.getType()->getPointerAddressSpace(),
112                                    I.getLinkage(), I.getName(), New.get());
113     GA->copyAttributesFrom(&I);
114     VMap[&I] = GA;
115   }
116 
117   for (const GlobalIFunc &I : M.ifuncs()) {
118     // Defer setting the resolver function until after functions are cloned.
119     auto *GI =
120         GlobalIFunc::create(I.getValueType(), I.getAddressSpace(),
121                             I.getLinkage(), I.getName(), nullptr, New.get());
122     GI->copyAttributesFrom(&I);
123     VMap[&I] = GI;
124   }
125 
126   // Now that all of the things that global variable initializer can refer to
127   // have been created, loop through and copy the global variable referrers
128   // over...  We also set the attributes on the global now.
129   //
130   for (const GlobalVariable &G : M.globals()) {
131     GlobalVariable *GV = cast<GlobalVariable>(VMap[&G]);
132 
133     SmallVector<std::pair<unsigned, MDNode *>, 1> MDs;
134     G.getAllMetadata(MDs);
135     for (auto MD : MDs)
136       GV->addMetadata(MD.first, *MapMetadata(MD.second, VMap));
137 
138     if (G.isDeclaration())
139       continue;
140 
141     if (!ShouldCloneDefinition(&G)) {
142       // Skip after setting the correct linkage for an external reference.
143       GV->setLinkage(GlobalValue::ExternalLinkage);
144       continue;
145     }
146     if (G.hasInitializer())
147       GV->setInitializer(MapValue(G.getInitializer(), VMap));
148 
149     copyComdat(GV, &G);
150   }
151 
152   // Similarly, copy over function bodies now...
153   //
154   for (const Function &I : M) {
155     Function *F = cast<Function>(VMap[&I]);
156 
157     if (I.isDeclaration()) {
158       // Copy over metadata for declarations since we're not doing it below in
159       // CloneFunctionInto().
160       SmallVector<std::pair<unsigned, MDNode *>, 1> MDs;
161       I.getAllMetadata(MDs);
162       for (auto MD : MDs)
163         F->addMetadata(MD.first, *MapMetadata(MD.second, VMap));
164       continue;
165     }
166 
167     if (!ShouldCloneDefinition(&I)) {
168       // Skip after setting the correct linkage for an external reference.
169       F->setLinkage(GlobalValue::ExternalLinkage);
170       // Personality function is not valid on a declaration.
171       F->setPersonalityFn(nullptr);
172       continue;
173     }
174 
175     Function::arg_iterator DestI = F->arg_begin();
176     for (const Argument &J : I.args()) {
177       DestI->setName(J.getName());
178       VMap[&J] = &*DestI++;
179     }
180 
181     SmallVector<ReturnInst *, 8> Returns; // Ignore returns cloned.
182     CloneFunctionInto(F, &I, VMap, CloneFunctionChangeType::ClonedModule,
183                       Returns);
184 
185     if (I.hasPersonalityFn())
186       F->setPersonalityFn(MapValue(I.getPersonalityFn(), VMap));
187 
188     copyComdat(F, &I);
189   }
190 
191   // And aliases
192   for (const GlobalAlias &I : M.aliases()) {
193     // We already dealt with undefined aliases above.
194     if (!ShouldCloneDefinition(&I))
195       continue;
196     GlobalAlias *GA = cast<GlobalAlias>(VMap[&I]);
197     if (const Constant *C = I.getAliasee())
198       GA->setAliasee(MapValue(C, VMap));
199   }
200 
201   for (const GlobalIFunc &I : M.ifuncs()) {
202     GlobalIFunc *GI = cast<GlobalIFunc>(VMap[&I]);
203     if (const Constant *Resolver = I.getResolver())
204       GI->setResolver(MapValue(Resolver, VMap));
205   }
206 
207   // And named metadata....
208   for (const NamedMDNode &NMD : M.named_metadata()) {
209     NamedMDNode *NewNMD = New->getOrInsertNamedMetadata(NMD.getName());
210     for (unsigned i = 0, e = NMD.getNumOperands(); i != e; ++i)
211       NewNMD->addOperand(MapMetadata(NMD.getOperand(i), VMap));
212   }
213 
214   return New;
215 }
216 
217 extern "C" {
218 
219 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M) {
220   return wrap(CloneModule(*unwrap(M)).release());
221 }
222 
223 }
224