search for: codeviz

Displaying 4 results from an estimated 4 matches for "codeviz".

2011 Jul 04
2
[LLVMdev] Deleting unused C++ code
I think what you're looking for is something like Doxygen or CodeViz that can generate (imperfect) call graphs for you. It sounds like you just need a rough list of functions that might be unused to start with. -Scott On Sun, Jul 3, 2011 at 11:04 PM, Daniel Berlin <dberlin at dberlin.org> wrote: > On Mon, Jul 4, 2011 at 1:42 AM, Øyvind Harboe <oyvind.h...
2011 Jul 04
0
[LLVMdev] Deleting unused C++ code
On Mon, Jul 4, 2011 at 9:46 AM, Scott Conger <scott.conger at gmail.com> wrote: > I think what you're looking for is something like Doxygen or CodeViz > that can generate (imperfect) call graphs for you. It sounds like you > just need a rough list of functions that might be unused to start > with. I'll have a peek at CodeViz. Even a first approximation of unused code would be so much better than nothing. I don't have the link r...
2011 Jul 04
0
[LLVMdev] Deleting unused C++ code
On Mon, Jul 4, 2011 at 1:42 AM, Øyvind Harboe <oyvind.harboe at zylin.com> wrote: > On Sun, Jul 3, 2011 at 10:34 PM, Reid Kleckner <reid.kleckner at gmail.com> wrote: >> An easier way would be to use a coverage tool like gcov to see what's >> actually *used* when the app is run normally.  Then you can ask the >> question, what percentage of all lines of code
2011 Jul 04
2
[LLVMdev] Deleting unused C++ code
On Sun, Jul 3, 2011 at 10:34 PM, Reid Kleckner <reid.kleckner at gmail.com> wrote: > An easier way would be to use a coverage tool like gcov to see what's > actually *used* when the app is run normally.  Then you can ask the > question, what percentage of all lines of code are dead? We need something that can do this using static analysis... Otherwise we can just use Eclipse