Can anybody tell me about the tools you have for profiling like kcachegrind wingrind valgrind for mac platform.
I don't think these work on mac, i have also quick check on that.
|
|
Try the qcachegrind + Graphviz killer combo. It installs quickly via brew, which is nice. Check out these instructions; http://langui.sh/2011/06/16/how-to-install-qcachegrind-kcachegrind-on-mac-osx-snow-leopard/ |
|||||
|
|
Both valgrind and kcachegrind are available for Mac OS X. You can install them using MacPorts:
|
|||||||||||||
|
|
Webgrind runs in PHP and can read the cachegrind output of XDebug. It currently doesn't offer all the functionality of KCacheGrind, but it is super simple to install, and seems to have renewed activity. |
|||
|
|
|
MacCallGrind is a semi-commercial alternative available for the Mac. I've experimented with the free version which is limited to 3MB grind files. It's roughly equivalent to WinCacheGrind in terms of functionality. |
|||
|
|
|
I ended up using qcachegrind on OSX. It can be installed via brew
What's great about this program is that I successfully loaded a 6.1GB cachegrind file on my MacBook Pro! Pretty slick! |
|||
|
|
|
Apple supply Instruments for monitoring runtime allocation of stuff and finding leaks, Shark for explicit profiling and Guard Malloc (directly built into Xcode) for memory allocation debugging. These all come as part of the developer tools. |
|||
|
|
|
You can install KCacheGrind using MacPorts. There are also some alternatives like:
See also: Is there any KCacheGrind alternative for Mac Os X outta there? |
|||
|
|
|
valgrind is available for the mac. If you are building a cocoa app, you can use the tools that come with XCode such as leaks, they are very good. |
|||
|
|