mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
7dea8abe52
lli aims to provide both, RuntimeDyld and JITLink, as the dynamic linkers/loaders for it's JIT implementations. And they both offer debugging via the GDB JIT interface, which builds on the two well-known symbol names `__jit_debug_descriptor` and `__jit_debug_register_code`. As these symbols must be unique accross the linked executable, we can only define them in one of the libraries and make the other depend on it. OrcTargetProcess is a minimal stub for embedding a JIT client in remote executors. For the moment it seems reasonable to have the definition there and let ExecutionEngine depend on it, until we find a better solution. This is the second commit for the reviewed patch. Reviewed By: lhames Differential Revision: https://reviews.llvm.org/D97339
47 lines
870 B
CMake
47 lines
870 B
CMake
|
|
|
|
add_llvm_component_library(LLVMExecutionEngine
|
|
ExecutionEngine.cpp
|
|
ExecutionEngineBindings.cpp
|
|
GDBRegistrationListener.cpp
|
|
SectionMemoryManager.cpp
|
|
TargetSelect.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
|
|
LINK_COMPONENTS
|
|
Core
|
|
MC
|
|
Object
|
|
OrcTargetProcess
|
|
RuntimeDyld
|
|
Support
|
|
Target
|
|
)
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
target_link_libraries(LLVMExecutionEngine PUBLIC LLVMRuntimeDyld)
|
|
endif()
|
|
|
|
add_subdirectory(Interpreter)
|
|
add_subdirectory(JITLink)
|
|
add_subdirectory(MCJIT)
|
|
add_subdirectory(Orc)
|
|
add_subdirectory(RuntimeDyld)
|
|
|
|
if( LLVM_USE_OPROFILE )
|
|
add_subdirectory(OProfileJIT)
|
|
endif( LLVM_USE_OPROFILE )
|
|
|
|
if( LLVM_USE_INTEL_JITEVENTS )
|
|
add_subdirectory(IntelJITEvents)
|
|
endif( LLVM_USE_INTEL_JITEVENTS )
|
|
|
|
if( LLVM_USE_PERF )
|
|
add_subdirectory(PerfJITEvents)
|
|
endif( LLVM_USE_PERF )
|