Valgrind Massif tool output GUI?

I am using Valgrind 3.3.1 with the Massif tool to profile the heap of a C ++ application, and I am wondering if there is a graphical tool to view the text file of the output file.

Thanks for any suggestion.

+68
valgrind
Oct 26 '09 at 9:03
source share
3 answers

For anyone else interested in graphically drawing an array from Valgrind, please consider a visualizer array , which is great.

alt text

You can find the project page in KDE-Apps .

For Ubuntu, you must build the visualizer array from the source code or install the package from the Kubuntu-ppa repository :

add-apt-repository ppa:kubuntu-ppa/backports apt-get update && apt-get install massif-visualizer 
+98
Jul 29 '10 at 23:01
source share

There is a Qt application called massiftool that does a good job of displaying this data. Go to http://sourceforge.net/projects/massiftool/ to see the project page.

+5
Dec 19 '09 at 7:37
source share

I just created my own array renderer in the browser, because the available renderers and viewers did not compile on the platform I am using.

So look at it online.

+2
Mar 25 '18 at 22:49
source share



All Articles