Skip to content

Commit

Permalink
v128 intrinsic bisection step #1
Browse files Browse the repository at this point in the history
  • Loading branch information
kg committed May 11, 2023
1 parent c709a5a commit 6c1b023
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mono/mono/mini/interp/transform-simd.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ emit_sri_vector128 (TransformData *td, MonoMethod *cmethod, MonoMethodSignature

g_assert (scalar_arg != -3274);

/*
switch (id) {
case SN_AndNot:
simd_opcode = MINT_SIMD_INTRINS_P_PP;
Expand Down Expand Up @@ -231,6 +230,7 @@ emit_sri_vector128 (TransformData *td, MonoMethod *cmethod, MonoMethodSignature
else if (arg_size == 4) simd_intrins = INTERP_SIMD_INTRINSIC_V128_I4_CREATE_SCALAR;
else if (arg_size == 8) simd_intrins = INTERP_SIMD_INTRINSIC_V128_I8_CREATE_SCALAR;
break;
/*
case SN_Equals:
simd_opcode = MINT_SIMD_INTRINS_P_PP;
if (atype == MONO_TYPE_I1 || atype == MONO_TYPE_U1) simd_intrins = INTERP_SIMD_INTRINSIC_V128_I1_EQUALS;
Expand Down Expand Up @@ -304,10 +304,10 @@ emit_sri_vector128 (TransformData *td, MonoMethod *cmethod, MonoMethodSignature
simd_opcode = MINT_SIMD_INTRINS_P_P;
if (atype == MONO_TYPE_U2) simd_intrins = INTERP_SIMD_INTRINSIC_V128_U2_WIDEN_UPPER;
break;
*/
default:
return FALSE;
}
*/

if (simd_opcode == -1 || simd_intrins == -1) {
return FALSE;
Expand Down

0 comments on commit 6c1b023

Please sign in to comment.