mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-10 15:46:27 +00:00
ir: Add opcode for reversing bits in a vector
This commit is contained in:
@@ -1143,6 +1143,10 @@ U128 IREmitter::VectorPopulationCount(const U128& a) {
|
||||
return Inst<U128>(Opcode::VectorPopulationCount, a);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorReverseBits(const U128& a) {
|
||||
return Inst<U128>(Opcode::VectorReverseBits, a);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorShuffleHighHalfwords(const U128& a, u8 mask) {
|
||||
return Inst<U128>(Opcode::VectorShuffleHighHalfwords, a, mask);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user