mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-09 23:30:37 +00:00
123 lines
4.5 KiB
CMake
123 lines
4.5 KiB
CMake
enable_language(ASM_NASM)
|
|
if(NOT CMAKE_ASM_NASM_COMPILER_LOADED)
|
|
error("Failed to find NASM compatible assembler!")
|
|
endif()
|
|
|
|
# Careful. Globbing can't see changes to the contents of files
|
|
# Need to do a fresh clean to see changes
|
|
file(GLOB_RECURSE ASM_SOURCES CONFIGURE_DEPENDS *.asm)
|
|
|
|
set(ASM_DEPENDS "")
|
|
|
|
execute_process(COMMAND "python3" "${CMAKE_SOURCE_DIR}/Scripts/ClassifyCPU.py"
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
OUTPUT_VARIABLE CPU_CLASS)
|
|
|
|
foreach(ASM_SRC ${ASM_SOURCES})
|
|
file(RELATIVE_PATH REL_ASM ${CMAKE_SOURCE_DIR} ${ASM_SRC})
|
|
file(RELATIVE_PATH REL_TEST_ASM ${CMAKE_CURRENT_SOURCE_DIR} ${ASM_SRC})
|
|
get_filename_component(ASM_NAME ${ASM_SRC} NAME)
|
|
get_filename_component(ASM_DIR "${REL_ASM}" DIRECTORY)
|
|
set(OUTPUT_ASM_FOLDER "${CMAKE_BINARY_DIR}/${ASM_DIR}")
|
|
|
|
# Generate build directory
|
|
file(MAKE_DIRECTORY "${OUTPUT_ASM_FOLDER}")
|
|
|
|
# Generate a temporary file
|
|
set(ASM_TMP "${ASM_NAME}_TMP.asm")
|
|
set(TMP_FILE "${OUTPUT_ASM_FOLDER}/${ASM_TMP}")
|
|
|
|
add_custom_command(OUTPUT ${TMP_FILE}
|
|
DEPENDS "${ASM_SRC}"
|
|
COMMAND "cp" ARGS "${ASM_SRC}" "${TMP_FILE}"
|
|
COMMAND "sed" ARGS "-i" "-e" "\'1s;^;BITS 64\\n;\'" "-e" "\'\$\$a\\ret\\n\'" "${TMP_FILE}"
|
|
)
|
|
|
|
set(OUTPUT_NAME "${OUTPUT_ASM_FOLDER}/${ASM_NAME}.bin")
|
|
set(OUTPUT_CONFIG_NAME "${OUTPUT_ASM_FOLDER}/${ASM_NAME}.config.bin")
|
|
|
|
add_custom_command(OUTPUT ${OUTPUT_NAME}
|
|
DEPENDS "${TMP_FILE}"
|
|
COMMAND "nasm" ARGS "${TMP_FILE}" "-o" "${OUTPUT_NAME}")
|
|
|
|
add_custom_command(OUTPUT ${OUTPUT_CONFIG_NAME}
|
|
DEPENDS "${ASM_SRC}"
|
|
DEPENDS "${CMAKE_SOURCE_DIR}/Scripts/json_asm_config_parse.py"
|
|
DEPENDS "${CMAKE_SOURCE_DIR}/Scripts/json_config_parse.py"
|
|
COMMAND "python3" ARGS "${CMAKE_SOURCE_DIR}/Scripts/json_asm_config_parse.py" "${ASM_SRC}" "${OUTPUT_CONFIG_NAME}")
|
|
|
|
list(APPEND ASM_DEPENDS "${OUTPUT_NAME};${OUTPUT_CONFIG_NAME}")
|
|
|
|
# Format is "<Test Arguments>" "<Test Name>" "<Test Type>"
|
|
set(TEST_ARGS
|
|
"--no-silent -g -c irjit -n 1 --no-multiblock" "jit_1" "jit"
|
|
"--no-silent -g -c irjit -n 500 --no-multiblock" "jit_500" "jit"
|
|
"--no-silent -g -c irjit -n 500 --multiblock" "jit_500_m" "jit"
|
|
)
|
|
if (ENABLE_INTERPRETER)
|
|
list(APPEND TEST_ARGS
|
|
"--no-silent -g -c irint -n 1 --no-multiblock" "int_1" "int"
|
|
"--no-silent -g -c irint -n 500 --no-multiblock" "int_500" "int"
|
|
"--no-silent -g -c irint -n 500 --multiblock" "int_500_m" "int"
|
|
)
|
|
endif()
|
|
|
|
if (ENABLE_VIXL_SIMULATOR)
|
|
set(CPU_CLASS Simulator)
|
|
else()
|
|
if (_M_X86_64)
|
|
list(APPEND TEST_ARGS
|
|
"--no-silent -g -c host" "host" "host"
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
list(LENGTH TEST_ARGS ARG_COUNT)
|
|
math(EXPR ARG_COUNT "${ARG_COUNT}-1")
|
|
foreach(Index RANGE 0 ${ARG_COUNT} 3)
|
|
math(EXPR TEST_NAME_INDEX "${Index}+1")
|
|
math(EXPR TEST_TYPE_INDEX "${Index}+2")
|
|
|
|
list(GET TEST_ARGS ${Index} ARGS)
|
|
list(GET TEST_ARGS ${TEST_NAME_INDEX} TEST_DESC)
|
|
list(GET TEST_ARGS ${TEST_TYPE_INDEX} TEST_TYPE)
|
|
|
|
set(TEST_NAME "${TEST_DESC}/Test_${REL_TEST_ASM}")
|
|
string(REPLACE " " ";" ARGS_LIST ${ARGS})
|
|
|
|
if (TEST_NAME MATCHES "SelfModifyingCode")
|
|
list(APPEND ARGS_LIST "--smcchecks=full")
|
|
endif()
|
|
|
|
add_test(NAME ${TEST_NAME}
|
|
COMMAND "python3" "${CMAKE_SOURCE_DIR}/Scripts/testharness_runner.py"
|
|
"${CMAKE_SOURCE_DIR}/unittests/ASM/Known_Failures"
|
|
"${CMAKE_SOURCE_DIR}/unittests/ASM/Known_Failures_${TEST_TYPE}"
|
|
"${CMAKE_SOURCE_DIR}/unittests/ASM/Disabled_Tests"
|
|
"${CMAKE_SOURCE_DIR}/unittests/ASM/Disabled_Tests_${TEST_TYPE}"
|
|
"${CMAKE_SOURCE_DIR}/unittests/ASM/Disabled_Tests_${CPU_CLASS}"
|
|
"Test_${REL_TEST_ASM}"
|
|
"${CMAKE_BINARY_DIR}/Bin/TestHarnessRunner"
|
|
${ARGS_LIST} "${OUTPUT_NAME}" "${OUTPUT_CONFIG_NAME}")
|
|
# This will cause the ASM tests to fail if it can't find the TestHarness or ASMN files
|
|
# Prety crap way to work around the fact that tests can't have a build dependency in a different directory
|
|
# Just make sure to independently run `make all` then `make test`
|
|
set_property(TEST ${TEST_NAME} APPEND PROPERTY DEPENDS "${CMAKE_BINARY_DIR}/Bin/TestHarnessRunner")
|
|
set_property(TEST ${TEST_NAME} APPEND PROPERTY DEPENDS "${OUTPUT_NAME}")
|
|
set_property(TEST ${TEST_NAME} APPEND PROPERTY DEPENDS "${OUTPUT_CONFIG_NAME}")
|
|
endforeach()
|
|
|
|
endforeach()
|
|
|
|
add_custom_target(asm_files ALL
|
|
DEPENDS "${ASM_DEPENDS}")
|
|
|
|
execute_process(COMMAND "nproc" OUTPUT_VARIABLE CORES)
|
|
string(STRIP ${CORES} CORES)
|
|
|
|
add_custom_target(
|
|
asm_tests
|
|
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
|
|
USES_TERMINAL
|
|
COMMAND "ctest" "--timeout" "302" "-j${CORES}" "-R" "\.*.asm$$")
|