| |
| |
| |
| |
| |
| |
| #pragma once |
| #ifndef MI_INTERNAL_H |
| #define MI_INTERNAL_H |
|
|
| |
| |
| |
| |
|
|
| #include "types.h" |
| #include "track.h" |
| #include "bits.h" |
|
|
|
|
| |
| |
| |
|
|
| #if (MI_DEBUG>0) |
| #define mi_trace_message(...) _mi_trace_message(__VA_ARGS__) |
| #else |
| #define mi_trace_message(...) |
| #endif |
|
|
| #define mi_decl_cache_align mi_decl_align(64) |
|
|
| #if defined(_MSC_VER) |
| #pragma warning(disable:4127) |
| #pragma warning(disable:26812) |
| #define mi_decl_forceinline __forceinline |
| #define mi_decl_noinline __declspec(noinline) |
| #define mi_decl_thread __declspec(thread) |
| #define mi_decl_noreturn __declspec(noreturn) |
| #define mi_decl_weak |
| #define mi_decl_hidden |
| #define mi_decl_cold |
| #elif (defined(__GNUC__) && (__GNUC__ >= 3)) || defined(__clang__) |
| #if !MI_TRACK_ASAN |
| #define mi_decl_forceinline __attribute__((always_inline)) inline |
| #else |
| #define mi_decl_forceinline inline |
| #endif |
| #define mi_decl_noinline __attribute__((noinline)) |
| #define mi_decl_thread __thread |
| #define mi_decl_noreturn __attribute__((noreturn)) |
| #define mi_decl_weak __attribute__((weak)) |
| #define mi_decl_hidden __attribute__((visibility("hidden"))) |
| #if (__GNUC__ >= 4) || defined(__clang__) |
| #define mi_decl_cold __attribute__((cold)) |
| #else |
| #define mi_decl_cold |
| #endif |
| #elif __cplusplus >= 201103L |
| #define mi_decl_forceinline inline |
| #define mi_decl_noinline |
| #define mi_decl_thread thread_local |
| #define mi_decl_noreturn [[noreturn]] |
| #define mi_decl_weak |
| #define mi_decl_hidden |
| #define mi_decl_cold |
| #else |
| #define mi_decl_forceinline inline |
| #define mi_decl_noinline |
| #define mi_decl_thread __thread |
| #define mi_decl_noreturn |
| #define mi_decl_weak |
| #define mi_decl_hidden |
| #define mi_decl_cold |
| #endif |
|
|
| #if defined(__GNUC__) || defined(__clang__) |
| #define mi_unlikely(x) (__builtin_expect(!!(x),false)) |
| #define mi_likely(x) (__builtin_expect(!!(x),true)) |
| #elif (defined(__cplusplus) && (__cplusplus >= 202002L)) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) |
| #define mi_unlikely(x) (x) [[unlikely]] |
| #define mi_likely(x) (x) [[likely]] |
| #else |
| #define mi_unlikely(x) (x) |
| #define mi_likely(x) (x) |
| #endif |
|
|
| #ifndef __has_builtin |
| #define __has_builtin(x) 0 |
| #endif |
|
|
| #if defined(__cplusplus) |
| #define mi_decl_externc extern "C" |
| #else |
| #define mi_decl_externc |
| #endif |
|
|
| #if (defined(__GNUC__) && (__GNUC__ >= 7)) || defined(__clang__) |
| #define mi_decl_maybe_unused __attribute__((unused)) |
| #elif __cplusplus >= 201703L |
| #define mi_decl_maybe_unused [[maybe_unused]] |
| #else |
| #define mi_decl_maybe_unused |
| #endif |
|
|
| #if defined(__cplusplus) |
| #define mi_decl_externc extern "C" |
| #else |
| #define mi_decl_externc |
| #endif |
|
|
|
|
| #if defined(__EMSCRIPTEN__) && !defined(__wasi__) |
| #define __wasi__ |
| #endif |
|
|
|
|
| |
| |
| |
|
|
|
|
| |
| #include <stdarg.h> |
| int _mi_vsnprintf(char* buf, size_t bufsize, const char* fmt, va_list args); |
| int _mi_snprintf(char* buf, size_t buflen, const char* fmt, ...); |
| char _mi_toupper(char c); |
| int _mi_strnicmp(const char* s, const char* t, size_t n); |
| void _mi_strlcpy(char* dest, const char* src, size_t dest_size); |
| void _mi_strlcat(char* dest, const char* src, size_t dest_size); |
| size_t _mi_strlen(const char* s); |
| size_t _mi_strnlen(const char* s, size_t max_len); |
| char* _mi_strnstr(char* s, size_t max_len, const char* pat); |
| bool _mi_streq(const char* s, const char* t); |
| bool _mi_getenv(const char* name, char* result, size_t result_size); |
|
|
| |
| void _mi_fputs(mi_output_fun* out, void* arg, const char* prefix, const char* message); |
| void _mi_fprintf(mi_output_fun* out, void* arg, const char* fmt, ...); |
| void _mi_raw_message(const char* fmt, ...); |
| void _mi_message(const char* fmt, ...); |
| void _mi_warning_message(const char* fmt, ...); |
| void _mi_verbose_message(const char* fmt, ...); |
| void _mi_trace_message(const char* fmt, ...); |
| void _mi_options_init(void); |
| void _mi_options_post_init(void); |
| long _mi_option_get_fast(mi_option_t option); |
| void _mi_error_message(int err, const char* fmt, ...); |
|
|
| |
| void _mi_random_init(mi_random_ctx_t* ctx); |
| void _mi_random_init_weak(mi_random_ctx_t* ctx); |
| void _mi_random_reinit_if_weak(mi_random_ctx_t * ctx); |
| void _mi_random_split(mi_random_ctx_t* ctx, mi_random_ctx_t* new_ctx); |
| uintptr_t _mi_random_next(mi_random_ctx_t* ctx); |
| uintptr_t _mi_theap_random_next(mi_theap_t* theap); |
| uintptr_t _mi_os_random_weak(uintptr_t extra_seed); |
| static inline uintptr_t _mi_random_shuffle(uintptr_t x); |
|
|
| |
| extern mi_decl_hidden mi_decl_cache_align const mi_page_t _mi_page_empty; |
| void _mi_auto_process_init(void); |
| void mi_cdecl _mi_auto_process_done(void) mi_attr_noexcept; |
| bool _mi_is_redirected(void); |
| bool _mi_allocator_init(const char** message); |
| void _mi_allocator_done(void); |
| bool _mi_is_main_thread(void); |
| bool _mi_preloading(void); |
| void _mi_thread_done(mi_theap_t* theap); |
|
|
| mi_subproc_t* _mi_subproc(void); |
| mi_subproc_t* _mi_subproc_main(void); |
| mi_heap_t* _mi_subproc_heap_main(mi_subproc_t* subproc); |
| mi_subproc_t* _mi_subproc_from_id(mi_subproc_id_t subproc_id); |
|
|
| mi_threadid_t _mi_thread_id(void) mi_attr_noexcept; |
| size_t _mi_thread_seq_id(void) mi_attr_noexcept; |
| bool _mi_is_heap_main(const mi_heap_t* heap); |
| bool _mi_is_theap_main(const mi_theap_t* theap); |
| void _mi_theap_guarded_init(mi_theap_t* theap); |
| void _mi_theap_options_init(mi_theap_t* theap); |
| mi_theap_t* _mi_theap_default_safe(void); |
| mi_theap_t* _mi_theap_main_safe(void); |
| |
| |
| void _mi_os_init(void); |
| void* _mi_os_alloc(size_t size, mi_memid_t* memid); |
| void* _mi_os_zalloc(size_t size, mi_memid_t* memid); |
| void _mi_os_free(void* p, size_t size, mi_memid_t memid); |
| void _mi_os_free_ex(void* p, size_t size, bool still_committed, mi_memid_t memid, mi_subproc_t* subproc ); |
|
|
| size_t _mi_os_page_size(void); |
| size_t _mi_os_guard_page_size(void); |
| size_t _mi_os_good_alloc_size(size_t size); |
| bool _mi_os_has_overcommit(void); |
| bool _mi_os_has_virtual_reserve(void); |
| size_t _mi_os_virtual_address_bits(void); |
| size_t _mi_os_minimal_purge_size(void); |
|
|
| bool _mi_os_reset(void* addr, size_t size); |
| bool _mi_os_decommit(void* addr, size_t size); |
| void _mi_os_reuse(void* p, size_t size); |
| mi_decl_nodiscard bool _mi_os_commit(void* p, size_t size, bool* is_zero); |
| mi_decl_nodiscard bool _mi_os_commit_ex(void* addr, size_t size, bool* is_zero, size_t stat_size); |
| mi_decl_nodiscard bool _mi_os_protect(void* addr, size_t size); |
| bool _mi_os_unprotect(void* addr, size_t size); |
| bool _mi_os_purge(void* p, size_t size); |
| bool _mi_os_purge_ex(void* p, size_t size, bool allow_reset, size_t stats_size, mi_commit_fun_t* commit_fun, void* commit_fun_arg); |
|
|
| size_t _mi_os_secure_guard_page_size(void); |
| bool _mi_os_secure_guard_page_set_at(void* addr, mi_memid_t memid); |
| bool _mi_os_secure_guard_page_set_before(void* addr, mi_memid_t memid); |
| bool _mi_os_secure_guard_page_reset_at(void* addr, mi_memid_t memid); |
| bool _mi_os_secure_guard_page_reset_before(void* addr, mi_memid_t memid); |
|
|
| int _mi_os_numa_node(void); |
| int _mi_os_numa_node_count(void); |
|
|
| void* _mi_os_alloc_aligned(size_t size, size_t alignment, bool commit, bool allow_large, mi_memid_t* memid); |
| void* _mi_os_alloc_aligned_at_offset(size_t size, size_t alignment, size_t align_offset, bool commit, bool allow_large, mi_memid_t* memid); |
|
|
| void* _mi_os_get_aligned_hint(size_t try_alignment, size_t size); |
| bool _mi_os_canuse_large_page(size_t size, size_t alignment); |
| size_t _mi_os_large_page_size(void); |
| void* _mi_os_alloc_huge_os_pages(size_t pages, int numa_node, mi_msecs_t max_secs, size_t* pages_reserved, size_t* psize, mi_memid_t* memid); |
|
|
| |
|
|
| mi_thread_local_t _mi_thread_local_create(void); |
| void _mi_thread_local_free( mi_thread_local_t key ); |
| bool _mi_thread_local_set( mi_thread_local_t key, void* val ); |
| void* _mi_thread_local_get( mi_thread_local_t key ); |
| void _mi_thread_locals_init(void); |
| void _mi_thread_locals_done(void); |
| void _mi_thread_locals_thread_done(void); |
|
|
| |
| mi_arena_id_t _mi_arena_id_none(void); |
| mi_arena_t* _mi_arena_from_id(mi_arena_id_t id); |
| bool _mi_arena_memid_is_suitable(mi_memid_t memid, mi_arena_t* request_arena); |
|
|
| void* _mi_arenas_alloc(mi_heap_t* heap, size_t size, bool commit, bool allow_pinned, mi_arena_t* req_arena, size_t tseq, int numa_node, mi_memid_t* memid); |
| void* _mi_arenas_alloc_aligned(mi_heap_t* heap, size_t size, size_t alignment, size_t align_offset, bool commit, bool allow_pinned, mi_arena_t* req_arena, size_t tseq, int numa_node, mi_memid_t* memid); |
| void _mi_arenas_free(void* p, size_t size, mi_memid_t memid); |
| bool _mi_arenas_contain(const void* p); |
| void _mi_arenas_collect(bool force_purge, bool visit_all, mi_tld_t* tld); |
| void _mi_arenas_unsafe_destroy_all(mi_subproc_t* subproc); |
|
|
| mi_page_t* _mi_arenas_page_alloc(mi_theap_t* theap, size_t block_size, size_t page_alignment); |
| void _mi_arenas_page_free(mi_page_t* page, mi_theap_t* current_theapx ); |
| void _mi_arenas_page_abandon(mi_page_t* page, mi_theap_t* current_theap); |
| void _mi_arenas_page_unabandon(mi_page_t* page, mi_theap_t* current_theapx ); |
| bool _mi_arenas_page_try_reabandon_to_mapped(mi_page_t* page); |
|
|
| |
| void* _mi_meta_zalloc( size_t size, mi_memid_t* memid ); |
| void _mi_meta_free(void* p, size_t size, mi_memid_t memid); |
| bool _mi_meta_is_meta_page(void* p); |
|
|
| |
| bool _mi_page_map_init(void); |
| mi_decl_nodiscard bool _mi_page_map_register(mi_page_t* page); |
| void _mi_page_map_unregister(mi_page_t* page); |
| void _mi_page_map_unregister_range(void* start, size_t size); |
| mi_page_t* _mi_safe_ptr_page(const void* p); |
| void _mi_page_map_unsafe_destroy(mi_subproc_t* subproc); |
|
|
| |
| void* _mi_malloc_generic(mi_theap_t* theap, size_t size, size_t zero_huge_alignment, size_t* usable) mi_attr_noexcept mi_attr_malloc; |
|
|
| void _mi_page_retire(mi_page_t* page) mi_attr_noexcept; |
| void _mi_page_unfull(mi_page_t* page); |
| void _mi_page_free(mi_page_t* page, mi_page_queue_t* pq); |
| void _mi_page_abandon(mi_page_t* page, mi_page_queue_t* pq); |
|
|
| size_t _mi_page_queue_append(mi_theap_t* theap, mi_page_queue_t* pq, mi_page_queue_t* append); |
| void _mi_deferred_free(mi_theap_t* theap, bool force); |
|
|
| void _mi_page_free_collect(mi_page_t* page, bool force); |
| void _mi_page_free_collect_partly(mi_page_t* page, mi_block_t* head); |
| mi_decl_nodiscard bool _mi_page_init(mi_theap_t* theap, mi_page_t* page); |
| bool _mi_page_queue_is_valid(mi_theap_t* theap, const mi_page_queue_t* pq); |
|
|
| size_t _mi_page_stats_bin(const mi_page_t* page); |
| size_t _mi_bin_size(size_t bin); |
| size_t _mi_bin(size_t size); |
|
|
| |
| mi_theap_t* _mi_theap_create(mi_heap_t* heap, mi_tld_t* tld); |
| void _mi_theap_delete(mi_theap_t* theap, bool acquire_tld_theaps_lock); |
| void _mi_theap_default_set(mi_theap_t* theap); |
| void _mi_theap_cached_set(mi_theap_t* theap); |
| void _mi_theap_collect_retired(mi_theap_t* theap, bool force); |
| void _mi_theap_collect_abandon(mi_theap_t* theap); |
| bool _mi_theap_area_visit_blocks(const mi_heap_area_t* area, mi_page_t* page, mi_block_visit_fun* visitor, void* arg); |
| void _mi_theap_page_reclaim(mi_theap_t* theap, mi_page_t* page); |
| bool _mi_theap_free(mi_theap_t* theap, bool acquire_heap_theaps_lock, bool acquire_tld_theaps_lock); |
| void _mi_theap_incref(mi_theap_t* theap); |
| void _mi_theap_decref(mi_theap_t* theap); |
|
|
| |
| void _mi_heap_area_init(mi_heap_area_t* area, mi_page_t* page); |
| mi_decl_cold mi_theap_t* _mi_heap_theap_get_or_init(const mi_heap_t* heap); |
| mi_decl_cold mi_theap_t* _mi_heap_theap_get_peek(const mi_heap_t* heap); |
| void _mi_heap_move_pages(mi_heap_t* heap_from, mi_heap_t* heap_to); |
| void _mi_heap_destroy_pages(mi_heap_t* heap_from); |
| void _mi_heap_force_destroy(mi_heap_t* heap); |
|
|
| |
| void _mi_stats_init(void); |
| void _mi_stats_merge_into(mi_stats_t* to, mi_stats_t* from); |
|
|
| mi_msecs_t _mi_clock_now(void); |
| mi_msecs_t _mi_clock_end(mi_msecs_t start); |
| mi_msecs_t _mi_clock_start(void); |
|
|
| |
| void* _mi_page_malloc_zero(mi_theap_t* theap, mi_page_t* page, size_t size, bool zero) mi_attr_noexcept; |
| void* _mi_theap_malloc_zero(mi_theap_t* theap, size_t size, bool zero, size_t* usable) mi_attr_noexcept; |
| void* _mi_theap_malloc_zero_ex(mi_theap_t* theap, size_t size, bool zero, size_t huge_alignment, size_t* usable) mi_attr_noexcept; |
| void* _mi_theap_realloc_zero(mi_theap_t* theap, void* p, size_t newsize, bool zero, size_t* usable_pre, size_t* usable_post) mi_attr_noexcept; |
| mi_block_t* _mi_page_ptr_unalign(const mi_page_t* page, const void* p); |
| void _mi_padding_shrink(const mi_page_t* page, const mi_block_t* block, const size_t min_size); |
|
|
| #if MI_DEBUG>1 |
| bool _mi_page_is_valid(mi_page_t* page); |
| #endif |
|
|
|
|
| |
| |
| |
|
|
| #if (MI_DEBUG) |
| |
| mi_decl_noreturn mi_decl_cold void _mi_assert_fail(const char* assertion, const char* fname, unsigned int line, const char* func) mi_attr_noexcept; |
| #define mi_assert(expr) ((expr) ? (void)0 : _mi_assert_fail(#expr,__FILE__,__LINE__,__func__)) |
| #else |
| #define mi_assert(x) |
| #endif |
|
|
| #if (MI_DEBUG>1) |
| #define mi_assert_internal mi_assert |
| #else |
| #define mi_assert_internal(x) |
| #endif |
|
|
| #if (MI_DEBUG>2) |
| #define mi_assert_expensive mi_assert |
| #else |
| #define mi_assert_expensive(x) |
| #endif |
|
|
|
|
| |
| |
| |
|
|
| |
| void __mi_stat_increase(mi_stat_count_t* stat, size_t amount); |
| void __mi_stat_decrease(mi_stat_count_t* stat, size_t amount); |
| void __mi_stat_increase_mt(mi_stat_count_t* stat, size_t amount); |
| void __mi_stat_decrease_mt(mi_stat_count_t* stat, size_t amount); |
|
|
| |
| void __mi_stat_adjust_increase(mi_stat_count_t* stat, size_t amount); |
| void __mi_stat_adjust_decrease(mi_stat_count_t* stat, size_t amount); |
| void __mi_stat_adjust_increase_mt(mi_stat_count_t* stat, size_t amount); |
| void __mi_stat_adjust_decrease_mt(mi_stat_count_t* stat, size_t amount); |
|
|
| |
| void __mi_stat_counter_increase(mi_stat_counter_t* stat, size_t amount); |
| void __mi_stat_counter_increase_mt(mi_stat_counter_t* stat, size_t amount); |
|
|
| #define mi_heap_stat_counter_increase(heap,stat,amount) __mi_stat_counter_increase_mt( &(heap)->stats.stat, amount) |
| #define mi_heap_stat_increase(heap,stat,amount) __mi_stat_increase_mt( &(heap)->stats.stat, amount) |
| #define mi_heap_stat_decrease(heap,stat,amount) __mi_stat_decrease_mt( &(heap)->stats.stat, amount) |
| #define mi_heap_stat_adjust_increase(heap,stat,amnt) __mi_stat_adjust_increase_mt( &(heap)->stats.stat, amnt) |
| #define mi_heap_stat_adjust_decrease(heap,stat,amnt) __mi_stat_adjust_decrease_mt( &(heap)->stats.stat, amnt) |
|
|
| #define mi_subproc_stat_counter_increase(subproc,stat,amount) __mi_stat_counter_increase_mt( &(subproc)->stats.stat, amount) |
| #define mi_subproc_stat_increase(subproc,stat,amount) __mi_stat_increase_mt( &(subproc)->stats.stat, amount) |
| #define mi_subproc_stat_decrease(subproc,stat,amount) __mi_stat_decrease_mt( &(subproc)->stats.stat, amount) |
| #define mi_subproc_stat_adjust_increase(subproc,stat,amount) __mi_stat_adjust_increase_mt( &(subproc)->stats.stat, amount) |
| #define mi_subproc_stat_adjust_decrease(subproc,stat,amount) __mi_stat_adjust_decrease_mt( &(subproc)->stats.stat, amount) |
|
|
| #define mi_os_stat_counter_increase(stat,amount) mi_subproc_stat_counter_increase(_mi_subproc(),stat,amount) |
| #define mi_os_stat_increase(stat,amount) mi_subproc_stat_increase(_mi_subproc(),stat,amount) |
| #define mi_os_stat_decrease(stat,amount) mi_subproc_stat_decrease(_mi_subproc(),stat,amount) |
|
|
| #define mi_theap_stat_counter_increase(theap,stat,amount) __mi_stat_counter_increase( &(theap)->stats.stat, amount) |
| #define mi_theap_stat_increase(theap,stat,amount) __mi_stat_increase( &(theap)->stats.stat, amount) |
| #define mi_theap_stat_decrease(theap,stat,amount) __mi_stat_decrease( &(theap)->stats.stat, amount) |
| #define mi_theap_stat_adjust_increase(theap,stat,amnt) __mi_stat_adjust_increase( &(theap)->stats.stat, amnt) |
| #define mi_theap_stat_adjust_decrease(theap,stat,amnt) __mi_stat_adjust_decrease( &(theap)->stats.stat, amnt) |
|
|
|
|
| |
| |
| |
| typedef enum mi_option_init_e { |
| MI_OPTION_UNINIT, |
| MI_OPTION_DEFAULTED, |
| MI_OPTION_INITIALIZED |
| } mi_option_init_t; |
|
|
| typedef struct mi_option_desc_s { |
| long value; |
| mi_option_init_t init; |
| mi_option_t option; |
| const char* name; |
| const char* legacy_name; |
| } mi_option_desc_t; |
|
|
|
|
|
|
| |
| |
| |
| #define MI_UNUSED(x) (void)(x) |
| #ifndef NDEBUG |
| #define MI_UNUSED_RELEASE(x) |
| #else |
| #define MI_UNUSED_RELEASE(x) MI_UNUSED(x) |
| #endif |
|
|
| #define MI_INIT4(x) x(),x(),x(),x() |
| #define MI_INIT8(x) MI_INIT4(x),MI_INIT4(x) |
| #define MI_INIT16(x) MI_INIT8(x),MI_INIT8(x) |
| #define MI_INIT32(x) MI_INIT16(x),MI_INIT16(x) |
| #define MI_INIT64(x) MI_INIT32(x),MI_INIT32(x) |
| #define MI_INIT128(x) MI_INIT64(x),MI_INIT64(x) |
| #define MI_INIT256(x) MI_INIT128(x),MI_INIT128(x) |
|
|
| #define MI_INIT74(x) MI_INIT64(x),MI_INIT8(x),x(),x() |
| #define MI_INIT5(x) MI_INIT4(x),x() |
| #define MI_INIT6(x) MI_INIT4(x),x(),x() |
|
|
| #include <string.h> |
| |
| #define _mi_memzero_var(x) memset(&x,0,sizeof(x)) |
|
|
| |
| static inline bool _mi_is_power_of_two(uintptr_t x) { |
| return ((x & (x - 1)) == 0); |
| } |
|
|
| |
| static inline bool _mi_is_aligned(const void* p, size_t alignment) { |
| mi_assert_internal(alignment != 0); |
| return (((uintptr_t)p % alignment) == 0); |
| } |
|
|
| |
| static inline uintptr_t _mi_align_up(uintptr_t sz, size_t alignment) { |
| mi_assert_internal(alignment != 0); |
| uintptr_t mask = alignment - 1; |
| if ((alignment & mask) == 0) { |
| return ((sz + mask) & ~mask); |
| } |
| else { |
| return (((sz + mask)/alignment)*alignment); |
| } |
| } |
|
|
| |
| static inline void* _mi_align_up_ptr(const void* p, size_t alignment) { |
| return (void*)_mi_align_up((uintptr_t)p, alignment); |
| } |
|
|
| static inline uintptr_t _mi_align_down(uintptr_t sz, size_t alignment) { |
| mi_assert_internal(alignment != 0); |
| uintptr_t mask = alignment - 1; |
| if ((alignment & mask) == 0) { |
| return (sz & ~mask); |
| } |
| else { |
| return ((sz / alignment) * alignment); |
| } |
| } |
|
|
| |
| static inline void* _mi_align_down_ptr(const void* p, size_t alignment) { |
| return (void*)_mi_align_down((uintptr_t)p, alignment); |
| } |
|
|
| |
| static inline uintptr_t _mi_divide_up(uintptr_t size, size_t divider) { |
| mi_assert_internal(divider != 0); |
| return (divider == 0 ? size : ((size + divider - 1) / divider)); |
| } |
|
|
|
|
| |
| static inline size_t _mi_clamp(size_t sz, size_t min, size_t max) { |
| if (sz < min) return min; |
| else if (sz > max) return max; |
| else return sz; |
| } |
|
|
| |
| static inline bool mi_mem_is_zero(const void* p, size_t size) { |
| for (size_t i = 0; i < size; i++) { |
| if (((uint8_t*)p)[i] != 0) return false; |
| } |
| return true; |
| } |
|
|
| |
| |
| static inline size_t _mi_wsize_from_size(size_t size) { |
| mi_assert_internal(size <= SIZE_MAX - sizeof(uintptr_t)); |
| return (size + sizeof(uintptr_t) - 1) / sizeof(uintptr_t); |
| } |
|
|
| |
| #if __has_builtin(__builtin_umul_overflow) || (defined(__GNUC__) && (__GNUC__ >= 5)) |
| #include <limits.h> |
| #if defined(_CLOCK_T) |
| #undef _CLOCK_T |
| #endif |
| static inline bool mi_mul_overflow(size_t count, size_t size, size_t* total) { |
| #if (SIZE_MAX == ULONG_MAX) |
| return __builtin_umull_overflow(count, size, (unsigned long *)total); |
| #elif (SIZE_MAX == UINT_MAX) |
| return __builtin_umul_overflow(count, size, (unsigned int *)total); |
| #else |
| return __builtin_umulll_overflow(count, size, (unsigned long long *)total); |
| #endif |
| } |
| #else |
| static inline bool mi_mul_overflow(size_t count, size_t size, size_t* total) { |
| *total = count*size; |
| if mi_likely(((size|count)>>(4*MI_SIZE_SIZE))==0) { |
| return false; |
| } |
| else { |
| return (size!=0 && (SIZE_MAX / size) < count); |
| } |
| } |
| #endif |
|
|
| |
| static inline bool mi_count_size_overflow(size_t count, size_t size, size_t* total) { |
| if (count==1) { |
| *total = size; |
| return false; |
| } |
| else if mi_likely(!mi_mul_overflow(count, size, total)) { |
| return false; |
| } |
| else { |
| #if MI_DEBUG > 0 |
| _mi_error_message(EOVERFLOW, "allocation request is too large (%zu * %zu bytes)\n", count, size); |
| #endif |
| *total = SIZE_MAX; |
| return true; |
| } |
| } |
|
|
|
|
| |
| |
| |
|
|
| extern mi_decl_hidden const mi_theap_t _mi_theap_empty; |
| extern mi_decl_hidden const mi_theap_t _mi_theap_empty_wrong; |
|
|
|
|
| static inline mi_heap_t* _mi_theap_heap(const mi_theap_t* theap) { |
| return mi_atomic_load_ptr_acquire(mi_heap_t,&theap->heap); |
| } |
|
|
| static inline bool mi_theap_is_initialized(const mi_theap_t* theap) { |
| return (theap != NULL && _mi_theap_heap(theap) != NULL); |
| } |
|
|
| static inline mi_page_t* _mi_theap_get_free_small_page(mi_theap_t* theap, size_t size) { |
| mi_assert_internal(size <= (MI_SMALL_SIZE_MAX + MI_PADDING_SIZE)); |
| const size_t idx = _mi_wsize_from_size(size); |
| mi_assert_internal(idx < MI_PAGES_DIRECT); |
| return theap->pages_free_direct[idx]; |
| } |
|
|
|
|
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
|
|
| #if MI_PAGE_MAP_FLAT |
|
|
| |
| |
| |
| extern mi_decl_hidden uint8_t* _mi_page_map; |
|
|
| static inline size_t _mi_page_map_index(const void* p) { |
| return (size_t)((uintptr_t)p >> MI_ARENA_SLICE_SHIFT); |
| } |
|
|
| static inline mi_page_t* _mi_ptr_page_ex(const void* p, bool* valid) { |
| const size_t idx = _mi_page_map_index(p); |
| const size_t ofs = _mi_page_map[idx]; |
| if (valid != NULL) { *valid = (ofs != 0); } |
| return (mi_page_t*)((((uintptr_t)p >> MI_ARENA_SLICE_SHIFT) + 1 - ofs) << MI_ARENA_SLICE_SHIFT); |
| } |
|
|
| static inline mi_page_t* _mi_checked_ptr_page(const void* p) { |
| bool valid; |
| mi_page_t* const page = _mi_ptr_page_ex(p, &valid); |
| return (valid ? page : NULL); |
| } |
|
|
| static inline mi_page_t* _mi_unchecked_ptr_page(const void* p) { |
| return _mi_ptr_page_ex(p, NULL); |
| } |
|
|
| #else |
|
|
| |
| |
| |
| |
| |
| |
| |
| #define MI_PAGE_MAP_SUB_SHIFT (13) |
| #define MI_PAGE_MAP_SUB_COUNT (MI_ZU(1) << MI_PAGE_MAP_SUB_SHIFT) |
| #define MI_PAGE_MAP_SHIFT (MI_MAX_VABITS - MI_PAGE_MAP_SUB_SHIFT - MI_ARENA_SLICE_SHIFT) |
| #define MI_PAGE_MAP_COUNT (MI_ZU(1) << MI_PAGE_MAP_SHIFT) |
|
|
| typedef mi_page_t** mi_submap_t; |
| extern mi_decl_hidden _Atomic(mi_submap_t)* _mi_page_map; |
|
|
| static inline size_t _mi_page_map_index(const void* p, size_t* sub_idx) { |
| const size_t u = (size_t)((uintptr_t)p / MI_ARENA_SLICE_SIZE); |
| if (sub_idx != NULL) { *sub_idx = u % MI_PAGE_MAP_SUB_COUNT; } |
| return (u / MI_PAGE_MAP_SUB_COUNT); |
| } |
|
|
| static inline mi_submap_t _mi_page_map_at(size_t idx) { |
| return mi_atomic_load_ptr_relaxed(mi_page_t*, &_mi_page_map[idx]); |
| } |
|
|
| static inline mi_page_t* _mi_unchecked_ptr_page(const void* p) { |
| size_t sub_idx; |
| const size_t idx = _mi_page_map_index(p, &sub_idx); |
| return (_mi_page_map_at(idx))[sub_idx]; |
| } |
|
|
| static inline mi_page_t* _mi_checked_ptr_page(const void* p) { |
| size_t sub_idx; |
| const size_t idx = _mi_page_map_index(p, &sub_idx); |
| mi_submap_t const sub = _mi_page_map_at(idx); |
| if mi_unlikely(sub == NULL) return NULL; |
| return sub[sub_idx]; |
| } |
|
|
| #endif |
|
|
|
|
| static inline mi_page_t* _mi_ptr_page(const void* p) { |
| mi_assert_internal(p==NULL || mi_is_in_heap_region(p)); |
| #if MI_DEBUG || MI_SECURE || defined(__APPLE__) |
| return _mi_checked_ptr_page(p); |
| #else |
| return _mi_unchecked_ptr_page(p); |
| #endif |
| } |
|
|
|
|
| |
| static inline size_t mi_page_block_size(const mi_page_t* page) { |
| mi_assert_internal(page->block_size > 0); |
| return page->block_size; |
| } |
|
|
| |
| static inline uint8_t* mi_page_start(const mi_page_t* page) { |
| return page->page_start; |
| } |
|
|
| static inline size_t mi_page_size(const mi_page_t* page) { |
| return mi_page_block_size(page) * page->reserved; |
| } |
|
|
| static inline uint8_t* mi_page_area(const mi_page_t* page, size_t* size) { |
| if (size) { *size = mi_page_size(page); } |
| return mi_page_start(page); |
| } |
|
|
| static inline size_t mi_page_info_size(void) { |
| return _mi_align_up(sizeof(mi_page_t), MI_MAX_ALIGN_SIZE); |
| } |
|
|
| static inline bool mi_page_contains_address(const mi_page_t* page, const void* p) { |
| size_t psize; |
| uint8_t* start = mi_page_area(page, &psize); |
| return (start <= (uint8_t*)p && (uint8_t*)p < start + psize); |
| } |
|
|
| static inline bool mi_page_is_in_arena(const mi_page_t* page) { |
| return (page->memid.memkind == MI_MEM_ARENA); |
| } |
|
|
| static inline bool mi_page_is_singleton(const mi_page_t* page) { |
| return (page->reserved == 1); |
| } |
|
|
| |
| |
| static inline size_t mi_page_usable_block_size(const mi_page_t* page) { |
| return mi_page_block_size(page) - MI_PADDING_SIZE; |
| } |
|
|
| static inline bool mi_page_meta_is_separated(const mi_page_t* page) { |
| #if MI_PAGE_META_IS_SEPARATED |
| |
| return (page->memid.memkind == MI_MEM_ARENA && page != _mi_align_down_ptr(page->page_start, MI_ARENA_SLICE_ALIGN)); |
| #else |
| MI_UNUSED(page); |
| return false; |
| #endif |
| } |
|
|
| static inline uint8_t* mi_page_slice_start(const mi_page_t* page) { |
| if (mi_page_meta_is_separated(page)) { |
| |
| return (uint8_t*)_mi_align_down_ptr(page->page_start, MI_ARENA_SLICE_ALIGN); |
| } |
| else { |
| |
| return (uint8_t*)page; |
| } |
| } |
|
|
| |
| static inline size_t mi_page_slice_offset_of(const mi_page_t* page, size_t offset_relative_to_page_start) { |
| return (page->page_start - mi_page_slice_start(page)) + offset_relative_to_page_start; |
| } |
|
|
| |
| static inline size_t mi_page_committed(const mi_page_t* page) { |
| return (page->slice_committed == 0 ? mi_page_size(page) : page->slice_committed - mi_page_slice_offset_of(page,0)); |
| } |
|
|
| |
| |
| static inline bool mi_page_all_free(const mi_page_t* page) { |
| mi_assert_internal(page != NULL); |
| return (page->used == 0); |
| } |
|
|
| |
| static inline bool mi_page_immediate_available(const mi_page_t* page) { |
| mi_assert_internal(page != NULL); |
| return (page->free != NULL); |
| } |
|
|
|
|
| |
| static inline bool mi_page_is_expandable(const mi_page_t* page) { |
| mi_assert_internal(page != NULL); |
| mi_assert_internal(page->capacity <= page->reserved); |
| return (page->capacity < page->reserved); |
| } |
|
|
|
|
| static inline bool mi_page_is_full(const mi_page_t* page) { |
| const bool full = (page->reserved == page->used); |
| mi_assert_internal(!full || page->free == NULL); |
| return full; |
| } |
|
|
| |
| static inline bool mi_page_is_mostly_used(const mi_page_t* page) { |
| if (page==NULL) return true; |
| uint16_t frac = page->reserved / 8U; |
| return (page->reserved - page->used <= frac); |
| } |
|
|
| |
| static inline bool mi_page_is_used_at_frac(const mi_page_t* page, uint16_t n) { |
| if (page==NULL) return true; |
| uint16_t frac = page->reserved / n; |
| return (page->reserved - page->used <= frac); |
| } |
|
|
|
|
| static inline bool mi_page_is_huge(const mi_page_t* page) { |
| return (mi_page_is_singleton(page) && |
| (page->block_size > MI_LARGE_MAX_OBJ_SIZE || |
| (mi_memkind_is_os(page->memid.memkind) && page->memid.mem.os.base < (void*)page))); |
| } |
|
|
| static inline mi_page_queue_t* mi_page_queue(const mi_theap_t* theap, size_t size) { |
| mi_page_queue_t* const pq = &((mi_theap_t*)theap)->pages[_mi_bin(size)]; |
| if (size <= MI_LARGE_MAX_OBJ_SIZE) { mi_assert_internal(pq->block_size <= MI_LARGE_MAX_OBJ_SIZE); } |
| return pq; |
| } |
|
|
|
|
| |
| |
| |
|
|
| |
| static inline mi_threadid_t mi_page_xthread_id(const mi_page_t* page) { |
| return mi_atomic_load_relaxed(&((mi_page_t*)page)->xthread_id); |
| } |
|
|
| |
| static inline mi_threadid_t mi_page_thread_id(const mi_page_t* page) { |
| return (mi_page_xthread_id(page) & ~MI_PAGE_FLAG_MASK); |
| } |
|
|
| static inline mi_page_flags_t mi_page_flags(const mi_page_t* page) { |
| return (mi_page_xthread_id(page) & MI_PAGE_FLAG_MASK); |
| } |
|
|
| static inline bool mi_page_flags_set(mi_page_t* page, bool set, mi_page_flags_t newflag) { |
| mi_page_flags_t old; |
| if (set) { old = mi_atomic_or_relaxed(&page->xthread_id, newflag); } |
| else { old = mi_atomic_and_relaxed(&page->xthread_id, ~newflag); } |
| return ((old & newflag) == newflag); |
| } |
|
|
| static inline bool mi_page_is_in_full(const mi_page_t* page) { |
| return ((mi_page_flags(page) & MI_PAGE_IN_FULL_QUEUE) != 0); |
| } |
|
|
| static inline void mi_page_set_in_full(mi_page_t* page, bool in_full) { |
| const bool was_in_full = mi_page_flags_set(page, in_full, MI_PAGE_IN_FULL_QUEUE); |
| if (was_in_full != in_full) { |
| |
| mi_theap_t* const theap = page->theap; |
| mi_assert_internal(theap!=NULL); |
| if (theap != NULL) { |
| const size_t size = page->capacity * mi_page_block_size(page); |
| if (in_full) { theap->pages_full_size += size; } |
| else { mi_assert_internal(size <= theap->pages_full_size); theap->pages_full_size -= size; } |
| } |
| } |
| } |
|
|
| static inline bool mi_page_has_interior_pointers(const mi_page_t* page) { |
| return ((mi_page_flags(page) & MI_PAGE_HAS_INTERIOR_POINTERS) != 0); |
| } |
|
|
| static inline void mi_page_set_has_interior_pointers(mi_page_t* page, bool has_aligned) { |
| mi_page_flags_set(page, has_aligned, MI_PAGE_HAS_INTERIOR_POINTERS); |
| } |
|
|
| static inline void mi_page_set_theap(mi_page_t* page, mi_theap_t* theap) { |
| |
| page->theap = theap; |
| const mi_threadid_t tid = (theap == NULL ? MI_THREADID_ABANDONED : theap->tld->thread_id); |
| mi_assert_internal((tid & MI_PAGE_FLAG_MASK) == 0); |
|
|
| |
| mi_threadid_t xtid_old = mi_page_xthread_id(page); |
| mi_threadid_t xtid; |
| do { |
| xtid = tid | (xtid_old & MI_PAGE_FLAG_MASK); |
| } while (!mi_atomic_cas_weak_release(&page->xthread_id, &xtid_old, xtid)); |
| } |
|
|
| static inline bool mi_page_is_abandoned(const mi_page_t* page) { |
| |
| return (mi_page_thread_id(page) <= MI_THREADID_ABANDONED_MAPPED); |
| } |
|
|
| static inline bool mi_page_is_abandoned_mapped(const mi_page_t* page) { |
| return (mi_page_thread_id(page) == MI_THREADID_ABANDONED_MAPPED); |
| } |
|
|
| static inline void mi_page_set_abandoned_mapped(mi_page_t* page) { |
| mi_assert_internal(mi_page_is_abandoned(page)); |
| mi_atomic_or_relaxed(&page->xthread_id, (mi_threadid_t)MI_THREADID_ABANDONED_MAPPED); |
| } |
|
|
| static inline void mi_page_clear_abandoned_mapped(mi_page_t* page) { |
| mi_assert_internal(mi_page_is_abandoned_mapped(page)); |
| mi_atomic_and_relaxed(&page->xthread_id, (mi_threadid_t)MI_PAGE_FLAG_MASK); |
| } |
|
|
|
|
| static inline mi_theap_t* mi_page_theap(const mi_page_t* page) { |
| mi_assert_internal(!mi_page_is_abandoned(page)); |
| mi_assert_internal(page->theap != NULL); |
| return page->theap; |
| } |
|
|
| static inline mi_tld_t* mi_page_tld(const mi_page_t* page) { |
| mi_assert_internal(!mi_page_is_abandoned(page)); |
| mi_assert_internal(page->theap != NULL); |
| return page->theap->tld; |
| } |
|
|
|
|
| static inline mi_heap_t* mi_page_heap(const mi_page_t* page) { |
| mi_heap_t* heap = page->heap; |
| |
| if mi_likely(heap==NULL) heap = mi_heap_main(); |
| mi_assert_internal(heap != NULL); |
| return heap; |
| } |
|
|
| |
| |
| |
|
|
| |
| static inline mi_block_t* mi_tf_block(mi_thread_free_t tf) { |
| return (mi_block_t*)(tf & ~1); |
| } |
| static inline bool mi_tf_is_owned(mi_thread_free_t tf) { |
| return ((tf & 1) == 1); |
| } |
| static inline mi_thread_free_t mi_tf_create(mi_block_t* block, bool owned) { |
| return (mi_thread_free_t)((uintptr_t)block | (owned ? 1 : 0)); |
| } |
|
|
| |
| static inline mi_block_t* mi_page_thread_free(const mi_page_t* page) { |
| return mi_tf_block(mi_atomic_load_relaxed(&((mi_page_t*)page)->xthread_free)); |
| } |
|
|
| |
| static inline bool mi_page_has_any_available(const mi_page_t* page) { |
| mi_assert_internal(page != NULL && page->reserved > 0); |
| return (page->used < page->reserved || (mi_page_thread_free(page) != NULL)); |
| } |
|
|
| |
| static inline bool mi_page_is_owned(const mi_page_t* page) { |
| return mi_tf_is_owned(mi_atomic_load_relaxed(&((mi_page_t*)page)->xthread_free)); |
| } |
|
|
| |
| static inline bool mi_page_claim_ownership(mi_page_t* page) { |
| const uintptr_t old = mi_atomic_or_acq_rel(&page->xthread_free, (uintptr_t)1); |
| return ((old&1)==0); |
| } |
|
|
|
|
| |
| |
| |
| #if MI_GUARDED |
| |
| |
| #define MI_BLOCK_TAG_ALIGNED ((mi_encoded_t)(0)) |
| #define MI_BLOCK_TAG_GUARDED (~MI_BLOCK_TAG_ALIGNED) |
| #endif |
|
|
| static inline bool mi_block_ptr_is_guarded(const mi_block_t* block, const void* p) { |
| #if MI_GUARDED |
| const ptrdiff_t offset = (uint8_t*)p - (uint8_t*)block; |
| return (offset >= (ptrdiff_t)(sizeof(mi_block_t)) && block->next == MI_BLOCK_TAG_GUARDED); |
| #else |
| MI_UNUSED(block); MI_UNUSED(p); |
| return false; |
| #endif |
| } |
|
|
| #if MI_GUARDED |
| static inline bool mi_theap_malloc_use_guarded(mi_theap_t* theap, size_t size) { |
| |
| const size_t count = theap->guarded_sample_count - 1; |
| if mi_likely(count != 0) { |
| |
| theap->guarded_sample_count = count; |
| return false; |
| } |
| else if (size >= theap->guarded_size_min && size <= theap->guarded_size_max) { |
| |
| theap->guarded_sample_count = theap->guarded_sample_rate; |
| return (theap->guarded_sample_rate != 0); |
| } |
| else { |
| |
| if (theap->guarded_sample_rate != 0) { theap->guarded_sample_count = 1; } |
| return false; |
| } |
| } |
|
|
| mi_decl_restrict void* _mi_theap_malloc_guarded(mi_theap_t* theap, size_t size, bool zero) mi_attr_noexcept; |
|
|
| #endif |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| static inline bool mi_is_in_same_page(const void* p, const void* q) { |
| mi_page_t* page = _mi_ptr_page(p); |
| return mi_page_contains_address(page,q); |
| |
| } |
|
|
| static inline void* mi_ptr_decode(const void* null, const mi_encoded_t x, const uintptr_t* keys) { |
| void* p = (void*)(mi_rotr(x - keys[0], keys[0]) ^ keys[1]); |
| return (p==null ? NULL : p); |
| } |
|
|
| static inline mi_encoded_t mi_ptr_encode(const void* null, const void* p, const uintptr_t* keys) { |
| uintptr_t x = (uintptr_t)(p==NULL ? null : p); |
| return mi_rotl(x ^ keys[1], keys[0]) + keys[0]; |
| } |
|
|
| static inline uint32_t mi_ptr_encode_canary(const void* null, const void* p, const uintptr_t* keys) { |
| const uint32_t x = (uint32_t)(mi_ptr_encode(null,p,keys)); |
| |
| #if MI_BIG_ENDIAN |
| return (x & 0x00FFFFFF); |
| #else |
| return (x & 0xFFFFFF00); |
| #endif |
| } |
|
|
| static inline mi_block_t* mi_block_nextx( const void* null, const mi_block_t* block, const uintptr_t* keys ) { |
| mi_track_mem_defined(block,sizeof(mi_block_t)); |
| mi_block_t* next; |
| #if MI_ENCODE_FREELIST |
| next = (mi_block_t*)mi_ptr_decode(null, block->next, keys); |
| #else |
| MI_UNUSED(keys); MI_UNUSED(null); |
| next = (mi_block_t*)block->next; |
| #endif |
| mi_track_mem_noaccess(block,sizeof(mi_block_t)); |
| return next; |
| } |
|
|
| static inline void mi_block_set_nextx(const void* null, mi_block_t* block, const mi_block_t* next, const uintptr_t* keys) { |
| mi_track_mem_undefined(block,sizeof(mi_block_t)); |
| #if MI_ENCODE_FREELIST |
| block->next = mi_ptr_encode(null, next, keys); |
| #else |
| MI_UNUSED(keys); MI_UNUSED(null); |
| block->next = (mi_encoded_t)next; |
| #endif |
| mi_track_mem_noaccess(block,sizeof(mi_block_t)); |
| } |
|
|
| static inline mi_block_t* mi_block_next(const mi_page_t* page, const mi_block_t* block) { |
| #if MI_ENCODE_FREELIST |
| mi_block_t* next = mi_block_nextx(page,block,page->keys); |
| |
| |
| if mi_unlikely(next!=NULL && !mi_is_in_same_page(block, next)) { |
| _mi_error_message(EFAULT, "corrupted free list entry of size %zub at %p: value 0x%zx\n", mi_page_block_size(page), block, (uintptr_t)next); |
| next = NULL; |
| } |
| return next; |
| #else |
| MI_UNUSED(page); |
| return mi_block_nextx(page,block,NULL); |
| #endif |
| } |
|
|
| static inline void mi_block_set_next(const mi_page_t* page, mi_block_t* block, const mi_block_t* next) { |
| #if MI_ENCODE_FREELIST |
| mi_block_set_nextx(page,block,next, page->keys); |
| #else |
| MI_UNUSED(page); |
| mi_block_set_nextx(page,block,next,NULL); |
| #endif |
| } |
|
|
| |
| |
| |
|
|
| |
| static inline size_t mi_slice_count_of_size(size_t size) { |
| return _mi_divide_up(size, MI_ARENA_SLICE_SIZE); |
| } |
|
|
| |
| static inline size_t mi_size_of_slices(size_t bcount) { |
| return (bcount * MI_ARENA_SLICE_SIZE); |
| } |
|
|
|
|
| |
| |
| |
|
|
| static inline mi_memid_t _mi_memid_create(mi_memkind_t memkind) { |
| mi_memid_t memid; |
| _mi_memzero_var(memid); |
| memid.memkind = memkind; |
| return memid; |
| } |
|
|
| static inline mi_memid_t _mi_memid_none(void) { |
| return _mi_memid_create(MI_MEM_NONE); |
| } |
|
|
| static inline mi_memid_t _mi_memid_create_os(void* base, size_t size, bool committed, bool is_zero, bool is_large) { |
| mi_memid_t memid = _mi_memid_create(MI_MEM_OS); |
| memid.mem.os.base = base; |
| memid.mem.os.size = size; |
| memid.initially_committed = committed; |
| memid.initially_zero = is_zero; |
| memid.is_pinned = is_large; |
| return memid; |
| } |
|
|
| static inline mi_memid_t _mi_memid_create_meta(void* mpage, size_t block_idx, size_t block_count) { |
| mi_memid_t memid = _mi_memid_create(MI_MEM_META); |
| memid.mem.meta.meta_page = mpage; |
| memid.mem.meta.block_index = (uint32_t)block_idx; |
| memid.mem.meta.block_count = (uint32_t)block_count; |
| memid.initially_committed = true; |
| memid.initially_zero = true; |
| memid.is_pinned = true; |
| return memid; |
| } |
|
|
|
|
| |
| |
| |
|
|
| static inline uintptr_t _mi_random_shuffle(uintptr_t x) { |
| if (x==0) { x = 17; } |
| #if (MI_INTPTR_SIZE>=8) |
| |
| x ^= x >> 30; |
| x *= 0xbf58476d1ce4e5b9UL; |
| x ^= x >> 27; |
| x *= 0x94d049bb133111ebUL; |
| x ^= x >> 31; |
| #elif (MI_INTPTR_SIZE==4) |
| |
| x ^= x >> 16; |
| x *= 0x7feb352dUL; |
| x ^= x >> 15; |
| x *= 0x846ca68bUL; |
| x ^= x >> 16; |
| #endif |
| return x; |
| } |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #if !MI_TRACK_ENABLED && (MI_ARCH_X64 || MI_ARCH_X86) && (defined(_WIN32) || defined(__GNUC__)) |
|
|
| extern mi_decl_hidden size_t _mi_cpu_movsb_max; |
| extern mi_decl_hidden size_t _mi_cpu_stosb_max; |
|
|
| static inline void mi_rep_movsb(void* dst, const void* src, size_t n) { |
| #if defined(__GNUC__) |
| __asm volatile("rep movsb" : "+D"(dst), "+c"(n), "+S"(src) : : "memory"); |
| #else |
| __movsb((unsigned char*)dst, (const unsigned char*)src, n); |
| #endif |
| } |
|
|
| static inline void mi_rep_stosb(void* dst, uint8_t val, size_t n) { |
| #if defined(__GNUC__) |
| __asm volatile("rep stosb" : "+D"(dst), "+c"(n) : "a"(val) : "memory"); |
| #else |
| __stosb((unsigned char*)dst, val, n); |
| #endif |
| } |
|
|
| static inline void _mi_memcpy(void* dst, const void* src, size_t n) { |
| if mi_likely(n <= _mi_cpu_movsb_max) { |
| mi_rep_movsb(dst, src, n); |
| } |
| else { |
| memcpy(dst, src, n); |
| } |
| } |
|
|
| static inline void _mi_memset(void* dst, int val, size_t n) { |
| if mi_likely(n <= _mi_cpu_stosb_max) { |
| mi_rep_stosb(dst, (uint8_t)val, n); |
| } |
| else { |
| memset(dst, val, n); |
| } |
| } |
|
|
| #else |
|
|
| static inline void _mi_memcpy(void* dst, const void* src, size_t n) { |
| memcpy(dst, src, n); |
| } |
|
|
| static inline void _mi_memset(void* dst, int val, size_t n) { |
| memset(dst, val, n); |
| } |
|
|
| #endif |
|
|
| |
| |
| |
| |
|
|
| #if (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) |
|
|
| |
| static inline void _mi_memcpy_aligned(void* dst, const void* src, size_t n) { |
| mi_assert_internal(((uintptr_t)dst % MI_INTPTR_SIZE == 0) && ((uintptr_t)src % MI_INTPTR_SIZE == 0)); |
| void* adst = __builtin_assume_aligned(dst, MI_INTPTR_SIZE); |
| const void* asrc = __builtin_assume_aligned(src, MI_INTPTR_SIZE); |
| _mi_memcpy(adst, asrc, n); |
| } |
|
|
| static inline void _mi_memset_aligned(void* dst, int val, size_t n) { |
| mi_assert_internal((uintptr_t)dst % MI_INTPTR_SIZE == 0); |
| void* adst = __builtin_assume_aligned(dst, MI_INTPTR_SIZE); |
| _mi_memset(adst, val, n); |
| } |
|
|
| #else |
|
|
| |
| static inline void _mi_memcpy_aligned(void* dst, const void* src, size_t n) { |
| mi_assert_internal(((uintptr_t)dst % MI_INTPTR_SIZE == 0) && ((uintptr_t)src % MI_INTPTR_SIZE == 0)); |
| _mi_memcpy(dst, src, n); |
| } |
|
|
| static inline void _mi_memset_aligned(void* dst, int val, size_t n) { |
| mi_assert_internal((uintptr_t)dst % MI_INTPTR_SIZE == 0); |
| _mi_memset(dst, val, n); |
| } |
|
|
| #endif |
|
|
| static inline void _mi_memzero(void* dst, size_t n) { |
| _mi_memset(dst, 0, n); |
| } |
|
|
| static inline void _mi_memzero_aligned(void* dst, size_t n) { |
| _mi_memset_aligned(dst, 0, n); |
| } |
|
|
|
|
|
|
| #endif |
|
|