How can we help you today? How can we help you today?
cpdaniel
StephenC wrote: I'm really surprised that the profiler is having anywhere near that sort of impact. With the low impact mode I've never seen it have any sort of signicicant impact. Did enabling inlining make any difference? Stephen Enabling inlining did not have much impact - I'd have to time it to get a better feel, but it wasn't dramatic. A little background: The application is a specialized document editor, and i'm trying to profile a certain feature that requires an open document, looking specifically at the behavior when I have a large document open. Opening a document does some soundness checks on the document which results in several seconds of CPU-bound execution including millions of function calls on a fairly deep call stack (but only the bottom couple frames of the stack are "in motion"). So, the amount time taken to gather profile data for that path may be reasonable - but at the moment I don't care about it, hence my desire to start profiling later in the applications execution. Previously, I've profiled this app using the VSTS profiler where I'd generally start with a sampling profile session and then when I've identified an area that needs work, I'd build a special-purpose driver program that would exercise only that area and run that program using the instrumented profiler. It's not ideal, and I'd hoped that ANTS would let me avoid having to build special purpose profiling drivers, but without the ability to start mid-way through a program invocation, I don't see that happening. / comments
StephenC wrote: I'm really surprised that the profiler is having anywhere near that sort of impact. With the low impact mode I've never seen it have any sort of signicicant impact. Did enabling i...
0 votes