summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMerry <git@mary.rs>2024-01-27 22:42:16 +0100
committerMerry <git@mary.rs>2024-01-27 22:42:16 +0100
commit5a20d07c21b74181b88d76fda16fd83a4718ec49 (patch)
tree2fb00f327dcf51093b3c0a8c937c6104f3b834e4
parentatomic_ops: Remove volatile qualifier (diff)
downloadyuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.tar
yuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.tar.gz
yuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.tar.bz2
yuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.tar.lz
yuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.tar.xz
yuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.tar.zst
yuzu-5a20d07c21b74181b88d76fda16fd83a4718ec49.zip
-rw-r--r--src/common/atomic_ops.h34
1 files changed, 19 insertions, 15 deletions
diff --git a/src/common/atomic_ops.h b/src/common/atomic_ops.h
index 885fe3c4e..9bf6f2f81 100644
--- a/src/common/atomic_ops.h
+++ b/src/common/atomic_ops.h
@@ -20,28 +20,29 @@ template <typename T>
template <typename T>
[[nodiscard]] inline bool AtomicCompareAndSwap(T* pointer, T value, T expected, T& actual);
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u8>(u8* pointer, u8 value, u8 expected) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u8>(u8* pointer, u8 value, u8 expected) {
const u8 result =
_InterlockedCompareExchange8(reinterpret_cast<volatile char*>(pointer), value, expected);
return result == expected;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u16>(u16* pointer, u16 value,
- u16 expected) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u16>(u16* pointer, u16 value, u16 expected) {
const u16 result =
_InterlockedCompareExchange16(reinterpret_cast<volatile short*>(pointer), value, expected);
return result == expected;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u32>(u32* pointer, u32 value,
- u32 expected) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u32>(u32* pointer, u32 value, u32 expected) {
const u32 result =
_InterlockedCompareExchange(reinterpret_cast<volatile long*>(pointer), value, expected);
return result == expected;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u64>(u64* pointer, u64 value,
- u64 expected) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u64>(u64* pointer, u64 value, u64 expected) {
const u64 result = _InterlockedCompareExchange64(reinterpret_cast<volatile __int64*>(pointer),
value, expected);
return result == expected;
@@ -53,29 +54,32 @@ template [[nodiscard]] inline bool AtomicCompareAndSwap<u64>(u64* pointer, u64 v
reinterpret_cast<__int64*>(expected.data())) != 0;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u8>(u8* pointer, u8 value, u8 expected,
- u8& actual) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u8>(u8* pointer, u8 value, u8 expected, u8& actual) {
actual =
_InterlockedCompareExchange8(reinterpret_cast<volatile char*>(pointer), value, expected);
return actual == expected;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u16>(u16* pointer, u16 value, u16 expected,
- u16& actual) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u16>(u16* pointer, u16 value, u16 expected,
+ u16& actual) {
actual =
_InterlockedCompareExchange16(reinterpret_cast<volatile short*>(pointer), value, expected);
return actual == expected;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u32>(u32* pointer, u32 value, u32 expected,
- u32& actual) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u32>(u32* pointer, u32 value, u32 expected,
+ u32& actual) {
actual =
_InterlockedCompareExchange(reinterpret_cast<volatile long*>(pointer), value, expected);
return actual == expected;
}
-template [[nodiscard]] inline bool AtomicCompareAndSwap<u64>(u64* pointer, u64 value, u64 expected,
- u64& actual) {
+template <>
+[[nodiscard]] inline bool AtomicCompareAndSwap<u64>(u64* pointer, u64 value, u64 expected,
+ u64& actual) {
actual = _InterlockedCompareExchange64(reinterpret_cast<volatile __int64*>(pointer), value,
expected);
return actual == expected;