2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2014-12-15 22:09:36 +00:00
|
|
|
#pragma once
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// DO NOT EVER INCLUDE <windows.h> directly _or indirectly_ from this file
|
|
|
|
// since it slows down the build a lot.
|
|
|
|
|
2013-04-23 18:51:12 +00:00
|
|
|
#include <stdarg.h>
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-03-03 15:40:58 +00:00
|
|
|
#ifdef _MSC_VER
|
2020-09-29 10:44:47 +00:00
|
|
|
#pragma warning(disable:4100)
|
|
|
|
#pragma warning(disable:4244)
|
2013-03-03 15:40:58 +00:00
|
|
|
#endif
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "CommonTypes.h"
|
|
|
|
#include "CommonFuncs.h"
|
|
|
|
|
2017-08-31 15:13:18 +00:00
|
|
|
#ifndef DISALLOW_COPY_AND_ASSIGN
|
|
|
|
#define DISALLOW_COPY_AND_ASSIGN(t) \
|
|
|
|
t(const t &other) = delete; \
|
|
|
|
void operator =(const t &other) = delete;
|
|
|
|
#endif
|
|
|
|
|
2020-09-29 10:44:47 +00:00
|
|
|
#ifndef ENUM_CLASS_BITOPS
|
|
|
|
#define ENUM_CLASS_BITOPS(T) \
|
|
|
|
static inline T operator |(const T &lhs, const T &rhs) { \
|
|
|
|
return T((int)lhs | (int)rhs); \
|
|
|
|
} \
|
|
|
|
static inline T &operator |= (T &lhs, const T &rhs) { \
|
|
|
|
lhs = lhs | rhs; \
|
|
|
|
return lhs; \
|
|
|
|
} \
|
|
|
|
static inline bool operator &(const T &lhs, const T &rhs) { \
|
|
|
|
return ((int)lhs & (int)rhs) != 0; \
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ARRAY_SIZE
|
|
|
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
|
|
|
#endif
|
|
|
|
|
2020-08-10 06:39:13 +00:00
|
|
|
#if defined(_WIN32)
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// Memory leak checks
|
|
|
|
#define CHECK_HEAP_INTEGRITY()
|
|
|
|
|
2017-08-30 23:14:51 +00:00
|
|
|
// Debug definitions
|
2012-11-01 15:19:01 +00:00
|
|
|
#if defined(_DEBUG)
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#undef CHECK_HEAP_INTEGRITY
|
2020-07-19 15:52:41 +00:00
|
|
|
#define CHECK_HEAP_INTEGRITY() {if (!_CrtCheckMemory()) _assert_msg_(false, "Memory corruption detected. See log.");}
|
2014-09-06 08:47:25 +00:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define CHECK_HEAP_INTEGRITY()
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Windows compatibility
|
|
|
|
#ifndef _WIN32
|
|
|
|
#include <limits.h>
|
|
|
|
#ifndef MAX_PATH
|
|
|
|
#define MAX_PATH PATH_MAX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __forceinline inline __attribute__((always_inline))
|
|
|
|
#endif
|
|
|
|
|
2020-08-13 14:48:19 +00:00
|
|
|
#if defined __SSE4_2__
|
|
|
|
# define _M_SSE 0x402
|
|
|
|
#elif defined __SSE4_1__
|
|
|
|
# define _M_SSE 0x401
|
|
|
|
#elif defined __SSSE3__
|
|
|
|
# define _M_SSE 0x301
|
|
|
|
#elif defined __SSE3__
|
|
|
|
# define _M_SSE 0x300
|
|
|
|
#elif defined __SSE2__
|
|
|
|
# define _M_SSE 0x200
|
|
|
|
#elif !defined(__GNUC__) && (defined(_M_X64) || defined(_M_IX86))
|
2016-01-03 22:59:21 +00:00
|
|
|
# define _M_SSE 0x402
|
2017-08-31 20:15:05 +00:00
|
|
|
#endif
|