2019-06-20 02:26:12 +03:00
|
|
|
/* ----------------------------------------------------------------------------
|
2021-04-24 19:35:11 +03:00
|
|
|
Copyright (c) 2018-2020, Microsoft Research, Daan Leijen
|
2019-06-20 02:26:12 +03:00
|
|
|
This is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the MIT license. A copy of the license can be found in the file
|
2019-06-23 14:53:34 +03:00
|
|
|
"LICENSE" at the root of this distribution.
|
2019-06-20 02:26:12 +03:00
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
|
2021-06-08 02:47:57 +03:00
|
|
|
#include "mimalloc.h"
|
|
|
|
#include "mimalloc-internal.h"
|
2019-06-20 02:26:12 +03:00
|
|
|
|
2019-07-02 22:49:28 +03:00
|
|
|
#if defined(MI_MALLOC_OVERRIDE)
|
2019-06-20 02:26:12 +03:00
|
|
|
|
|
|
|
#if !defined(__APPLE__)
|
2019-06-23 10:29:41 +03:00
|
|
|
#error "this file should only be included on macOS"
|
2019-06-20 02:26:12 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ------------------------------------------------------
|
2019-06-23 10:29:41 +03:00
|
|
|
Override system malloc on macOS
|
2019-06-20 02:26:12 +03:00
|
|
|
This is done through the malloc zone interface.
|
2020-02-10 05:26:50 +03:00
|
|
|
It seems we also need to interpose (see `alloc-override.c`)
|
|
|
|
or otherwise we get zone errors as there are usually
|
|
|
|
already allocations done by the time we take over the
|
|
|
|
zone. Unfortunately, that means we need to replace
|
|
|
|
the `free` with a checked free (`cfree`) impacting
|
|
|
|
performance.
|
2019-06-20 02:26:12 +03:00
|
|
|
------------------------------------------------------ */
|
|
|
|
|
|
|
|
#include <AvailabilityMacros.h>
|
|
|
|
#include <malloc/malloc.h>
|
2019-07-02 22:49:28 +03:00
|
|
|
#include <string.h> // memset
|
2019-06-20 02:26:12 +03:00
|
|
|
|
|
|
|
#if defined(MAC_OS_X_VERSION_10_6) && \
|
|
|
|
MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
|
|
|
|
// only available from OSX 10.6
|
|
|
|
extern malloc_zone_t* malloc_default_purgeable_zone(void) __attribute__((weak_import));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ------------------------------------------------------
|
|
|
|
malloc zone members
|
|
|
|
------------------------------------------------------ */
|
|
|
|
|
|
|
|
static size_t zone_size(malloc_zone_t* zone, const void* p) {
|
2020-04-21 15:10:49 +03:00
|
|
|
UNUSED(zone);
|
|
|
|
if (!mi_is_in_heap_region(p))
|
|
|
|
return 0; // not our pointer, bail out
|
2020-12-16 03:03:54 +03:00
|
|
|
|
2020-04-21 15:10:49 +03:00
|
|
|
return mi_usable_size(p);
|
2019-06-20 02:26:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void* zone_malloc(malloc_zone_t* zone, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return mi_malloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* zone_calloc(malloc_zone_t* zone, size_t count, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return mi_calloc(count, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* zone_valloc(malloc_zone_t* zone, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return mi_malloc_aligned(size, _mi_os_page_size());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zone_free(malloc_zone_t* zone, void* p) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2021-06-18 05:15:09 +03:00
|
|
|
mi_free(p);
|
2019-06-20 02:26:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void* zone_realloc(malloc_zone_t* zone, void* p, size_t newsize) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return mi_realloc(p, newsize);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* zone_memalign(malloc_zone_t* zone, size_t alignment, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return mi_malloc_aligned(size,alignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zone_destroy(malloc_zone_t* zone) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
// todo: ignore for now?
|
|
|
|
}
|
|
|
|
|
2019-07-02 22:49:28 +03:00
|
|
|
static unsigned zone_batch_malloc(malloc_zone_t* zone, size_t size, void** ps, unsigned count) {
|
2019-06-20 02:26:12 +03:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
ps[i] = zone_malloc(zone, size);
|
|
|
|
if (ps[i] == NULL) break;
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2019-07-02 22:49:28 +03:00
|
|
|
static void zone_batch_free(malloc_zone_t* zone, void** ps, unsigned count) {
|
2019-06-20 02:26:12 +03:00
|
|
|
for(size_t i = 0; i < count; i++) {
|
|
|
|
zone_free(zone, ps[i]);
|
|
|
|
ps[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t zone_pressure_relief(malloc_zone_t* zone, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone); UNUSED(size);
|
2019-06-20 02:26:12 +03:00
|
|
|
mi_collect(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zone_free_definite_size(malloc_zone_t* zone, void* p, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(size);
|
2019-06-20 02:26:12 +03:00
|
|
|
zone_free(zone,p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------------------------------------
|
|
|
|
Introspection members
|
|
|
|
------------------------------------------------------ */
|
|
|
|
|
|
|
|
static kern_return_t intro_enumerator(task_t task, void* p,
|
|
|
|
unsigned type_mask, vm_address_t zone_address,
|
|
|
|
memory_reader_t reader,
|
|
|
|
vm_range_recorder_t recorder)
|
|
|
|
{
|
|
|
|
// todo: enumerate all memory
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(task); UNUSED(p); UNUSED(type_mask); UNUSED(zone_address);
|
|
|
|
UNUSED(reader); UNUSED(recorder);
|
2019-06-20 02:26:12 +03:00
|
|
|
return KERN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t intro_good_size(malloc_zone_t* zone, size_t size) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return mi_good_size(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static boolean_t intro_check(malloc_zone_t* zone) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intro_print(malloc_zone_t* zone, boolean_t verbose) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone); UNUSED(verbose);
|
2019-06-20 02:26:12 +03:00
|
|
|
mi_stats_print(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intro_log(malloc_zone_t* zone, void* p) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone); UNUSED(p);
|
2019-06-20 02:26:12 +03:00
|
|
|
// todo?
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intro_force_lock(malloc_zone_t* zone) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
// todo?
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intro_force_unlock(malloc_zone_t* zone) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
// todo?
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intro_statistics(malloc_zone_t* zone, malloc_statistics_t* stats) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
// todo...
|
|
|
|
stats->blocks_in_use = 0;
|
|
|
|
stats->size_in_use = 0;
|
|
|
|
stats->max_size_in_use = 0;
|
|
|
|
stats->size_allocated = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static boolean_t intro_zone_locked(malloc_zone_t* zone) {
|
2020-02-03 08:03:09 +03:00
|
|
|
UNUSED(zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------------------------------------
|
|
|
|
At process start, override the default allocator
|
|
|
|
------------------------------------------------------ */
|
|
|
|
|
|
|
|
static malloc_zone_t* mi_get_default_zone()
|
|
|
|
{
|
|
|
|
// The first returned zone is the real default
|
|
|
|
malloc_zone_t** zones = NULL;
|
2019-07-02 22:49:28 +03:00
|
|
|
unsigned count = 0;
|
2019-06-20 02:26:12 +03:00
|
|
|
kern_return_t ret = malloc_get_all_zones(0, NULL, (vm_address_t**)&zones, &count);
|
|
|
|
if (ret == KERN_SUCCESS && count > 0) {
|
|
|
|
return zones[0];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// fallback
|
|
|
|
return malloc_default_zone();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 19:55:21 +03:00
|
|
|
#if defined(__GNUC__) && !defined(__clang__)
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
|
|
|
#endif
|
|
|
|
|
2020-12-16 03:03:54 +03:00
|
|
|
static malloc_introspection_t mi_introspect = {
|
|
|
|
.enumerator = &intro_enumerator,
|
|
|
|
.good_size = &intro_good_size,
|
|
|
|
.check = &intro_check,
|
|
|
|
.print = &intro_print,
|
|
|
|
.log = &intro_log,
|
|
|
|
.force_lock = &intro_force_lock,
|
|
|
|
.force_unlock = &intro_force_unlock,
|
|
|
|
#if defined(MAC_OS_X_VERSION_10_6) && \
|
|
|
|
MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
|
|
|
|
.statistics = &intro_statistics,
|
2021-10-20 19:55:21 +03:00
|
|
|
.zone_locked = &intro_zone_locked,
|
2020-12-16 03:03:54 +03:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
static malloc_zone_t mi_malloc_zone = {
|
|
|
|
.size = &zone_size,
|
|
|
|
.malloc = &zone_malloc,
|
|
|
|
.calloc = &zone_calloc,
|
|
|
|
.valloc = &zone_valloc,
|
|
|
|
.free = &zone_free,
|
|
|
|
.realloc = &zone_realloc,
|
|
|
|
.destroy = &zone_destroy,
|
2021-10-20 19:55:21 +03:00
|
|
|
.zone_name = "mimalloc",
|
2020-12-16 03:03:54 +03:00
|
|
|
.batch_malloc = &zone_batch_malloc,
|
|
|
|
.batch_free = &zone_batch_free,
|
2021-10-20 19:55:21 +03:00
|
|
|
.introspect = &mi_introspect,
|
2020-12-16 03:03:54 +03:00
|
|
|
#if defined(MAC_OS_X_VERSION_10_6) && \
|
|
|
|
MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
|
|
|
|
// switch to version 9 on OSX 10.6 to support memalign.
|
|
|
|
.version = 9,
|
|
|
|
.memalign = &zone_memalign,
|
|
|
|
.free_definite_size = &zone_free_definite_size,
|
|
|
|
.pressure_relief = &zone_pressure_relief,
|
|
|
|
#else
|
|
|
|
.version = 4,
|
|
|
|
#endif
|
|
|
|
};
|
2019-06-20 02:26:12 +03:00
|
|
|
|
2020-12-16 03:03:54 +03:00
|
|
|
|
2021-10-20 19:35:58 +03:00
|
|
|
#if defined(MI_SHARED_LIB_EXPORT) && defined(MI_OSX_INTERPOSE)
|
2020-12-16 03:03:54 +03:00
|
|
|
|
|
|
|
static malloc_zone_t *mi_malloc_default_zone(void) {
|
|
|
|
return &mi_malloc_zone;
|
|
|
|
}
|
|
|
|
// TODO: should use the macros in alloc-override but they aren't available here.
|
|
|
|
__attribute__((used)) static struct {
|
|
|
|
const void *replacement;
|
|
|
|
const void *target;
|
|
|
|
} replace_malloc_default_zone[] __attribute__((section("__DATA, __interpose"))) = {
|
|
|
|
{ (const void*)mi_malloc_default_zone, (const void*)malloc_default_zone },
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2021-10-20 19:55:21 +03:00
|
|
|
|
|
|
|
#if defined(__clang__)
|
|
|
|
__attribute__((constructor(0)))
|
|
|
|
#else
|
|
|
|
__attribute__((constructor)) // seems not supported by g++-11 on the M1
|
|
|
|
#endif
|
|
|
|
static void _mi_macos_override_malloc() {
|
2019-06-20 02:26:12 +03:00
|
|
|
malloc_zone_t* purgeable_zone = NULL;
|
|
|
|
|
2021-10-20 19:55:21 +03:00
|
|
|
#if defined(MAC_OS_X_VERSION_10_6) && \
|
2019-06-20 02:26:12 +03:00
|
|
|
MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
|
2019-06-22 18:09:11 +03:00
|
|
|
// force the purgeable zone to exist to avoid strange bugs
|
2019-06-20 02:26:12 +03:00
|
|
|
if (malloc_default_purgeable_zone) {
|
|
|
|
purgeable_zone = malloc_default_purgeable_zone();
|
|
|
|
}
|
2021-10-20 19:55:21 +03:00
|
|
|
#endif
|
2019-06-20 02:26:12 +03:00
|
|
|
|
2020-12-16 03:03:54 +03:00
|
|
|
// Register our zone.
|
|
|
|
// thomcc: I think this is still needed to put us in the zone list.
|
|
|
|
malloc_zone_register(&mi_malloc_zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
// Unregister the default zone, this makes our zone the new default
|
|
|
|
// as that was the last registered.
|
|
|
|
malloc_zone_t *default_zone = mi_get_default_zone();
|
2020-12-16 03:03:54 +03:00
|
|
|
// thomcc: Unsure if the next test is *always* false or just false in the
|
|
|
|
// cases I've tried. I'm also unsure if the code inside is needed. at all
|
|
|
|
if (default_zone != &mi_malloc_zone) {
|
|
|
|
malloc_zone_unregister(default_zone);
|
2019-06-20 02:26:12 +03:00
|
|
|
|
2020-12-16 03:03:54 +03:00
|
|
|
// Reregister the default zone so free and realloc in that zone keep working.
|
|
|
|
malloc_zone_register(default_zone);
|
|
|
|
}
|
2019-06-20 02:26:12 +03:00
|
|
|
|
|
|
|
// Unregister, and re-register the purgeable_zone to avoid bugs if it occurs
|
|
|
|
// earlier than the default zone.
|
|
|
|
if (purgeable_zone != NULL) {
|
|
|
|
malloc_zone_unregister(purgeable_zone);
|
|
|
|
malloc_zone_register(purgeable_zone);
|
|
|
|
}
|
2020-02-03 08:03:09 +03:00
|
|
|
|
2019-06-20 02:26:12 +03:00
|
|
|
}
|
|
|
|
|
2021-04-24 19:35:11 +03:00
|
|
|
#endif // MI_MALLOC_OVERRIDE
|