]> granicus.if.org Git - llvm/commitdiff
[Orc] Move SectionMemoryManager's implementation from MCJIT to ExecutionEngine.
authorLang Hames <lhames@gmail.com>
Fri, 6 Feb 2015 19:36:40 +0000 (19:36 +0000)
committerLang Hames <lhames@gmail.com>
Fri, 6 Feb 2015 19:36:40 +0000 (19:36 +0000)
This is a more sensible home for SectionMemoryManager, and allows the implementation
to be shared between Orc and MCJIT.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228427 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/CMakeLists.txt
lib/ExecutionEngine/MCJIT/CMakeLists.txt
lib/ExecutionEngine/SectionMemoryManager.cpp [moved from lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp with 100% similarity]

index 2332795fc4c2d775074322fcf7a5dcd79bf7565e..d2c33cda1a625d743053b675c98d1177dbf33d09 100644 (file)
@@ -5,6 +5,7 @@ add_llvm_library(LLVMExecutionEngine
   ExecutionEngineBindings.cpp
   GDBRegistrationListener.cpp
   RTDyldMemoryManager.cpp
+  SectionMemoryManager.cpp
   TargetSelect.cpp
   )
 
index 088635a0e999d64bb2af312ebed74a7abb605b07..2911a5077220668bad51e1924f84f5fc3231ed2b 100644 (file)
@@ -1,4 +1,3 @@
 add_llvm_library(LLVMMCJIT
   MCJIT.cpp
-  SectionMemoryManager.cpp
   )