This is xnu-11215.1.10. See this file in:
#include <spawn.h>
/*
* Returns the subcpu type for the architecture for which the
* binary was compiled.
*/
int
main(void)
{
#if defined(__x86_64__)
return CPU_SUBTYPE_X86_64_ALL;
#elif __arm64e__
return CPU_SUBTYPE_ARM64E;
#elif defined(__arm64__) && defined(__LP64__)
return CPU_SUBTYPE_ARM64_ALL;
#elif defined(__arm64__)
return CPU_SUBTYPE_ARM64_32_ALL;
#else
#error unknown architecture
#endif
}