C++ source code comprehension tools - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:06:05Z http://stackoverflow.com/feeds/question/390707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools 3 C++ source code comprehension tools var 2008-12-24T04:01:07Z 2009-08-23T04:31:26Z <p>I'm starting work on a huge C++ codebase, and was wondering if someone could suggest good source code comprehension tools. </p> <p>I usually use doxygen but was curious to see if anything better existed.</p> <p>Thanks.</p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/390715#390715 2 Answer by Colin for C++ source code comprehension tools Colin 2008-12-24T04:05:29Z 2008-12-24T04:05:29Z <p>There's a list of tools at <a href="http://www.stack.nl/~dimitri/doxygen/links.html" rel="nofollow">http://www.stack.nl/~dimitri/doxygen/links.html</a></p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/390718#390718 1 Answer by Charlie Martin for C++ source code comprehension tools Charlie Martin 2008-12-24T04:08:51Z 2008-12-24T04:08:51Z <p>I've actually had good results with good old <a href="http://cscope.sourceforge.net/" rel="nofollow">cscope</a>.</p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/390766#390766 0 Answer by Nemanja Trifunovic for C++ source code comprehension tools Nemanja Trifunovic 2008-12-24T04:45:09Z 2008-12-24T04:45:09Z <p>I can recommend <a href="http://www.sourceinsight.com/" rel="nofollow">Source Insight</a>.</p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/391090#391090 0 Answer by Serge for C++ source code comprehension tools Serge 2008-12-24T09:32:00Z 2008-12-24T09:32:00Z <p>As an emacs user I can suggest ebrowse. More info could be found <a href="http://www.gnu.org/software/emacs/manual/html_node/ebrowse/index.html" rel="nofollow">here</a></p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/391114#391114 2 Answer by swamy for C++ source code comprehension tools swamy 2008-12-24T09:43:13Z 2008-12-24T09:43:13Z <p><a href="http://opensolaris.org/os/project/opengrok/" rel="nofollow">OpenGrok</a> is great for a multi-language project (C,C++,shell scripts,Perl,python ...). Provide a nice web interface (apart from a stand-alone Java GUI) for search and code traversal.</p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/392374#392374 2 Answer by philippe for C++ source code comprehension tools philippe 2008-12-25T00:10:08Z 2008-12-25T00:10:08Z <p><a href="http://www.scitools.com/products/understand/" rel="nofollow">Understand for C++</a> can be used for reverse engineering, documentation and metrics for C/C++ code. It generates cross reference and allow code navigation, and graphical reverse engineering views.</p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/1317004#1317004 0 Answer by Ira Baxter for C++ source code comprehension tools Ira Baxter 2009-08-22T20:44:34Z 2009-08-22T20:44:34Z <p>Often understanding requires following leads from one place in the text to others. Simple "grep" helps with this, but scales badly and has a poor "browse the text" UI (eg., none).</p> <p>A language-sensitive source code search engine can be found at <a href="http://www.semanticdesigns.com/Products/SearchEngine" rel="nofollow">SD Source Code Search Engine</a>. It can handle many languages at the same time. Searches can be performed for patterns in a specific langauge, or patterns across languages (such as "find identifiers involving TAX"). By being sensitive to langauge tokens, the number of false positives is reduced, saving time for the user. It understands C, C++, C#, COBOL, Java, ECMAScript, Java, XML, Verilog, VHDL, and a number of other languages.</p> http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/1317763#1317763 0 Answer by Eugen Dinca for C++ source code comprehension tools Eugen Dinca 2009-08-23T04:31:26Z 2009-08-23T04:31:26Z <p>To somewhat repeat my answer for the <a href="http://stackoverflow.com/questions/1271513/c-code-visualization">C++ code visualization question</a>:</p> <p>Check out <a href="http://sourcenav.sourceforge.net/" rel="nofollow">SourceNavigator</a>, it's open source, works on a bunch of platforms and has a Hierarchy Browser, a Class Browser, a Cross-Reference Browser and more that will allow you navigate and understand the code (it pretty much does all that Understand for C++ does).</p> <p>If you want something online (so more than 1 guy/girl can examine the code) you can use the good old <a href="http://lxr.linux.no/" rel="nofollow">LXR</a> or (as <a href="http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/391114#391114">swamy said</a>) <a href="http://opensolaris.org/os/project/opengrok/" rel="nofollow">OpenGrok</a>.</p>