mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 14:08:17 +01:00
A64: Implement SADDLP
This commit is contained in:
parent
70ff2d73b5
commit
9dba273a8c
6 changed files with 91 additions and 8 deletions
|
|
@ -1168,6 +1168,19 @@ U128 IREmitter::VectorPairedAddLower(size_t esize, const U128& a, const U128& b)
|
|||
return {};
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorPairedAddSignedWiden(size_t original_esize, const U128& a) {
|
||||
switch (original_esize) {
|
||||
case 8:
|
||||
return Inst<U128>(Opcode::VectorPairedAddSignedWiden8, a);
|
||||
case 16:
|
||||
return Inst<U128>(Opcode::VectorPairedAddSignedWiden16, a);
|
||||
case 32:
|
||||
return Inst<U128>(Opcode::VectorPairedAddSignedWiden32, a);
|
||||
}
|
||||
UNREACHABLE();
|
||||
return {};
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorPairedAddUnsignedWiden(size_t original_esize, const U128& a) {
|
||||
switch (original_esize) {
|
||||
case 8:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue