61f1811e7b4ad73ad2cfadcb927a0260b31e3a6a
[oota-llvm.git] / lib / Transforms / Utils / CloneModule.cpp
1 //===- CloneModule.cpp - Clone an entire module ---------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the CloneModule interface which makes a copy of an
11 // entire module.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Transforms/Utils/Cloning.h"
16 #include "llvm/IR/Constant.h"
17 #include "llvm/IR/DerivedTypes.h"
18 #include "llvm/IR/Module.h"
19 #include "llvm/Transforms/Utils/ValueMapper.h"
20 #include "llvm-c/Core.h"
21 using namespace llvm;
22
23 /// CloneModule - Return an exact copy of the specified module.  This is not as
24 /// easy as it might seem because we have to worry about making copies of global
25 /// variables and functions, and making their (initializers and references,
26 /// respectively) refer to the right globals.
27 ///
28 Module *llvm::CloneModule(const Module *M) {
29   // Create the value map that maps things from the old module over to the new
30   // module.
31   ValueToValueMapTy VMap;
32   return CloneModule(M, VMap);
33 }
34
35 Module *llvm::CloneModule(const Module *M, ValueToValueMapTy &VMap) {
36   // First off, we need to create the new module.
37   Module *New = new Module(M->getModuleIdentifier(), M->getContext());
38   New->setDataLayout(M->getDataLayout());
39   New->setTargetTriple(M->getTargetTriple());
40   New->setModuleInlineAsm(M->getModuleInlineAsm());
41    
42   // Loop over all of the global variables, making corresponding globals in the
43   // new module.  Here we add them to the VMap and to the new Module.  We
44   // don't worry about attributes or initializers, they will come later.
45   //
46   for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
47        I != E; ++I) {
48     GlobalVariable *GV = new GlobalVariable(*New, 
49                                             I->getType()->getElementType(),
50                                             I->isConstant(), I->getLinkage(),
51                                             (Constant*) nullptr, I->getName(),
52                                             (GlobalVariable*) nullptr,
53                                             I->getThreadLocalMode(),
54                                             I->getType()->getAddressSpace());
55     GV->copyAttributesFrom(I);
56     VMap[I] = GV;
57   }
58
59   // Loop over the functions in the module, making external functions as before
60   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
61     Function *NF =
62       Function::Create(cast<FunctionType>(I->getType()->getElementType()),
63                        I->getLinkage(), I->getName(), New);
64     NF->copyAttributesFrom(I);
65     VMap[I] = NF;
66   }
67
68   // Loop over the aliases in the module
69   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
70        I != E; ++I) {
71     auto *PTy = cast<PointerType>(I->getType());
72     auto *GA = GlobalAlias::create(PTy, I->getLinkage(), I->getName(), New);
73     GA->copyAttributesFrom(I);
74     VMap[I] = GA;
75   }
76   
77   // Now that all of the things that global variable initializer can refer to
78   // have been created, loop through and copy the global variable referrers
79   // over...  We also set the attributes on the global now.
80   //
81   for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
82        I != E; ++I) {
83     GlobalVariable *GV = cast<GlobalVariable>(VMap[I]);
84     if (I->hasInitializer())
85       GV->setInitializer(MapValue(I->getInitializer(), VMap));
86   }
87
88   // Similarly, copy over function bodies now...
89   //
90   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
91     Function *F = cast<Function>(VMap[I]);
92     if (!I->isDeclaration()) {
93       Function::arg_iterator DestI = F->arg_begin();
94       for (Function::const_arg_iterator J = I->arg_begin(); J != I->arg_end();
95            ++J) {
96         DestI->setName(J->getName());
97         VMap[J] = DestI++;
98       }
99
100       SmallVector<ReturnInst*, 8> Returns;  // Ignore returns cloned.
101       CloneFunctionInto(F, I, VMap, /*ModuleLevelChanges=*/true, Returns);
102
103     }
104
105     if (I->hasPersonalityFn())
106       F->setPersonalityFn(MapValue(I->getPersonalityFn(), VMap));
107   }
108
109   // And aliases
110   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
111        I != E; ++I) {
112     GlobalAlias *GA = cast<GlobalAlias>(VMap[I]);
113     if (const Constant *C = I->getAliasee())
114       GA->setAliasee(MapValue(C, VMap));
115   }
116
117   // And named metadata....
118   for (Module::const_named_metadata_iterator I = M->named_metadata_begin(),
119          E = M->named_metadata_end(); I != E; ++I) {
120     const NamedMDNode &NMD = *I;
121     NamedMDNode *NewNMD = New->getOrInsertNamedMetadata(NMD.getName());
122     for (unsigned i = 0, e = NMD.getNumOperands(); i != e; ++i)
123       NewNMD->addOperand(MapMetadata(NMD.getOperand(i), VMap));
124   }
125
126   return New;
127 }
128
129 extern "C" {
130
131 LLVMModuleRef LLVMCloneModule(LLVMModuleRef M) {
132   return wrap(CloneModule(unwrap(M)));
133 }
134
135 }