profiler

How to profile Doctrine in Zend Framework

Good day. I'm using Doctrine as ORM for my Zend Framework project. This is the first time I use it. I've followed the ZendCasts Doctrine chapters, and everything works for me, but I needed to perform some profiling; There is a Doctrine_Connection_Profiler class that should be used to profile the Doctrine Model internal queries, but I'v...

jquery error() calls showing up in firebug profile

I am working on an ASP.NET application that make a lot of jquery and javascript calls and trying to optimize the client side code as much as possible. (This web application is only designed to run on special hardware that has very low memory and processing power.) The profiler in firebug is great for figuring out what calls are taking u...

Importing a SQL Server 2005 Profile Trace Template into SQL 2008

I'm using SQL Server 2008, but my ERP Vendor only offers a SQL 2005 trace template that they'd like me to run on my system. When I attempt to import it, I receive confirmation that it was successfully imported. However, it does not show up in the list of available templates. I've done this on two separate servers to the same effect. ...

embedded profiler

I am supposed to profile/optimize an application. I am running on a mips machine so valgrind is not an option. Any tool suggestions, tactics? EDIT: I guess I should have given more details. Gprof is not supported in my toolchain. I have tried oprofile; but results seemed incorrect, also I could not get a calltree. I am looking for an a...

Good .net4 profiler

What is a good profiler for .NET 4.0? I'm willing to spend some money, but not too much (say up to £50) I'm developing games for windows phone and xbox using XNA, which means that the projects are commercial. I mention it because I've seen several which are free for non commercial use. Extra points for Visual studio integration. Nb. I...

Is there memory usage profiler available?

For time profiler for XYZ, I can just run 'time XYZ', or if I have the source code in C/C++, I even can use gprof to get profiled results. Is there any similar tool for memory usage? Is there any tool I can use something like 'memory XYZ', to get info such as min/max/median memory usage? What tool do you use for memory profile with C+...

Profiling short-lived Java applications

Is there any Java profiler that allows profiling short-lived applications? The profilers I found so far seem to work with applications that keep running until user termination. However, I want to profile applications that work like command-line utilities, it runs and exits immediately. Tools like visualvm or NetBeans Profiler do not even...

How can I measure how long a function runs in Matlab?

I have a Matlab program that is running longer than I'd like it to. Is there built-in way to profile Matlab, similar to how time works in unix? ...

Generating a Call Hierarchy for dynamicly invoked method

Hello, Today's world of dynamic invoke, reflection and runtime injection just doesn't play well with traditional tools such as ctags, doxygen and CDOC. I am searching for a method call hierarchy visualization tool that can display both static and dynamic method invocations. It should be easy to use, light during execution and provide h...

C++ memory profiler

I couldn't find any free c++ profiler with good interface for vs2005 running on 32bit winxp sp3. is there any free? ...

Tool to profile php code

Looking for some [freeware/opensource] tool in order to make it easy to profile a big php project on win32 platform. Need to find out which part of code is most time consuming. It's hard to manually put timing function for each function, loop... ...

Dottrace Dead vs. Garbage

After reading the dottrace documentation I realized that: Dead objects are objects deleted before the end point of the snapshot. Garbage objects are objects allocated after the starting point and deleted before the end point - in other words, "Garbage objects" is a subset of "Dead objects". But after doing some profiling sessions, I ...

Eclipse Java Profiler

I know this has been asked before, but I have not found anything recent that really gives a good answer. I'm trying to find a free profiler for eclipse that works well. I would like a graphical breakdown of execution time in particular. I've tried TPTP but have had no luck at all with GUI apps (it took almost a minute for a GUI app to st...

Capture query results using SQL Server Profiler

It's possible to capture a query's result using SQL Server Profiler? i.e. the resultset generated by the query ...

How to interpret mono profiler results?

I created a console application in C# and running it on windows/.NET is 5x faster than on linux/mono or windows/mono. The app encodes some binary files into text format(JSON). I profiled the app on linux/mono using: mono --profile=default:stat myconsoleapp.exe Here is the first part of the result: prof counts: total/unmanaged: 32274...

Access MDB: Is it possible to monitor and log actual queries made against an Access MDB?

Is it possible to monitor what is happening to an Access MDB (ie. what SQL queries are being executed against it), in the same way as you would use SQL Profiler for the SQL Server? I need logs of actual queries being called. ...

How can I see a specific page's memory consumption of a browser ?

Hi, What way or which profiler tool I should use to see a specific web page's memory consumption? Does it make a difference if it belongs to a TAB in an individual browser window? Thanks ...

VS2010 profiler : is it possible to profile one specific method?

Possibly some methods to turn on and turn off profiling from code? Or can you select a specific function to profile ? ...

Demangling typeclass functions in GHC profiler output

When profiling a Haskell program written in GHC, the names of typeclass functions are mangled in the .prof file to distinguish one instance's implementations of them from another. How can I demangle these names to find out which type's instance it is? For example, suppose I have the following program, where types Fast and Slow both imp...

Short function names in Visual Studio Profiler

Is there any way to shorten the fully qualified function names which Visual Studio (2008) profiler displays? (It is difficult to see what is what is what, when comparing 20 character function names with 120 character names). Thanks. ...