2014-12-16 21:38:14 -08:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-04 17:17:46 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 10:45:50 -07:00
|
|
|
#pragma once
|
2013-09-04 17:17:46 -07:00
|
|
|
|
2018-07-19 06:03:30 -07:00
|
|
|
#include <string>
|
|
|
|
|
2018-05-13 03:34:45 -07:00
|
|
|
#if !defined(ARCHITECTURE_x86_64)
|
2016-04-30 08:34:51 -07:00
|
|
|
#include <cstdlib> // for exit
|
|
|
|
#endif
|
2017-05-27 16:14:10 -07:00
|
|
|
#include "common/common_types.h"
|
2013-09-04 17:17:46 -07:00
|
|
|
|
2015-01-11 07:32:31 -08:00
|
|
|
/// Textually concatenates two tokens. The double-expansion is required by the C preprocessor.
|
|
|
|
#define CONCAT2(x, y) DO_CONCAT2(x, y)
|
2016-09-17 17:38:01 -07:00
|
|
|
#define DO_CONCAT2(x, y) x##y
|
2015-01-11 07:32:31 -08:00
|
|
|
|
2015-02-12 20:57:02 -08:00
|
|
|
// helper macro to properly align structure members.
|
|
|
|
// Calling INSERT_PADDING_BYTES will add a new member variable with a name like "pad121",
|
|
|
|
// depending on the current source line to make sure variable names are unique.
|
2015-02-18 22:45:46 -08:00
|
|
|
#define INSERT_PADDING_BYTES(num_bytes) u8 CONCAT2(pad, __LINE__)[(num_bytes)]
|
|
|
|
#define INSERT_PADDING_WORDS(num_words) u32 CONCAT2(pad, __LINE__)[(num_words)]
|
2015-02-12 20:57:02 -08:00
|
|
|
|
2016-03-08 22:28:26 -08:00
|
|
|
// Inlining
|
2015-05-06 19:26:19 -07:00
|
|
|
#ifdef _WIN32
|
2016-09-17 17:38:01 -07:00
|
|
|
#define FORCE_INLINE __forceinline
|
2015-05-06 19:26:19 -07:00
|
|
|
#else
|
2016-09-17 17:38:01 -07:00
|
|
|
#define FORCE_INLINE inline __attribute__((always_inline))
|
2015-05-06 19:26:19 -07:00
|
|
|
#endif
|
|
|
|
|
2014-11-28 21:38:20 -08:00
|
|
|
#ifndef _MSC_VER
|
2013-09-04 17:17:46 -07:00
|
|
|
|
2015-08-14 19:29:08 -07:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2015-01-20 17:16:47 -08:00
|
|
|
#define Crash() __asm__ __volatile__("int $3")
|
|
|
|
#else
|
|
|
|
#define Crash() exit(1)
|
|
|
|
#endif
|
|
|
|
|
2014-11-28 21:38:20 -08:00
|
|
|
#else // _MSC_VER
|
2016-05-27 02:40:01 -07:00
|
|
|
|
|
|
|
// Locale Cross-Compatibility
|
|
|
|
#define locale_t _locale_t
|
|
|
|
|
|
|
|
extern "C" {
|
2016-09-17 17:38:01 -07:00
|
|
|
__declspec(dllimport) void __stdcall DebugBreak(void);
|
2016-05-27 02:40:01 -07:00
|
|
|
}
|
2016-09-18 18:01:46 -07:00
|
|
|
#define Crash() DebugBreak()
|
2016-05-27 02:40:01 -07:00
|
|
|
|
2014-11-28 21:38:20 -08:00
|
|
|
#endif // _MSC_VER ndef
|
2013-09-04 17:17:46 -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.
|
2018-07-19 06:03:30 -07:00
|
|
|
std::string GetLastErrorMsg();
|
2017-10-14 21:11:38 -07:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
constexpr u32 MakeMagic(char a, char b, char c, char d) {
|
|
|
|
return a | b << 8 | c << 16 | d << 24;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Common
|