/* Pcsx2 - Pc Ps2 Emulator * Copyright (C) 2002-2009 Pcsx2 Team * * 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 * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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 for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #pragma once extern void* __fastcall pcsx2_aligned_malloc(size_t size, size_t align); extern void* __fastcall pcsx2_aligned_realloc(void* handle, size_t size, size_t align); extern void pcsx2_aligned_free(void* pmem); // aligned_malloc: Implement/declare linux equivalents here! #if !defined(_MSC_VER) && !defined(HAVE_ALIGNED_MALLOC) # define _aligned_malloc pcsx2_aligned_malloc # define _aligned_free pcsx2_aligned_free # define _aligned_realloc pcsx2_aligned_realloc #endif ////////////////////////////////////////////////////////////// // Safe deallocation macros -- always check pointer validity (non-null) // and set pointer to null on deallocation. #define safe_delete( ptr ) \ if( ptr != NULL ) { \ delete ptr; \ ptr = NULL; \ } #define safe_delete_array( ptr ) \ if( ptr != NULL ) { \ delete[] ptr; \ ptr = NULL; \ } #define safe_free( ptr ) \ if( ptr != NULL ) { \ free( ptr ); \ ptr = NULL; \ } #define safe_aligned_free( ptr ) \ if( ptr != NULL ) { \ _aligned_free( ptr ); \ ptr = NULL; \ } #define SafeSysMunmap( ptr, size ) \ if( ptr != NULL ) { \ HostSys::Munmap( (uptr)ptr, size ); \ ptr = NULL; \ } ////////////////////////////////////////////////////////////////////////////////////////// // Handy little class for allocating a resizable memory block, complete with // exception-based error handling and automatic cleanup. // template< typename T > class SafeArray : public NoncopyableObject { public: static const int DefaultChunkSize = 0x1000 * sizeof(T); public: const wxChar* Name; // user-assigned block name int ChunkSize; protected: T* m_ptr; int m_size; // size of the allocation of memory protected: // Internal constructor for use by derived classes. This allows a derived class to // use its own memory allocation (with an aligned memory, for example). // Throws: // Exception::OutOfMemory if the allocated_mem pointer is NULL. explicit SafeArray( const wxChar* name, T* allocated_mem, int initSize ) : Name( name ) , ChunkSize( DefaultChunkSize ) , m_ptr( allocated_mem ) , m_size( initSize ) { if( m_ptr == NULL ) throw Exception::OutOfMemory(); } virtual T* _virtual_realloc( int newsize ) { return (T*)((m_ptr == NULL) ? malloc( newsize * sizeof(T) ) : realloc( m_ptr, newsize * sizeof(T) ) ); } public: virtual ~SafeArray() { safe_free( m_ptr ); } explicit SafeArray( const wxChar* name=L"Unnamed" ) : Name( name ) , ChunkSize( DefaultChunkSize ) , m_ptr( NULL ) , m_size( 0 ) { } explicit SafeArray( int initialSize, const wxChar* name=L"Unnamed" ) : Name( name ) , ChunkSize( DefaultChunkSize ) , m_ptr( (initialSize==0) ? NULL : (T*)malloc( initialSize * sizeof(T) ) ) , m_size( initialSize ) { if( (initialSize != 0) && (m_ptr == NULL) ) throw Exception::OutOfMemory(); } // Clears the contents of the array to zero, and frees all memory allocations. void Dispose() { m_size = 0; safe_free( m_ptr ); } bool IsDisposed() const { return (m_ptr==NULL); } // Returns the size of the memory allocation, as according to the array type. int GetLength() const { return m_size; } // Returns the size of the memory allocation in bytes. int GetSizeInBytes() const { return m_size * sizeof(T); } // reallocates the array to the explicit size. Can be used to shrink or grow an // array, and bypasses the internal threshold growth indicators. void ExactAlloc( int newsize ) { if( newsize == m_size ) return; m_ptr = _virtual_realloc( newsize ); if( m_ptr == NULL ) { throw Exception::OutOfMemory( wxsFormat( // english (for diagnostic) L"Out-of-memory on SafeArray block re-allocation.\n" L"Old size: %d bytes, New size: %d bytes.", m_size, newsize ) ); } m_size = newsize; } // Ensures that the allocation is large enough to fit data of the // amount requested. The memory allocation is not resized smaller. void MakeRoomFor( int newsize ) { if( newsize > m_size ) ExactAlloc( newsize ); } // Extends the containment area of the array. Extensions are performed // in chunks. void GrowBy( int items ) { MakeRoomFor( m_size + ChunkSize + items + 1 ); } // Gets a pointer to the requested allocation index. // DevBuilds : Throws Exception::IndexBoundsFault() if the index is invalid. T *GetPtr( uint idx=0 ) { return _getPtr( idx ); } const T *GetPtr( uint idx=0 ) const { return _getPtr( idx ); } // Gets an element of this memory allocation much as if it were an array. // DevBuilds : Throws Exception::IndexBoundsFault() if the index is invalid. T& operator[]( int idx ) { return *_getPtr( (uint)idx ); } const T& operator[]( int idx ) const { return *_getPtr( (uint)idx ); } virtual SafeArray* Clone() const { SafeArray* retval = new SafeArray( m_size ); memcpy_fast( retval->GetPtr(), m_ptr, sizeof(T) * m_size ); return retval; } protected: // A safe array index fetcher. Throws an exception if the array index // is outside the bounds of the array. // Performance Considerations: This function adds quite a bit of overhead // to array indexing and thus should be done infrequently if used in // time-critical situations. Instead of using it from inside loops, cache // the pointer into a local variable and use std (unsafe) C indexes. T* _getPtr( uint i ) const { #ifdef PCSX2_DEVBUILD if( IsDevBuild && i >= (uint)m_size ) throw Exception::IndexBoundsFault( Name, i, m_size ); #endif return &m_ptr[i]; } }; ////////////////////////////////////////////////////////////////////////////////////////// // SafeList - Simple growable container without all the mess or hassle of std containers. // // This container is intended for reasonably simple class types only. Things which this // container does not handle with desired robustness: // // * Classes with non-trivial constructors (such that construction creates much overhead) // * Classes with copy constructors (copying is done using performance memcpy) // * Classes with destructors (they're not called, sorry!) // template< typename T > class SafeList : public NoncopyableObject { public: static const int DefaultChunkSize = 0x80 * sizeof(T); public: const wxChar* Name; // user-assigned block name int ChunkSize; // assigned DefaultChunkSize on init, reconfigurable at any time. protected: T* m_ptr; int m_allocsize; // size of the allocation of memory uint m_length; // length of the array (active items, not buffer allocation) protected: virtual T* _virtual_realloc( int newsize ) { return (T*)realloc( m_ptr, newsize * sizeof(T) ); } void _boundsCheck( uint i ) const { if( IsDevBuild && i >= (uint)m_length ) throw Exception::IndexBoundsFault( Name, i, m_length ); } public: virtual ~SafeList() { safe_free( m_ptr ); } explicit SafeList( const wxChar* name=L"Unnamed" ) : Name( name ) , ChunkSize( DefaultChunkSize ) , m_ptr( NULL ) , m_allocsize( 0 ) , m_length( 0 ) { } explicit SafeList( int initialSize, const wxChar* name=L"Unnamed" ) : Name( name ) , ChunkSize( DefaultChunkSize ) , m_ptr( (T*)malloc( initialSize * sizeof(T) ) ) , m_allocsize( initialSize ) , m_length( 0 ) { if( m_ptr == NULL ) throw Exception::OutOfMemory(); for( int i=0; i m_allocsize ) { const int newalloc = blockSize + ChunkSize; m_ptr = _virtual_realloc( newalloc ); if( m_ptr == NULL ) { throw Exception::OutOfMemory( // English Diagonstic message: wxsFormat( L"Out-of-memory on SafeList block re-allocation.\n" L"Old size: %d bytes, New size: %d bytes", m_allocsize, newalloc ) ); } for( ; m_allocsize 0 ) memcpy_fast( &m_ptr[index], &m_ptr[index+1], copylen ); } virtual SafeList* Clone() const { SafeList* retval = new SafeList( m_length ); memcpy_fast( retval->m_ptr, m_ptr, sizeof(T) * m_length ); return retval; } protected: void _MakeRoomFor_threshold( int newsize ) { MakeRoomFor( newsize + ChunkSize ); } // A safe array index fetcher. Throws an exception if the array index // is outside the bounds of the array. // Performance Considerations: This function adds quite a bit of overhead // to array indexing and thus should be done infrequently if used in // time-critical situations. Instead of using it from inside loops, cache // the pointer into a local variable and use std (unsafe) C indexes. T* _getPtr( uint i ) const { _boundsCheck( i ); return &m_ptr[i]; } }; ////////////////////////////////////////////////////////////////////////////////////////// // Handy little class for allocating a resizable memory block, complete with // exception-based error handling and automatic cleanup. // This one supports aligned data allocations too! template< typename T, uint Alignment > class SafeAlignedArray : public SafeArray { protected: T* _virtual_realloc( int newsize ) { return (T*)( ( this->m_ptr == NULL ) ? _aligned_malloc( newsize * sizeof(T), Alignment ) : _aligned_realloc( this->m_ptr, newsize * sizeof(T), Alignment ) ); } // Appends "(align: xx)" to the name of the allocation in devel builds. // Maybe useful,maybe not... no harm in attaching it. :D public: virtual ~SafeAlignedArray() { safe_aligned_free( this->m_ptr ); // mptr is set to null, so the parent class's destructor won't re-free it. } explicit SafeAlignedArray( const wxChar* name=L"Unnamed" ) : SafeArray::SafeArray( name ) { } explicit SafeAlignedArray( int initialSize, const wxChar* name=L"Unnamed" ) : SafeArray::SafeArray( name, (T*)_aligned_malloc( initialSize * sizeof(T), Alignment ), initialSize ) { } virtual SafeAlignedArray* Clone() const { SafeAlignedArray* retval = new SafeAlignedArray( this->m_size ); memcpy_fast( retval->GetPtr(), this->m_ptr, sizeof(T) * this->m_size ); return retval; } }; // For lack of a better place for now (they depend on SafeList so they can't go in StringUtil) extern void SplitString( SafeList& dest, const wxString& src, const wxString& delims ); extern void JoinString( wxString& dest, const SafeList& src, const wxString& separator );