mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 14:45:41 +12:00
* PCSX2 fastmem depression * Move away from PCSX2 fastmem * Add enum_flag_ops.hpp * Finally building on Windows * Almost got a PoC * Fix arm64 builds * This somehow works * This also works... * Properly fix fastmem * Add free region manager * Update boost * Add ScopeExit * Comment out asserts on Linux/Mac/Android * Comment out ASSERT_MSG asserts too * Fix derp * Attempt to fix Android * Disable fastmem on Android * Fix Android again maybe pt 2 * android pls * AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA * AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA * Update host_memory.cpp * Properly reset memory arena on reset * Proper ashmem code for Android * more * Add temporary Android buildjet script for faster prototype builds * Fix fastmem (again) * Clean up shared memory
60 lines
No EOL
3.8 KiB
C++
60 lines
No EOL
3.8 KiB
C++
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
#define DECLARE_ENUM_FLAG_OPERATORS(type) \
|
|
[[nodiscard]] constexpr type operator|(type a, type b) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<type>(static_cast<T>(a) | static_cast<T>(b)); \
|
|
} \
|
|
[[nodiscard]] constexpr type operator&(type a, type b) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<type>(static_cast<T>(a) & static_cast<T>(b)); \
|
|
} \
|
|
[[nodiscard]] constexpr type operator^(type a, type b) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<type>(static_cast<T>(a) ^ static_cast<T>(b)); \
|
|
} \
|
|
[[nodiscard]] constexpr type operator<<(type a, type b) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<type>(static_cast<T>(a) << static_cast<T>(b)); \
|
|
} \
|
|
[[nodiscard]] constexpr type operator>>(type a, type b) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<type>(static_cast<T>(a) >> static_cast<T>(b)); \
|
|
} \
|
|
constexpr type& operator|=(type& a, type b) noexcept { \
|
|
a = a | b; \
|
|
return a; \
|
|
} \
|
|
constexpr type& operator&=(type& a, type b) noexcept { \
|
|
a = a & b; \
|
|
return a; \
|
|
} \
|
|
constexpr type& operator^=(type& a, type b) noexcept { \
|
|
a = a ^ b; \
|
|
return a; \
|
|
} \
|
|
constexpr type& operator<<=(type& a, type b) noexcept { \
|
|
a = a << b; \
|
|
return a; \
|
|
} \
|
|
constexpr type& operator>>=(type& a, type b) noexcept { \
|
|
a = a >> b; \
|
|
return a; \
|
|
} \
|
|
[[nodiscard]] constexpr type operator~(type key) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<type>(~static_cast<T>(key)); \
|
|
} \
|
|
[[nodiscard]] constexpr bool True(type key) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<T>(key) != 0; \
|
|
} \
|
|
[[nodiscard]] constexpr bool False(type key) noexcept { \
|
|
using T = std::underlying_type_t<type>; \
|
|
return static_cast<T>(key) == 0; \
|
|
} |