2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-02-19 17:05:26 +00:00
|
|
|
|
2014-02-20 03:11:52 +00:00
|
|
|
// IWYU pragma: private, include "Common/Atomic.h"
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-02-19 17:05:26 +00:00
|
|
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
2018-05-09 15:33:11 +00:00
|
|
|
#include <atomic>
|
2017-01-23 07:08:45 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2010-02-19 17:05:26 +00:00
|
|
|
// Atomic operations are performed in a single step by the CPU. It is
|
|
|
|
// impossible for other threads to see the operation "half-done."
|
|
|
|
//
|
|
|
|
// Some atomic operations can be combined with different types of memory
|
|
|
|
// barriers called "Acquire semantics" and "Release semantics", defined below.
|
|
|
|
//
|
|
|
|
// Acquire semantics: Future memory accesses cannot be relocated to before the
|
|
|
|
// operation.
|
|
|
|
//
|
|
|
|
// Release semantics: Past memory accesses cannot be relocated to after the
|
|
|
|
// operation.
|
|
|
|
//
|
|
|
|
// These barriers affect not only the compiler, but also the CPU.
|
|
|
|
//
|
|
|
|
// NOTE: Acquire and Release are not differentiated right now. They perform a
|
|
|
|
// full memory barrier instead of a "one-way" memory barrier. The newest
|
|
|
|
// Windows SDK has Acquire and Release versions of some Interlocked* functions.
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicAdd(volatile u32& target, u32 value)
|
|
|
|
{
|
2013-09-22 20:07:45 +00:00
|
|
|
_InterlockedExchangeAdd((volatile LONG*)&target, (LONG)value);
|
2010-02-19 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicAnd(volatile u32& target, u32 value)
|
|
|
|
{
|
2010-02-19 17:05:26 +00:00
|
|
|
_InterlockedAnd((volatile LONG*)&target, (LONG)value);
|
|
|
|
}
|
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicIncrement(volatile u32& target)
|
|
|
|
{
|
2013-09-22 20:07:45 +00:00
|
|
|
_InterlockedIncrement((volatile LONG*)&target);
|
2010-02-19 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicDecrement(volatile u32& target)
|
|
|
|
{
|
2013-09-22 20:07:45 +00:00
|
|
|
_InterlockedDecrement((volatile LONG*)&target);
|
2010-04-14 13:57:16 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicOr(volatile u32& target, u32 value)
|
|
|
|
{
|
2013-09-22 20:07:45 +00:00
|
|
|
_InterlockedOr((volatile LONG*)&target, (LONG)value);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2014-08-30 20:14:56 +00:00
|
|
|
inline T AtomicLoad(volatile T& src)
|
|
|
|
{
|
2010-02-19 17:05:26 +00:00
|
|
|
return src; // 32-bit reads are always atomic.
|
|
|
|
}
|
2013-09-22 20:07:45 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2014-08-30 20:14:56 +00:00
|
|
|
inline T AtomicLoadAcquire(volatile T& src)
|
|
|
|
{
|
2018-05-09 15:33:11 +00:00
|
|
|
// 32-bit reads are always atomic.
|
|
|
|
T result = src;
|
|
|
|
// Compiler instruction only. x86 loads always have acquire semantics.
|
|
|
|
std::atomic_thread_fence(std::memory_order_acquire);
|
2010-02-19 17:05:26 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-09-22 20:07:45 +00:00
|
|
|
template <typename T, typename U>
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicStore(volatile T& dest, U value)
|
|
|
|
{
|
2013-09-22 20:07:45 +00:00
|
|
|
dest = (T)value; // 32-bit writes are always atomic.
|
2010-02-19 17:05:26 +00:00
|
|
|
}
|
|
|
|
|
2013-09-22 20:07:45 +00:00
|
|
|
template <typename T, typename U>
|
2014-08-30 20:14:56 +00:00
|
|
|
inline void AtomicStoreRelease(volatile T& dest, U value)
|
|
|
|
{
|
2018-05-09 15:33:11 +00:00
|
|
|
// Compiler instruction only. x86 stores always have release semantics.
|
|
|
|
std::atomic_thread_fence(std::memory_order_release);
|
2013-09-22 20:07:45 +00:00
|
|
|
dest = (T)value; // 32-bit writes are always atomic.
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename U>
|
2014-08-30 20:14:56 +00:00
|
|
|
inline T* AtomicExchangeAcquire(T* volatile& loc, U newval)
|
|
|
|
{
|
2013-09-22 20:07:45 +00:00
|
|
|
return (T*)_InterlockedExchangePointer_acq((void* volatile*)&loc, (void*)newval);
|
2010-02-19 17:05:26 +00:00
|
|
|
}
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace Common
|