208a4f7692bb7bc8a975565e298e758dada291ed
[oota-llvm.git] / include / llvm / ExecutionEngine / Orc / CloneSubModule.h
1 //===-- CloneSubModule.h - Utilities for extracting sub-modules -*- C++ -*-===//
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 // Contains utilities for extracting sub-modules. Useful for breaking up modules
11 // for lazy jitting.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_EXECUTIONENGINE_ORC_CLONESUBMODULE_H
16 #define LLVM_EXECUTIONENGINE_ORC_CLONESUBMODULE_H
17
18 #include "llvm/ADT/DenseSet.h"
19 #include "llvm/Transforms/Utils/ValueMapper.h"
20 #include <functional>
21
22 namespace llvm {
23
24 class Function;
25 class GlobalVariable;
26 class Module;
27
28 typedef std::function<void(GlobalVariable &, const GlobalVariable &,
29                            ValueToValueMapTy &)> HandleGlobalVariableFtor;
30
31 typedef std::function<void(Function &, const Function &, ValueToValueMapTy &)>
32     HandleFunctionFtor;
33
34 void copyGVInitializer(GlobalVariable &New, const GlobalVariable &Orig,
35                        ValueToValueMapTy &VMap);
36
37 void copyFunctionBody(Function &New, const Function &Orig,
38                       ValueToValueMapTy &VMap);
39
40 void CloneSubModule(Module &Dst, const Module &Src,
41                     HandleGlobalVariableFtor HandleGlobalVariable,
42                     HandleFunctionFtor HandleFunction, bool KeepInlineAsm);
43 }
44
45 #endif // LLVM_EXECUTIONENGINE_ORC_CLONESUBMODULE_H