2014-12-17 08:38:14 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 04:17:46 +04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 21:45:50 +04:00
|
|
|
#pragma once
|
2013-09-05 04: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 21:45:50 +04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2013-09-05 04:17:46 +04:00
|
|
|
|
2015-01-21 04:16:47 +03:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2014-04-09 04: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-05 04:17:46 +04:00
|
|
|
|
2015-05-07 04:59:59 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
// Alignment
|
2014-04-02 02: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-07 04:59:59 +03:00
|
|
|
#else
|
|
|
|
// Windows compatibility
|
2015-02-19 09:46:21 +03:00
|
|
|
#ifdef _LP64
|
|
|
|
#define _M_X64 1
|
|
|
|
#else
|
|
|
|
#define _M_IX86 1
|
|
|
|
#endif
|
2015-05-07 04:59:59 +03:00
|
|
|
|
2015-02-19 09:46:21 +03: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-05 04:17:46 +04:00
|
|
|
#endif
|
|
|
|
|
2014-04-28 05:49:50 +04:00
|
|
|
#include "swap.h"
|