2016-07-04 11:22:11 +02:00
|
|
|
set(SRCS
|
2016-08-06 21:41:00 +02:00
|
|
|
common/memory_pool.cpp
|
2016-09-06 01:52:33 +02:00
|
|
|
frontend/arm/types.cpp
|
2016-07-14 15:39:43 +02:00
|
|
|
frontend/disassembler/disassembler_arm.cpp
|
|
|
|
frontend/disassembler/disassembler_thumb.cpp
|
2016-08-17 16:53:36 +02:00
|
|
|
frontend/ir/basic_block.cpp
|
2016-07-14 15:39:43 +02:00
|
|
|
frontend/ir/ir_emitter.cpp
|
2016-09-05 22:31:25 +02:00
|
|
|
frontend/ir/location_descriptor.cpp
|
2016-08-17 16:53:36 +02:00
|
|
|
frontend/ir/microinstruction.cpp
|
2016-08-12 19:17:31 +02:00
|
|
|
frontend/ir/opcodes.cpp
|
2016-08-17 16:53:36 +02:00
|
|
|
frontend/ir/value.cpp
|
2016-07-14 15:39:43 +02:00
|
|
|
frontend/translate/translate.cpp
|
2016-07-21 22:48:45 +02:00
|
|
|
frontend/translate/translate_arm.cpp
|
2016-08-03 01:52:17 +02:00
|
|
|
frontend/translate/translate_arm/branch.cpp
|
2016-08-01 21:20:22 +02:00
|
|
|
frontend/translate/translate_arm/data_processing.cpp
|
|
|
|
frontend/translate/translate_arm/exception_generating.cpp
|
2016-08-02 22:59:33 +02:00
|
|
|
frontend/translate/translate_arm/extension.cpp
|
|
|
|
frontend/translate/translate_arm/load_store.cpp
|
2016-12-04 23:56:33 +01:00
|
|
|
frontend/translate/translate_arm/misc.cpp
|
2016-08-02 22:59:33 +02:00
|
|
|
frontend/translate/translate_arm/multiply.cpp
|
2016-11-23 22:45:18 +01:00
|
|
|
frontend/translate/translate_arm/packing.cpp
|
2016-08-02 22:59:33 +02:00
|
|
|
frontend/translate/translate_arm/parallel.cpp
|
2016-08-01 21:20:22 +02:00
|
|
|
frontend/translate/translate_arm/reversal.cpp
|
2016-08-11 18:15:33 +02:00
|
|
|
frontend/translate/translate_arm/status_register_access.cpp
|
TranslateArm: Implement CLREX, LDREX, LDREXB, LDREXD, LDREXH, STREX, STREXB, STREXD, STREXH, SWP, SWPB
2016-08-09 23:48:20 +02:00
|
|
|
frontend/translate/translate_arm/synchronization.cpp
|
2016-08-06 18:21:29 +02:00
|
|
|
frontend/translate/translate_arm/vfp2.cpp
|
2016-07-21 22:48:45 +02:00
|
|
|
frontend/translate/translate_thumb.cpp
|
|
|
|
ir_opt/dead_code_elimination_pass.cpp
|
|
|
|
ir_opt/get_set_elimination_pass.cpp
|
|
|
|
ir_opt/verification_pass.cpp
|
2016-07-04 11:22:11 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
set(HEADERS
|
2016-08-25 19:22:08 +02:00
|
|
|
../include/dynarmic/dynarmic.h
|
|
|
|
../include/dynarmic/callbacks.h
|
|
|
|
../include/dynarmic/disassembler.h
|
2016-07-04 11:22:11 +02:00
|
|
|
common/assert.h
|
|
|
|
common/bit_util.h
|
|
|
|
common/common_types.h
|
2016-08-06 23:23:01 +02:00
|
|
|
common/intrusive_list.h
|
2016-08-24 21:07:08 +02:00
|
|
|
common/iterator_util.h
|
2016-08-06 21:41:00 +02:00
|
|
|
common/memory_pool.h
|
2016-07-04 11:22:11 +02:00
|
|
|
common/mp.h
|
|
|
|
common/scope_exit.h
|
|
|
|
common/string_util.h
|
2016-08-24 23:16:14 +02:00
|
|
|
frontend/arm/FPSCR.h
|
2016-09-02 18:34:33 +02:00
|
|
|
frontend/arm/PSR.h
|
2016-09-06 01:52:33 +02:00
|
|
|
frontend/arm/types.h
|
2016-07-04 11:22:11 +02:00
|
|
|
frontend/decoder/arm.h
|
|
|
|
frontend/decoder/decoder_detail.h
|
2016-09-17 10:48:18 +02:00
|
|
|
frontend/decoder/matcher.h
|
2016-07-12 12:09:34 +02:00
|
|
|
frontend/decoder/thumb16.h
|
2016-07-18 23:18:58 +02:00
|
|
|
frontend/decoder/thumb32.h
|
2016-08-10 16:01:23 +02:00
|
|
|
frontend/decoder/vfp2.h
|
2016-07-14 15:39:43 +02:00
|
|
|
frontend/disassembler/disassembler.h
|
2016-08-17 16:53:36 +02:00
|
|
|
frontend/ir/basic_block.h
|
2016-07-14 15:39:43 +02:00
|
|
|
frontend/ir/ir_emitter.h
|
2016-09-05 12:54:09 +02:00
|
|
|
frontend/ir/location_descriptor.h
|
2016-08-17 16:53:36 +02:00
|
|
|
frontend/ir/microinstruction.h
|
2016-07-04 11:22:11 +02:00
|
|
|
frontend/ir/opcodes.h
|
2016-08-17 16:53:36 +02:00
|
|
|
frontend/ir/terminal.h
|
|
|
|
frontend/ir/value.h
|
2016-07-14 15:39:43 +02:00
|
|
|
frontend/translate/translate.h
|
2016-08-01 21:20:22 +02:00
|
|
|
frontend/translate/translate_arm/translate_arm.h
|
2016-07-21 22:48:45 +02:00
|
|
|
ir_opt/passes.h
|
2016-07-04 11:22:11 +02:00
|
|
|
)
|
|
|
|
|
2016-12-11 16:35:26 +01:00
|
|
|
if (ARCHITECTURE_x86_64)
|
|
|
|
list(APPEND SRCS
|
|
|
|
backend_x64/abi.cpp
|
|
|
|
backend_x64/block_of_code.cpp
|
|
|
|
backend_x64/emit_x64.cpp
|
|
|
|
backend_x64/hostloc.cpp
|
|
|
|
backend_x64/interface_x64.cpp
|
|
|
|
backend_x64/jitstate.cpp
|
|
|
|
backend_x64/reg_alloc.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND HEADERS
|
|
|
|
backend_x64/abi.h
|
|
|
|
backend_x64/block_of_code.h
|
|
|
|
backend_x64/emit_x64.h
|
|
|
|
backend_x64/hostloc.h
|
|
|
|
backend_x64/jitstate.h
|
|
|
|
backend_x64/reg_alloc.h
|
|
|
|
)
|
2016-12-11 16:38:00 +01:00
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
list(APPEND SRCS backend_x64/unwind_windows.cpp)
|
|
|
|
else()
|
|
|
|
list(APPEND SRCS backend_x64/unwind_generic.cpp)
|
|
|
|
endif()
|
2016-12-11 16:35:26 +01:00
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unsupported architecture")
|
|
|
|
endif()
|
|
|
|
|
2016-08-25 19:22:08 +02:00
|
|
|
include(CreateDirectoryGroups)
|
2016-07-18 11:28:17 +02:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2016-08-25 19:22:08 +02:00
|
|
|
|
2016-07-04 11:22:11 +02:00
|
|
|
add_library(dynarmic STATIC ${SRCS} ${HEADERS})
|
|
|
|
set_target_properties(dynarmic PROPERTIES LINKER_LANGUAGE CXX)
|
2016-08-25 19:22:08 +02:00
|
|
|
target_include_directories(dynarmic
|
|
|
|
PUBLIC ../include
|
|
|
|
PRIVATE .)
|
2016-08-25 23:21:19 +02:00
|
|
|
# Link fmt
|
|
|
|
target_link_libraries(dynarmic PRIVATE fmt-header-only)
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
|
|
target_compile_definitions(dynarmic PRIVATE FMT_USE_WINDOWS_H=0)
|
|
|
|
endif()
|
2016-12-12 15:23:42 +01:00
|
|
|
target_link_libraries(dynarmic PRIVATE xbyak)
|