2019-11-03 23:54:03 +00:00
|
|
|
// Copyright 2019 yuzu emulator team
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 00:17:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2019-05-08 22:27:29 +00:00
|
|
|
#include <algorithm>
|
2019-11-03 23:54:03 +00:00
|
|
|
#include <array>
|
2018-07-19 13:03:30 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-05-13 10:34:45 +00:00
|
|
|
#if !defined(ARCHITECTURE_x86_64)
|
2016-04-30 15:34:51 +00:00
|
|
|
#include <cstdlib> // for exit
|
|
|
|
#endif
|
2017-05-27 23:14:10 +00:00
|
|
|
#include "common/common_types.h"
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-01-11 15:32:31 +00:00
|
|
|
/// Textually concatenates two tokens. The double-expansion is required by the C preprocessor.
|
|
|
|
#define CONCAT2(x, y) DO_CONCAT2(x, y)
|
2016-09-18 00:38:01 +00:00
|
|
|
#define DO_CONCAT2(x, y) x##y
|
2015-01-11 15:32:31 +00:00
|
|
|
|
2019-11-03 23:54:03 +00:00
|
|
|
/// Helper macros to insert unused bytes or words to properly align structs. These values will be
|
|
|
|
/// zero-initialized.
|
2019-11-14 21:54:01 +00:00
|
|
|
#define INSERT_PADDING_BYTES(num_bytes) \
|
|
|
|
std::array<u8, num_bytes> CONCAT2(pad, __LINE__) {}
|
|
|
|
#define INSERT_PADDING_WORDS(num_words) \
|
|
|
|
std::array<u32, num_words> CONCAT2(pad, __LINE__) {}
|
2015-02-13 04:57:02 +00:00
|
|
|
|
2019-11-03 23:54:03 +00:00
|
|
|
/// These are similar to the INSERT_PADDING_* macros, but are needed for padding unions. This is
|
|
|
|
/// because unions can only be initialized by one member.
|
2019-11-14 21:54:01 +00:00
|
|
|
#define INSERT_UNION_PADDING_BYTES(num_bytes) std::array<u8, num_bytes> CONCAT2(pad, __LINE__)
|
|
|
|
#define INSERT_UNION_PADDING_WORDS(num_words) std::array<u32, num_words> CONCAT2(pad, __LINE__)
|
2015-05-07 02:26:19 +00:00
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
#ifndef _MSC_VER
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-08-15 02:29:08 +00:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2015-01-21 01:16:47 +00:00
|
|
|
#define Crash() __asm__ __volatile__("int $3")
|
|
|
|
#else
|
|
|
|
#define Crash() exit(1)
|
|
|
|
#endif
|
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
#else // _MSC_VER
|
2016-05-27 09:40:01 +00:00
|
|
|
|
|
|
|
// Locale Cross-Compatibility
|
|
|
|
#define locale_t _locale_t
|
|
|
|
|
|
|
|
extern "C" {
|
2016-09-18 00:38:01 +00:00
|
|
|
__declspec(dllimport) void __stdcall DebugBreak(void);
|
2016-05-27 09:40:01 +00:00
|
|
|
}
|
2016-09-19 01:01:46 +00:00
|
|
|
#define Crash() DebugBreak()
|
2016-05-27 09:40:01 +00:00
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
#endif // _MSC_VER ndef
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
// Generic function to get last error message.
|
|
|
|
// Call directly after the command or use the error num.
|
|
|
|
// This function might change the error code.
|
|
|
|
// Defined in Misc.cpp.
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] std::string GetLastErrorMsg();
|
2017-10-15 04:11:38 +00:00
|
|
|
|
2020-03-21 02:40:03 +00:00
|
|
|
#define DECLARE_ENUM_FLAG_OPERATORS(type) \
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr type operator|(type a, type b) noexcept { \
|
2020-03-21 02:40:03 +00:00
|
|
|
using T = std::underlying_type_t<type>; \
|
|
|
|
return static_cast<type>(static_cast<T>(a) | static_cast<T>(b)); \
|
|
|
|
} \
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr type operator&(type a, type b) noexcept { \
|
2020-03-21 02:40:03 +00:00
|
|
|
using T = std::underlying_type_t<type>; \
|
|
|
|
return static_cast<type>(static_cast<T>(a) & static_cast<T>(b)); \
|
|
|
|
} \
|
2020-08-24 08:39:26 +00:00
|
|
|
[[nodiscard]] constexpr type operator^(type a, type b) noexcept { \
|
2020-03-21 02:40:03 +00:00
|
|
|
using T = std::underlying_type_t<type>; \
|
2020-08-24 08:39:26 +00:00
|
|
|
return static_cast<type>(static_cast<T>(a) ^ static_cast<T>(b)); \
|
|
|
|
} \
|
|
|
|
constexpr type& operator|=(type& a, type b) noexcept { \
|
|
|
|
a = a | b; \
|
2020-03-21 02:40:03 +00:00
|
|
|
return a; \
|
|
|
|
} \
|
|
|
|
constexpr type& operator&=(type& a, type b) noexcept { \
|
2020-08-24 08:39:26 +00:00
|
|
|
a = a & b; \
|
|
|
|
return a; \
|
|
|
|
} \
|
|
|
|
constexpr type& operator^=(type& a, type b) noexcept { \
|
|
|
|
a = a ^ b; \
|
2020-03-21 02:40:03 +00:00
|
|
|
return a; \
|
|
|
|
} \
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr type operator~(type key) noexcept { \
|
2020-03-21 02:40:03 +00:00
|
|
|
using T = std::underlying_type_t<type>; \
|
|
|
|
return static_cast<type>(~static_cast<T>(key)); \
|
|
|
|
} \
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr bool True(type key) noexcept { \
|
2020-03-21 02:40:03 +00:00
|
|
|
using T = std::underlying_type_t<type>; \
|
|
|
|
return static_cast<T>(key) != 0; \
|
|
|
|
} \
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr bool False(type key) noexcept { \
|
2020-03-21 02:40:03 +00:00
|
|
|
using T = std::underlying_type_t<type>; \
|
|
|
|
return static_cast<T>(key) == 0; \
|
|
|
|
}
|
|
|
|
|
2020-12-29 06:24:05 +00:00
|
|
|
/// Evaluates a boolean expression, and returns a result unless that expression is true.
|
|
|
|
#define R_UNLESS(expr, res) \
|
|
|
|
{ \
|
|
|
|
if (!(expr)) { \
|
|
|
|
return res; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2017-10-15 04:11:38 +00:00
|
|
|
namespace Common {
|
|
|
|
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr u32 MakeMagic(char a, char b, char c, char d) {
|
2019-11-13 11:50:49 +00:00
|
|
|
return u32(a) | u32(b) << 8 | u32(c) << 16 | u32(d) << 24;
|
2017-10-15 04:11:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Common
|