mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
c0eeee7a78
Summary: The Boundary Table Entries are stored in the application memory and allow to store boundary info for all the pointers of the program, also those that otherwise wouldn't fit in the 4 bound registers provided by the HW. Here is an example of how it works: * mpx-table show <pointer> lbound = 0x..., ubound = 0x..., (pointer value = 0x..., metadata = 0x...) * mpx-table set <pointer> Signed-off-by: Valentina Giusti <valentina.giusti@intel.com> Reviewers: labath, clayborg Reviewed By: clayborg Subscribers: lldb-commits, mgorny Differential Revision: https://reviews.llvm.org/D29078 llvm-svn: 293660
12 lines
290 B
CMake
12 lines
290 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_subdirectory(darwin-debug)
|
|
add_subdirectory(debugserver)
|
|
endif()
|
|
add_subdirectory(argdumper)
|
|
add_subdirectory(driver)
|
|
add_subdirectory(lldb-mi)
|
|
if (LLDB_CAN_USE_LLDB_SERVER)
|
|
add_subdirectory(lldb-server)
|
|
endif()
|
|
add_subdirectory(intel-mpx)
|