diff options
author | Craig Topper <craig.topper@intel.com> | 2019-03-18 17:59:59 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2019-03-18 17:59:59 +0000 |
commit | c2b35ebc1da58c4095d48743c65e6d9d5968a621 (patch) | |
tree | 0ac3774433f49d213b937344d553cb30649a43f3 /llvm/utils/TableGen/X86RecognizableInstr.cpp | |
parent | 08b5e68ef6738c0127ccd4f3ab0aa619598c281c (diff) | |
download | bcm5719-llvm-c2b35ebc1da58c4095d48743c65e6d9d5968a621.tar.gz bcm5719-llvm-c2b35ebc1da58c4095d48743c65e6d9d5968a621.zip |
[X86] Remove the _alt forms of (V)CMP instructions. Use a combination of custom printing and custom parsing to achieve the same result and more
Similar to previous change done for VPCOM and VPCMP
Differential Revision: https://reviews.llvm.org/D59468
llvm-svn: 356384
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r-- | llvm/utils/TableGen/X86RecognizableInstr.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp index e18417385a8..ef897420215 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.cpp +++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp @@ -848,8 +848,6 @@ OperandType RecognizableInstr::typeFromString(const std::string &s, TYPE("i64i32imm_pcrel", TYPE_REL) TYPE("i16imm_pcrel", TYPE_REL) TYPE("i32imm_pcrel", TYPE_REL) - TYPE("SSECC", TYPE_IMM3) - TYPE("AVXCC", TYPE_IMM5) TYPE("AVX512RC", TYPE_IMM) TYPE("brtarget32", TYPE_REL) TYPE("brtarget16", TYPE_REL) @@ -929,8 +927,6 @@ RecognizableInstr::immediateEncodingFromString(const std::string &s, ENCODING("i16imm", ENCODING_IW) } ENCODING("i32i8imm", ENCODING_IB) - ENCODING("SSECC", ENCODING_IB) - ENCODING("AVXCC", ENCODING_IB) ENCODING("AVX512RC", ENCODING_IRC) ENCODING("i16imm", ENCODING_Iv) ENCODING("i16i8imm", ENCODING_IB) |