I recently ran into a long-running script error in IE but no other browsers. In investigatng further, I learned that IE defines a long-running script as one that executes more than 5,000,000 statements while all other browsers based in on execution time. In looking at all of the profilers I could find such as Firebug, they give a lot of information about memory usage, execution time, number of function calls but nothing about the number of statements executed.
Does anyone know of a profiler that can help me identify the number of statements executed (ideally grouped by function call)?