Profiling vc++ applications 
Author Message
 Profiling vc++ applications

Could someone help me by giving some pointers on how to
profile vc++ applications in .NET. In VC6.0, I used to
build application with /PROFILE flag in linker options and
used PREP, PROFILE and PLIST to profile my applications.
The /PROFILE option has been removed in .NET (don't know
why) and I am not able to find PREP and PLIST. Neither is
there a Profile option under the Build menu (used to be
there in VC6.0).

I need to do some function profiling for my app and am not
able to find any tool in vc .Net that do this. Please give
me some pointers on how to accomplish function level
profiling in vc .net applications.

-Rajat Bansal



Tue, 14 Dec 2004 18:31:34 GMT  
 Profiling vc++ applications

Quote:

> Could someone help me by giving some pointers on how to
> profile vc++ applications in .NET.

VC.Net does not have an integrated profiler...
But if you orderd VC.NET you have a postcard to order a free copy of the
Compuware Profiler...
This is also the recommended way from MS...

Or you can just download it for free:

http://www.compuware.com/media.asp?cid=2345Z1

--
Greetings
  Jochen



Tue, 14 Dec 2004 21:06:44 GMT  
 Profiling vc++ applications
I've been using Intel's VTune 6 and it works very well.  It uses a very
non-intrusive statistical analysis to find the hot-spots in your application
(or anything running on the system for that matter).  You don't need to have
the linker instrument your code, thereby introducing a sort of heisenburg
effect.

All you need to do is make sure you generate 'program database' (.pdb) debug
info in your release builds and VTune will show were your app spends its
time right down to the line of code.

-Sean


Quote:
> Could someone help me by giving some pointers on how to
> profile vc++ applications in .NET. In VC6.0, I used to
> build application with /PROFILE flag in linker options and
> used PREP, PROFILE and PLIST to profile my applications.
> The /PROFILE option has been removed in .NET (don't know
> why) and I am not able to find PREP and PLIST. Neither is
> there a Profile option under the Build menu (used to be
> there in VC6.0).

> I need to do some function profiling for my app and am not
> able to find any tool in vc .Net that do this. Please give
> me some pointers on how to accomplish function level
> profiling in vc .net applications.

> -Rajat Bansal+



Wed, 15 Dec 2004 00:05:44 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Profiling VC++ Application

2. Profiling code VC ver 4.2

3. profiling in VC's IDE

4. Profiling in VC 5.0

5. VC: Profile build/run on WLL???

6. Profiling in new VC.NET

7. Profiling an application

8. Profiling A C# Application

9. Help profiling my application's Performance

10. profiling with glut libraries-- application error

11. Profiling multithreaded application

12. Creating and managing W2K/WinXP user profiles from application

 

 
Powered by phpBB® Forum Software