diff options
author | Coby Tayree <coby.tayree@intel.com> | 2017-11-21 09:11:41 +0000 |
---|---|---|
committer | Coby Tayree <coby.tayree@intel.com> | 2017-11-21 09:11:41 +0000 |
commit | 2a1c02fcbc823438f16697f939005d26d6294de2 (patch) | |
tree | e88fea80233734edbd3962369d2b527fdd0aa236 /llvm/lib/Target/X86/X86Subtarget.h | |
parent | afdaa6704f49afec648551bf8b6906267bed99e0 (diff) | |
download | bcm5719-llvm-2a1c02fcbc823438f16697f939005d26d6294de2.tar.gz bcm5719-llvm-2a1c02fcbc823438f16697f939005d26d6294de2.zip |
[x86][icelake]VAES introduction
an icelake promotion of AES
Differential Revision: https://reviews.llvm.org/D40078
llvm-svn: 318740
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.h')
-rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.h b/llvm/lib/Target/X86/X86Subtarget.h index 0b1eddcb631..3f0657be7a4 100644 --- a/llvm/lib/Target/X86/X86Subtarget.h +++ b/llvm/lib/Target/X86/X86Subtarget.h @@ -107,6 +107,7 @@ protected: /// Target has AES instructions bool HasAES; + bool HasVAES; /// Target has FXSAVE/FXRESTOR instructions bool HasFXSR; @@ -457,6 +458,7 @@ public: bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; } bool hasPOPCNT() const { return HasPOPCNT; } bool hasAES() const { return HasAES; } + bool hasVAES() const { return HasVAES; } bool hasFXSR() const { return HasFXSR; } bool hasXSAVE() const { return HasXSAVE; } bool hasXSAVEOPT() const { return HasXSAVEOPT; } |