Files

33 lines
975 B
C++
Raw Permalink Normal View History

// SPDX-FileCopyrightText: 2002-2026 PCSX2 Dev Team
2024-07-30 13:42:36 +02:00
// SPDX-License-Identifier: GPL-3.0+
2010-10-19 09:25:44 +00:00
#pragma once
#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 16:28:37 +01:00
#define safe_aligned_free(ptr) \
2021-09-06 14:28:26 -04: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 18:28:17 +01:00
#if !defined(_MSC_VER)
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 14:28:26 -04:00
extern void _aligned_free(void* pmem);
2015-09-13 18:02:07 +01:00
#else
#define pcsx2_aligned_realloc(handle, new_size, align, old_size) \
2021-09-06 14:28:26 -04:00
_aligned_realloc(handle, new_size, align)
2010-10-19 09:25:44 +00:00
#endif