diff options
author | Robert Khasanov <rob.khasanov@gmail.com> | 2014-08-25 14:49:34 +0000 |
---|---|---|
committer | Robert Khasanov <rob.khasanov@gmail.com> | 2014-08-25 14:49:34 +0000 |
commit | 2ea081d4d11a30ed1aa8dbfcb81728dd2dfc8235 (patch) | |
tree | 14fa89f7a2416f54a4ac6912f379ca8ef0fc0ed9 /llvm/utils/TableGen/X86DisassemblerTables.cpp | |
parent | 0a88b25c43b75b646d44ea2c921b82fe12076913 (diff) | |
download | llvm-2ea081d4d11a30ed1aa8dbfcb81728dd2dfc8235.zip llvm-2ea081d4d11a30ed1aa8dbfcb81728dd2dfc8235.tar.gz llvm-2ea081d4d11a30ed1aa8dbfcb81728dd2dfc8235.tar.bz2 |
[SKX] avx512_icmp_packed multiclass extension
Extended avx512_icmp_packed multiclass by masking versions.
Added avx512_icmp_packed_rmb multiclass for embedded broadcast versions.
Added corresponding _vl multiclasses.
Added encoding tests for CPCMP{EQ|GT}* instructions.
Add more fields for X86VectorVTInfo.
Added AVX512VLVectorVTInfo that include X86VectorVTInfo for 512/256/128-bit versions
Differential Revision: http://reviews.llvm.org/D5024
llvm-svn: 216383
Diffstat (limited to 'llvm/utils/TableGen/X86DisassemblerTables.cpp')
-rw-r--r-- | llvm/utils/TableGen/X86DisassemblerTables.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/X86DisassemblerTables.cpp b/llvm/utils/TableGen/X86DisassemblerTables.cpp index 1d8561a..6ec147c 100644 --- a/llvm/utils/TableGen/X86DisassemblerTables.cpp +++ b/llvm/utils/TableGen/X86DisassemblerTables.cpp @@ -217,6 +217,7 @@ static inline bool inheritsFrom(InstructionContext child, case IC_EVEX_KZ_B: case IC_EVEX_OPSIZE_K: case IC_EVEX_OPSIZE_B: + case IC_EVEX_OPSIZE_K_B: case IC_EVEX_OPSIZE_KZ: return false; case IC_EVEX_W_K: @@ -224,11 +225,14 @@ static inline bool inheritsFrom(InstructionContext child, case IC_EVEX_W_XD_K: case IC_EVEX_W_OPSIZE_K: case IC_EVEX_W_OPSIZE_B: + case IC_EVEX_W_OPSIZE_K_B: return false; case IC_EVEX_L_K: case IC_EVEX_L_XS_K: case IC_EVEX_L_XD_K: case IC_EVEX_L_OPSIZE_K: + case IC_EVEX_L_OPSIZE_B: + case IC_EVEX_L_OPSIZE_K_B: return false; case IC_EVEX_W_KZ: case IC_EVEX_W_XS_KZ: @@ -244,6 +248,8 @@ static inline bool inheritsFrom(InstructionContext child, case IC_EVEX_L_W_XS_K: case IC_EVEX_L_W_XD_K: case IC_EVEX_L_W_OPSIZE_K: + case IC_EVEX_L_W_OPSIZE_B: + case IC_EVEX_L_W_OPSIZE_K_B: case IC_EVEX_L_W_KZ: case IC_EVEX_L_W_XS_KZ: case IC_EVEX_L_W_XD_KZ: |