diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-12-18 20:21:10 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-18 20:21:10 -0300 |
commit | f93c5f006a44fb4b32ad6e7afdaaaf737b115ace (patch) | |
tree | 4b8f2996282c8569faa1f7ca549761145f83ae24 /ARMeilleure/Instructions | |
parent | 295fbd0542a93ac50e558054a3f0c8c64286b764 (diff) |
Revert "ARMeilleure: Add initial support for AVX512(EVEX encoding) (#3663)" (#4145)1.1.479
This reverts commit 295fbd0542a93ac50e558054a3f0c8c64286b764.
Diffstat (limited to 'ARMeilleure/Instructions')
-rw-r--r-- | ARMeilleure/Instructions/InstEmitSimdLogical.cs | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/ARMeilleure/Instructions/InstEmitSimdLogical.cs b/ARMeilleure/Instructions/InstEmitSimdLogical.cs index 171aec7e..624ae841 100644 --- a/ARMeilleure/Instructions/InstEmitSimdLogical.cs +++ b/ARMeilleure/Instructions/InstEmitSimdLogical.cs @@ -224,22 +224,7 @@ namespace ARMeilleure.Instructions public static void Not_V(ArmEmitterContext context) { - if (Optimizations.UseAvx512Ortho) - { - OpCodeSimd op = (OpCodeSimd)context.CurrOp; - - Operand n = GetVec(op.Rn); - - Operand res = context.AddIntrinsic(Intrinsic.X86Vpternlogd, n, n, Const(0b01010101)); - - if (op.RegisterSize == RegisterSize.Simd64) - { - res = context.VectorZeroUpper64(res); - } - - context.Copy(GetVec(op.Rd), res); - } - else if (Optimizations.UseSse2) + if (Optimizations.UseSse2) { OpCodeSimd op = (OpCodeSimd)context.CurrOp; |