A64: Implement CLZ's vector variant
This commit is contained in:
parent
e739624296
commit
112cff9ab9
2 changed files with 20 additions and 1 deletions
|
@ -616,7 +616,7 @@ INST(FRECPE_4, "FRECPE", "0Q001
|
|||
INST(REV32_asimd, "REV32 (vector)", "0Q101110zz100000000010nnnnnddddd")
|
||||
INST(UADDLP, "UADDLP", "0Q101110zz100000001010nnnnnddddd")
|
||||
INST(USQADD_2, "USQADD", "0Q101110zz100000001110nnnnnddddd")
|
||||
//INST(CLZ_asimd, "CLZ (vector)", "0Q101110zz100000010010nnnnnddddd")
|
||||
INST(CLZ_asimd, "CLZ (vector)", "0Q101110zz100000010010nnnnnddddd")
|
||||
INST(UADALP, "UADALP", "0Q101110zz100000011010nnnnnddddd")
|
||||
INST(SQNEG_2, "SQNEG", "0Q101110zz100000011110nnnnnddddd")
|
||||
INST(CMGE_zero_2, "CMGE (zero)", "0Q101110zz100000100010nnnnnddddd")
|
||||
|
|
|
@ -193,6 +193,25 @@ bool PairedAddLong(TranslatorVisitor& v, bool Q, Imm<2> size, Vec Vn, Vec Vd, Si
|
|||
|
||||
} // Anonymous namespace
|
||||
|
||||
bool TranslatorVisitor::CLZ_asimd(bool Q, Imm<2> size, Vec Vn, Vec Vd) {
|
||||
if (size == 0b11) {
|
||||
return ReservedValue();
|
||||
}
|
||||
|
||||
const size_t esize = 8 << size.ZeroExtend();
|
||||
const size_t datasize = Q ? 128 : 64;
|
||||
|
||||
const IR::U128 operand = V(datasize, Vn);
|
||||
IR::U128 result = ir.VectorCountLeadingZeros(esize, operand);
|
||||
|
||||
if (datasize == 64) {
|
||||
result = ir.VectorZeroUpper(result);
|
||||
}
|
||||
|
||||
V(datasize, Vd, result);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::CNT(bool Q, Imm<2> size, Vec Vn, Vec Vd) {
|
||||
if (size != 0b00) {
|
||||
return ReservedValue();
|
||||
|
|
Loading…
Reference in a new issue