Add FRINTP instruction, fix opcode ctor call method creation with multithreading
This commit is contained in:
parent
224211367f
commit
2cba1d49f6
3 changed files with 75 additions and 60 deletions
|
@ -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, () =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue