[clang] [llvm] [AArch64] Add optional extensions enabled on Grace (PR #127620)

David Green via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 18 04:24:46 PST 2025


================
@@ -944,6 +944,15 @@ def ProcessorFeatures {
   list<SubtargetFeature> Falkor   = [HasV8_0aOps, FeatureCRC, FeatureSHA2, FeatureAES,
                                      FeatureFPARMv8, FeatureNEON, FeaturePerfMon,
                                      FeatureRDM];
+  list<SubtargetFeature> Grace    =  [HasV9_0aOps, FeatureBF16, FeatureSPE,
----------------
davemgreen wrote:

Does it work to do something like `!listconcat(NeoverseV2, [<New features>])`?

It is probably better to use `FeatureSHA2, FeatureAES` than `FeatureCrypto` nowadays.

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


More information about the cfe-commits mailing list