Tool for tracing C++ program execution
I recently read in a magazine that there is a new commercial developer tool for Windows which monitors a C++ program's execution and creates traces for visual inspection. I, however, cannot remember the tool's name (it is not Insure++ and also not BugTrapper). In the resulting trace, you see every code line that was visited, you can see in which order it happened, and you can see the call stack at any point in the lifetime of the program.
Does a开发者_C百科nyone know this tool's name or a similar tool?
Many thanks in advance
/Frank
I use GDB and I still love it.
Edit: Thanks for @T.E.D, it may be GPROF which report hits count on code line/segment visited.
Similar tool: Valgrind
AutomatedQA TestComplete, or AQTime
精彩评论