mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-09 06:36:27 +00:00
A64: Implement PMULL{2}
This commit is contained in:
@@ -1198,6 +1198,18 @@ U128 IREmitter::VectorPolynomialMultiply(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorPolynomialMultiply8, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorPolynomialMultiplyLong(size_t esize, const U128& a, const U128& b) {
|
||||
switch (esize) {
|
||||
case 8:
|
||||
return Inst<U128>(Opcode::VectorPolynomialMultiplyLong8, a, b);
|
||||
case 64:
|
||||
return Inst<U128>(Opcode::VectorPolynomialMultiplyLong64, a, b);
|
||||
default:
|
||||
UNREACHABLE();
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorPopulationCount(const U128& a) {
|
||||
return Inst<U128>(Opcode::VectorPopulationCount, a);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user