mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
[AVX512] Extended avx512_binop_rm for AVX512VL subsets.
Added avx512_binop_rm_vl multiclass for VL subset Added encoding tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219390 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user