Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/mono/mono/mini/interp/simd-methods.def
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ SIMD_METHOD(BitwiseAnd)
SIMD_METHOD(BitwiseOr)
SIMD_METHOD(Ceiling)
SIMD_METHOD(ConditionalSelect)
SIMD_METHOD(ConvertToInt32)
SIMD_METHOD(ConvertToSingle)
SIMD_METHOD(Create)
SIMD_METHOD(CreateScalar)
SIMD_METHOD(CreateScalarUnsafe)
Expand Down
5 changes: 5 additions & 0 deletions src/mono/mono/mini/interp/transform-simd.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ static guint16 packedsimd_alias_methods [] = {
SN_BitwiseAnd,
SN_BitwiseOr,
SN_Ceiling,
SN_ConvertToInt32,
SN_ConvertToSingle,
SN_Divide,
SN_Equals,
SN_Floor,
Expand Down Expand Up @@ -1219,6 +1221,8 @@ emit_sri_packedsimd (TransformData *td, MonoMethod *cmethod, MonoMethodSignature
case SN_op_UnsignedRightShift:
cmethod_name = "ShiftRightLogical";
break;
case SN_ConvertToInt32:
cmethod_name = "ConvertToInt32Saturate";
case SN_ShiftLeft:
case SN_ShiftRightLogical:
case SN_ShiftRightArithmetic:
Expand All @@ -1230,6 +1234,7 @@ emit_sri_packedsimd (TransformData *td, MonoMethod *cmethod, MonoMethodSignature
case SN_AndNot:
case SN_Subtract:
case SN_Ceiling:
case SN_ConvertToSingle:
case SN_Floor:
case SN_Abs:
case SN_Negate:
Expand Down
Loading