diff options
author | Robert Khasanov <rob.khasanov@gmail.com> | 2014-10-09 08:38:48 +0000 |
---|---|---|
committer | Robert Khasanov <rob.khasanov@gmail.com> | 2014-10-09 08:38:48 +0000 |
commit | d5b14f79947fbd7d94e7bab689b9b01b8634a75e (patch) | |
tree | 4295069fb305fe6c4e474b66372eb88ef8ae36e2 /llvm/utils/TableGen/X86DisassemblerTables.cpp | |
parent | dd9cff2ede7793bb2ffefac055f720443e67a1a9 (diff) | |
download | bcm5719-llvm-d5b14f79947fbd7d94e7bab689b9b01b8634a75e.tar.gz bcm5719-llvm-d5b14f79947fbd7d94e7bab689b9b01b8634a75e.zip |
[AVX512] Extended avx512_binop_rm for AVX512VL subsets.
Added avx512_binop_rm_vl multiclass for VL subset
Added encoding tests
llvm-svn: 219390
Diffstat (limited to 'llvm/utils/TableGen/X86DisassemblerTables.cpp')
-rw-r--r-- | llvm/utils/TableGen/X86DisassemblerTables.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/X86DisassemblerTables.cpp b/llvm/utils/TableGen/X86DisassemblerTables.cpp index 6ec147cdd33..dc1764cdbb1 100644 --- a/llvm/utils/TableGen/X86DisassemblerTables.cpp +++ b/llvm/utils/TableGen/X86DisassemblerTables.cpp @@ -219,6 +219,7 @@ static inline bool inheritsFrom(InstructionContext child, case IC_EVEX_OPSIZE_B: case IC_EVEX_OPSIZE_K_B: case IC_EVEX_OPSIZE_KZ: + case IC_EVEX_OPSIZE_KZ_B: return false; case IC_EVEX_W_K: case IC_EVEX_W_XS_K: @@ -238,11 +239,13 @@ static inline bool inheritsFrom(InstructionContext child, case IC_EVEX_W_XS_KZ: case IC_EVEX_W_XD_KZ: case IC_EVEX_W_OPSIZE_KZ: + case IC_EVEX_W_OPSIZE_KZ_B: return false; case IC_EVEX_L_KZ: case IC_EVEX_L_XS_KZ: case IC_EVEX_L_XD_KZ: case IC_EVEX_L_OPSIZE_KZ: + case IC_EVEX_L_OPSIZE_KZ_B: return false; case IC_EVEX_L_W_K: case IC_EVEX_L_W_XS_K: @@ -254,6 +257,7 @@ static inline bool inheritsFrom(InstructionContext child, case IC_EVEX_L_W_XS_KZ: case IC_EVEX_L_W_XD_KZ: case IC_EVEX_L_W_OPSIZE_KZ: + case IC_EVEX_L_W_OPSIZE_KZ_B: return false; case IC_EVEX_L2_K: case IC_EVEX_L2_B: |