user128300
user128300

Reputation:

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 anyone know this tool's name or a similar tool?

Many thanks in advance

/Frank

Upvotes: 4

Views: 3363

Answers (3)

ttchong
ttchong

Reputation: 317

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.

Upvotes: 1

rwong
rwong

Reputation: 6162

AutomatedQA TestComplete, or AQTime

Upvotes: 0

Gianni
Gianni

Reputation: 4390

Similar tool: Valgrind

Upvotes: 1

Related Questions