The EQATEC Profiler is an easy-to-use free code profiler for all .NET developers.
Some key features are:
The EQATEC Profiler is powerful, yet very simple to use. You just point and click a few times:
First you select your .NET application, then you build a profiled version, then you run that profiled version, and finally you view the visual report it generates and start looking for bottlenecks.
That's it, really. Read on if you want more details.
Here we will describe some more details about the three steps of profiling.
The Build-tab is where you generate the profiled version of an application. The profiled version will have some additional timing-instructions injected into it.
You can change the default build-options in Tools > Default Profiling Options, or change options just for this one app. All settings for profiling this particular app is stored in the file app.eqconfig in the application's directory.
You can load/save options from other config-files, too, so e.g. various project-members can have each their preferred profiling-options. These can and be put under version-control. Note, that they must, however, reside in the app's folder.
You will normally not need to change the build options.
For folders you may use environment variables in the settings, e.g. $(SystemRoot). One special pseudo-variable has been added: $(AppDir) is the path to the unprofiled application itself.
One special use of $(AppDir): you can set the output-folder to $(AppDir), which means that the profiled app will end up in the same folder as the original. This can sometimes be handy, e.g. in an automated autobuild-scenario, but do note that the originals will be overwritten so you will have to rebuild them again if you ever want to re-profile the app.
The Run-tab is where you run and control a profiled application.
The profiler can only run an executable from the output-directory. That is fine for full .NET Windows applications, but not for other types of executables. And unfortunately, you may still have to deploy and run them manually yourself:
(We say "may" because you might be able to automate this step by specifying an output-path that copies the files to the right place.)
Note that it is only the deployment/copying-step and starting that must be done manually; once the app has been started you can control it and get reports just like for a ordinary standalone full .NET app.
In the View-tab you view a profiling-report and hopefully find the app's bottlenecks.
You can browse the executed methods by selecting them in the upper list or in the lower call-graph view. Just follow the highest total time to find performance bottlenecks.
We have found that a profiled application typically is 30% larger than the original and runs 30% slower. However, this can vary a lot and "the overhead" is of course much more complex. Here is the full story. Knowing this can help you understand certain profiling-situations.
The code-overhead of a profiled app consists of two parts:
A small app will therefore grow very much, maybe several hundred percent, due to the added 60Kb. On the bright side an app may also shrink in size, because instrumentation optimizes branching in the existing code.
The runtime-overhead of timing a profiled method typically requires executing an additional 80 CIL assembly-instructions. That is why it is highly recommended that tiny methods (simple set/get of variables, 3-8 CIL instructions long) should not be profiled. It hardly makes sense to spend 10-20 times as much time timing a method than just executing it.
This means that a computing-intensive app, or an app calling a lot of small, profiled methods, can run very, very slow. Several orders of magnitude slower, in fact. A profiled fractal-generator app might run 5 times slower when profiled. On the other hand, many regular apps we have tested have run with only a slight hint of overhead during "normal use", so this is indeed an area of great variation.
If your application includes a reference to the runtime-module it may programmatically control certain profiling aspects. A generic version of the runtime-module is included in the installation (...\RuntimeDLL\EQATECProfilerRuntime.dll) specifically for the purpose of being used as a reference. You will most likely want to copy that DLL to your project and place it under version control, if you use it.
The programming API allow you to take snapshots at runtime, clear the counters, examine the profiling-settings etc. Please explore EQATEC.Profiler.Runtime for the full API. Here is an example:
You may also add attributes to prevent methods from being profiled or appearing in the runtime-report. Profiled apps normally run fast enough, but it's there if you really need it:
"HideAtRuntime" means that this method's activities will not be reported at runtime. "SkipInstrumentation" avoids profiling this method entirely. If you specify the attribute for an class it takes effect on every method in that class.
This is a list of known limitations and problems in version 2.0.
The EQATEC Profiler is a work in progress. Your input is most welcome: if you have any problems or suggestions then please let us know.
Visit our forum at http://www.eqatec.com/forum
Send us an email at tools@eqatec.com
Best regards,
the EQATEC tools team