Add FRINTM (vector) instruction

This commit is contained in:
gdkchan 2018-03-09 23:41:05 -03:00
parent aa2d2b3149
commit 30bcb8da33
3 changed files with 14 additions and 0 deletions

View file

@ -267,6 +267,14 @@ namespace ChocolArm64.Instruction
});
}
public static void Frintm_V(AILEmitterCtx Context)
{
EmitVectorUnaryOpF(Context, () =>
{
EmitUnaryMathCall(Context, nameof(Math.Floor));
});
}
public static void Frintp_S(AILEmitterCtx Context)
{
EmitScalarUnaryOpF(Context, () =>