mimalloc icon indicating copy to clipboard operation
mimalloc copied to clipboard

mimalloc is a compact general purpose allocator with excellent performance.

Results 266 mimalloc issues
Sort by recently updated
recently updated
newest added

Hey I'd like to suggest adding mimalloc to google/oss-fuzz. If you aren't familiar with fuzz testing, here is a bit of a run down ([from Wikipedia](https://en.wikipedia.org/wiki/Fuzzing)); > In [programming](https://en.wikipedia.org/wiki/Computer_programming) and...

I am currently porting mimalloc to a new platform. When running it with my application I do get negative values for `current_commit` from `mi_process_info` after some time. It's a debug...

Hi Daan, we've experiencing a 100% crash in mimalloc dev3 which reproduces when we have High Entropy ASLR disabled. mimalloc appears to misbehave either specifically when High Entropy ASLR is...

Hello, I've cloned mimalloc repository and open mimalloc solution for Visual Studio 2022. I've slightly modified sources of 'mimalloc-test-override' project to measure and compare performance with std:: operator new() in...

Silimar to #850, but in my case minject only crashes for one of seven executables, and only on one machine. However, this happens for both version 2.1.2 and 3.0.1 of...

I've got a failure while trying to compile with "-mmacosx-version-min=10.7" since MAC_OS_X_VERSION_MAX_ALLOWED is greater than MAC_OS_X_VERSION_10_15 but still we can't use `aligned_alloc` since of the lower bound (10.7). I'm not...

I use mimalloc in https://github.com/pola-rs/polars build via rust bindings https://github.com/purpleprotocol/mimalloc_rust Env is linux on arm32v7 cpu with 32k memory page size the app OOMs way before container memory limit is...

This patch ensures that both mi_ctz_generic32 and mi_clz_generic32 perform safe indexing into the de Bruijn lookup tables by masking the computed index with `& 31`. On platforms where unsigned long...

The current [MI_TLS_SLOT](https://github.com/microsoft/mimalloc/blob/61f3ffd2a6b2736e5a8fced840a66073c12a9a65/include/mimalloc/prim.h#L223) in v3 uses offset `0x888` when `MI_WIN_USE_FIXED_TLS` is enabled: ``` #define MI_TLS_SLOT (0x888) // Last user-reserved slot // #define MI_TLS_SLOT (0x1678) // Last TlsSlot (might clash with...