The CPUs used in Apple devices have been gradually getting more features, but upstream LLVM only knew about the original "Cyclone" variant. Xcode could also target "vortex" (for arm64_32 and arm64e), but using internal names isn't really ideal for anyone.
In official documentation the 64-bit CPUs are known as A7-A13 (iPhone, iPad) and S4-S5 (Watch), with some marketing suffixes that we probably don't need to care about. Since those bare names would be quite a land grab (and easily confused with Cortex-A*), this adds the currently released CPUs as "apple-aN" and "apple-sN".
I've left Cyclone in as a legacy option (build systems and existing bitcode probably relies on it), but switched the default over to the new scheme: apple-a7 for arm64 and apple-s4 for arm64_32.
It might be slightly more obvious to use MtuneLowerCAse.StartsWith("apple")