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.
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2013-09-12 00:19:36 +00:00
|
|
|
#include <cstddef>
|
2015-04-07 20:15:21 +00:00
|
|
|
#include <string>
|
2014-02-19 18:46:47 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-09-12 00:19:36 +00:00
|
|
|
|
|
|
|
// Will fail to compile on a non-array:
|
2015-09-04 03:39:03 +00:00
|
|
|
template <typename T, size_t N>
|
|
|
|
constexpr size_t ArraySize(T (&arr)[N])
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return N;
|
2015-09-04 03:39:03 +00:00
|
|
|
}
|
2013-09-12 00:19:36 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
#define b2(x) ((x) | ((x) >> 1))
|
|
|
|
#define b4(x) (b2(x) | (b2(x) >> 2))
|
|
|
|
#define b8(x) (b4(x) | (b4(x) >> 4))
|
|
|
|
#define b16(x) (b8(x) | (b8(x) >> 8))
|
|
|
|
#define b32(x) (b16(x) | (b16(x) >> 16))
|
|
|
|
#define ROUND_UP_POW2(x) (b32(x - 1) + 1)
|
2013-10-27 00:21:00 +00:00
|
|
|
|
2009-03-07 08:35:01 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
|
|
|
// go to debugger mode
|
2016-06-24 08:43:46 +00:00
|
|
|
#define Crash() \
|
|
|
|
{ \
|
|
|
|
__builtin_trap(); \
|
|
|
|
}
|
2013-09-12 00:19:36 +00:00
|
|
|
|
2013-04-03 15:52:06 +00:00
|
|
|
// GCC 4.8 defines all the rotate functions now
|
2013-04-03 17:42:58 +00:00
|
|
|
// Small issue with GCC's lrotl/lrotr intrinsics is they are still 32bit while we require 64bit
|
|
|
|
#ifndef _rotl
|
2014-08-30 20:14:56 +00:00
|
|
|
inline u32 _rotl(u32 x, int shift)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
shift &= 31;
|
|
|
|
if (!shift)
|
|
|
|
return x;
|
|
|
|
return (x << shift) | (x >> (32 - shift));
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline u32 _rotr(u32 x, int shift)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
shift &= 31;
|
|
|
|
if (!shift)
|
|
|
|
return x;
|
|
|
|
return (x >> shift) | (x << (32 - shift));
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
2013-04-03 17:42:58 +00:00
|
|
|
#endif
|
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline u64 _rotl64(u64 x, unsigned int shift)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
unsigned int n = shift % 64;
|
|
|
|
return (x << n) | (x >> (64 - n));
|
2013-04-03 17:42:58 +00:00
|
|
|
}
|
2010-02-08 23:23:04 +00:00
|
|
|
|
2014-08-30 20:14:56 +00:00
|
|
|
inline u64 _rotr64(u64 x, unsigned int shift)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
unsigned int n = shift % 64;
|
|
|
|
return (x >> n) | (x << (64 - n));
|
2010-02-08 23:23:04 +00:00
|
|
|
}
|
2010-07-31 14:40:01 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
#else // WIN32
|
2009-03-07 08:35:01 +00:00
|
|
|
// Function Cross-Compatibility
|
2016-06-24 08:43:46 +00:00
|
|
|
#define strcasecmp _stricmp
|
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
#define unlink _unlink
|
|
|
|
#define vscprintf _vscprintf
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2015-01-11 05:17:29 +00:00
|
|
|
// 64 bit offsets for Windows
|
2016-06-24 08:43:46 +00:00
|
|
|
#define fseeko _fseeki64
|
|
|
|
#define ftello _ftelli64
|
|
|
|
#define atoll _atoi64
|
2016-07-17 10:30:00 +00:00
|
|
|
#define stat _stat64
|
|
|
|
#define fstat _fstat64
|
2016-06-24 08:43:46 +00:00
|
|
|
#define fileno _fileno
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
__declspec(dllimport) void __stdcall DebugBreak(void);
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
#define Crash() \
|
|
|
|
{ \
|
|
|
|
DebugBreak(); \
|
|
|
|
}
|
|
|
|
#endif // WIN32 ndef
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2017-08-17 19:12:44 +00:00
|
|
|
// Wrapper function to get last strerror(errno) string.
|
2009-03-07 08:35:01 +00:00
|
|
|
// This function might change the error code.
|
2017-08-17 19:12:44 +00:00
|
|
|
std::string LastStrerrorString();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
// Wrapper function to get GetLastError() string.
|
|
|
|
// This function might change the error code.
|
|
|
|
std::string GetLastErrorString();
|
|
|
|
#endif
|