A64: Implement SIMD instruction USRA, vector variant
This commit is contained in:
parent
fb9d20f27f
commit
3f93c77ace
2 changed files with 22 additions and 1 deletions
|
@ -792,7 +792,7 @@ INST(SHL_2, "SHL", "0Q001
|
|||
//INST(SCVTF_fix_2, "SCVTF (vector, fixed-point)", "0Q0011110IIIIiii111001nnnnnddddd")
|
||||
//INST(FCVTZS_fix_2, "FCVTZS (vector, fixed-point)", "0Q0011110IIIIiii111111nnnnnddddd")
|
||||
INST(USHR_2, "USHR", "0Q1011110IIIIiii000001nnnnnddddd")
|
||||
//INST(USRA_2, "USRA", "0Q1011110IIIIiii000101nnnnnddddd")
|
||||
INST(USRA_2, "USRA", "0Q1011110IIIIiii000101nnnnnddddd")
|
||||
//INST(URSHR_2, "URSHR", "0Q1011110IIIIiii001001nnnnnddddd")
|
||||
//INST(URSRA_2, "URSRA", "0Q1011110IIIIiii001101nnnnnddddd")
|
||||
//INST(SRI_2, "SRI", "0Q1011110IIIIiii010001nnnnnddddd")
|
||||
|
|
|
@ -47,6 +47,27 @@ bool TranslatorVisitor::USHR_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::USRA_2(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) {
|
||||
if (immh == 0b0000) {
|
||||
return DecodeError();
|
||||
}
|
||||
if (immh.Bit<3>() && !Q) {
|
||||
return ReservedValue();
|
||||
}
|
||||
const size_t esize = 8 << Common::HighestSetBit(immh.ZeroExtend());
|
||||
const size_t datasize = Q ? 128 : 64;
|
||||
|
||||
const u8 shift_amount = static_cast<u8>(2 * esize) - concatenate(immh, immb).ZeroExtend<u8>();
|
||||
|
||||
const IR::U128 operand = V(datasize, Vn);
|
||||
const IR::U128 operand2 = V(datasize, Vd);
|
||||
const IR::U128 shifted_operand = ir.VectorLogicalShiftRight(esize, operand, shift_amount);
|
||||
const IR::U128 result = ir.VectorAdd(esize, shifted_operand, operand2);
|
||||
|
||||
V(datasize, Vd, result);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::USHLL(bool Q, Imm<4> immh, Imm<3> immb, Vec Vn, Vec Vd) {
|
||||
if (immh == 0b0000) {
|
||||
return DecodeError();
|
||||
|
|
Loading…
Reference in a new issue