[PATCH] D138010: [AArch64][ARM] add Armv8.9-a/Armv9.4-a identifier support
Ties Stuij via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 15 08:09:31 PST 2022
stuij marked an inline comment as done.
stuij added inline comments.
================
Comment at: llvm/include/llvm/Support/ARMTargetParser.def:127
+ ARM::AEK_HWDIVTHUMB | ARM::AEK_DSP | ARM::AEK_CRC | ARM::AEK_RAS |
+ ARM::AEK_DOTPROD | ARM::AEK_BF16 | ARM::AEK_I8MM))
ARM_ARCH("armv9-a", ARMV9A, "9-A", "v9a",
----------------
pratlucas wrote:
> stuij wrote:
> > tmatheson wrote:
> > > No ARM::AEK_SHA2 | ARM::AEK_AES? Or does 8.8 need updated?
> > Yes, I think 8.8 needs update, and some other arches as well.
> >
> > In the A profile armarm, section A2.3, it is stated that from 8.2 SME(2) and EAS aren't by default included in the cryptographic extension as the Cryptographic Extension in an implementation is subject to export license controls. Inclusion of the extension can be either/or or none, so we should default to none.
> >
> > I think this should be handled by separate patch.
> The v8.9-a entry on AArch64TargetParser.def includes both `AEK_SHA2` and `AEK_AES`. Can you also update it to make sure they are consistent?
Ai, I was mistaken. For v8 we have them enabled by default for historic reasons. For v9 we had the opportunity to disable them. So I will actually update v8.9 to add them here :)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138010/new/
https://reviews.llvm.org/D138010
More information about the cfe-commits
mailing list