A64: Implement SSUBW/SSUBW2

This commit is contained in:
Lioncash
2018-04-02 20:13:04 -04:00
committed by MerryMage
parent 00af6eeab9
commit e20fce6b5a
3 changed files with 18 additions and 2 deletions

View File

@@ -805,7 +805,7 @@ struct TranslatorVisitor final {
bool SADDL(bool Q, Imm<2> size, Reg Rm, Reg Rn, Vec Vd);
bool SADDW(bool Q, Imm<2> size, Vec Vm, Vec Vn, Vec Vd);
bool SSUBL(bool Q, Imm<2> size, Reg Rm, Reg Rn, Vec Vd);
bool SSUBW(bool Q, Imm<2> size, Reg Rm, Vec Vn, Vec Vd);
bool SSUBW(bool Q, Imm<2> size, Vec Vm, Vec Vn, Vec Vd);
bool ADDHN(bool Q, Imm<2> size, Vec Vm, Vec Vn, Reg Rd);
bool SABAL(bool Q, Imm<2> size, Reg Rm, Reg Rn, Vec Vd);
bool SUBHN(bool Q, Imm<2> size, Vec Vm, Vec Vn, Reg Rd);