2010-10-19 09:25:44 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/Exceptions.h"
|
2010-10-19 09:25:44 +00:00
|
|
|
|
|
|
|
// pxUSE_SECURE_MALLOC - enables bounds checking on scoped malloc allocations.
|
|
|
|
|
|
|
|
#ifndef pxUSE_SECURE_MALLOC
|
|
|
|
#define pxUSE_SECURE_MALLOC 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Safe deallocation macros -- checks pointer validity (non-null) when needed, and sets
|
|
|
|
// pointer to null after deallocation.
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
#define safe_delete(ptr) \
|
2021-09-06 18:28:26 +00:00
|
|
|
((void)(delete (ptr)), (ptr) = NULL)
|
2010-10-19 09:25:44 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
#define safe_delete_array(ptr) \
|
2021-09-06 18:28:26 +00:00
|
|
|
((void)(delete[](ptr)), (ptr) = NULL)
|
2010-10-19 09:25:44 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
// No checks for NULL -- wxWidgets says it's safe to skip NULL checks and it runs on
|
2010-10-19 09:25:44 +00:00
|
|
|
// just about every compiler and libc implementation of any recentness.
|
2016-11-12 15:28:37 +00:00
|
|
|
#define safe_free(ptr) \
|
2021-09-06 18:28:26 +00:00
|
|
|
((void)(free(ptr), !!0), (ptr) = NULL)
|
2010-10-19 09:25:44 +00:00
|
|
|
//((void) (( ( (ptr) != NULL ) && (free( ptr ), !!0) ), (ptr) = NULL))
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
#define safe_fclose(ptr) \
|
2021-09-06 18:28:26 +00:00
|
|
|
((void)((((ptr) != NULL) && (fclose(ptr), !!0)), (ptr) = NULL))
|
2010-10-19 09:25:44 +00:00
|
|
|
|
|
|
|
// Implementation note: all known implementations of _aligned_free check the pointer for
|
|
|
|
// NULL status (our implementation under GCC, and microsoft's under MSVC), so no need to
|
|
|
|
// do it here.
|
2016-11-12 15:28:37 +00:00
|
|
|
#define safe_aligned_free(ptr) \
|
2021-09-06 18:28:26 +00:00
|
|
|
((void)(_aligned_free(ptr), (ptr) = NULL))
|
2010-10-19 09:25:44 +00:00
|
|
|
|
|
|
|
// aligned_malloc: Implement/declare linux equivalents here!
|
2015-09-11 17:28:17 +00:00
|
|
|
#if !defined(_MSC_VER)
|
2021-09-06 18:28:26 +00:00
|
|
|
extern void* __fastcall _aligned_malloc(size_t size, size_t align);
|
|
|
|
extern void* __fastcall pcsx2_aligned_realloc(void* handle, size_t new_size, size_t align, size_t old_size);
|
|
|
|
extern void _aligned_free(void* pmem);
|
2015-09-13 17:02:07 +00:00
|
|
|
#else
|
|
|
|
#define pcsx2_aligned_realloc(handle, new_size, align, old_size) \
|
2021-09-06 18:28:26 +00:00
|
|
|
_aligned_realloc(handle, new_size, align)
|
2010-10-19 09:25:44 +00:00
|
|
|
#endif
|
|
|
|
|
2010-11-05 01:33:01 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxDoOutOfMemory
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
typedef void FnType_OutOfMemory(uptr blocksize);
|
2021-09-06 18:28:26 +00:00
|
|
|
typedef FnType_OutOfMemory* Fnptr_OutOfMemory;
|
2010-11-05 01:33:01 +00:00
|
|
|
|
|
|
|
// This method is meant to be assigned by applications that link against pxWex. It is called
|
|
|
|
// (invoked) prior to most pxWex built-in memory/array classes throwing exceptions, and can be
|
|
|
|
// used by an application to remove unneeded memory allocations and/or reduce internal cache
|
|
|
|
// reserves.
|
|
|
|
//
|
|
|
|
// Example: PCSX2 uses several bloated recompiler code caches. Larger caches improve performance,
|
|
|
|
// however a rouge cache growth could cause memory constraints in the operating system. If an out-
|
|
|
|
// of-memory error occurs, PCSX2's implementation of this function attempts to reset all internal
|
|
|
|
// recompiler caches. This can typically free up 100-150 megs of memory, and will allow the app
|
|
|
|
// to continue running without crashing or hanging the operating system, etc.
|
|
|
|
//
|
|
|
|
extern Fnptr_OutOfMemory pxDoOutOfMemory;
|
|
|
|
|
2010-10-19 09:25:44 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
2021-11-14 01:21:17 +00:00
|
|
|
// AlignedBuffer
|
2010-10-19 09:25:44 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
2021-11-14 01:21:17 +00:00
|
|
|
// A simple container class for an aligned allocation. By default, no bounds checking is
|
|
|
|
// performed, and there is no option for enabling bounds checking. If bounds checking and
|
|
|
|
// other features are needed, use the more robust SafeArray<> instead.
|
2010-10-19 09:25:44 +00:00
|
|
|
//
|
2021-11-14 01:21:17 +00:00
|
|
|
template <typename T, uint align>
|
|
|
|
class AlignedBuffer
|
2010-10-19 09:25:44 +00:00
|
|
|
{
|
2021-11-14 01:21:17 +00:00
|
|
|
static_assert(std::is_pod<T>::value, "Must use a POD type");
|
2010-10-19 09:25:44 +00:00
|
|
|
|
2021-11-14 01:21:17 +00:00
|
|
|
struct Deleter
|
2021-09-06 18:28:26 +00:00
|
|
|
{
|
2021-11-14 01:21:17 +00:00
|
|
|
void operator()(T* ptr)
|
|
|
|
{
|
|
|
|
_aligned_free(ptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unique_ptr<T[], Deleter> m_buffer;
|
|
|
|
std::size_t m_size;
|
2010-10-19 09:25:44 +00:00
|
|
|
|
2021-11-14 01:21:17 +00:00
|
|
|
public:
|
|
|
|
AlignedBuffer(size_t size = 0)
|
2021-09-06 18:28:26 +00:00
|
|
|
{
|
2021-11-14 01:21:17 +00:00
|
|
|
Alloc(size);
|
2021-09-06 18:28:26 +00:00
|
|
|
}
|
2010-10-19 09:25:44 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
size_t GetSize() const { return m_size; }
|
|
|
|
size_t GetLength() const { return m_size; }
|
|
|
|
|
2021-11-14 01:21:17 +00:00
|
|
|
void Alloc(size_t newsize)
|
|
|
|
{
|
|
|
|
m_size = newsize;
|
|
|
|
m_buffer.reset();
|
|
|
|
if (!m_size)
|
|
|
|
return;
|
2021-09-06 18:28:26 +00:00
|
|
|
|
2021-11-14 01:21:17 +00:00
|
|
|
m_buffer.reset(reinterpret_cast<T*>(_aligned_malloc(this->m_size * sizeof(T), align)));
|
|
|
|
if (!m_buffer)
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Resize(size_t newsize)
|
|
|
|
{
|
|
|
|
m_buffer.reset(reinterpret_cast<T*>(pcsx2_aligned_realloc(m_buffer.release(), newsize * sizeof(T), align, m_size * sizeof(T))));
|
|
|
|
m_size = newsize;
|
|
|
|
|
|
|
|
if (!m_buffer)
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
2021-09-06 18:28:26 +00:00
|
|
|
|
|
|
|
void Free()
|
|
|
|
{
|
|
|
|
Alloc(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Makes enough room for the requested size. Existing data in the array is retained.
|
|
|
|
void MakeRoomFor(uint size)
|
|
|
|
{
|
|
|
|
if (size <= m_size)
|
|
|
|
return;
|
|
|
|
Resize(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
T* GetPtr(uint idx = 0) const
|
|
|
|
{
|
2016-11-12 15:28:37 +00:00
|
|
|
#if pxUSE_SECURE_MALLOC
|
2021-09-06 18:28:26 +00:00
|
|
|
IndexBoundsAssumeDev("ScopedAlloc", idx, m_size);
|
2016-11-12 15:28:37 +00:00
|
|
|
#endif
|
2021-09-06 18:28:26 +00:00
|
|
|
return &m_buffer[idx];
|
|
|
|
}
|
2016-11-12 15:28:37 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
T& operator[](uint idx)
|
|
|
|
{
|
2016-11-12 15:28:37 +00:00
|
|
|
#if pxUSE_SECURE_MALLOC
|
2021-09-06 18:28:26 +00:00
|
|
|
IndexBoundsAssumeDev("ScopedAlloc", idx, m_size);
|
2016-11-12 15:28:37 +00:00
|
|
|
#endif
|
2021-09-06 18:28:26 +00:00
|
|
|
return m_buffer[idx];
|
|
|
|
}
|
2016-11-12 15:28:37 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
const T& operator[](uint idx) const
|
|
|
|
{
|
2016-11-12 15:28:37 +00:00
|
|
|
#if pxUSE_SECURE_MALLOC
|
2021-09-06 18:28:26 +00:00
|
|
|
IndexBoundsAssumeDev("ScopedAlloc", idx, m_size);
|
2016-11-12 15:28:37 +00:00
|
|
|
#endif
|
2021-09-06 18:28:26 +00:00
|
|
|
return m_buffer[idx];
|
|
|
|
}
|
2010-10-19 09:25:44 +00:00
|
|
|
};
|