diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-11-27 19:42:02 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-11-27 19:42:02 +0000 |
commit | ab5ba51a6e4699cb5592947807d6035c6ac53386 (patch) | |
tree | b20eff1a24cf5d2901dddfb0f29f48a06436ddd2 /llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt | |
parent | 8594ae85d5134489b8ab904ed4dbc846a722d2be (diff) | |
download | bcm5719-llvm-ab5ba51a6e4699cb5592947807d6035c6ac53386.tar.gz bcm5719-llvm-ab5ba51a6e4699cb5592947807d6035c6ac53386.zip |
Moving SectionMemoryManager into RuntimeDyld and adding unit tests for it.
The SectionMemoryManager now supports (and requires) applying section-specific page permissions. Clients using this memory manager must call either MCJIT::finalizeObject() or SectionMemoryManager::applyPermissions() before executing JITed code.
See r168718 for changes from the previous implementation.
llvm-svn: 168721
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt b/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt index 3e9c5b631e4..c6b1f77e3e8 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt +++ b/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt @@ -2,14 +2,14 @@ set(LLVM_LINK_COMPONENTS asmparser bitreader bitwriter - mcjit jit + mcjit nativecodegen ) set(MCJITTestsSources MCJITTest.cpp - SectionMemoryManager.cpp + MCJITMemoryManagerTest.cpp ) if(MSVC) |