-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wee_alloc leaks memory #85
Comments
I am also experiencing this issue, which is that an OOM error arises in my system when trying to push elements to an alloc::vec::Vec of u32's, right around the 65th element (which is just over 256k bytes of memory). I only have the static_array_backend feature enabled, and the error persists even after adjusting the WEE_ALLOC_STATIC_ARRAY_BACKEND_BYTES env var to twice the default during compilation. For more context wee_alloc is being used as a global allocator in a no_std bare metal OS that is being built. So it is possible there are some confounding variables at play here, but I am fairly certain this is due to wee_alloc. Are there any fixes or workarounds people have found? |
I switched to dlmalloc, which worked perfectly fine. |
@CryZe, @nand-nor: are y'all using the size classes feature? I'd recommend against using it in super constrained memory situations (eg only 256k of heap space) since it will prefill each size class's free list with 8k from the main free list. It is essentially trading more fragmentation for faster allocation of small objects. I think using the size classes in a constrained memory environment, combined with the alignment bug that #87 is fixing, could explain this behavior. If you were using the size classes feature, I'd be interested in if you could re-test with size classes disabled and the fix in #87 and report if you're seeing the same behavior or not. |
@fitzgen I have not been using the size classes feature (my target platform has plenty of memory) so the tests I ran separately from tests.sh after enforcing scratch heap alignment did not have this feature enabled. |
I also tried both variants (back then) and both were failing to allocate way too early, though with size classes (as seen in the OP), it was even earlier than without. |
`wee-alloc` should no longer be recommended because of a memory leak: rustwasm/wee_alloc#85 It appears that the project is abandoned and that this issue will not be fixed anytime soon. Closes #614
`wee-alloc` should no longer be recommended because of a memory leak: rustwasm/wee_alloc#85 It appears that the project is abandoned and that this issue will not be fixed anytime soon. Closes #614
Describe the Bug
wee_alloc is supposedly useful for embedded devices, but I tried it over the weekend and of the total amount of memory of 256 KiB, wee_alloc is only able to allocate 2.2 KiB in its default configuration. Something seems to be off here.
Steps to Reproduce
Expected Behavior
It should be able to use at least 200 KiB or so.
Actual Behavior
It can only allocate 2.2 KiB.
The text was updated successfully, but these errors were encountered: