mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-18 22:42:58 +00:00
A64: Implement ZIP1
This commit is contained in:
@@ -865,6 +865,22 @@ U128 IREmitter::VectorEqual128(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorEqual128, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorInterleaveLower8(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorInterleaveLower8, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorInterleaveLower16(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorInterleaveLower16, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorInterleaveLower32(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorInterleaveLower32, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorInterleaveLower64(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorInterleaveLower64, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorLowerPairedAdd8(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorLowerPairedAdd8, a, b);
|
||||
}
|
||||
|
||||
@@ -227,6 +227,10 @@ public:
|
||||
U128 VectorEqual32(const U128& a, const U128& b);
|
||||
U128 VectorEqual64(const U128& a, const U128& b);
|
||||
U128 VectorEqual128(const U128& a, const U128& b);
|
||||
U128 VectorInterleaveLower8(const U128& a, const U128& b);
|
||||
U128 VectorInterleaveLower16(const U128& a, const U128& b);
|
||||
U128 VectorInterleaveLower32(const U128& a, const U128& b);
|
||||
U128 VectorInterleaveLower64(const U128& a, const U128& b);
|
||||
U128 VectorLowerPairedAdd8(const U128& a, const U128& b);
|
||||
U128 VectorLowerPairedAdd16(const U128& a, const U128& b);
|
||||
U128 VectorLowerPairedAdd32(const U128& a, const U128& b);
|
||||
|
||||
@@ -218,6 +218,10 @@ OPCODE(VectorEqual16, T::U128, T::U128, T::U128
|
||||
OPCODE(VectorEqual32, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorEqual64, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorEqual128, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorInterleaveLower8, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorInterleaveLower16, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorInterleaveLower32, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorInterleaveLower64, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorLowerPairedAdd8, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorLowerPairedAdd16, T::U128, T::U128, T::U128 )
|
||||
OPCODE(VectorLowerPairedAdd32, T::U128, T::U128, T::U128 )
|
||||
|
||||
Reference in New Issue
Block a user