-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
add back jemalloc to the tree #13742
Conversation
I started working on porting to this new allocator interface but extracted it from this commit for now. I ran into some code bloat issues in |
Is this following the design proposed in rust-lang/rfcs#39 ? |
Glad to see progress on this again. I like that it defines its own abstraction for the exchange heap. From a cursory look I think this enables jemalloc everywhere. Is that correct? |
I don't really understand why we would add a submodule, build it, and then never use it. I would like to see at least one user of jemalloc before merging. |
@alexcrichton: If it's okay to have a bunch compiler changes along with this, then I'll do that. |
This adds a `std::rt::heap` module with a nice allocator API. It's a step towards fixing #13094 and is a starting point for working on a generic allocator trait. The revision used for the jemalloc submodule is the stable 3.6.0 release.
…ts, r=flodiebold fix: only shift `BoundVar`s that come from outside lowering context Fixes rust-lang#13734 There are some free functions `TyLoweringContext` methods call, which do not know anything about current binders in scope. We need to shift in the `BoundVar`s in substitutions that we get from them (rust-lang#4952), but not those we get from `TyLoweringContext` methods.
…lang#13742) changelog: [`doc_lazy_continuation`]: correctly count indent with backslashes Fixes rust-lang#13705
This adds a
std::rt::heap
module with a nice allocator API. It's astep towards fixing #13094 and is a starting point for working on a
generic allocator trait.
The revision used for the jemalloc submodule is the stable 3.6.0 release.