mimalloc
mimalloc copied to clipboard
mimalloc is a compact general purpose allocator with excellent performance.
Hi, Does mimalloc support Windows ARM64? https://github.com/microsoft/mimalloc/issues/482 seems to indicate so but https://github.com/microsoft/mimalloc/blob/dev/ide/vs2022/mimalloc.sln seems to indicate that mimalloc isn't built for Windows ARM64? Thank you, Hiroshi
Hello, I noticed this in mimalloc 1.7.6: ``` static void* mi_heap_realloc_zero_aligned(mi_heap_t* heap, void* p, size_t newsize, size_t alignment, bool zero) mi_attr_noexcept { mi_assert(alignment > 0); if (alignment
How can I make our java app use mimalloc for everything instead of malloc in windows? ( some how the equivalent of PRE_LOAD in linux for windows ). I read...
```c #include int main() { int *a = (int *)malloc(sizeof(int)); *a = 1; return 0; } ``` Hi, I wrote a demo and want to use mimalloc with asan enabled....
Hi, I'm using mimalloc indirectly, via the mold linker. This is mimalloc 2.0.6+ds-2+b1 from debian unstable. On a new linux kernel (v6.1-rc3-158-gee6050c8af96) nearly every use of mold results in a...
Hi! Our team has been trying to adopt mimalloc for the project we've been working on for embedded devices and consoles. We would like to limit how much memory mimalloc...
It looks like mimalloc-redirect.dll is not compiled with CFG, which causes the process to be unrunnable if strict CFG is enabled.
The compiler gives the warning at ([this issue](https://github.com/microsoft/mimalloc/issues/933)): ``` error: '__atomic_load_8' writing 8 bytes into a region of size 0 overflows the destination [-Werror=stringop-overflow=] In file included from /janus/3p/mimalloc/include/mimalloc/internal.h:17, from...
Fix a Typo
OS: mcr.microsoft.com/azurelinux/base/core:3.0 gcc: 13.2.0 g++: 13.2.0 Built with Address Sanitizer. **error: '__atomic_load_8' writing 8 bytes into a region of size 0 overflows the destination [-Werror=stringop-overflow=]** ``` In file included from...