I have a 3rd party source code that I have to investigate. I want to see in what order the functions are called but I don't want to waste my time typing:
printf("Entered into %s", __FUNCTION__)
and
printf("Exited from %s", __FUNCTION__)
for each function, nor do I want to touch any source file.
Do you have any suggestions? Is there a compiler flag that automagically does this for me?
Clarifications to the comments:
- I will cross-compile the source to run it on ARM.
- I will compile it with gcc.
- I don't want to analyze the static code. I want to trace the runtime. So doxygen will not make my life easier.
- I have the source and I can compile it.
- I don't want to use Aspect Oriented Programming.
EDIT: I found that 'frame' command in the gdb prompt prints the current frame (or, function name, you could say) at that point in time. Perhaps, it is possible (using gdb scripts) to call 'frame' command everytime a function is called. What do you think?