2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project / 2012 PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2013-09-23 19:46:45 +00:00
|
|
|
#pragma once
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// Includes
|
|
|
|
#include <string>
|
|
|
|
#include "Common.h"
|
|
|
|
#include "CommonTypes.h"
|
|
|
|
|
2013-06-21 05:19:47 +00:00
|
|
|
#include "HDRemaster.h"
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
// PPSSPP is very aggressive about trying to do memory accesses directly, for speed.
|
|
|
|
// This can be a problem when debugging though, as stray memory reads and writes will
|
|
|
|
// crash the whole emulator.
|
|
|
|
// If safe memory is enabled and JIT is disabled, all memory access will go through the proper
|
|
|
|
// memory access functions, and thus won't crash the emu when they go out of bounds.
|
|
|
|
#if defined(_DEBUG)
|
2012-11-23 11:42:35 +00:00
|
|
|
//#define SAFE_MEMORY
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
2013-02-17 05:23:56 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
// Global declarations
|
|
|
|
class PointerWrap;
|
|
|
|
|
|
|
|
typedef void (*writeFn8 )(const u8, const u32);
|
|
|
|
typedef void (*writeFn16)(const u16,const u32);
|
|
|
|
typedef void (*writeFn32)(const u32,const u32);
|
|
|
|
typedef void (*writeFn64)(const u64,const u32);
|
|
|
|
|
|
|
|
typedef void (*readFn8 )(u8&, const u32);
|
|
|
|
typedef void (*readFn16)(u16&, const u32);
|
|
|
|
typedef void (*readFn32)(u32&, const u32);
|
|
|
|
typedef void (*readFn64)(u64&, const u32);
|
|
|
|
|
|
|
|
namespace Memory
|
|
|
|
{
|
|
|
|
// Base is a pointer to the base of the memory map. Yes, some MMU tricks
|
|
|
|
// are used to set up a full GC or Wii memory map in process memory. on
|
|
|
|
// 32-bit, you have to mask your offsets with 0x3FFFFFFF. This means that
|
|
|
|
// some things are mirrored too many times, but eh... it works.
|
|
|
|
|
|
|
|
// In 64-bit, this might point to "high memory" (above the 32-bit limit),
|
|
|
|
// so be sure to load it into a 64-bit register.
|
|
|
|
extern u8 *base;
|
|
|
|
|
|
|
|
// These are guaranteed to point to "low memory" addresses (sub-32-bit).
|
|
|
|
// 64-bit: Pointers to low-mem (sub-0x10000000) mirror
|
|
|
|
// 32-bit: Same as the corresponding physical/virtual pointers.
|
2013-12-10 16:25:38 +00:00
|
|
|
// Broken into three chunks to workaround 32-bit mmap() limits.
|
2012-11-01 15:19:01 +00:00
|
|
|
extern u8 *m_pRAM;
|
2013-12-10 16:25:38 +00:00
|
|
|
extern u8 *m_pRAM2;
|
|
|
|
extern u8 *m_pRAM3;
|
2012-11-01 15:19:01 +00:00
|
|
|
extern u8 *m_pScratchPad;
|
|
|
|
extern u8 *m_pVRAM;
|
|
|
|
|
|
|
|
// 64-bit: Pointers to high-mem mirrors
|
|
|
|
// 32-bit: Same as above
|
|
|
|
extern u8 *m_pPhysicalRAM;
|
|
|
|
extern u8 *m_pUncachedRAM;
|
|
|
|
|
|
|
|
extern u8 *m_pPhysicalVRAM;
|
|
|
|
extern u8 *m_pUncachedVRAM;
|
|
|
|
|
2013-09-09 07:35:31 +00:00
|
|
|
// These replace RAM_NORMAL_SIZE and RAM_NORMAL_MASK, respectively.
|
2013-07-17 21:49:57 +00:00
|
|
|
extern u32 g_MemorySize;
|
|
|
|
extern u32 g_MemoryMask;
|
2013-11-28 20:34:11 +00:00
|
|
|
extern u32 g_PSPModel;
|
2013-06-21 17:34:57 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2013-09-09 07:19:26 +00:00
|
|
|
// This may be adjusted by remaster games.
|
|
|
|
RAM_NORMAL_SIZE = 0x02000000,
|
|
|
|
RAM_NORMAL_MASK = RAM_NORMAL_SIZE - 1,
|
|
|
|
|
2013-11-28 19:37:10 +00:00
|
|
|
// Used if the PSP model is PSP-2000 (Slim).
|
|
|
|
RAM_DOUBLE_SIZE = RAM_NORMAL_SIZE * 2,
|
|
|
|
|
2013-03-17 02:45:05 +00:00
|
|
|
VRAM_SIZE = 0x200000,
|
|
|
|
VRAM_MASK = VRAM_SIZE - 1,
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-03-17 02:45:05 +00:00
|
|
|
SCRATCHPAD_SIZE = 0x4000,
|
|
|
|
SCRATCHPAD_MASK = SCRATCHPAD_SIZE - 1,
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-09-23 19:46:45 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2012-11-01 15:19:01 +00:00
|
|
|
// This wraparound should work for PSP too.
|
|
|
|
MEMVIEW32_MASK = 0x3FFFFFFF,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
// Init and Shutdown
|
2013-06-22 09:14:01 +00:00
|
|
|
void Init();
|
2012-11-01 15:19:01 +00:00
|
|
|
void Shutdown();
|
|
|
|
void DoState(PointerWrap &p);
|
|
|
|
void Clear();
|
|
|
|
|
2013-08-24 21:43:49 +00:00
|
|
|
struct Opcode {
|
|
|
|
Opcode() {
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit Opcode(u32 v) : encoding (v) {
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 operator & (const u32 &arg) const {
|
|
|
|
return encoding & arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 operator >> (const u32 &arg) const {
|
|
|
|
return encoding >> arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator == (const u32 &arg) const {
|
|
|
|
return encoding == arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator != (const u32 &arg) const {
|
|
|
|
return encoding != arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 encoding;
|
|
|
|
};
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
// used by JIT to read instructions
|
2013-08-24 21:43:49 +00:00
|
|
|
Opcode Read_Opcode_JIT(const u32 _Address);
|
2012-11-01 15:19:01 +00:00
|
|
|
// used by JIT. uses iCacheJIT. Reads in the "Locked cache" mode
|
2013-08-24 21:43:49 +00:00
|
|
|
void Write_Opcode_JIT(const u32 _Address, const Opcode _Value);
|
2012-11-01 15:19:01 +00:00
|
|
|
// this is used by Debugger a lot.
|
|
|
|
// For now, just reads from memory!
|
2013-08-24 21:43:49 +00:00
|
|
|
Opcode Read_Instruction(const u32 _Address);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
// For use by emulator
|
|
|
|
|
|
|
|
u8 Read_U8(const u32 _Address);
|
|
|
|
u16 Read_U16(const u32 _Address);
|
|
|
|
u32 Read_U32(const u32 _Address);
|
|
|
|
u64 Read_U64(const u32 _Address);
|
|
|
|
|
2012-11-23 11:42:35 +00:00
|
|
|
#if (defined(ARM) || defined(_ARM)) && !defined(_M_ARM)
|
|
|
|
#define _M_ARM
|
|
|
|
#endif
|
|
|
|
|
2013-08-10 23:46:21 +00:00
|
|
|
inline u8* GetPointerUnchecked(const u32 address) {
|
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32)
|
|
|
|
return (u8 *)(base + (address & MEMVIEW32_MASK));
|
|
|
|
#else
|
|
|
|
return (u8 *)(base + address);
|
|
|
|
#endif
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#ifdef SAFE_MEMORY
|
|
|
|
u32 ReadUnchecked_U32(const u32 _Address);
|
2012-11-23 11:42:35 +00:00
|
|
|
// ONLY for use by GUI and fast interpreter
|
|
|
|
u8 ReadUnchecked_U8(const u32 _Address);
|
|
|
|
u16 ReadUnchecked_U16(const u32 _Address);
|
|
|
|
void WriteUnchecked_U8(const u8 _Data, const u32 _Address);
|
|
|
|
void WriteUnchecked_U16(const u16 _Data, const u32 _Address);
|
|
|
|
void WriteUnchecked_U32(const u32 _Data, const u32 _Address);
|
|
|
|
#else
|
|
|
|
|
|
|
|
inline u32 ReadUnchecked_U32(const u32 address) {
|
2013-08-16 12:05:50 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2013-08-17 06:48:08 +00:00
|
|
|
return *(u32_le *)(base + (address & MEMVIEW32_MASK));
|
2012-11-01 15:19:01 +00:00
|
|
|
#else
|
2013-08-17 06:48:08 +00:00
|
|
|
return *(u32_le *)(base + address);
|
2012-11-23 11:42:35 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline u16 ReadUnchecked_U16(const u32 address) {
|
2013-08-16 12:05:50 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2013-08-17 06:48:08 +00:00
|
|
|
return *(u16_le *)(base + (address & MEMVIEW32_MASK));
|
2012-11-01 15:19:01 +00:00
|
|
|
#else
|
2013-08-17 06:48:08 +00:00
|
|
|
return *(u16_le *)(base + address);
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
|
|
|
}
|
2012-11-23 11:42:35 +00:00
|
|
|
|
|
|
|
inline u8 ReadUnchecked_U8(const u32 address) {
|
2013-08-16 12:05:50 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2012-11-23 11:42:35 +00:00
|
|
|
return (*(u8 *)(base + (address & MEMVIEW32_MASK)));
|
|
|
|
#else
|
|
|
|
return (*(u8 *)(base + address));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void WriteUnchecked_U32(u32 data, u32 address) {
|
2013-08-16 12:05:50 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2013-08-17 06:48:08 +00:00
|
|
|
*(u32_le *)(base + (address & MEMVIEW32_MASK)) = data;
|
2012-11-23 11:42:35 +00:00
|
|
|
#else
|
2013-08-17 06:48:08 +00:00
|
|
|
*(u32_le *)(base + address) = data;
|
2012-11-23 11:42:35 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void WriteUnchecked_U16(u16 data, u32 address) {
|
2013-08-16 12:05:50 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2013-08-17 06:48:08 +00:00
|
|
|
*(u16_le *)(base + (address & MEMVIEW32_MASK)) = data;
|
2012-11-23 11:42:35 +00:00
|
|
|
#else
|
2013-08-17 06:48:08 +00:00
|
|
|
*(u16_le *)(base + address) = data;
|
2012-11-23 11:42:35 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void WriteUnchecked_U8(u8 data, u32 address) {
|
2013-08-16 12:05:50 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
2012-11-23 11:42:35 +00:00
|
|
|
(*(u8 *)(base + (address & MEMVIEW32_MASK))) = data;
|
|
|
|
#else
|
|
|
|
(*(u8 *)(base + address)) = data;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
inline float Read_Float(u32 address)
|
|
|
|
{
|
|
|
|
u32 ifloat = Read_U32(address);
|
|
|
|
float f;
|
|
|
|
memcpy(&f, &ifloat, sizeof(float));
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// used by JIT. Return zero-extended 32bit values
|
|
|
|
u32 Read_U8_ZX(const u32 address);
|
|
|
|
u32 Read_U16_ZX(const u32 address);
|
|
|
|
|
|
|
|
void Write_U8(const u8 data, const u32 address);
|
|
|
|
void Write_U16(const u16 data, const u32 address);
|
|
|
|
void Write_U32(const u32 data, const u32 address);
|
|
|
|
void Write_U64(const u64 data, const u32 address);
|
|
|
|
|
|
|
|
inline void Write_Float(float f, u32 address)
|
|
|
|
{
|
|
|
|
u32 u;
|
|
|
|
memcpy(&u, &f, sizeof(float));
|
|
|
|
Write_U32(u, address);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reads a zero-terminated string from memory at the address.
|
|
|
|
void GetString(std::string& _string, const u32 _Address);
|
|
|
|
u8* GetPointer(const u32 address);
|
2013-09-21 16:52:30 +00:00
|
|
|
bool IsRAMAddress(const u32 address);
|
|
|
|
bool IsVRAMAddress(const u32 address);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
inline const char* GetCharPointer(const u32 address) {
|
|
|
|
return (const char *)GetPointer(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Memset(const u32 _Address, const u8 _Data, const u32 _iLength);
|
2013-08-10 23:46:21 +00:00
|
|
|
|
|
|
|
inline void Memcpy(const u32 to_address, const void *from_data, const u32 len)
|
|
|
|
{
|
2013-08-11 13:31:54 +00:00
|
|
|
u8 *to = GetPointer(to_address);
|
|
|
|
if (to) {
|
|
|
|
memcpy(to, from_data, len);
|
|
|
|
}
|
|
|
|
// if not, GetPointer will log.
|
2013-08-10 23:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void Memcpy(void *to_data, const u32 from_address, const u32 len)
|
|
|
|
{
|
2013-08-11 13:31:54 +00:00
|
|
|
const u8 *from = GetPointer(from_address);
|
|
|
|
if (from) {
|
|
|
|
memcpy(to_data, from, len);
|
|
|
|
}
|
|
|
|
// if not, GetPointer will log.
|
2013-08-10 23:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void MemcpyUnchecked(void *to_data, const u32 from_address, const u32 len)
|
|
|
|
{
|
|
|
|
memcpy(to_data, GetPointerUnchecked(from_address), len);
|
|
|
|
}
|
|
|
|
|
2013-11-11 23:18:49 +00:00
|
|
|
inline bool IsValidAddress(const u32 address) {
|
|
|
|
if ((address & 0x3E000000) == 0x08000000) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if ((address & 0x3F800000) == 0x04000000) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if ((address & 0xBFFF0000) == 0x00010000) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if ((address & 0x3F000000) >= 0x08000000 && (address & 0x3F000000) < 0x08000000 + g_MemorySize) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void ReadStruct(u32 address, T *ptr)
|
|
|
|
{
|
2012-11-06 14:46:21 +00:00
|
|
|
size_t sz = sizeof(*ptr);
|
2013-03-17 02:45:05 +00:00
|
|
|
memcpy(ptr, GetPointer(address), sz);
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
2012-11-06 14:46:21 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
template<class T>
|
|
|
|
void WriteStruct(u32 address, T *ptr)
|
|
|
|
{
|
2012-11-06 14:46:21 +00:00
|
|
|
size_t sz = sizeof(*ptr);
|
2013-03-17 02:45:05 +00:00
|
|
|
memcpy(GetPointer(address), ptr, sz);
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
2013-03-31 03:12:22 +00:00
|
|
|
// Expect this to be some form of auto class on big endian.
|
|
|
|
template<class T>
|
|
|
|
T *GetStruct(u32 address)
|
|
|
|
{
|
|
|
|
return (T *)GetPointer(address);
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
const char *GetAddressName(u32 address);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-05-31 06:32:13 +00:00
|
|
|
template <typename T>
|
|
|
|
struct PSPPointer
|
|
|
|
{
|
2013-07-25 06:23:35 +00:00
|
|
|
u32_le ptr;
|
2013-05-31 06:32:13 +00:00
|
|
|
|
2013-06-02 21:26:12 +00:00
|
|
|
inline T &operator*() const
|
2013-05-31 06:32:13 +00:00
|
|
|
{
|
2013-09-23 19:46:45 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
|
|
|
return *(T *)(Memory::base + (ptr & Memory::MEMVIEW32_MASK));
|
|
|
|
#else
|
2013-09-23 19:51:34 +00:00
|
|
|
return *(T *)(Memory::base + ptr);
|
2013-09-23 19:46:45 +00:00
|
|
|
#endif
|
2013-05-31 06:32:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 21:26:12 +00:00
|
|
|
inline T &operator[](int i) const
|
2013-05-31 06:32:13 +00:00
|
|
|
{
|
2013-09-23 19:46:45 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
|
|
|
return *((T *)(Memory::base + (ptr & Memory::MEMVIEW32_MASK)) + i);
|
|
|
|
#else
|
2013-05-31 06:32:13 +00:00
|
|
|
return *((T *)(Memory::base + ptr) + i);
|
2013-09-23 19:46:45 +00:00
|
|
|
#endif
|
2013-05-31 06:32:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-02 21:26:12 +00:00
|
|
|
inline T *operator->() const
|
|
|
|
{
|
2013-09-23 19:46:45 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
|
|
|
return (T *)(Memory::base + (ptr & Memory::MEMVIEW32_MASK));
|
|
|
|
#else
|
2013-06-02 21:26:12 +00:00
|
|
|
return (T *)(Memory::base + ptr);
|
2013-09-23 19:46:45 +00:00
|
|
|
#endif
|
2013-06-02 21:26:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> operator+(int i) const
|
|
|
|
{
|
|
|
|
PSPPointer other;
|
|
|
|
other.ptr = ptr + i * sizeof(T);
|
|
|
|
return other;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> &operator=(u32 p)
|
|
|
|
{
|
|
|
|
ptr = p;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> &operator+=(int i)
|
|
|
|
{
|
|
|
|
ptr = ptr + i * sizeof(T);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> operator-(int i) const
|
|
|
|
{
|
|
|
|
PSPPointer other;
|
|
|
|
other.ptr = ptr - i * sizeof(T);
|
|
|
|
return other;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> &operator-=(int i)
|
|
|
|
{
|
|
|
|
ptr = ptr - i * sizeof(T);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> &operator++()
|
|
|
|
{
|
|
|
|
ptr += sizeof(T);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> operator++(int i)
|
|
|
|
{
|
|
|
|
PSPPointer<T> other;
|
|
|
|
other.ptr = ptr;
|
|
|
|
ptr += sizeof(T);
|
|
|
|
return other;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> &operator--()
|
|
|
|
{
|
|
|
|
ptr -= sizeof(T);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PSPPointer<T> operator--(int i)
|
|
|
|
{
|
|
|
|
PSPPointer<T> other;
|
|
|
|
other.ptr = ptr;
|
|
|
|
ptr -= sizeof(T);
|
|
|
|
return other;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline operator T*()
|
2013-05-31 06:32:13 +00:00
|
|
|
{
|
2013-09-23 20:06:39 +00:00
|
|
|
#if defined(_M_IX86) || defined(_M_ARM32) || defined (_XBOX)
|
|
|
|
return (T *)(Memory::base + (ptr & Memory::MEMVIEW32_MASK));
|
|
|
|
#else
|
2013-05-31 06:32:13 +00:00
|
|
|
return (T *)(Memory::base + ptr);
|
2013-09-23 20:06:39 +00:00
|
|
|
#endif
|
2013-05-31 06:32:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-25 13:51:39 +00:00
|
|
|
bool IsValid() const
|
2013-05-31 06:32:13 +00:00
|
|
|
{
|
|
|
|
return Memory::IsValidAddress(ptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-07 07:07:29 +00:00
|
|
|
|
2013-06-22 08:05:28 +00:00
|
|
|
inline u32 PSP_GetScratchpadMemoryBase() { return 0x00010000;}
|
|
|
|
inline u32 PSP_GetScratchpadMemoryEnd() { return 0x00014000;}
|
|
|
|
|
|
|
|
inline u32 PSP_GetKernelMemoryBase() { return 0x08000000;}
|
2013-07-07 07:07:29 +00:00
|
|
|
inline u32 PSP_GetUserMemoryEnd() { return PSP_GetKernelMemoryBase() + Memory::g_MemorySize;}
|
2013-06-22 08:05:28 +00:00
|
|
|
inline u32 PSP_GetKernelMemoryEnd() { return 0x08400000;}
|
|
|
|
// "Volatile" RAM is between 0x08400000 and 0x08800000, can be requested by the
|
|
|
|
// game through sceKernelVolatileMemTryLock.
|
|
|
|
|
|
|
|
inline u32 PSP_GetUserMemoryBase() { return 0x08800000;}
|
|
|
|
|
|
|
|
inline u32 PSP_GetDefaultLoadAddress() { return 0x08804000;}
|
|
|
|
//inline u32 PSP_GetDefaultLoadAddress() { return 0x0898dab0;}
|
|
|
|
inline u32 PSP_GetVidMemBase() { return 0x04000000;}
|
|
|
|
inline u32 PSP_GetVidMemEnd() { return 0x04800000;}
|
2013-06-21 17:34:57 +00:00
|
|
|
|
2013-06-02 21:26:12 +00:00
|
|
|
template <typename T>
|
|
|
|
inline bool operator==(const PSPPointer<T> &lhs, const PSPPointer<T> &rhs)
|
|
|
|
{
|
|
|
|
return lhs.ptr == rhs.ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline bool operator!=(const PSPPointer<T> &lhs, const PSPPointer<T> &rhs)
|
|
|
|
{
|
|
|
|
return lhs.ptr != rhs.ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline bool operator<(const PSPPointer<T> &lhs, const PSPPointer<T> &rhs)
|
|
|
|
{
|
|
|
|
return lhs.ptr < rhs.ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline bool operator>(const PSPPointer<T> &lhs, const PSPPointer<T> &rhs)
|
|
|
|
{
|
|
|
|
return lhs.ptr > rhs.ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline bool operator<=(const PSPPointer<T> &lhs, const PSPPointer<T> &rhs)
|
|
|
|
{
|
|
|
|
return lhs.ptr <= rhs.ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline bool operator>=(const PSPPointer<T> &lhs, const PSPPointer<T> &rhs)
|
|
|
|
{
|
|
|
|
return lhs.ptr >= rhs.ptr;
|
|
|
|
}
|