mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-30 02:17:10 +02:00
Add FRINTM (vector) instruction
This commit is contained in:
parent
4811d1acb1
commit
aefc052a40
3 changed files with 14 additions and 0 deletions
|
@ -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, () =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue