[PATCH] D62180: [AArch64] Armv8.2-A crypto extensions
Sjoerd Meijer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 22 00:08:03 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL361354: [AArch64] Subtarget crypto extension defaults (authored by SjoerdMeijer, committed by ).
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D62180?vs=200444&id=200654#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62180/new/
https://reviews.llvm.org/D62180
Files:
llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h
Index: llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h
===================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h
+++ llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h
@@ -93,6 +93,12 @@
bool HasPAN_RWV = false;
bool HasCCPP = false;
+ // Armv8.2 Crypto extensions
+ bool HasSM4 = false;
+ bool HasSHA3 = false;
+ bool HasSHA2 = false;
+ bool HasAES = false;
+
// ARMv8.3 extensions
bool HasPA = false;
bool HasJS = false;
@@ -110,12 +116,6 @@
bool HasTLB_RMI = false;
bool HasFMI = false;
bool HasRCPC_IMMO = false;
- // ARMv8.4 Crypto extensions
- bool HasSM4 = true;
- bool HasSHA3 = true;
-
- bool HasSHA2 = true;
- bool HasAES = true;
bool HasLSLFast = false;
bool HasSVE = false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62180.200654.patch
Type: text/x-patch
Size: 792 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190522/038b2740/attachment-0001.bin>
More information about the llvm-commits
mailing list