Advertisement

Application performance profiler?

Started by June 14, 2000 04:15 PM
2 comments, last by BeanDog 24 years, 7 months ago
I own the full MSVisualStudio6.0 enterprise edition. I am wondering if there is a tool in it (or somewhere else for free download) that would let me run my program (C++) and tell me where what percentage of the clock cycles is spent. I want to use this to find out which procedures are worth optimizing. ~BenDilts( void );
you could do this

before the questionable function do

int startTime = getClockCount();
// function here
int endTime = getClockCount();

int timeTaken = endTime - startTime;

timeTaken will be time in milliseconds



"Now go away or I shall taunt you a second time"
- Monty Python and the Holy Grail
themGames Productions

Advertisement
Have you already checked out VTune from www.intel.com?

Superb profiler (at asm level).

Isn''t there a profiler already in the Visual Studio (I think the name is Application Performance Explorer)??

..

This topic is closed to new replies.

Advertisement