Displaying 1 result from an estimated 1 matches for "flat_callee_begin".
2015 Dec 28
3
Interpreting DSCallGraph results
...back)
QsortCallback --> DoSorting
There were two things in DSCallGraph's results which surprised me:
- "qsort" was placed into its own SCC (according to
DSCallGraph::scc_begin/end).
- "qsort" 's SCC did not have any callees (according to
DSCallGraph::flat_callee_begin/end).
I'm not sure that DSCallGraph's output is *wrong*, because it does report
these caveats:
- DSCallGraph::called_from_incomplete_site( @QsortCallback ) returns
true.
- For all three callsites in the Module,
DSCallGraph::callee_is_complete(...) returns false.
Must I assume...