2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-07 01:35:01 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-03-07 01:35:01 -07:00
|
|
|
|
2013-09-11 18:19:36 -06:00
|
|
|
#include <cstddef>
|
2015-04-07 14:15:21 -06:00
|
|
|
#include <string>
|
2014-02-19 11:46:47 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-09-11 18:19:36 -06:00
|
|
|
|
|
|
|
// Will fail to compile on a non-array:
|
2015-09-03 21:39:03 -06:00
|
|
|
template <typename T, size_t N>
|
|
|
|
constexpr size_t ArraySize(T (&arr)[N])
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
return N;
|
2015-09-03 21:39:03 -06:00
|
|
|
}
|
2013-09-11 18:19:36 -06:00
|
|
|
|
2016-06-24 02:43:46 -06: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-26 18:21:00 -06:00
|
|
|
|
2009-03-07 01:35:01 -07:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
|
|
|
// go to debugger mode
|
2016-06-24 02:43:46 -06:00
|
|
|
#define Crash() \
|
|
|
|
{ \
|
|
|
|
__builtin_trap(); \
|
|
|
|
}
|
2013-09-11 18:19:36 -06:00
|
|
|
|
2013-04-03 09:52:06 -06:00
|
|
|
// GCC 4.8 defines all the rotate functions now
|
2013-04-03 11:42:58 -06:00
|
|
|
// Small issue with GCC's lrotl/lrotr intrinsics is they are still 32bit while we require 64bit
|
|
|
|
#ifndef _rotl
|
2014-08-30 14:14:56 -06:00
|
|
|
inline u32 _rotl(u32 x, int shift)
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
shift &= 31;
|
|
|
|
if (!shift)
|
|
|
|
return x;
|
|
|
|
return (x << shift) | (x >> (32 - shift));
|
2009-03-07 01:35:01 -07:00
|
|
|
}
|
|
|
|
|
2014-08-30 14:14:56 -06:00
|
|
|
inline u32 _rotr(u32 x, int shift)
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
shift &= 31;
|
|
|
|
if (!shift)
|
|
|
|
return x;
|
|
|
|
return (x >> shift) | (x << (32 - shift));
|
2009-03-07 01:35:01 -07:00
|
|
|
}
|
2013-04-03 11:42:58 -06:00
|
|
|
#endif
|
|
|
|
|
2014-08-30 14:14:56 -06:00
|
|
|
inline u64 _rotl64(u64 x, unsigned int shift)
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
unsigned int n = shift % 64;
|
|
|
|
return (x << n) | (x >> (64 - n));
|
2013-04-03 11:42:58 -06:00
|
|
|
}
|
2010-02-08 16:23:04 -07:00
|
|
|
|
2014-08-30 14:14:56 -06:00
|
|
|
inline u64 _rotr64(u64 x, unsigned int shift)
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
unsigned int n = shift % 64;
|
|
|
|
return (x >> n) | (x << (64 - n));
|
2010-02-08 16:23:04 -07:00
|
|
|
}
|
2010-07-31 08:40:01 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
#else // WIN32
|
2009-03-07 01:35:01 -07:00
|
|
|
// Function Cross-Compatibility
|
2016-06-24 02:43:46 -06:00
|
|
|
#define strcasecmp _stricmp
|
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
#define unlink _unlink
|
|
|
|
#define vscprintf _vscprintf
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2015-01-10 22:17:29 -07:00
|
|
|
// 64 bit offsets for Windows
|
2016-06-24 02:43:46 -06:00
|
|
|
#define fseeko _fseeki64
|
|
|
|
#define ftello _ftelli64
|
|
|
|
#define atoll _atoi64
|
2016-07-17 04:30:00 -06:00
|
|
|
#define stat _stat64
|
|
|
|
#define fstat _fstat64
|
2016-06-24 02:43:46 -06:00
|
|
|
#define fileno _fileno
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
__declspec(dllimport) void __stdcall DebugBreak(void);
|
2009-03-07 01:35:01 -07:00
|
|
|
}
|
2016-06-24 02:43:46 -06:00
|
|
|
#define Crash() \
|
|
|
|
{ \
|
|
|
|
DebugBreak(); \
|
|
|
|
}
|
|
|
|
#endif // WIN32 ndef
|
2009-03-07 01:35:01 -07: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.
|
2015-04-07 14:15:21 -06:00
|
|
|
std::string GetLastErrorMsg();
|