Tracing internal function calls in a binary
Posted by Chris Ball Fri, 30 Nov 2007 20:27:00 GMT
Dear everyone who likes Unix,
I have a binary (which uses glib and was compiled from C) and I'd like to get output with the function name each time any function in that binary is called. So, I'd like the output of ltrace(1), but for function calls rather than dynamic library calls. I am bored of adding g_debug("%s", G_STRFUNC); to the top of all my functions.
You'd think this would be easy, given that incredibly similar tools have existed for twenty years, but so far the shortest answer I've heard starts "well, you could write a gcc profile function stub that..". It would be nice not have to recompile, since gdb certainly doesn't have to, but I'd welcome the way to achieve this with a recompile as well.
Any ideas? Thanks!
Update: jmbr wins, with the only solution that doesn't require anything more than gdb, and no recompile. Here's his script: http://superadditive.com/software/callgraph. I'd like to work on it to add support for modules loaded with dlopen().
