mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
366 lines
9.4 KiB
C++
366 lines
9.4 KiB
C++
#pragma once
|
|
|
|
#undef InterlockedExchange
|
|
#undef InterlockedCompareExchange
|
|
#undef InterlockedOr
|
|
#undef InterlockedAnd
|
|
#undef InterlockedXor
|
|
|
|
template<typename T, size_t size = sizeof(T)>
|
|
struct _to_atomic_subtype
|
|
{
|
|
static_assert(size == 1 || size == 2 || size == 4 || size == 8 || size == 16, "Invalid atomic type");
|
|
};
|
|
|
|
template<typename T>
|
|
struct _to_atomic_subtype<T, 1>
|
|
{
|
|
using type = uint8_t;
|
|
};
|
|
|
|
template<typename T>
|
|
struct _to_atomic_subtype<T, 2>
|
|
{
|
|
using type = uint16_t;
|
|
};
|
|
|
|
template<typename T>
|
|
struct _to_atomic_subtype<T, 4>
|
|
{
|
|
using type = uint32_t;
|
|
};
|
|
|
|
template<typename T>
|
|
struct _to_atomic_subtype<T, 8>
|
|
{
|
|
using type = uint64_t;
|
|
};
|
|
|
|
template<typename T>
|
|
struct _to_atomic_subtype<T, 16>
|
|
{
|
|
using type = u128;
|
|
};
|
|
|
|
template<typename T>
|
|
union _atomic_base
|
|
{
|
|
using type = typename std::remove_cv<T>::type;
|
|
using subtype = typename _to_atomic_subtype<type, sizeof(type)>::type;
|
|
|
|
type data; // unsafe direct access
|
|
subtype sub_data; // unsafe direct access to substitute type
|
|
|
|
__forceinline static const subtype to_subtype(const type& value)
|
|
{
|
|
return reinterpret_cast<const subtype&>(value);
|
|
}
|
|
|
|
__forceinline static const type from_subtype(const subtype value)
|
|
{
|
|
return reinterpret_cast<const type&>(value);
|
|
}
|
|
|
|
__forceinline static type& to_type(subtype& value)
|
|
{
|
|
return reinterpret_cast<type&>(value);
|
|
}
|
|
|
|
public:
|
|
// atomically compare data with cmp, replace with exch if equal, return previous data value anyway
|
|
__forceinline const type compare_and_swap(const type& cmp, const type& exch) volatile
|
|
{
|
|
return from_subtype(InterlockedCompareExchange(&sub_data, to_subtype(exch), to_subtype(cmp)));
|
|
}
|
|
|
|
// atomically compare data with cmp, replace with exch if equal, return true if data was replaced
|
|
__forceinline bool compare_and_swap_test(const type& cmp, const type& exch) volatile
|
|
{
|
|
return InterlockedCompareExchangeTest(&sub_data, to_subtype(exch), to_subtype(cmp));
|
|
}
|
|
|
|
// read data with memory barrier
|
|
__forceinline const type read_sync() const volatile
|
|
{
|
|
return from_subtype(InterlockedCompareExchange(const_cast<subtype*>(&sub_data), 0, 0));
|
|
}
|
|
|
|
// atomically replace data with exch, return previous data value
|
|
__forceinline const type exchange(const type& exch) volatile
|
|
{
|
|
return from_subtype(InterlockedExchange(&sub_data, to_subtype(exch)));
|
|
}
|
|
|
|
// read data without memory barrier
|
|
__forceinline const type read_relaxed() const volatile
|
|
{
|
|
const subtype value = const_cast<const subtype&>(sub_data);
|
|
return from_subtype(value);
|
|
}
|
|
|
|
// write data without memory barrier
|
|
__forceinline void write_relaxed(const type& value) volatile
|
|
{
|
|
const_cast<subtype&>(sub_data) = to_subtype(value);
|
|
}
|
|
|
|
// perform atomic operation on data
|
|
template<typename FT> __forceinline void atomic_op(const FT atomic_proc) volatile
|
|
{
|
|
while (true)
|
|
{
|
|
const subtype old = const_cast<const subtype&>(sub_data);
|
|
subtype _new = old;
|
|
atomic_proc(to_type(_new)); // function should accept reference to T type
|
|
if (InterlockedCompareExchangeTest(&sub_data, _new, old)) return;
|
|
}
|
|
}
|
|
|
|
// perform atomic operation on data with special exit condition (if intermediate result != proceed_value)
|
|
template<typename RT, typename FT> __forceinline RT atomic_op(const RT proceed_value, const FT atomic_proc) volatile
|
|
{
|
|
while (true)
|
|
{
|
|
const subtype old = const_cast<const subtype&>(sub_data);
|
|
subtype _new = old;
|
|
auto res = static_cast<RT>(atomic_proc(to_type(_new))); // function should accept reference to T type and return some value
|
|
if (res != proceed_value) return res;
|
|
if (InterlockedCompareExchangeTest(&sub_data, _new, old)) return proceed_value;
|
|
}
|
|
}
|
|
|
|
// perform atomic operation on data with additional memory barrier
|
|
template<typename FT> __forceinline void atomic_op_sync(const FT atomic_proc) volatile
|
|
{
|
|
subtype old = InterlockedCompareExchange(&sub_data, 0, 0);
|
|
while (true)
|
|
{
|
|
subtype _new = old;
|
|
atomic_proc(to_type(_new)); // function should accept reference to T type
|
|
const subtype val = InterlockedCompareExchange(&sub_data, _new, old);
|
|
if (val == old) return;
|
|
old = val;
|
|
}
|
|
}
|
|
|
|
// perform atomic operation on data with additional memory barrier and special exit condition (if intermediate result != proceed_value)
|
|
template<typename RT, typename FT> __forceinline RT atomic_op_sync(const RT proceed_value, const FT atomic_proc) volatile
|
|
{
|
|
subtype old = InterlockedCompareExchange(&sub_data, 0, 0);
|
|
while (true)
|
|
{
|
|
subtype _new = old;
|
|
auto res = static_cast<RT>(atomic_proc(to_type(_new))); // function should accept reference to T type and return some value
|
|
if (res != proceed_value) return res;
|
|
const subtype val = InterlockedCompareExchange(&sub_data, _new, old);
|
|
if (val == old) return proceed_value;
|
|
old = val;
|
|
}
|
|
}
|
|
|
|
// atomic bitwise OR, returns previous data
|
|
__forceinline const type _or(const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedOr(&sub_data, to_subtype(right)));
|
|
}
|
|
|
|
// atomic bitwise AND, returns previous data
|
|
__forceinline const type _and(const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedAnd(&sub_data, to_subtype(right)));
|
|
}
|
|
|
|
// atomic bitwise AND NOT (inverts right argument), returns previous data
|
|
__forceinline const type _and_not(const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedAnd(&sub_data, ~to_subtype(right)));
|
|
}
|
|
|
|
// atomic bitwise XOR, returns previous data
|
|
__forceinline const type _xor(const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedXor(&sub_data, to_subtype(right)));
|
|
}
|
|
|
|
__forceinline const type operator |= (const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedOr(&sub_data, to_subtype(right)) | to_subtype(right));
|
|
}
|
|
|
|
__forceinline const type operator &= (const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedAnd(&sub_data, to_subtype(right)) & to_subtype(right));
|
|
}
|
|
|
|
__forceinline const type operator ^= (const type& right) volatile
|
|
{
|
|
return from_subtype(InterlockedXor(&sub_data, to_subtype(right)) ^ to_subtype(right));
|
|
}
|
|
};
|
|
|
|
// Helper definitions
|
|
template<typename T, typename T2 = T> using if_arithmetic_t = typename std::enable_if<std::is_arithmetic<T>::value && std::is_arithmetic<T2>::value, T>::type;
|
|
template<typename T, typename T2 = T> using if_arithmetic_be_t = typename std::enable_if<std::is_arithmetic<T>::value && std::is_arithmetic<T2>::value, be_t<T>>::type;
|
|
template<typename T, typename T2 = T> using if_arithmetic_atomic_t = typename std::enable_if<std::is_arithmetic<T>::value && std::is_arithmetic<T2>::value, _atomic_base<T>>::type;
|
|
template<typename T, typename T2 = T> using if_arithmetic_atomic_be_t = typename std::enable_if<std::is_arithmetic<T>::value && std::is_arithmetic<T2>::value, _atomic_base<be_t<T>>>::type;
|
|
|
|
template<typename T> inline static if_arithmetic_t<T> operator ++(_atomic_base<T>& left)
|
|
{
|
|
T result;
|
|
|
|
left.atomic_op([&result](T& value)
|
|
{
|
|
result = ++value;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_t<T> operator --(_atomic_base<T>& left)
|
|
{
|
|
T result;
|
|
|
|
left.atomic_op([&result](T& value)
|
|
{
|
|
result = --value;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_t<T> operator ++(_atomic_base<T>& left, int)
|
|
{
|
|
T result;
|
|
|
|
left.atomic_op([&result](T& value)
|
|
{
|
|
result = value++;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_t<T> operator --(_atomic_base<T>& left, int)
|
|
{
|
|
T result;
|
|
|
|
left.atomic_op([&result](T& value)
|
|
{
|
|
result = value--;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T, typename T2> inline static if_arithmetic_t<T, T2> operator +=(_atomic_base<T>& left, T2 right)
|
|
{
|
|
T result;
|
|
|
|
left.atomic_op([&result, right](T& value)
|
|
{
|
|
result = (value += right);
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T, typename T2> inline static if_arithmetic_t<T, T2> operator -=(_atomic_base<T>& left, T2 right)
|
|
{
|
|
T result;
|
|
|
|
left.atomic_op([&result, right](T& value)
|
|
{
|
|
result = (value -= right);
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_be_t<T> operator ++(_atomic_base<be_t<T>>& left)
|
|
{
|
|
be_t<T> result;
|
|
|
|
left.atomic_op([&result](be_t<T>& value)
|
|
{
|
|
result = ++value;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_be_t<T> operator --(_atomic_base<be_t<T>>& left)
|
|
{
|
|
be_t<T> result;
|
|
|
|
left.atomic_op([&result](be_t<T>& value)
|
|
{
|
|
result = --value;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_be_t<T> operator ++(_atomic_base<be_t<T>>& left, int)
|
|
{
|
|
be_t<T> result;
|
|
|
|
left.atomic_op([&result](be_t<T>& value)
|
|
{
|
|
result = value++;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> inline static if_arithmetic_be_t<T> operator --(_atomic_base<be_t<T>>& left, int)
|
|
{
|
|
be_t<T> result;
|
|
|
|
left.atomic_op([&result](be_t<T>& value)
|
|
{
|
|
result = value--;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T, typename T2> inline static if_arithmetic_be_t<T, T2> operator +=(_atomic_base<be_t<T>>& left, T2 right)
|
|
{
|
|
be_t<T> result;
|
|
|
|
left.atomic_op([&result, right](be_t<T>& value)
|
|
{
|
|
result = (value += right);
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T, typename T2> inline static if_arithmetic_be_t<T, T2> operator -=(_atomic_base<be_t<T>>& left, T2 right)
|
|
{
|
|
be_t<T> result;
|
|
|
|
left.atomic_op([&result, right](be_t<T>& value)
|
|
{
|
|
result = (value -= right);
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
template<typename T> using atomic_le_t = _atomic_base<T>;
|
|
|
|
template<typename T> using atomic_be_t = _atomic_base<typename to_be_t<T>::type>;
|
|
|
|
namespace ps3
|
|
{
|
|
template<typename T> using atomic_t = atomic_be_t<T>;
|
|
}
|
|
|
|
namespace psv
|
|
{
|
|
template<typename T> using atomic_t = atomic_le_t<T>;
|
|
}
|
|
|
|
using namespace ps3;
|