Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Performance Analysis Tool usage as a profiler

I have an application written in c++ using visual studio 2005. The application has certain performance problems. I would like to explore where. I need to drill down in which classes/methods/lines the application spends most of the time. Can this be done with the WPA? If yes, can you, please give me a pointer to documentation?

like image 696
danatel Avatar asked Sep 13 '25 23:09

danatel


1 Answers

No, WPT leverages windows events, it would only help you diagnose a problem when Windows is the cause of your slow-down. You certainly won't get any diagnostics for your code. What you need is a real profiler. Good ones cost money. Check this thread for more advice.

like image 52
Hans Passant Avatar answered Sep 15 '25 14:09

Hans Passant