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 20:17:46 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 13:45:50 -04:00
|
|
|
#pragma once
|
2013-09-04 20:17:46 -04:00
|
|
|
|
|
|
|
// DO NOT EVER INCLUDE <windows.h> directly _or indirectly_ from this file
|
|
|
|
// since it slows down the build a lot.
|
|
|
|
|
2014-08-17 13:45:50 -04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2013-09-04 20:17:46 -04:00
|
|
|
|
2015-01-20 17:16:47 -08:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2014-04-08 20:15:08 -04:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/common_funcs.h"
|
|
|
|
#include "common/common_paths.h"
|
|
|
|
#include "common/platform.h"
|
2013-09-04 20:17:46 -04:00
|
|
|
|
2015-05-06 22:59:59 -03:00
|
|
|
#ifdef _WIN32
|
|
|
|
// Alignment
|
2014-04-01 18:20:08 -04:00
|
|
|
#define MEMORY_ALIGNED16(x) __declspec(align(16)) x
|
|
|
|
#define MEMORY_ALIGNED32(x) __declspec(align(32)) x
|
|
|
|
#define MEMORY_ALIGNED64(x) __declspec(align(64)) x
|
|
|
|
#define MEMORY_ALIGNED128(x) __declspec(align(128)) x
|
2015-05-06 22:59:59 -03:00
|
|
|
#else
|
|
|
|
// Windows compatibility
|
2015-02-18 22:46:21 -08:00
|
|
|
#ifdef _LP64
|
|
|
|
#define _M_X64 1
|
|
|
|
#else
|
|
|
|
#define _M_IX86 1
|
|
|
|
#endif
|
2015-05-06 22:59:59 -03:00
|
|
|
|
2015-02-18 22:46:21 -08:00
|
|
|
#define __forceinline inline __attribute__((always_inline))
|
|
|
|
#define MEMORY_ALIGNED16(x) __attribute__((aligned(16))) x
|
|
|
|
#define MEMORY_ALIGNED32(x) __attribute__((aligned(32))) x
|
|
|
|
#define MEMORY_ALIGNED64(x) __attribute__((aligned(64))) x
|
|
|
|
#define MEMORY_ALIGNED128(x) __attribute__((aligned(128))) x
|
2013-09-04 20:17:46 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined _M_GENERIC
|
|
|
|
# define _M_SSE 0x0
|
|
|
|
#elif defined __GNUC__
|
|
|
|
# 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
|
|
|
|
# endif
|
|
|
|
#elif (_MSC_VER >= 1500) || __INTEL_COMPILER // Visual Studio 2008
|
|
|
|
# define _M_SSE 0x402
|
|
|
|
#endif
|
|
|
|
|
2014-04-27 21:49:50 -04:00
|
|
|
#include "swap.h"
|