mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 06:47:58 -05:00
Implement 128 bits Unsigned Integer Multiplication and Division.
This commit is contained in:
committed by
FernandoS27
parent
5b7ec71fb7
commit
3ea48e8ebe
18
src/common/uint128.cpp
Normal file
18
src/common/uint128.cpp
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
namespace Common {
|
||||
|
||||
std::pair<u64, u64> udiv128(u128 dividend, u64 divisor) {
|
||||
u64 remainder = dividend[0] % divisor;
|
||||
u64 accum = dividend[0] / divisor;
|
||||
if (dividend[1] == 0)
|
||||
return {accum, remainder};
|
||||
// We ignore dividend[1] / divisor as that overflows
|
||||
u64 first_segment = (dividend[1] % divisor) << 32;
|
||||
accum += (first_segment / divisor) << 32;
|
||||
u64 second_segment = (first_segment % divisor) << 32;
|
||||
accum += (second_segment / divisor);
|
||||
remainder += second_segment % divisor;
|
||||
return {accum, remainder};
|
||||
}
|
||||
|
||||
} // namespace Common
|
Reference in New Issue
Block a user