| |
| |
| |
| |
| |
| |
|
|
| #if !defined(MI_IN_ALLOC_C) |
| #error "this file should be included from 'alloc.c' (so aliases can work)" |
| #endif |
|
|
|
|
| #if defined(MI_MALLOC_OVERRIDE) && !defined(_DLL) |
|
|
| #if defined(__APPLE__) |
| #include <AvailabilityMacros.h> |
| mi_decl_externc void vfree(void* p); |
| mi_decl_externc size_t malloc_size(const void* p); |
| mi_decl_externc size_t malloc_good_size(size_t size); |
| #endif |
|
|
| |
| typedef void* mi_nothrow_t; |
|
|
| |
| |
| |
|
|
| #if (defined(__GNUC__) || defined(__clang__)) && !defined(__APPLE__) && !MI_TRACK_ENABLED |
| |
| #if (defined(__GNUC__) && __GNUC__ >= 9) |
| #pragma GCC diagnostic ignored "-Wattributes" |
| #define MI_FORWARD(fun) __attribute__((alias(#fun), used, visibility("default"), copy(fun))); |
| #else |
| |
| #define MI_FORWARD(fun) __attribute__((alias(#fun), used, visibility("default"), weak)); |
| #endif |
| #define MI_FORWARD1(fun,x) MI_FORWARD(fun) |
| #define MI_FORWARD2(fun,x,y) MI_FORWARD(fun) |
| #define MI_FORWARD3(fun,x,y,z) MI_FORWARD(fun) |
| #define MI_FORWARD0(fun,x) MI_FORWARD(fun) |
| #define MI_FORWARD02(fun,x,y) MI_FORWARD(fun) |
| #else |
| |
| #define MI_FORWARD1(fun,x) { return fun(x); } |
| #define MI_FORWARD2(fun,x,y) { return fun(x,y); } |
| #define MI_FORWARD3(fun,x,y,z) { return fun(x,y,z); } |
| #define MI_FORWARD0(fun,x) { fun(x); } |
| #define MI_FORWARD02(fun,x,y) { fun(x,y); } |
| #endif |
|
|
| #if defined(__APPLE__) && defined(MI_SHARED_LIB_EXPORT) && defined(MI_OSX_INTERPOSE) |
| |
| |
| #define MI_OSX_IS_INTERPOSED |
|
|
| mi_decl_externc size_t mi_malloc_size_checked(void *p) { |
| if (!mi_is_in_heap_region(p)) return 0; |
| return mi_usable_size(p); |
| } |
|
|
| |
| |
| struct mi_interpose_s { |
| const void* replacement; |
| const void* target; |
| }; |
| #define MI_INTERPOSE_FUN(oldfun,newfun) { (const void*)&newfun, (const void*)&oldfun } |
| #define MI_INTERPOSE_MI(fun) MI_INTERPOSE_FUN(fun,mi_##fun) |
|
|
| #define MI_INTERPOSE_DECLS(name) __attribute__((used)) static struct mi_interpose_s name[] __attribute__((section("__DATA, __interpose"))) |
|
|
| MI_INTERPOSE_DECLS(_mi_interposes) = |
| { |
| MI_INTERPOSE_MI(malloc), |
| MI_INTERPOSE_MI(calloc), |
| MI_INTERPOSE_MI(realloc), |
| MI_INTERPOSE_MI(strdup), |
| MI_INTERPOSE_MI(realpath), |
| MI_INTERPOSE_MI(posix_memalign), |
| MI_INTERPOSE_MI(reallocf), |
| MI_INTERPOSE_MI(valloc), |
| MI_INTERPOSE_FUN(malloc_size,mi_malloc_size_checked), |
| MI_INTERPOSE_MI(malloc_good_size), |
| #ifdef MI_OSX_ZONE |
| |
| MI_INTERPOSE_MI(free), |
| MI_INTERPOSE_FUN(vfree,mi_free), |
| #else |
| |
| MI_INTERPOSE_FUN(free,mi_cfree), |
| MI_INTERPOSE_FUN(vfree,mi_cfree), |
| #endif |
| }; |
| #if defined(MAC_OS_X_VERSION_10_7) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7) |
| MI_INTERPOSE_DECLS(_mi_interposes_10_7) = { MI_INTERPOSE_MI(strndup) }; |
| #endif |
| #if defined(MAC_OS_X_VERSION_10_15) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_15) |
| MI_INTERPOSE_DECLS(_mi_interposes_10_15) = { MI_INTERPOSE_MI(aligned_alloc) }; |
| #endif |
|
|
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| void _ZdlPv(void* p); |
| void _ZdaPv(void* p); |
| void _ZdlPvm(void* p, size_t n); |
| void _ZdaPvm(void* p, size_t n); |
| void* _Znwm(size_t n); |
| void* _Znam(size_t n); |
| void* _ZnwmRKSt9nothrow_t(size_t n, mi_nothrow_t tag); |
| void* _ZnamRKSt9nothrow_t(size_t n, mi_nothrow_t tag); |
| #ifdef __cplusplus |
| } |
| #endif |
| __attribute__((used)) static struct mi_interpose_s _mi_cxx_interposes[] __attribute__((section("__DATA, __interpose"))) = |
| { |
| MI_INTERPOSE_FUN(_ZdlPv,mi_free), |
| MI_INTERPOSE_FUN(_ZdaPv,mi_free), |
| MI_INTERPOSE_FUN(_ZdlPvm,mi_free_size), |
| MI_INTERPOSE_FUN(_ZdaPvm,mi_free_size), |
| MI_INTERPOSE_FUN(_Znwm,mi_new), |
| MI_INTERPOSE_FUN(_Znam,mi_new), |
| MI_INTERPOSE_FUN(_ZnwmRKSt9nothrow_t,mi_new_nothrow), |
| MI_INTERPOSE_FUN(_ZnamRKSt9nothrow_t,mi_new_nothrow), |
| }; |
|
|
| #elif defined(_MSC_VER) |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRT_HYBRIDPATCHABLE |
| void* __cdecl _expand(_Pre_notnull_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Size) { |
| return mi_expand(_Block, _Size); |
| } |
| _Check_return_ _ACRTIMP |
| size_t __cdecl _msize_base(_Pre_notnull_ void* _Block) _CRT_NOEXCEPT { |
| return mi_malloc_size(_Block); |
| } |
| _Check_return_ _ACRTIMP _CRT_HYBRIDPATCHABLE |
| size_t __cdecl _msize(_Pre_notnull_ void* _Block) { |
| return mi_malloc_size(_Block); |
| } |
| _ACRTIMP |
| void __cdecl _free_base(_Pre_maybenull_ _Post_invalid_ void* _Block) { |
| mi_free(_Block); |
| } |
| _ACRTIMP _CRT_HYBRIDPATCHABLE |
| void __cdecl free(_Pre_maybenull_ _Post_invalid_ void* _Block) { |
| mi_free(_Block); |
| } |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRT_JIT_INTRINSIC _CRTRESTRICT _CRT_HYBRIDPATCHABLE |
| void* __cdecl malloc(_In_ _CRT_GUARDOVERFLOW size_t _Size) { |
| return mi_malloc(_Size); |
| } |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _malloc_base(_In_ size_t _Size) { |
| return mi_malloc(_Size); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _realloc_base(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ size_t _Size) { |
| return mi_realloc(_Block, _Size); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT _CRT_HYBRIDPATCHABLE |
| void* __cdecl realloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Size) { |
| return mi_realloc(_Block, _Size); |
| } |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _calloc_base(_In_ size_t _Count, _In_ size_t _Size) { |
| return mi_calloc(_Count, _Size); |
| } |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRT_JIT_INTRINSIC _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl calloc(_In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size) { |
| return mi_calloc(_Count, _Size); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _recalloc_base(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ size_t _Count, _In_ size_t _Size) { |
| return mi_recalloc(_Block, _Count, _Size); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _recalloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size) { |
| return mi_recalloc(_Block, _Count, _Size); |
| } |
| _ACRTIMP |
| void __cdecl _aligned_free(_Pre_maybenull_ _Post_invalid_ void* _Block) { |
| mi_free(_Block); |
| } |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _aligned_malloc(_In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment) { |
| return mi_malloc_aligned(_Size, _Alignment); |
| } |
| _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _aligned_offset_malloc(_In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment, _In_ size_t _Offset) { |
| return mi_malloc_aligned_at(_Size, _Alignment, _Offset); |
| } |
| _Check_return_ _ACRTIMP |
| size_t __cdecl _aligned_msize(_Pre_notnull_ void* _Block, _In_ size_t _Alignment, _In_ size_t _Offset) { |
| MI_UNUSED(_Alignment); MI_UNUSED(_Offset); return mi_malloc_size(_Block); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _aligned_offset_realloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment, _In_ size_t _Offset) { |
| return mi_realloc_aligned_at(_Block, _Size, _Alignment, _Offset); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _aligned_offset_recalloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment, _In_ size_t _Offset) { |
| return mi_recalloc_aligned_at(_Block, _Count, _Size, _Alignment, _Offset); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _aligned_realloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment) { |
| return mi_realloc_aligned(_Block, _Size, _Alignment); |
| } |
| _Success_(return != 0) _Check_return_ _Ret_maybenull_ _Post_writable_byte_size_(_Count * _Size) _ACRTIMP _CRTALLOCATOR _CRTRESTRICT |
| void* __cdecl _aligned_recalloc(_Pre_maybenull_ _Post_invalid_ void* _Block, _In_ _CRT_GUARDOVERFLOW size_t _Count, _In_ _CRT_GUARDOVERFLOW size_t _Size, _In_ size_t _Alignment) { |
| return mi_recalloc_aligned(_Block, _Count, _Size, _Alignment); |
| } |
| #else |
| |
| mi_decl_export void* malloc(size_t size) MI_FORWARD1(mi_malloc, size) |
| mi_decl_export void* calloc(size_t size, size_t n) MI_FORWARD2(mi_calloc, size, n) |
| mi_decl_export void* realloc(void* p, size_t newsize) MI_FORWARD2(mi_realloc, p, newsize) |
| mi_decl_export void free(void* p) MI_FORWARD0(mi_free, p) |
| |
| |
| #if !defined(strdup) |
| mi_decl_export char* strdup(const char* str) MI_FORWARD1(mi_strdup, str) |
| #endif |
| #if !defined(strndup) && (!defined(__APPLE__) || (defined(MAC_OS_X_VERSION_10_7) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7)) |
| mi_decl_export char* strndup(const char* str, size_t n) MI_FORWARD2(mi_strndup, str, n) |
| #endif |
| #endif |
|
|
| #if (defined(__GNUC__) || defined(__clang__)) && !defined(__APPLE__) |
| #pragma GCC visibility push(default) |
| #endif |
|
|
| |
| |
| |
| |
| |
| #ifdef __cplusplus |
| |
| |
| |
| |
| #include <new> |
|
|
| #ifndef MI_OSX_IS_INTERPOSED |
| void operator delete(void* p) noexcept MI_FORWARD0(mi_free,p) |
| void operator delete[](void* p) noexcept MI_FORWARD0(mi_free,p) |
|
|
| void* operator new(std::size_t n) noexcept(false) MI_FORWARD1(mi_new,n) |
| void* operator new[](std::size_t n) noexcept(false) MI_FORWARD1(mi_new,n) |
|
|
| void* operator new (std::size_t n, const std::nothrow_t& tag) noexcept { MI_UNUSED(tag); return mi_new_nothrow(n); } |
| void* operator new[](std::size_t n, const std::nothrow_t& tag) noexcept { MI_UNUSED(tag); return mi_new_nothrow(n); } |
|
|
| #if (__cplusplus >= 201402L || _MSC_VER >= 1916) |
| void operator delete (void* p, std::size_t n) noexcept MI_FORWARD02(mi_free_size,p,n) |
| void operator delete[](void* p, std::size_t n) noexcept MI_FORWARD02(mi_free_size,p,n) |
| #endif |
| #endif |
|
|
| #if (__cplusplus > 201402L && defined(__cpp_aligned_new)) && (!defined(__GNUC__) || (__GNUC__ > 5)) |
| void operator delete (void* p, std::align_val_t al) noexcept { mi_free_aligned(p, static_cast<size_t>(al)); } |
| void operator delete[](void* p, std::align_val_t al) noexcept { mi_free_aligned(p, static_cast<size_t>(al)); } |
| void operator delete (void* p, std::size_t n, std::align_val_t al) noexcept { mi_free_size_aligned(p, n, static_cast<size_t>(al)); }; |
| void operator delete[](void* p, std::size_t n, std::align_val_t al) noexcept { mi_free_size_aligned(p, n, static_cast<size_t>(al)); }; |
| void operator delete (void* p, std::align_val_t al, const std::nothrow_t&) noexcept { mi_free_aligned(p, static_cast<size_t>(al)); } |
| void operator delete[](void* p, std::align_val_t al, const std::nothrow_t&) noexcept { mi_free_aligned(p, static_cast<size_t>(al)); } |
|
|
| void* operator new( std::size_t n, std::align_val_t al) noexcept(false) { return mi_new_aligned(n, static_cast<size_t>(al)); } |
| void* operator new[]( std::size_t n, std::align_val_t al) noexcept(false) { return mi_new_aligned(n, static_cast<size_t>(al)); } |
| void* operator new (std::size_t n, std::align_val_t al, const std::nothrow_t&) noexcept { return mi_new_aligned_nothrow(n, static_cast<size_t>(al)); } |
| void* operator new[](std::size_t n, std::align_val_t al, const std::nothrow_t&) noexcept { return mi_new_aligned_nothrow(n, static_cast<size_t>(al)); } |
| #endif |
|
|
| #elif (defined(__GNUC__) || defined(__clang__)) |
| |
| |
| |
| |
| |
|
|
| void _ZdlPv(void* p) MI_FORWARD0(mi_free,p) |
| void _ZdaPv(void* p) MI_FORWARD0(mi_free,p) |
| void _ZdlPvm(void* p, size_t n) MI_FORWARD02(mi_free_size,p,n) |
| void _ZdaPvm(void* p, size_t n) MI_FORWARD02(mi_free_size,p,n) |
|
|
| void _ZdlPvSt11align_val_t(void* p, size_t al) { mi_free_aligned(p,al); } |
| void _ZdaPvSt11align_val_t(void* p, size_t al) { mi_free_aligned(p,al); } |
| void _ZdlPvmSt11align_val_t(void* p, size_t n, size_t al) { mi_free_size_aligned(p,n,al); } |
| void _ZdaPvmSt11align_val_t(void* p, size_t n, size_t al) { mi_free_size_aligned(p,n,al); } |
|
|
| void _ZdlPvRKSt9nothrow_t(void* p, mi_nothrow_t tag) { MI_UNUSED(tag); mi_free(p); } |
| void _ZdaPvRKSt9nothrow_t(void* p, mi_nothrow_t tag) { MI_UNUSED(tag); mi_free(p); } |
| void _ZdlPvSt11align_val_tRKSt9nothrow_t(void* p, size_t al, mi_nothrow_t tag) { MI_UNUSED(tag); mi_free_aligned(p,al); } |
| void _ZdaPvSt11align_val_tRKSt9nothrow_t(void* p, size_t al, mi_nothrow_t tag) { MI_UNUSED(tag); mi_free_aligned(p,al); } |
|
|
| #if (MI_INTPTR_SIZE==8) || (MI_INTPTR_SIZE==4 && defined(__EMSCRIPTEN__)) |
| void* _Znwm(size_t n) MI_FORWARD1(mi_new,n) |
| void* _Znam(size_t n) MI_FORWARD1(mi_new,n) |
| void* _ZnwmRKSt9nothrow_t(size_t n, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_nothrow(n); } |
| void* _ZnamRKSt9nothrow_t(size_t n, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_nothrow(n); } |
| void* _ZnwmSt11align_val_t(size_t n, size_t al) MI_FORWARD2(mi_new_aligned, n, al) |
| void* _ZnamSt11align_val_t(size_t n, size_t al) MI_FORWARD2(mi_new_aligned, n, al) |
| void* _ZnwmSt11align_val_tRKSt9nothrow_t(size_t n, size_t al, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_aligned_nothrow(n,al); } |
| void* _ZnamSt11align_val_tRKSt9nothrow_t(size_t n, size_t al, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_aligned_nothrow(n,al); } |
| #elif (MI_INTPTR_SIZE==4) |
| void* _Znwj(size_t n) MI_FORWARD1(mi_new,n) |
| void* _Znaj(size_t n) MI_FORWARD1(mi_new,n) |
| void* _ZnwjRKSt9nothrow_t(size_t n, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_nothrow(n); } |
| void* _ZnajRKSt9nothrow_t(size_t n, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_nothrow(n); } |
| void* _ZnwjSt11align_val_t(size_t n, size_t al) MI_FORWARD2(mi_new_aligned, n, al) |
| void* _ZnajSt11align_val_t(size_t n, size_t al) MI_FORWARD2(mi_new_aligned, n, al) |
| void* _ZnwjSt11align_val_tRKSt9nothrow_t(size_t n, size_t al, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_aligned_nothrow(n,al); } |
| void* _ZnajSt11align_val_tRKSt9nothrow_t(size_t n, size_t al, mi_nothrow_t tag) { MI_UNUSED(tag); return mi_new_aligned_nothrow(n,al); } |
| #else |
| #error "define overloads for new/delete for this platform (just for performance, can be skipped)" |
| #endif |
| #endif |
|
|
| |
| |
| |
|
|
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
|
|
| #ifndef MI_OSX_IS_INTERPOSED |
| |
| void* reallocf(void* p, size_t newsize) MI_FORWARD2(mi_reallocf,p,newsize) |
| size_t malloc_size(const void* p) MI_FORWARD1(mi_usable_size,p) |
| #if !defined(__ANDROID__) && !defined(__FreeBSD__) && !defined(__DragonFly__) |
| size_t malloc_usable_size(void *p) MI_FORWARD1(mi_usable_size,p) |
| #else |
| size_t malloc_usable_size(const void *p) MI_FORWARD1(mi_usable_size,p) |
| #endif |
|
|
| |
| mi_decl_weak |
| void* valloc(size_t size) { return mi_valloc(size); } |
| void vfree(void* p) { mi_free(p); } |
| size_t malloc_good_size(size_t size) { return mi_malloc_good_size(size); } |
| mi_decl_weak |
| int posix_memalign(void** p, size_t alignment, size_t size) { return mi_posix_memalign(p, alignment, size); } |
|
|
| |
| |
| |
| |
| |
| |
| |
| #if !defined(__GLIBC__) || __USE_ISOC11 |
| mi_decl_weak |
| void* aligned_alloc(size_t alignment, size_t size) { return mi_aligned_alloc(alignment, size); } |
| #endif |
| #endif |
|
|
| |
| void cfree(void* p) { mi_free(p); } |
| void* pvalloc(size_t size) { return mi_pvalloc(size); } |
| mi_decl_weak |
| void* memalign(size_t alignment, size_t size) { return mi_memalign(alignment, size); } |
| #if !defined(_WIN32) |
| void* _aligned_malloc(size_t size, size_t alignment) { return mi_malloc_aligned(size,alignment); } |
| #endif |
| mi_decl_weak |
| void* reallocarray(void* p, size_t count, size_t size) { return mi_reallocarray(p, count, size); } |
| |
| mi_decl_weak int reallocarr(void* p, size_t count, size_t size) { return mi_reallocarr(p, count, size); } |
|
|
| #if defined(__wasi__) |
| |
| void* __libc_malloc(size_t size) MI_FORWARD1(mi_malloc, size) |
| void* __libc_calloc(size_t count, size_t size) MI_FORWARD2(mi_calloc, count, size) |
| void* __libc_realloc(void* p, size_t size) MI_FORWARD2(mi_realloc, p, size) |
| void __libc_free(void* p) MI_FORWARD0(mi_free, p) |
| mi_decl_weak |
| void* __libc_memalign(size_t alignment, size_t size) { return mi_memalign(alignment, size); } |
|
|
| #ifdef __EMSCRIPTEN__ |
| void* emscripten_builtin_malloc(size_t size) MI_FORWARD1(mi_malloc, size) |
| void* emscripten_builtin_realloc(void* p, size_t size) MI_FORWARD2(mi_realloc, p, size) |
| void* emscripten_builtin_free(void* p) MI_FORWARD0(mi_free, p) |
| void* emscripten_builtin_memalign(size_t alignment, size_t size) { return mi_memalign(alignment, size); } |
| void* emscripten_builtin_calloc(size_t nmemb, size_t size) MI_FORWARD2(mi_calloc, nmemb, size) |
| #endif |
|
|
| #elif defined(__linux__) |
| |
| void* __libc_malloc(size_t size) MI_FORWARD1(mi_malloc,size) |
| void* __libc_calloc(size_t count, size_t size) MI_FORWARD2(mi_calloc,count,size) |
| void* __libc_realloc(void* p, size_t size) MI_FORWARD2(mi_realloc,p,size) |
| void __libc_free(void* p) MI_FORWARD0(mi_free,p) |
| void __libc_cfree(void* p) MI_FORWARD0(mi_free,p) |
|
|
| void* __libc_valloc(size_t size) { return mi_valloc(size); } |
| void* __libc_pvalloc(size_t size) { return mi_pvalloc(size); } |
| void* __libc_memalign(size_t alignment, size_t size) { return mi_memalign(alignment,size); } |
| int __posix_memalign(void** p, size_t alignment, size_t size) { return mi_posix_memalign(p,alignment,size); } |
| #endif |
|
|
| #ifdef __cplusplus |
| } |
| #endif |
|
|
| #if (defined(__GNUC__) || defined(__clang__)) && !defined(__APPLE__) |
| #pragma GCC visibility pop |
| #endif |
|
|
| #endif |
|
|