mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
**Description**: This adds "task name" parameter to all task creating functions. This is done in a few ways, e.g. we can backdeploy this to 5.1 in APIs which do not accept the `TaskExecutor` but it they do we provide a version for 6.0+ etc. This was requested in the SE acceptable of this proposal [Acceptance post SE-0469](https://forums.swift.org/t/accepted-with-modifications-se-0469-task-naming/79438). This moves all these declarations to gyb since going through them one by one has become unmaintainable otherwise. **Scope/Impact**: All task creation APIs now gain a new task name parameter. **Risk:** Medium, changes existing APIs rather than adding "even more overloads" though this risk was discussed in the team and accepted. This has a potential to be source breaking it someone used Task.init and friends as function. **Testing**: CI testing, source compatibility suite testing **Reviewed by**: **Original PR:** - https://github.com/swiftlang/swift/pull/81107 build changes required for this - https://github.com/swiftlang/swift/pull/80984 **Radar:** --------- Co-authored-by: Kuba Mracek <mracek@apple.com>
45 lines
1.6 KiB
CMake
45 lines
1.6 KiB
CMake
function(set_if_arch_bitness var_name)
|
|
cmake_parse_arguments(
|
|
SIA # prefix
|
|
"" # options
|
|
"ARCH;CASE_16_BIT;CASE_32_BIT;CASE_64_BIT" # single-value args
|
|
"" # multi-value args
|
|
${ARGN})
|
|
|
|
if("${SIA_ARCH}" STREQUAL "avr")
|
|
set("${var_name}" "${SIA_CASE_16_BIT}" PARENT_SCOPE)
|
|
elseif("${SIA_ARCH}" STREQUAL "i386" OR
|
|
"${SIA_ARCH}" STREQUAL "i686" OR
|
|
"${SIA_ARCH}" STREQUAL "x86" OR
|
|
"${SIA_ARCH}" STREQUAL "armv4t" OR
|
|
"${SIA_ARCH}" STREQUAL "armv5" OR
|
|
"${SIA_ARCH}" STREQUAL "armv6" OR
|
|
"${SIA_ARCH}" STREQUAL "armv6m" OR
|
|
"${SIA_ARCH}" STREQUAL "armv7" OR
|
|
"${SIA_ARCH}" STREQUAL "armv7k" OR
|
|
"${SIA_ARCH}" STREQUAL "arm64_32" OR
|
|
"${SIA_ARCH}" STREQUAL "armv7m" OR
|
|
"${SIA_ARCH}" STREQUAL "armv7em" OR
|
|
"${SIA_ARCH}" STREQUAL "armv7s" OR
|
|
"${SIA_ARCH}" STREQUAL "m68k" OR
|
|
"${SIA_ARCH}" STREQUAL "riscv32" OR
|
|
"${SIA_ARCH}" STREQUAL "wasm32" OR
|
|
"${SIA_ARCH}" STREQUAL "powerpc")
|
|
set("${var_name}" "${SIA_CASE_32_BIT}" PARENT_SCOPE)
|
|
elseif("${SIA_ARCH}" STREQUAL "x86_64" OR
|
|
"${SIA_ARCH}" STREQUAL "amd64" OR
|
|
"${SIA_ARCH}" STREQUAL "arm64" OR
|
|
"${SIA_ARCH}" STREQUAL "arm64e" OR
|
|
"${SIA_ARCH}" STREQUAL "aarch64" OR
|
|
"${SIA_ARCH}" STREQUAL "powerpc64" OR
|
|
"${SIA_ARCH}" STREQUAL "powerpc64le" OR
|
|
"${SIA_ARCH}" STREQUAL "s390x" OR
|
|
"${SIA_ARCH}" STREQUAL "riscv64" OR
|
|
"${SIA_ARCH}" STREQUAL "wasm64")
|
|
set("${var_name}" "${SIA_CASE_64_BIT}" PARENT_SCOPE)
|
|
else()
|
|
message(FATAL_ERROR "Unknown architecture: ${SIA_ARCH}")
|
|
endif()
|
|
endfunction()
|
|
|