diff options
author | Yunzhong Gao <Yunzhong_Gao@playstation.sony.com> | 2013-09-27 18:38:42 +0000 |
---|---|---|
committer | Yunzhong Gao <Yunzhong_Gao@playstation.sony.com> | 2013-09-27 18:38:42 +0000 |
commit | 685707c28e2c7117f025fb4e95e6ca64ed179bb0 (patch) | |
tree | 1b3bf3d5abf0ab4b443d820430e0245656941640 /lib/Target/X86/X86InstrFormats.td | |
parent | 9e81c3bdb216e7ca457acf6614591e5b807cf70c (diff) | |
download | external_llvm-685707c28e2c7117f025fb4e95e6ca64ed179bb0.zip external_llvm-685707c28e2c7117f025fb4e95e6ca64ed179bb0.tar.gz external_llvm-685707c28e2c7117f025fb4e95e6ca64ed179bb0.tar.bz2 |
Adding intrinsics to the llvm backend for TBM instruction set.
Phabricator code review is located here: http://llvm-reviews.chandlerc.com/D1750
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191539 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrFormats.td')
-rw-r--r-- | lib/Target/X86/X86InstrFormats.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrFormats.td b/lib/Target/X86/X86InstrFormats.td index fb07ed0..ebe94a5 100644 --- a/lib/Target/X86/X86InstrFormats.td +++ b/lib/Target/X86/X86InstrFormats.td @@ -139,6 +139,7 @@ class T8XS { bits<5> Prefix = 18; } class TAXD { bits<5> Prefix = 19; } class XOP8 { bits<5> Prefix = 20; } class XOP9 { bits<5> Prefix = 21; } +class XOPA { bits<5> Prefix = 22; } class VEX { bit hasVEXPrefix = 1; } class VEX_W { bit hasVEX_WPrefix = 1; } class VEX_4V : VEX { bit hasVEX_4VPrefix = 1; } |