summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2015-02-06 19:36:40 +0000
committerLang Hames <lhames@gmail.com>2015-02-06 19:36:40 +0000
commit8a6f35546b48a84adfcb6941d8d7727675024b3c (patch)
tree3e5102674211814d5a0350e714f1a4d3fd8053f4
parent510e2f48f07ce78d2123d7268f7bfa6932012c8f (diff)
downloadbcm5719-llvm-8a6f35546b48a84adfcb6941d8d7727675024b3c.tar.gz
bcm5719-llvm-8a6f35546b48a84adfcb6941d8d7727675024b3c.zip
[Orc] Move SectionMemoryManager's implementation from MCJIT to ExecutionEngine.
This is a more sensible home for SectionMemoryManager, and allows the implementation to be shared between Orc and MCJIT. llvm-svn: 228427
-rw-r--r--llvm/lib/ExecutionEngine/CMakeLists.txt1
-rw-r--r--llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt1
-rw-r--r--llvm/lib/ExecutionEngine/SectionMemoryManager.cpp (renamed from llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp)0
3 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/CMakeLists.txt b/llvm/lib/ExecutionEngine/CMakeLists.txt
index 2332795fc4c..d2c33cda1a6 100644
--- a/llvm/lib/ExecutionEngine/CMakeLists.txt
+++ b/llvm/lib/ExecutionEngine/CMakeLists.txt
@@ -5,6 +5,7 @@ add_llvm_library(LLVMExecutionEngine
ExecutionEngineBindings.cpp
GDBRegistrationListener.cpp
RTDyldMemoryManager.cpp
+ SectionMemoryManager.cpp
TargetSelect.cpp
)
diff --git a/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt b/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
index 088635a0e99..2911a507722 100644
--- a/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
+++ b/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
@@ -1,4 +1,3 @@
add_llvm_library(LLVMMCJIT
MCJIT.cpp
- SectionMemoryManager.cpp
)
diff --git a/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp b/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
index 59860844e93..59860844e93 100644
--- a/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp
+++ b/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
OpenPOWER on IntegriCloud