Free Profiling Tool for Windows/OS-X

Started by
3 comments, last by j_uk_dev 8 years, 1 month ago

Hey,

Recently I've tried to use the Valgrind profiling tool (Linux,OS-X) to detect cache misses, but this tool is far to slow for games..

I've tried to get the XCode Profiler working on OS-X but somehow it doesn't display anything.

Haven't found a Windows Profiler yet.

Do you guys know any better free profiling tools for Windows(VS2015) ,OS-X(XCode) to detect cache misses?

Or do you know any thechniques to profile them?

Advertisement

Zoom is quite good profiler and it's free. For graphics you can use CodeXL from AMD ( works on other video cards though ) and nVIdia nSight ( or if you want to use it for linux - Linux Graphics Debugger ). I'm bit surprised about Xcode though, because it always worked for me just fine smile.png For Windows you may give a go to Brofiler ( http://brofiler.com/ ). I haven't had a chance myself to test it yet but looks promising. If you want to profile cache misses, know that Valgrind runs your application in the sandbox and it only simulates your CPU cache, which for sure gives useful results, but it's not accurate. I found really useful Intel VTune, but unfortunately, it's not free, moreover - it's quite expensive ( but has 1 month trial, so you may decide to use it during critical optimisation time :) ).

I'm bit surprised about Xcode though, because it always worked for me just fine

Have you tried to get information about cache misses, with the XCode profiler?

I put VerySleepy ( http://www.codersnotes.com/sleepy/ ) to good use on Windows, though I doubt that is what you are looking for.

YMMV.


Have you tried to get information about cache misses, with the XCode profiler?

I admit I didn't try to profile cache misses with Xcode :)

This topic is closed to new replies.

Advertisement