mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #821 from turtleli/fix-linux-aligned-realloc
Fix _aligned_realloc implementation on linux
This commit is contained in:
commit
f8104137ce
|
@ -15,7 +15,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "MemcpyFast.h"
|
||||
#include "SafeArray.h"
|
||||
|
||||
// Internal constructor for use by derived classes. This allows a derived class to
|
||||
|
@ -132,7 +131,7 @@ T* SafeAlignedArray<T,Alignment>::_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 )
|
||||
pcsx2_aligned_realloc( this->m_ptr, newsize * sizeof(T), Alignment, this->m_size * sizeof(T) )
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -51,8 +51,11 @@
|
|||
// aligned_malloc: Implement/declare linux equivalents here!
|
||||
#if !defined(_MSC_VER)
|
||||
extern void* __fastcall _aligned_malloc(size_t size, size_t align);
|
||||
extern void* __fastcall _aligned_realloc(void* handle, 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);
|
||||
#else
|
||||
#define pcsx2_aligned_realloc(handle, new_size, align, old_size) \
|
||||
_aligned_realloc(handle, new_size, align)
|
||||
#endif
|
||||
|
||||
// --------------------------------------------------------------------------------------
|
||||
|
@ -245,8 +248,8 @@ public:
|
|||
|
||||
virtual void Resize( size_t newsize )
|
||||
{
|
||||
this->m_size = newsize;
|
||||
this->m_buffer = (T*)_aligned_realloc(this->m_buffer, newsize * sizeof(T), align);
|
||||
this->m_buffer = (T*)pcsx2_aligned_realloc(this->m_buffer, newsize * sizeof(T), align, this->m_size * sizeof(T));
|
||||
this->m_size = newsize;
|
||||
|
||||
if (!this->m_buffer)
|
||||
throw Exception::OutOfMemory(L"ScopedAlignedAlloc::Resize");
|
||||
|
|
|
@ -30,15 +30,14 @@ void* __fastcall _aligned_malloc(size_t size, size_t align)
|
|||
#endif
|
||||
}
|
||||
|
||||
void* __fastcall _aligned_realloc(void* handle, size_t size, size_t align)
|
||||
void* __fastcall pcsx2_aligned_realloc(void* handle, size_t new_size, size_t align, size_t old_size)
|
||||
{
|
||||
pxAssert( align < 0x10000 );
|
||||
|
||||
void* newbuf = _aligned_malloc( size, align );
|
||||
void* newbuf = _aligned_malloc(new_size, align);
|
||||
|
||||
if( handle != NULL )
|
||||
{
|
||||
memcpy( newbuf, handle, size );
|
||||
if (newbuf != NULL && handle != NULL) {
|
||||
memcpy(newbuf, handle, std::min(old_size, new_size));
|
||||
_aligned_free(handle);
|
||||
}
|
||||
return newbuf;
|
||||
|
|
|
@ -81,7 +81,7 @@ public:
|
|||
u32 d = (u32&)dataPtr;
|
||||
SizeChain<T>& bucket( mBucket[d % hSize] );
|
||||
|
||||
if( bucket.Chain = (T*)_aligned_realloc( bucket.Chain, sizeof(T)*(bucket.Size+1), 16), bucket.Chain==NULL ) {
|
||||
if( (bucket.Chain = (T*)pcsx2_aligned_realloc( bucket.Chain, sizeof(T)*(bucket.Size+1), 16, sizeof(T)*bucket.Size)) == NULL ) {
|
||||
throw Exception::OutOfMemory(
|
||||
wxsFormat(L"HashBucket Chain (bucket size=%d)", bucket.Size+1)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue