tracing program execution
Is there a program out there like ltrace that will allow the user to determine every line of code executed by another program?
Once upon a time I created such a program on DomainOS (Apollo Computer) called 'tca' (Test Coverage Analyzer). You could execute a program then post-process the trace log to find out what lines of code where (or weren't) executed. It was an internal-only program. It would be nice to, at least, find some way of generating the PC counter history of the program execution.
Thanks!
Joel