mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 23:24:34 +00:00
AVX-512: Added all AVX-512 forms of Vector Convert for Float/Double/Int/Long types.
In this patch I have only encoding. Intrinsics and DAG lowering will be in the next patch. I temporary removed the old intrinsics test (just to split this patch). Half types are not covered here. Differential Revision: http://reviews.llvm.org/D11134 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242023 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -243,6 +243,9 @@ static inline bool inheritsFrom(InstructionContext child,
|
||||
case IC_EVEX_OPSIZE_KZ_B:
|
||||
return false;
|
||||
case IC_EVEX_W_K:
|
||||
case IC_EVEX_W_B:
|
||||
case IC_EVEX_W_K_B:
|
||||
case IC_EVEX_W_KZ_B:
|
||||
case IC_EVEX_W_XS_K:
|
||||
case IC_EVEX_W_XD_K:
|
||||
case IC_EVEX_W_OPSIZE_K:
|
||||
@ -252,6 +255,8 @@ static inline bool inheritsFrom(InstructionContext child,
|
||||
case IC_EVEX_L_K:
|
||||
case IC_EVEX_L_XS_K:
|
||||
case IC_EVEX_L_XD_K:
|
||||
case IC_EVEX_L_XD_B:
|
||||
case IC_EVEX_L_XD_K_B:
|
||||
case IC_EVEX_L_OPSIZE_K:
|
||||
case IC_EVEX_L_OPSIZE_B:
|
||||
case IC_EVEX_L_OPSIZE_K_B:
|
||||
@ -272,21 +277,30 @@ static inline bool inheritsFrom(InstructionContext child,
|
||||
case IC_EVEX_L_XS_KZ:
|
||||
case IC_EVEX_L_XS_B:
|
||||
case IC_EVEX_L_XS_K_B:
|
||||
case IC_EVEX_L_XS_KZ_B:
|
||||
case IC_EVEX_L_XD_KZ:
|
||||
case IC_EVEX_L_XD_KZ_B:
|
||||
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_B:
|
||||
case IC_EVEX_L_W_K_B:
|
||||
case IC_EVEX_L_W_XS_K:
|
||||
case IC_EVEX_L_W_XS_B:
|
||||
case IC_EVEX_L_W_XS_K_B:
|
||||
case IC_EVEX_L_W_XD_K:
|
||||
case IC_EVEX_L_W_XS_KZ:
|
||||
case IC_EVEX_L_W_XS_KZ_B:
|
||||
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_KZ_B:
|
||||
case IC_EVEX_L_W_XD_K:
|
||||
case IC_EVEX_L_W_XD_B:
|
||||
case IC_EVEX_L_W_XD_K_B:
|
||||
case IC_EVEX_L_W_XD_KZ:
|
||||
case IC_EVEX_L_W_XD_KZ_B:
|
||||
case IC_EVEX_L_W_OPSIZE_KZ:
|
||||
case IC_EVEX_L_W_OPSIZE_KZ_B:
|
||||
return false;
|
||||
@ -299,17 +313,22 @@ static inline bool inheritsFrom(InstructionContext child,
|
||||
case IC_EVEX_L2_XS_B:
|
||||
case IC_EVEX_L2_XD_B:
|
||||
case IC_EVEX_L2_XD_K:
|
||||
case IC_EVEX_L2_XD_K_B:
|
||||
case IC_EVEX_L2_OPSIZE_K:
|
||||
case IC_EVEX_L2_OPSIZE_B:
|
||||
case IC_EVEX_L2_OPSIZE_K_B:
|
||||
case IC_EVEX_L2_KZ:
|
||||
case IC_EVEX_L2_XS_KZ:
|
||||
case IC_EVEX_L2_XS_KZ_B:
|
||||
case IC_EVEX_L2_XD_KZ:
|
||||
case IC_EVEX_L2_XD_KZ_B:
|
||||
case IC_EVEX_L2_OPSIZE_KZ:
|
||||
case IC_EVEX_L2_OPSIZE_KZ_B:
|
||||
return false;
|
||||
case IC_EVEX_L2_W_K:
|
||||
case IC_EVEX_L2_W_B:
|
||||
case IC_EVEX_L2_W_K_B:
|
||||
case IC_EVEX_L2_W_KZ_B:
|
||||
case IC_EVEX_L2_W_XS_K:
|
||||
case IC_EVEX_L2_W_XS_B:
|
||||
case IC_EVEX_L2_W_XS_K_B:
|
||||
@ -320,7 +339,10 @@ static inline bool inheritsFrom(InstructionContext child,
|
||||
case IC_EVEX_L2_W_OPSIZE_K_B:
|
||||
case IC_EVEX_L2_W_KZ:
|
||||
case IC_EVEX_L2_W_XS_KZ:
|
||||
case IC_EVEX_L2_W_XS_KZ_B:
|
||||
case IC_EVEX_L2_W_XD_KZ:
|
||||
case IC_EVEX_L2_W_XD_K_B:
|
||||
case IC_EVEX_L2_W_XD_KZ_B:
|
||||
case IC_EVEX_L2_W_OPSIZE_KZ:
|
||||
case IC_EVEX_L2_W_OPSIZE_KZ_B:
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user