2023-12-22 11:57:49 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
2010-10-19 09:25:44 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-05-12 07:24:59 +00:00
|
|
|
#include "Pcsx2Defs.h"
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <new> // std::bad_alloc
|
|
|
|
#include <memory>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
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)
|
2022-05-12 12:34:42 +00:00
|
|
|
extern void* _aligned_malloc(size_t size, size_t align);
|
|
|
|
extern void* pcsx2_aligned_realloc(void* handle, size_t new_size, size_t align, size_t old_size);
|
2021-09-06 18:28:26 +00:00
|
|
|
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
|