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-02-09 21:15:56 +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.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// This module contains implementations of _aligned_malloc for platforms that don't have
|
|
|
|
// it built into their CRT/libc.
|
|
|
|
|
|
|
|
#include "PrecompiledHeader.h"
|
|
|
|
|
2015-09-11 17:28:17 +00:00
|
|
|
void* __fastcall _aligned_malloc(size_t size, size_t align)
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2011-07-24 13:02:50 +00:00
|
|
|
pxAssert( align < 0x10000 );
|
2015-09-11 17:28:17 +00:00
|
|
|
#if defined(__USE_ISOC11) && !defined(ASAN_WORKAROUND) // not supported yet on gcc 4.9
|
2014-06-13 18:56:21 +00:00
|
|
|
return aligned_alloc(align, size);
|
|
|
|
#else
|
2015-09-11 17:16:36 +00:00
|
|
|
void *result = 0;
|
|
|
|
posix_memalign(&result, align, size);
|
2015-06-05 18:31:14 +00:00
|
|
|
return result;
|
2014-06-13 18:56:21 +00:00
|
|
|
#endif
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 17:02:07 +00:00
|
|
|
void* __fastcall pcsx2_aligned_realloc(void* handle, size_t new_size, size_t align, size_t old_size)
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2011-07-24 13:02:50 +00:00
|
|
|
pxAssert( align < 0x10000 );
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2015-09-13 17:02:07 +00:00
|
|
|
void* newbuf = _aligned_malloc(new_size, align);
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2015-09-13 17:02:07 +00:00
|
|
|
if (newbuf != NULL && handle != NULL) {
|
|
|
|
memcpy(newbuf, handle, std::min(old_size, new_size));
|
2015-09-11 17:28:17 +00:00
|
|
|
_aligned_free(handle);
|
2009-12-24 10:04:03 +00:00
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
return newbuf;
|
|
|
|
}
|
|
|
|
|
2015-09-11 17:28:17 +00:00
|
|
|
__fi void _aligned_free(void* pmem)
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2014-06-13 18:56:21 +00:00
|
|
|
free(pmem);
|
2009-09-21 09:48:31 +00:00
|
|
|
}
|