mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-11 09:30:00 +01:00
thumb32: Implement QDSUB
This commit is contained in:
parent
c60cf921ee
commit
d96c8c662b
@ -278,7 +278,7 @@ std::optional<std::reference_wrapper<const Thumb32Matcher<V>>> DecodeThumb32(u32
|
|||||||
//INST(&V::thumb32_QADD, "QADD", "111110101000----1111----1000----"),
|
//INST(&V::thumb32_QADD, "QADD", "111110101000----1111----1000----"),
|
||||||
//INST(&V::thumb32_QDADD, "QDADD", "111110101000----1111----1001----"),
|
//INST(&V::thumb32_QDADD, "QDADD", "111110101000----1111----1001----"),
|
||||||
//INST(&V::thumb32_QSUB, "QSUB", "111110101000----1111----1010----"),
|
//INST(&V::thumb32_QSUB, "QSUB", "111110101000----1111----1010----"),
|
||||||
//INST(&V::thumb32_QDSUB, "QDSUB", "111110101000----1111----1011----"),
|
INST(&V::thumb32_QDSUB, "QDSUB", "111110101000nnnn1111dddd1011mmmm"),
|
||||||
INST(&V::thumb32_REV, "REV", "111110101001nnnn1111dddd1000mmmm"),
|
INST(&V::thumb32_REV, "REV", "111110101001nnnn1111dddd1000mmmm"),
|
||||||
INST(&V::thumb32_REV16, "REV16", "111110101001nnnn1111dddd1001mmmm"),
|
INST(&V::thumb32_REV16, "REV16", "111110101001nnnn1111dddd1001mmmm"),
|
||||||
INST(&V::thumb32_RBIT, "RBIT", "111110101001nnnn1111dddd1010mmmm"),
|
INST(&V::thumb32_RBIT, "RBIT", "111110101001nnnn1111dddd1010mmmm"),
|
||||||
|
|||||||
@ -19,6 +19,22 @@ bool ThumbTranslatorVisitor::thumb32_CLZ(Reg n, Reg d, Reg m) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ThumbTranslatorVisitor::thumb32_QDSUB(Reg n, Reg d, Reg m) {
|
||||||
|
if (d == Reg::PC || n == Reg::PC || m == Reg::PC) {
|
||||||
|
return UnpredictableInstruction();
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto reg_m = ir.GetRegister(m);
|
||||||
|
const auto reg_n = ir.GetRegister(n);
|
||||||
|
const auto doubled_n = ir.SignedSaturatedAdd(reg_n, reg_n);
|
||||||
|
ir.OrQFlag(doubled_n.overflow);
|
||||||
|
|
||||||
|
const auto result = ir.SignedSaturatedSub(reg_m, doubled_n.result);
|
||||||
|
ir.SetRegister(d, result.result);
|
||||||
|
ir.OrQFlag(result.overflow);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool ThumbTranslatorVisitor::thumb32_RBIT(Reg n, Reg d, Reg m) {
|
bool ThumbTranslatorVisitor::thumb32_RBIT(Reg n, Reg d, Reg m) {
|
||||||
if (m != n || d == Reg::PC || m == Reg::PC) {
|
if (m != n || d == Reg::PC || m == Reg::PC) {
|
||||||
return UnpredictableInstruction();
|
return UnpredictableInstruction();
|
||||||
|
|||||||
@ -118,6 +118,7 @@ struct ThumbTranslatorVisitor final {
|
|||||||
|
|
||||||
// thumb32 miscellaneous instructions
|
// thumb32 miscellaneous instructions
|
||||||
bool thumb32_CLZ(Reg n, Reg d, Reg m);
|
bool thumb32_CLZ(Reg n, Reg d, Reg m);
|
||||||
|
bool thumb32_QDSUB(Reg n, Reg d, Reg m);
|
||||||
bool thumb32_RBIT(Reg n, Reg d, Reg m);
|
bool thumb32_RBIT(Reg n, Reg d, Reg m);
|
||||||
bool thumb32_REV(Reg n, Reg d, Reg m);
|
bool thumb32_REV(Reg n, Reg d, Reg m);
|
||||||
bool thumb32_REV16(Reg n, Reg d, Reg m);
|
bool thumb32_REV16(Reg n, Reg d, Reg m);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user