Hello,
I am exporting callgraph collect information to make my own scripts and filter the information. The problem is that one of datas very importan for me, is the information about all functions that a concrete function call (callees functions), and all functions that call the concrete function (caller functions). With the eclipse plugin, I can view this information, and in fact, I can browse through call flow (from a concrete function, I can continue all call flow), but when I export that information to csv file, the file generated have not that information, there are two colums with names "caller" and "callees" but their values has not the functions name or identifier, only has the "number" of caller and callees functions.
Woulb be possilbe export the caller and callees date ???
Thanks,
Link Copied
Thanks MrAnderson, with the information obtained from "man callgraph", I have obtained all information needed. with command "vtl x::y -calls" it's possible view all information about the call flow.
Thanks!!
For more complete information about compiler optimizations, see our Optimization Notice.