summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-02-16 00:26:41 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2019-02-16 03:55:31 +0100
commit3ea48e8ebe25686f2342cd79b32409fcd1bccb28 (patch)
treec9e5c3da2dec7ad2ef371a0d6fcd8c9cc11dc729
parentCorrect CNTPCT to use Clock Cycles instead of Cpu Cycles. (diff)
downloadyuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.tar
yuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.tar.gz
yuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.tar.bz2
yuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.tar.lz
yuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.tar.xz
yuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.tar.zst
yuzu-3ea48e8ebe25686f2342cd79b32409fcd1bccb28.zip
-rw-r--r--src/common/CMakeLists.txt2
-rw-r--r--src/common/uint128.cpp18
-rw-r--r--src/common/uint128.h30
3 files changed, 50 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index bdd885273..b0174b445 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -113,6 +113,8 @@ add_library(common STATIC
threadsafe_queue.h
timer.cpp
timer.h
+ uint128.cpp
+ uint128.h
vector_math.h
web_result.h
)
diff --git a/src/common/uint128.cpp b/src/common/uint128.cpp
new file mode 100644
index 000000000..aea7f03e2
--- /dev/null
+++ b/src/common/uint128.cpp
@@ -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
diff --git a/src/common/uint128.h b/src/common/uint128.h
new file mode 100644
index 000000000..fda313bcc
--- /dev/null
+++ b/src/common/uint128.h
@@ -0,0 +1,30 @@
+#include <array>
+#include <cstdint>
+#include <utility>
+#include <cstring>
+#include "common/common_types.h"
+
+namespace Common {
+
+#ifdef _MSC_VER
+#include <intrin.h>
+
+#pragma intrinsic(_umul128)
+#endif
+
+inline u128 umul128(u64 a, u64 b) {
+#ifdef _MSC_VER
+u128 result;
+result[0] = _umul128(a, b, &result[1]);
+#else
+unsigned __int128 tmp = a;
+tmp *= b;
+u128 result;
+std::memcpy(&result, &tmp, sizeof(u128));
+#endif
+return result;
+}
+
+std::pair<u64, u64> udiv128(u128 dividend, u64 divisor);
+
+} // namespace Common