2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2009-09-21 09:48:31 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +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-07-03 00:49:40 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +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-07-03 00:49:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include <atomic>
|
2022-10-12 13:57:53 +00:00
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
2022-05-18 13:27:23 +00:00
|
|
|
#include <string>
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/Pcsx2Defs.h"
|
|
|
|
|
2010-01-22 15:22:01 +00:00
|
|
|
// This macro is actually useful for about any and every possible application of C++
|
|
|
|
// equality operators.
|
2016-11-12 15:28:37 +00:00
|
|
|
#define OpEqu(field) (field == right.field)
|
2010-01-22 15:22:01 +00:00
|
|
|
|
|
|
|
// Macro used for removing some of the redtape involved in defining bitfield/union helpers.
|
|
|
|
//
|
2016-11-12 15:28:37 +00:00
|
|
|
#define BITFIELD32() \
|
2021-09-06 18:28:26 +00:00
|
|
|
union \
|
|
|
|
{ \
|
|
|
|
u32 bitset; \
|
|
|
|
struct \
|
|
|
|
{
|
2010-01-22 15:22:01 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
#define BITFIELD_END \
|
2021-09-06 18:28:26 +00:00
|
|
|
}; \
|
|
|
|
};
|
2010-01-22 15:22:01 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
2010-10-22 16:23:52 +00:00
|
|
|
// PageProtectionMode
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
class PageProtectionMode
|
2009-07-03 00:49:40 +00:00
|
|
|
{
|
2010-10-22 16:23:52 +00:00
|
|
|
protected:
|
2021-09-06 18:28:26 +00:00
|
|
|
bool m_read;
|
|
|
|
bool m_write;
|
|
|
|
bool m_exec;
|
2010-10-22 16:23:52 +00:00
|
|
|
|
|
|
|
public:
|
2021-09-06 18:28:26 +00:00
|
|
|
PageProtectionMode()
|
|
|
|
{
|
|
|
|
All(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
PageProtectionMode& Read(bool allow = true)
|
|
|
|
{
|
|
|
|
m_read = allow;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PageProtectionMode& Write(bool allow = true)
|
|
|
|
{
|
|
|
|
m_write = allow;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PageProtectionMode& Execute(bool allow = true)
|
|
|
|
{
|
|
|
|
m_exec = allow;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PageProtectionMode& All(bool allow = true)
|
|
|
|
{
|
|
|
|
m_read = m_write = m_exec = allow;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CanRead() const { return m_read; }
|
|
|
|
bool CanWrite() const { return m_write; }
|
|
|
|
bool CanExecute() const { return m_exec && m_read; }
|
|
|
|
bool IsNone() const { return !m_read && !m_write; }
|
|
|
|
|
2022-05-18 13:27:23 +00:00
|
|
|
std::string ToString() const;
|
2009-07-03 00:49:40 +00:00
|
|
|
};
|
|
|
|
|
2010-10-22 16:23:52 +00:00
|
|
|
static __fi PageProtectionMode PageAccess_None()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return PageProtectionMode();
|
2010-10-22 16:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __fi PageProtectionMode PageAccess_ReadOnly()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return PageProtectionMode().Read();
|
2010-10-22 16:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __fi PageProtectionMode PageAccess_WriteOnly()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return PageProtectionMode().Write();
|
2010-10-22 16:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __fi PageProtectionMode PageAccess_ReadWrite()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return PageAccess_ReadOnly().Write();
|
2010-10-22 16:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __fi PageProtectionMode PageAccess_ExecOnly()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return PageAccess_ReadOnly().Execute();
|
2010-10-22 16:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __fi PageProtectionMode PageAccess_Any()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return PageProtectionMode().All();
|
2010-10-22 16:23:52 +00:00
|
|
|
}
|
|
|
|
|
2022-12-28 06:53:37 +00:00
|
|
|
struct PageFaultInfo
|
|
|
|
{
|
|
|
|
uptr pc;
|
|
|
|
uptr addr;
|
|
|
|
};
|
|
|
|
|
|
|
|
using PageFaultHandler = bool(*)(const PageFaultInfo& info);
|
|
|
|
|
2010-01-22 15:22:01 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// HostSys
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-07-03 00:49:40 +00:00
|
|
|
namespace HostSys
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// Maps a block of memory for use as a recompiled code buffer.
|
|
|
|
// Returns NULL on allocation failure.
|
2022-10-12 13:57:53 +00:00
|
|
|
extern void* Mmap(void* base, size_t size, const PageProtectionMode& mode);
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// Unmaps a block allocated by SysMmap
|
2022-10-12 13:57:53 +00:00
|
|
|
extern void Munmap(void* base, size_t size);
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern void MemProtect(void* baseaddr, size_t size, const PageProtectionMode& mode);
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
template <uint size>
|
|
|
|
void MemProtectStatic(u8 (&arr)[size], const PageProtectionMode& mode)
|
|
|
|
{
|
|
|
|
MemProtect(arr, size, mode);
|
|
|
|
}
|
2022-10-12 13:57:53 +00:00
|
|
|
|
|
|
|
extern std::string GetFileMappingName(const char* prefix);
|
|
|
|
extern void* CreateSharedMemory(const char* name, size_t size);
|
|
|
|
extern void DestroySharedMemory(void* ptr);
|
|
|
|
extern void* MapSharedMemory(void* handle, size_t offset, void* baseaddr, size_t size, const PageProtectionMode& mode);
|
|
|
|
extern void UnmapSharedMemory(void* baseaddr, size_t size);
|
2022-12-28 06:53:37 +00:00
|
|
|
|
|
|
|
/// Installs the specified page fault handler. Only one handler can be active at once.
|
|
|
|
bool InstallPageFaultHandler(PageFaultHandler handler);
|
|
|
|
|
|
|
|
/// Removes the page fault handler. handler is only specified to check against the active callback.
|
|
|
|
void RemovePageFaultHandler(PageFaultHandler handler);
|
2022-10-12 13:57:53 +00:00
|
|
|
}
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2022-10-29 03:39:19 +00:00
|
|
|
class SharedMemoryMappingArea
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static std::unique_ptr<SharedMemoryMappingArea> Create(size_t size);
|
|
|
|
|
|
|
|
~SharedMemoryMappingArea();
|
|
|
|
|
|
|
|
__fi size_t GetSize() const { return m_size; }
|
|
|
|
__fi size_t GetNumPages() const { return m_num_pages; }
|
|
|
|
|
|
|
|
__fi u8* BasePointer() const { return m_base_ptr; }
|
|
|
|
__fi u8* OffsetPointer(size_t offset) const { return m_base_ptr + offset; }
|
|
|
|
__fi u8* PagePointer(size_t page) const { return m_base_ptr + __pagesize * page; }
|
|
|
|
|
|
|
|
u8* Map(void* file_handle, size_t file_offset, void* map_base, size_t map_size, const PageProtectionMode& mode);
|
|
|
|
bool Unmap(void* map_base, size_t map_size);
|
|
|
|
|
|
|
|
private:
|
|
|
|
SharedMemoryMappingArea(u8* base_ptr, size_t size, size_t num_pages);
|
|
|
|
|
|
|
|
u8* m_base_ptr;
|
|
|
|
size_t m_size;
|
|
|
|
size_t m_num_pages;
|
|
|
|
size_t m_num_mappings = 0;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
using PlaceholderMap = std::map<size_t, size_t>;
|
|
|
|
|
|
|
|
PlaceholderMap::iterator FindPlaceholder(size_t page);
|
|
|
|
|
|
|
|
PlaceholderMap m_placeholder_ranges;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-10-18 01:40:49 +00:00
|
|
|
// Safe version of Munmap -- NULLs the pointer variable immediately after free'ing it.
|
2016-11-12 15:28:37 +00:00
|
|
|
#define SafeSysMunmap(ptr, size) \
|
2022-10-12 13:57:53 +00:00
|
|
|
((void)(HostSys::Munmap(ptr, size), (ptr) = 0))
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
extern u64 GetTickFrequency();
|
|
|
|
extern u64 GetCPUTicks();
|
2010-11-23 21:32:52 +00:00
|
|
|
extern u64 GetPhysicalMemory();
|
2021-03-28 07:50:18 +00:00
|
|
|
/// Spin for a short period of time (call while spinning waiting for a lock)
|
|
|
|
/// Returns the approximate number of ns that passed
|
|
|
|
extern u32 ShortSpin();
|
|
|
|
/// Number of ns to spin for before sleeping a thread
|
|
|
|
extern const u32 SPIN_TIME_NS;
|
2022-05-30 05:49:07 +00:00
|
|
|
/// Like C abort() but adds the given message to the crashlog
|
|
|
|
[[noreturn]] void AbortWithMessage(const char* msg);
|
2009-11-26 03:37:10 +00:00
|
|
|
|
2022-05-18 13:27:23 +00:00
|
|
|
extern std::string GetOSVersionString();
|
2015-02-26 02:08:58 +00:00
|
|
|
|
2022-04-18 13:35:14 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
/// Abstracts platform-specific code for asynchronously playing a sound.
|
|
|
|
/// On Windows, this will use PlaySound(). On Linux, it will shell out to aplay. On MacOS, it uses NSSound.
|
|
|
|
bool PlaySoundAsync(const char* path);
|
|
|
|
} // namespace Common
|