Skip to content
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

Template construction of Pool elements #641

Merged
merged 8 commits into from
Oct 3, 2023
Merged

Conversation

mjp41
Copy link
Member

@mjp41 mjp41 commented Sep 29, 2023

The Pool class is used by verona-rt. The recent changes made this less nice to consume as an API.

This change makes the construction logic a template parameter to the Pool. This enables standard allocation to be used from Verona.

Fixes #603

The Pool class is used by verona-rt.  The recent changes made this
less nice to consume as an API.

This change makes the construction logic a template parameter to the
Pool. This enables standard allocation to be used from Verona.
@mjp41 mjp41 requested a review from nwf-msr September 29, 2023 13:48
src/snmalloc/mem/pool.h Outdated Show resolved Hide resolved
Pool::acquire took a list of parameters to initialise the object that it
constructed.  But if this was serviced from the pool, the parameter
would be ignored.  This is not an ideal API.

This PR removes the ability to pass a parameter.
src/snmalloc/mem/corealloc.h Outdated Show resolved Hide resolved
@@ -621,8 +621,7 @@ namespace snmalloc
template<
typename Config_ = Config,
typename = std::enable_if_t<Config_::Options.CoreAllocOwnsLocalState>>
CoreAllocator(Range<capptr::bounds::Alloc>& spare, LocalCache* cache)
: attached_cache(cache)
CoreAllocator(Range<capptr::bounds::Alloc>& spare)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is going to leave attached_cache nullptr "more often" after construction (I guess you could always have passed in nullptr for the 2nd arg). Are we guaranteed that attach() is called before flush() or before handle_message_queue_inner() decides to post()?

@mjp41 mjp41 enabled auto-merge (squash) October 3, 2023 13:34
@mjp41 mjp41 merged commit f38ee89 into microsoft:main Oct 3, 2023
47 of 49 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enable Pool to use a malloc
3 participants