views:

2006

answers:

4

Is there any tool, other than KCacheGrind, being able to view callgrind results? Preferably for Windows platform?

A: 

alleyoop and valkyrie are alternative font ends.

May have enough suport for what you want, you can use mingw to compile for Windows native if SUA does not work out of the box.

RandomNickName42
so nothing out there with pre-compiled binaries that works for windows?
rogerdpack
+1  A: 

You can try WinCacheGrind.

acme
A: 

It seems that WinCacheGrind cannot open output of callgrind. I have not tried opening output of cachegrind, but it should work, I guess. From the Valkyrie page, (as of date) "Currently, Valkyrie supports Memcheck only, although work is in progress to handle Cachegrind and Massif."

CruiZen
+3  A: 

Try WebGrind: http://code.google.com/p/webgrind/

Runs on your local PHP server. Be careful, use XDebug profiling with the XDEBUG_PROFILE flag or otherwise you'll risk overwriting your profiling output when you open WebGrind (Since WebGrind is also a PHP web application). The WebGrind website also details other approaches to work around this. Cheers.

Mario Awad