blob: 17a47b9e03a12643dfb60a34ffbd2a3346ffa45d [file] [log] [blame]
David Benjamin19676212023-01-25 10:03:53 -05001macro(append_to_parent_scope var)
2 list(APPEND ${var} ${ARGN})
3 set(${var} "${${var}}" PARENT_SCOPE)
4endmacro()
5
6function(add_perlasm_target dest src)
7 get_filename_component(dir ${dest} DIRECTORY)
8 if(dir STREQUAL "")
9 set(dir ".")
10 endif()
11
12 add_custom_command(
13 OUTPUT ${dest}
14 COMMAND ${CMAKE_COMMAND} -E make_directory ${dir}
15 COMMAND ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/${src} ${ARGN}
16 ${dest}
17 DEPENDS
18 ${src}
19 ${PROJECT_SOURCE_DIR}/crypto/perlasm/arm-xlate.pl
David Benjamin19676212023-01-25 10:03:53 -050020 ${PROJECT_SOURCE_DIR}/crypto/perlasm/x86_64-xlate.pl
21 ${PROJECT_SOURCE_DIR}/crypto/perlasm/x86asm.pl
22 ${PROJECT_SOURCE_DIR}/crypto/perlasm/x86gas.pl
23 ${PROJECT_SOURCE_DIR}/crypto/perlasm/x86masm.pl
24 ${PROJECT_SOURCE_DIR}/crypto/perlasm/x86nasm.pl
25 WORKING_DIRECTORY .
26 )
27endfunction()
28
29# perlasm generates perlasm output from a given file. arch specifies the
30# architecture. dest specifies the basename of the output file. The list of
31# generated files will be appended to ${var}_ASM and ${var}_NASM depending on
David Benjamin7ce5d412023-08-14 20:38:54 -040032# the assembler used. Extra arguments are passed to the perlasm script.
David Benjamin19676212023-01-25 10:03:53 -050033function(perlasm var arch dest src)
34 if(arch STREQUAL "aarch64")
David Benjamin7ce5d412023-08-14 20:38:54 -040035 add_perlasm_target("${dest}-apple.S" ${src} ios64 ${ARGN})
36 add_perlasm_target("${dest}-linux.S" ${src} linux64 ${ARGN})
37 add_perlasm_target("${dest}-win.S" ${src} win64 ${ARGN})
David Benjamin19676212023-01-25 10:03:53 -050038 append_to_parent_scope("${var}_ASM" "${dest}-apple.S" "${dest}-linux.S" "${dest}-win.S")
39 elseif(arch STREQUAL "arm")
David Benjamin7ce5d412023-08-14 20:38:54 -040040 add_perlasm_target("${dest}-linux.S" ${src} linux32 ${ARGN})
David Benjamin2cb30002024-01-25 22:53:44 -050041 append_to_parent_scope("${var}_ASM" "${dest}-linux.S")
David Benjamin19676212023-01-25 10:03:53 -050042 elseif(arch STREQUAL "x86")
David Benjamin20c93ab2024-01-27 16:45:28 -050043 add_perlasm_target("${dest}-apple.S" ${src} macosx -fPIC ${ARGN})
44 add_perlasm_target("${dest}-linux.S" ${src} elf -fPIC ${ARGN})
45 add_perlasm_target("${dest}-win.asm" ${src} win32n ${ARGN})
David Benjamin19676212023-01-25 10:03:53 -050046 append_to_parent_scope("${var}_ASM" "${dest}-apple.S" "${dest}-linux.S")
47 append_to_parent_scope("${var}_NASM" "${dest}-win.asm")
48 elseif(arch STREQUAL "x86_64")
David Benjamin7ce5d412023-08-14 20:38:54 -040049 add_perlasm_target("${dest}-apple.S" ${src} macosx ${ARGN})
50 add_perlasm_target("${dest}-linux.S" ${src} elf ${ARGN})
51 add_perlasm_target("${dest}-win.asm" ${src} nasm ${ARGN})
David Benjamin19676212023-01-25 10:03:53 -050052 append_to_parent_scope("${var}_ASM" "${dest}-apple.S" "${dest}-linux.S")
53 append_to_parent_scope("${var}_NASM" "${dest}-win.asm")
54 else()
55 message(FATAL_ERROR "Unknown perlasm architecture: $arch")
56 endif()
57endfunction()