mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-09 11:06:27 +00:00
A64: Implement CLS
This is not the cleanest implementation.
This commit is contained in:
@@ -19,6 +19,16 @@ bool TranslatorVisitor::CLZ_int(bool sf, Reg Rn, Reg Rd) {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::CLS_int(bool sf, Reg Rn, Reg Rd) {
|
||||
const size_t datasize = sf ? 64 : 32;
|
||||
|
||||
const IR::U32U64 operand = X(datasize, Rn);
|
||||
const IR::U32U64 result = ir.Sub(ir.CountLeadingZeros(ir.Eor(operand, ir.ArithmeticShiftRight(operand, ir.Imm8(u8(datasize))))), I(datasize, 1));
|
||||
|
||||
X(datasize, Rd, result);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::REV(bool sf, bool opc_0, Reg Rn, Reg Rd) {
|
||||
const size_t datasize = sf ? 64 : 32;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user