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

Add jemalloc\tcmalloc allocators #182

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions gecode/support/allocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@
#include <malloc/malloc.h>
#endif

#ifdef GECODE_JEMALLOC_H
#include <jemalloc/jemalloc.h>
#endif

#ifdef GECODE_TCMALLOC_H
#include <gperftools/tcmalloc.h>
#endif

#ifdef GECODE_ALLOCATOR

namespace Gecode { namespace Support {
Expand Down Expand Up @@ -77,15 +85,27 @@ namespace Gecode { namespace Support {
}
forceinline void*
Allocator::alloc(size_t n) {
#ifdef GECODE_TCMALLOC_H
return tc_mallock(n);
#else
return ::malloc(n);
#endif
}
forceinline void*
Allocator::realloc(void* p, size_t n) {
#ifdef GECODE_TCMALLOC_H
return tc_realloc(p,n);
#else
return ::realloc(p,n);
#endif
}
forceinline void
Allocator::free(void* p) {
#ifdef GECODE_TCMALLOC_H
tc_free(p);
#else
::free(p);
#endif
}
forceinline void*
Allocator::memcpy(void *d, const void *s, size_t n) {
Expand Down