Update AInstEmitSimdArithmetic.cs
This commit is contained in:
parent
137315d286
commit
c5ff4fac01
1 changed files with 15 additions and 0 deletions
|
@ -1032,6 +1032,11 @@ namespace ChocolArm64.Instruction
|
||||||
EmitAddLongPairwise(Context, Signed: true, Accumulate: true);
|
EmitAddLongPairwise(Context, Signed: true, Accumulate: true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void Saddl_V(AILEmitterCtx Context)
|
||||||
|
{
|
||||||
|
EmitVectorWidenRnRmBinaryOpSx(Context, () => Context.Emit(OpCodes.Add));
|
||||||
|
}
|
||||||
|
|
||||||
public static void Saddlp_V(AILEmitterCtx Context)
|
public static void Saddlp_V(AILEmitterCtx Context)
|
||||||
{
|
{
|
||||||
EmitAddLongPairwise(Context, Signed: true, Accumulate: false);
|
EmitAddLongPairwise(Context, Signed: true, Accumulate: false);
|
||||||
|
@ -1217,6 +1222,11 @@ namespace ChocolArm64.Instruction
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void Ssubl_V(AILEmitterCtx Context)
|
||||||
|
{
|
||||||
|
EmitVectorWidenRnRmBinaryOpSx(Context, () => Context.Emit(OpCodes.Sub));
|
||||||
|
}
|
||||||
|
|
||||||
public static void Ssubw_V(AILEmitterCtx Context)
|
public static void Ssubw_V(AILEmitterCtx Context)
|
||||||
{
|
{
|
||||||
EmitVectorWidenRmBinaryOpSx(Context, () => Context.Emit(OpCodes.Sub));
|
EmitVectorWidenRmBinaryOpSx(Context, () => Context.Emit(OpCodes.Sub));
|
||||||
|
@ -1468,6 +1478,11 @@ namespace ChocolArm64.Instruction
|
||||||
EmitVectorSaturatingBinaryOpZx(Context, SaturatingFlags.Accumulate);
|
EmitVectorSaturatingBinaryOpZx(Context, SaturatingFlags.Accumulate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void Usubl_V(AILEmitterCtx Context)
|
||||||
|
{
|
||||||
|
EmitVectorWidenRnRmBinaryOpZx(Context, () => Context.Emit(OpCodes.Sub));
|
||||||
|
}
|
||||||
|
|
||||||
public static void Usubw_V(AILEmitterCtx Context)
|
public static void Usubw_V(AILEmitterCtx Context)
|
||||||
{
|
{
|
||||||
EmitVectorWidenRmBinaryOpZx(Context, () => Context.Emit(OpCodes.Sub));
|
EmitVectorWidenRmBinaryOpZx(Context, () => Context.Emit(OpCodes.Sub));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue