Tagged Questions
The google-perftools tag has no wiki summary.
5
votes
2answers
2k views
Google Performance Tools (profiler) tutorial
I just downloaded and built the libraries/executables of Google Performance Tools. Before I run the CPU profiler on the application that I want to investigate, I want to learn how to use the tools ...
3
votes
1answer
89 views
How to interpret addresses in Google perf tools CPU profiler
My C++ program is consuming a lot of CPU, and more so as it runs. I used Google Performance Tools to profile CPU usage, and this is what I got:
(pprof) top
Total: 1343 samples
1330 99.0% 99.0% ...
2
votes
1answer
60 views
Why is Kernel#require taking up 45% of my get time?
In an effort to speed up my test suite I profiled it and got the following
Total: 1445 samples
650 45.0% 45.0% 1171 81.0% Kernel#require
261 18.1% 63.0% 261 18.1% ...
2
votes
0answers
131 views
How to use perftools under windows
From the Readme.txt in the source, I know that it has not been tested under windows system.
Does anyone know how to make it work anyway?
2
votes
3answers
1k views
Which profiler is more accurate: OProfile or Google Performance Tools?
I found two great profilers:
OProfile
Google Performance Tools
Have anyone tried them both? Which is better?
2
votes
2answers
732 views
Has anybody used Google Performance Tools?
Looking for feedback on :
http://code.google.com/p/google-perftools/wiki/GooglePerformanceTools
1
vote
1answer
83 views
Compiling Python 2.7.2 with google-perftools
I have a debian squeeze operating system (64 bits). I want to use python with google-perftools. To perform that I compiled myself python 2.72 with the option "-lctmalloc". But I get few errors.
I ...
1
vote
1answer
57 views
pprof tells me that getaliasbyname_r() occupied 56% of cpu time?
I'm using google-perftools to profile my program written in C++ and compiled with g++4.5.2. pprof tells me that getaliasbyname_r() occupied 56% of cpu time! What on earth does getaliasbyname_r() do? ...
1
vote
1answer
52 views
substitution for googleperf tools that works on 64 bit Linux
As some of you might know Google provides for free great collection of tools for analyzing c++ code:
http://code.google.com/p/google-perftools/
Problem is that there is apparently some libunwind ...
1
vote
1answer
116 views
How to find CPU Usage in google profiler
I am using Google CPU Profiling tool.
http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
On the documentation it is given
Analyzing Text Output
Text mode has lines of output ...
1
vote
1answer
109 views
Regarding HEAPCHECK of google-perftools
I need to fix leaks in a huge open-source library. For that I am using google-perftools, Now this library is linked in another big application, which can also have possibaly lots of memory leaks [ ...
1
vote
1answer
688 views
Google perftool cannot read file “libprofiler.so.0”
I am trying the google performance tool for CPU time profiling. However, I had encountered some problem that I cannot read the shared library file "libprofiler.so.0"
I had read the README of google ...
0
votes
0answers
29 views
Problems cross-compiling google-perftools for PPC
I'm trying to cross-compile google-perftools for a PPC box running Linux, but I'm running into problems during make. I configure with:
$ ./configure CC=powerpc-none-linux-gnuspe-gcc ...
0
votes
1answer
44 views
Format of google-perftools/pprof with heap profiling
There is a pprof utility in google-perftools package. It is utility to convert profile files from google-perftools cpuprofiler and heapprofiler into beautiful images: like ...
0
votes
1answer
178 views
How to use google performance tool in windows
I tried to use google perftools on Windows. I compiled the source code in VS2010 and started a new test project and tried to link the libtcmalloc_minimal-debug.dll.
And it failed with ...
0
votes
1answer
56 views
How to generate graphs from .heap files created by google HEAPPROFILER
Like the question says I created some .heap files using awesome google perftools and now I cant view them(ofc i can open them in the vim, but I want graphical representation )...
I tried using the ...