mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 07:28:09 +01:00
IR: Implement Vector{Less,Greater}{,Equal}{Signed,Unsigned}
This commit is contained in:
parent
0df6725f73
commit
e2b9b7c5b0
2 changed files with 35 additions and 0 deletions
|
|
@ -215,8 +215,15 @@ public:
|
|||
U128 VectorBroadcastLower(size_t esize, const UAny& a);
|
||||
U128 VectorEor(const U128& a, const U128& b);
|
||||
U128 VectorEqual(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorGreaterEqualSigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorGreaterEqualUnsigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorGreaterSigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorGreaterUnsigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorInterleaveLower(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorLessEqualSigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorLessEqualUnsigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorLessSigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorLessUnsigned(size_t esize, const U128& a, const U128& b);
|
||||
U128 VectorLogicalShiftLeft(size_t esize, const U128& a, u8 shift_amount);
|
||||
U128 VectorLogicalShiftRight(size_t esize, const U128& a, u8 shift_amount);
|
||||
U128 VectorMaxSigned(size_t esize, const U128& a, const U128& b);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue