PPU: some instructions replaced

This commit is contained in:
Nekotekina
2015-04-01 17:01:04 +03:00
parent 72fdcf120c
commit 6b9a6c50fe
2 changed files with 42 additions and 261 deletions
+10
View File
@@ -354,6 +354,16 @@ union _CRT_ALIGN(16) u128
return from64(~_u64[0], ~_u64[1]);
}
__forceinline bool test() const
{
return _u64[0] || _u64[1];
}
__forceinline bool inv_test() const
{
return ~_u64[0] || ~_u64[1];
}
// result = (~left) & (right)
static __forceinline u128 andnot(const u128& left, const u128& right)
{