blob: 992431619c9796de53f66054786abbfc9ec76dd5 [file] [log] [blame]
Chris Lattnere4dbb1a2002-11-20 20:47:41 +00001//===- CloneModule.cpp - Clone an entire module ---------------------------===//
2//
3// This file implements the CloneModule interface which makes a copy of an
4// entire module.
5//
6//===----------------------------------------------------------------------===//
7
8#include "llvm/Transforms/Utils/Cloning.h"
9#include "llvm/Module.h"
10#include "llvm/DerivedTypes.h"
11#include "llvm/Constant.h"
12#include "ValueMapper.h"
13
14/// CloneModule - Return an exact copy of the specified module. This is not as
15/// easy as it might seem because we have to worry about making copies of global
16/// variables and functions, and making their (intializers and references,
17/// respectively) refer to the right globals.
18///
19Module *CloneModule(const Module *M) {
20 // First off, we need to create the new module...
Chris Lattnerd36ad922003-04-22 18:02:26 +000021 Module *New = new Module(M->getModuleIdentifier());
Chris Lattner0aebf8f2003-04-24 15:54:40 +000022 New->setEndianness(M->getEndianness());
23 New->setPointerSize(M->getPointerSize());
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000024
25 // Create the value map that maps things from the old module over to the new
26 // module.
27 std::map<const Value*, Value*> ValueMap;
28
29 // Loop over all of the global variables, making corresponding globals in the
30 // new module. Here we add them to the ValueMap and to the new Module. We
31 // don't worry about attributes or initializers, they will come later.
32 //
33 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
Chris Lattner379a8d22003-04-16 20:28:45 +000034 ValueMap[I] = new GlobalVariable(I->getType()->getElementType(), false,
35 GlobalValue::ExternalLinkage, 0,
36 I->getName(), New);
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000037
38 // Loop over the functions in the module, making external functions as before
39 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
40 ValueMap[I]=new Function(cast<FunctionType>(I->getType()->getElementType()),
Chris Lattner379a8d22003-04-16 20:28:45 +000041 GlobalValue::ExternalLinkage, I->getName(), New);
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000042
43 // Now that all of the things that global variable initializer can refer to
44 // have been created, loop through and copy the global variable referrers
45 // over... We also set the attributes on the global now.
46 //
47 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
48 GlobalVariable *GV = cast<GlobalVariable>(ValueMap[I]);
49 if (I->hasInitializer())
50 GV->setInitializer(cast<Constant>(MapValue(I->getInitializer(),
51 ValueMap)));
Chris Lattner379a8d22003-04-16 20:28:45 +000052 GV->setLinkage(I->getLinkage());
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000053 }
54
55 // Similarly, copy over function bodies now...
56 //
57 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
58 Function *F = cast<Function>(ValueMap[I]);
59 if (!I->isExternal()) {
60 Function::aiterator DestI = F->abegin();
61 for (Function::const_aiterator J = I->abegin(); J != I->aend(); ++J) {
62 DestI->setName(J->getName());
63 ValueMap[J] = DestI++;
64 }
65
66 std::vector<ReturnInst*> Returns; // Ignore returns cloned...
67 CloneFunctionInto(F, I, ValueMap, Returns);
68 }
69
Chris Lattner379a8d22003-04-16 20:28:45 +000070 F->setLinkage(I->getLinkage());
Chris Lattnere4dbb1a2002-11-20 20:47:41 +000071 }
72
73 return New;
74}