Add FRINTP instruction, fix opcode ctor call method creation with multithreading

This commit is contained in:
gdkchan 2018-02-22 16:26:11 -03:00
parent 224211367f
commit 2cba1d49f6
3 changed files with 75 additions and 60 deletions

View file

@ -257,6 +257,14 @@ namespace ChocolArm64.Instruction
});
}
public static void Frintp_S(AILEmitterCtx Context)
{
EmitScalarUnaryOpF(Context, () =>
{
EmitUnaryMathCall(Context, nameof(Math.Ceiling));
});
}
public static void Fsqrt_S(AILEmitterCtx Context)
{
EmitScalarUnaryOpF(Context, () =>