TCMalloc is a malloc library developed by Google. It is faster than the glibc 2.3 malloc (ptmalloc2), which takes approximately 300ns to execute a malloc/free pair on a 2.8GHz P4 (for small objects). TCMalloc takes approximately 50ns for the same operation pair. It also reduces lock contention for ...
1
vote
0answers
31 views
Using tcmalloc/jemalloc with custom memory pool manager
I would like to use a high performance general purpose allocator like jemalloc/tcmalloc with a memory pool. Is there a guide for doing this? I don't want to use jemalloc/tcmalloc as a drop-in ...
0
votes
1answer
20 views
TCMalloc: delete and delete[] operators patching on Win-64
TCMalloc is a great heap manager for multi-threaded use (in my case OpenMP).
It was quite easy to get everything with tcmalloc up and running for linux, windows, 32 bit, but right now I am completely ...
0
votes
1answer
32 views
Unexpected Behaviour from tcmalloc
I have been using tcmalloc for a few months in a large project, and so far I must say that I am pretty happy about it, most of all for its HeapProfiling features which allowed to track memory leaks ...
0
votes
0answers
63 views
how to build tcmalloc in centos 64 bit
my os is :
centos 6.3 , kernel linux : 2.6.32 - 279.el6_x86_64
i want to build the gperftools-2.0, but have a error when make :
wget http://gperftools.googlecode.com/files/gperftools-2.0.tar.gz
...
1
vote
2answers
276 views
tcmalloc's fragmentation
Our software implement a actor model system, and we allocate/deallocate the small object very often.I am very sure the each object be destroyed without memory leak. ( I have used valgrind and tcmalloc ...
-1
votes
1answer
151 views
Ruby Enterprise Edition (REE) Linux Server OS Compatibility? [closed]
I tried to install REE on ubuntu (12.04.2) 64 bit and centos (6.3) 64 bit, but i end up with some weird error's.
So i would like to know ree os compatibility, according ree website they gave ...
2
votes
0answers
242 views
Should I use tcmalloc/jemalloc replace memory pool?
In my project, I use memory pool (boost::pool), but it eat too much memory(measured 22G), so I want to use tcmalloc/jemalloc replace memory pool, I consider the sides below:
1.performance
2.memory ...
0
votes
2answers
284 views
Has anyone been able to integrate tcmalloc on a Windows 64 bit application that uses shared DLL's?
I have a 64 bit Visual Studio 2010 (single threaded) C++ Windows application that I am trying to integrate tcmalloc with and I am running into problems when using any of our dynamically linked dll's ...
0
votes
0answers
134 views
Library/classes for allocating resources in multithreaded/multiCPU environment
Let me first describe the problem and then what I am looking for:-)
The problem is allocating resources(resource here is arbitrary) in a massively multithreaded app. There are thousands of threads ...
0
votes
0answers
189 views
TCMalloc and webkit
I have a Mips based platfrom, where I am running the QtWebkit based browser and other applications. As per my understanding by default Webkit's FastMalloc uses TCMalloc and its inside the WTF ...
0
votes
1answer
203 views
64-bit NoBarrier_Store() not implemented on this platform
"64-bit NoBarrier_Store() not implemented on this platform"
I use tcmalloc on win7 with vs2005.
There is two threads in my app, one do malloc(), the other one do free().The tcmalloc print this when my ...
1
vote
1answer
196 views
tcmalloc not generating stack traces
I am running a binary linked with tcmalloc and it is not generating a stack trace
for leaks it is detecting.
The output says:
The 1 largest leaks:
Leak of 1401231 bytes in 82093 objects allocated ...
0
votes
1answer
220 views
Why this tcmalloc error SbrkSysAllocator failed happen?
I am using tcmalloc_minimal of google-perftools as the default memory allocater in my c++ program. It print out this infomation:
src/system-alloc.cc:427] SbrkSysAllocator failed
And the program ...
9
votes
1answer
3k views
what're the differences between tcmalloc/jemalloc and memory pool
tcmalloc/jemalloc are improved memory allocators, and memory pool is also introduced for better memory allocation. So what are the differences between them and how to choose them in my application?
2
votes
1answer
1k views
How to trace “tcmalloc : large alloc … ”
my app print several line like:
tcmalloc: large alloc 4294488064 bytes == 0x2b968d8000 @ 0x727432 0x727302 0x727a58 0x75a07d 0x574beb 0x585756 0x5575df 0x5717db 0x57108f 0x58078c 0x302b80610a
...
0
votes
1answer
229 views
function wrapping in c - sbrk for tcmalloc
I am trying to port tcmalloc to uclibc. Tcmalloc has a definition for sbrk function, which in turn calls the __sbrk from libc. Uclibc on the other hand does not have __sbrk function, but has sbrk.
...
1
vote
2answers
1k views
Linking with libtcmalloc ubuntu
I had installed the package libtcmalloc-minimal0
but when I try to compile my program with flag
-ltcmalloc-minimal0
I am getting error
/usr/bin/ld: cannot find -ltcmalloc_minimal0
I had checked ...
5
votes
6answers
4k views
C++ memory allocation mechanism performance comparison (tcmalloc vs. jemalloc)
I have an application which allocates lots of memory and I am considering using a better memory allocation mechanism than malloc.
My main options are: jemalloc and tcmalloc. Is there any benefits in ...
0
votes
2answers
285 views
Is it possible to use google tcmalloc to get per thread memory usage
Like the title says I'm interested if I can see per thread memory usage on programs compiled with -ltcmalloc. AFAIK with regular malloc memory is linked to process not to thread, but I'm not sure ...
1
vote
1answer
188 views
Why should I need libprofiler.so.0
I am using google prof tools, and link my app with -lprofiler, but when I run this program:
error while loading shared libraries: libprofiler.so.0: cannot open shared object file: No such file or ...
0
votes
1answer
160 views
How tcamalloc gets linked to the main program
I want to know how malloc gets linked to the main program.Basically I have a program which uses several static and dynamic libraries.I am including all these in my makefile using option "-llibName1 ...
2
votes
3answers
833 views
Compiling Python 2.6.6 and need for external packages wxPython, setuptools, etc… in Ubuntu
I compiled Python 2.6.6 with google-perf tools (tcmalloc) library to eliminate some of the memory issues I was having with the default 2.6.5. After getting 2.6.6 going it seems to not work becuase I ...
3
votes
1answer
647 views
What does “TCMalloc currently does not return any memory to the system. ” mean?
At the http://goog-perftools.sourceforge.net/doc/tcmalloc.html
it is stated: "CMalloc currently does not return any memory to the system."
I presume that it means that if I allocate 42 mb and free it ...
-2
votes
1answer
177 views
Memory never released when using Python classes and numpy
Basically I am not going to post all of the code here but I will provide a generic example. I have a class that has a function to run and create a large array of values. This array shouldn't be much ...
2
votes
2answers
2k views
TCMalloc Allocator for STL
I want to use TCMalloc with STL containers, so I need an allocator built with TCMalloc (like tbb_allocator with TBB malloc). I cannot find any anything TCMalloc documentation (if it is called a ...
3
votes
1answer
938 views
ptmalloc, tcmalloc, dmalloc, HOARD, or nedmalloc? (on iOS and Android game)
I have a game that is a bit of a memory hog on the iPad from many small allocations. I have a custom game engine written in C++. Has anyone here successfully compiled one of these other allocators on ...
4
votes
1answer
858 views
using tcmalloc with glib
I want to test the performance improvement that I could get by using Google's tcmalloc. My program is built using quite a lot of the utilities provided by glib (hashes, lists, arrays, ...). So what I ...
2
votes
3answers
2k views
Windows tcmalloc replacement with static linking
A C++ project encounter the memory fragmentation problem, and tried following:
nedmalloc-
Did not pass the stress test (crashed after 15 hrs), that means it works in the most of cases but not the ...
2
votes
1answer
250 views
Memory not released by python cherrypy application on linux
I have a long running process that will fetch 100k rows from the db genrate a web page and then release all the small objets (list, tuples and dicts). On windows, after each request the memory is ...
18
votes
6answers
4k views
Will malloc implementations return free-ed memory back to the system?
I have a long-living application with frequent memory allocation-deallocation. Will any malloc implementation return freed memory back to the system?
What is, in this respect, the behavior of:
...
1
vote
2answers
891 views
Globally use Google's malloc?
I'd like to experiment with Google's tcmalloc on Linux... I have a huge project here, with hundreds of qmake generated Makefile's... I'd like to find a way to get gcc to globally link against tcmalloc ...
4
votes
1answer
2k views
tcmalloc: how can I get my malloc calls overridden when compiling statically?
When I use LD_PRELOAD=/usr/local/lib/libtcmalloc.so, all my calls to malloc become tcmalloc calls. However, when I link statically against libtcmalloc, I find that straight malloc is getting called ...

