mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-19 06:49:38 +00:00
IR: Implement IR instructions VectorEqual{8,16,32,64,128}
This commit is contained in:
@@ -745,6 +745,26 @@ U128 IREmitter::VectorBroadcast64(const U64& a) {
|
||||
return Inst<U128>(Opcode::VectorBroadcast64, a);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorEqual8(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorEqual8, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorEqual16(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorEqual16, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorEqual32(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorEqual32, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorEqual64(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorEqual64, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorEqual128(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorEqual128, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::VectorLowerPairedAdd8(const U128& a, const U128& b) {
|
||||
return Inst<U128>(Opcode::VectorLowerPairedAdd8, a, b);
|
||||
}
|
||||
|
||||
@@ -200,6 +200,11 @@ public:
|
||||
U128 VectorBroadcast16(const U16& a);
|
||||
U128 VectorBroadcast32(const U32& a);
|
||||
U128 VectorBroadcast64(const U64& a);
|
||||
U128 VectorEqual8(const U128& a, const U128& b);
|
||||
U128 VectorEqual16(const U128& a, const U128& b);
|
||||
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 VectorLowerPairedAdd8(const U128& a, const U128& b);
|
||||
U128 VectorLowerPairedAdd16(const U128& a, const U128& b);
|
||||
U128 VectorLowerPairedAdd32(const U128& a, const U128& b);
|
||||
|
||||
@@ -185,6 +185,11 @@ OPCODE(VectorBroadcast8, T::U128, T::U8
|
||||
OPCODE(VectorBroadcast16, T::U128, T::U16 )
|
||||
OPCODE(VectorBroadcast32, T::U128, T::U32 )
|
||||
OPCODE(VectorBroadcast64, T::U128, T::U64 )
|
||||
OPCODE(VectorEqual8, T::U128, T::U128, T::U128 )
|
||||
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(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