[clang] [llvm] [AARCH64] Add support for Cortex-A320 (PR #139055)

Ties Stuij via cfe-commits cfe-commits at lists.llvm.org
Thu May 8 03:39:35 PDT 2025


================
@@ -1109,10 +1125,12 @@ class ProcessorAlias<string n, string alias> {
 def : ProcessorModel<"generic", CortexA510Model, ProcessorFeatures.Generic,
                      [FeatureFuseAES, FeatureFuseAdrpAdd, FeaturePostRAScheduler,
                       FeatureEnableSelectOptimize]>;
-def : ProcessorModel<"cortex-a35", CortexA53Model, ProcessorFeatures.A53,
-                     [TuneA35]>;
 def : ProcessorModel<"cortex-a34", CortexA53Model, ProcessorFeatures.A53,
                      [TuneA35]>;
+def : ProcessorModel<"cortex-a35", CortexA53Model, ProcessorFeatures.A53,
----------------
stuij wrote:

Mostly to keep it in line with the rest of the places here in the code where we enumerate the cores. In my head canon the logic is 'subsequent iterations of the same class of cores'.

https://github.com/llvm/llvm-project/pull/139055


More information about the cfe-commits mailing list