David Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 1 | macro(append_to_parent_scope var) |
| 2 | list(APPEND ${var} ${ARGN}) |
| 3 | set(${var} "${${var}}" PARENT_SCOPE) |
| 4 | endmacro() |
| 5 | |
| 6 | function(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 Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 20 | ${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 | ) |
| 27 | endfunction() |
| 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 Benjamin | 7ce5d41 | 2023-08-14 20:38:54 -0400 | [diff] [blame] | 32 | # the assembler used. Extra arguments are passed to the perlasm script. |
David Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 33 | function(perlasm var arch dest src) |
| 34 | if(arch STREQUAL "aarch64") |
David Benjamin | 7ce5d41 | 2023-08-14 20:38:54 -0400 | [diff] [blame] | 35 | 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 Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 38 | append_to_parent_scope("${var}_ASM" "${dest}-apple.S" "${dest}-linux.S" "${dest}-win.S") |
| 39 | elseif(arch STREQUAL "arm") |
David Benjamin | 7ce5d41 | 2023-08-14 20:38:54 -0400 | [diff] [blame] | 40 | add_perlasm_target("${dest}-linux.S" ${src} linux32 ${ARGN}) |
David Benjamin | 2cb3000 | 2024-01-25 22:53:44 -0500 | [diff] [blame] | 41 | append_to_parent_scope("${var}_ASM" "${dest}-linux.S") |
David Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 42 | elseif(arch STREQUAL "x86") |
David Benjamin | 20c93ab | 2024-01-27 16:45:28 -0500 | [diff] [blame] | 43 | 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 Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 46 | 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 Benjamin | 7ce5d41 | 2023-08-14 20:38:54 -0400 | [diff] [blame] | 49 | 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 Benjamin | 1967621 | 2023-01-25 10:03:53 -0500 | [diff] [blame] | 52 | 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() |
| 57 | endfunction() |