2009-09-12 10:09:59 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-03-13 07:27:52 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-03-13 07:27:52 +00:00
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-03-13 07:27:52 +00:00
|
|
|
#ifndef __PCSX2TYPES_H__
|
|
|
|
#define __PCSX2TYPES_H__
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Based on PS2E Definitions by
|
|
|
|
linuzappz@hotmail.com,
|
|
|
|
* shadowpcsx2@yahoo.gr,
|
|
|
|
* and florinsasu@hotmail.com
|
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
|
|
|
|
2009-03-13 07:27:52 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Basic Atomic Types
|
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
|
|
|
|
typedef __int8 s8;
|
|
|
|
typedef __int16 s16;
|
|
|
|
typedef __int32 s32;
|
|
|
|
typedef __int64 s64;
|
|
|
|
|
|
|
|
typedef unsigned __int8 u8;
|
|
|
|
typedef unsigned __int16 u16;
|
|
|
|
typedef unsigned __int32 u32;
|
|
|
|
typedef unsigned __int64 u64;
|
|
|
|
|
|
|
|
typedef unsigned int uint;
|
|
|
|
|
2009-04-29 11:47:05 +00:00
|
|
|
#else // _MSC_VER*/
|
2009-03-13 07:27:52 +00:00
|
|
|
|
2009-04-29 11:47:05 +00:00
|
|
|
#ifdef __LINUX__
|
2009-03-13 07:27:52 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_STDINT_H
|
|
|
|
#include "stdint.h"
|
|
|
|
|
2009-04-27 22:00:56 +00:00
|
|
|
// note: char and int8_t are not interchangable types on gcc, because int8_t apparently
|
|
|
|
// maps to 'signed char' which (due to 1's compliment or something) is its own unique
|
|
|
|
// type. This creates cross-compiler inconsistencies, in addition to being entirely
|
|
|
|
// unexpected behavior to any sane programmer, so we typecast s8 to char instead. :)
|
|
|
|
|
|
|
|
//typedef int8_t s8;
|
|
|
|
typedef char s8;
|
2009-03-13 07:27:52 +00:00
|
|
|
typedef int16_t s16;
|
|
|
|
typedef int32_t s32;
|
|
|
|
typedef int64_t s64;
|
|
|
|
|
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
|
|
|
|
typedef uintptr_t uptr;
|
|
|
|
typedef intptr_t sptr;
|
|
|
|
|
|
|
|
#else // HAVE_STDINT_H
|
|
|
|
|
|
|
|
typedef char s8;
|
|
|
|
typedef short s16;
|
|
|
|
typedef int s32;
|
|
|
|
typedef long long s64;
|
|
|
|
|
|
|
|
typedef unsigned char u8;
|
|
|
|
typedef unsigned short u16;
|
|
|
|
typedef unsigned int u32;
|
|
|
|
typedef unsigned long long u64;
|
|
|
|
|
|
|
|
#endif // HAVE_STDINT_H
|
|
|
|
|
|
|
|
typedef unsigned int uint;
|
|
|
|
|
|
|
|
#define LONG long
|
|
|
|
typedef union _LARGE_INTEGER
|
|
|
|
{
|
|
|
|
long long QuadPart;
|
|
|
|
} LARGE_INTEGER;
|
|
|
|
|
|
|
|
#endif // __LINUX__
|
|
|
|
#endif //_MSC_VER
|
|
|
|
|
2009-04-29 11:47:05 +00:00
|
|
|
#if !defined(__LINUX__) || !defined(HAVE_STDINT_H)
|
|
|
|
#if defined(__x86_64__)
|
|
|
|
typedef u64 uptr;
|
|
|
|
typedef s64 sptr;
|
|
|
|
#else
|
|
|
|
typedef u32 uptr;
|
|
|
|
typedef s32 sptr;
|
|
|
|
#endif
|
|
|
|
#endif
|
2009-03-13 07:27:52 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// A rough-and-ready cross platform 128-bit datatype, Non-SSE style.
|
2009-06-18 08:20:19 +00:00
|
|
|
//
|
2009-09-29 22:05:21 +00:00
|
|
|
// Note: These structs don't provide any additional constructors because C++ doesn't allow
|
|
|
|
// the use of datatypes with constructors in unions (and since unions aren't the primary
|
|
|
|
// uses of these types, that means we can't have constructors). Embedded functions for
|
|
|
|
// performing explicit conversion from 64 and 32 bit values are provided instead.
|
2009-09-29 19:16:00 +00:00
|
|
|
//
|
2009-03-13 07:27:52 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
struct u128
|
|
|
|
{
|
|
|
|
u64 lo;
|
|
|
|
u64 hi;
|
|
|
|
|
2009-09-29 19:16:00 +00:00
|
|
|
// Explicit conversion from u64
|
|
|
|
static u128 From64( u64 src )
|
|
|
|
{
|
|
|
|
u128 retval = { src, 0 };
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicit conversion from u32
|
|
|
|
static u128 From32( u32 src )
|
|
|
|
{
|
|
|
|
u128 retval = { src, 0 };
|
|
|
|
return retval;
|
|
|
|
}
|
2009-03-13 07:27:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct s128
|
|
|
|
{
|
|
|
|
s64 lo;
|
|
|
|
s64 hi;
|
|
|
|
|
2009-09-29 19:16:00 +00:00
|
|
|
// explicit conversion from s64, with sign extension.
|
|
|
|
static s128 From64( s64 src )
|
|
|
|
{
|
|
|
|
s128 retval = { src, (src < 0) ? -1 : 0 };
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
// explicit conversion from s32, with sign extension.
|
|
|
|
static s128 From64( s32 src )
|
|
|
|
{
|
|
|
|
s128 retval = { src, (src < 0) ? -1 : 0 };
|
|
|
|
return retval;
|
|
|
|
}
|
2009-03-13 07:27:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
typedef union _u128_t
|
|
|
|
{
|
|
|
|
u64 lo;
|
|
|
|
u64 hi;
|
|
|
|
} u128;
|
|
|
|
|
|
|
|
typedef union _s128_t
|
|
|
|
{
|
|
|
|
s64 lo;
|
|
|
|
s64 hi;
|
|
|
|
} s128;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-09-29 22:05:21 +00:00
|
|
|
#endif
|