From d5b14f79947fbd7d94e7bab689b9b01b8634a75e Mon Sep 17 00:00:00 2001 From: Robert Khasanov Date: Thu, 9 Oct 2014 08:38:48 +0000 Subject: [AVX512] Extended avx512_binop_rm for AVX512VL subsets. Added avx512_binop_rm_vl multiclass for VL subset Added encoding tests llvm-svn: 219390 --- llvm/utils/TableGen/X86DisassemblerTables.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/utils/TableGen/X86DisassemblerTables.cpp') diff --git a/llvm/utils/TableGen/X86DisassemblerTables.cpp b/llvm/utils/TableGen/X86DisassemblerTables.cpp index 6ec147c..dc1764cd 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: -- cgit v1.1