Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I visualize Fortran (90 or later) source code, e.g. using Graphviz? [closed]

I've been thrown into a large Fortran project with a large number of source files.

I need to contribute to this project and it would seem prudent that I first understand the source.

As a first step, I'd like to visualize the interdependences between the various source files, i.e. which source files need which modules. As far as I can tell, automated methods exist for other languages and result in a graph that can be built using Graphviz.

But is anyone aware of software out there that can do this for Fortran 90 code?

[Searching the interwebs for Fortran help is a real pain as you end up searching the inter-cobwebs thanks to the painfully ubiquitous FORTRAN 77.]

like image 223
EMiller Avatar asked Jul 01 '10 20:07

EMiller


3 Answers

I would recommend doxygen, which automatically generates documentation from source code (and is free). Usually you add some markup to comments describing your functions and variables. However, you can just run doxygen on undocumented source files, provided you set EXTRACT_ALL to YES in the configuration file, and have it create create relationship diagrams for all your functions (i.e. this function call these functions and is called by these other functions).

You need GraphViz installed to get diagrams generated and have the HAVE_DOT option set to YES in the configuration file.

See the doxygen documentation for graphs and diagrams for more information and this example class documentation for a example of the output generated.

Edit: Of course for Fortran you should set the OPTIMIZE_FOR_FORTRAN option to YES in the configuration file.

like image 64
Chris Avatar answered Nov 14 '22 16:11

Chris


If you have money then Understand for Fortran is worth looking at. If you don't have money but intend to work quickly then you might get by with a trial download of the software.

For a static call graph, I've never found a free tool as useful as Understand; it's hard to find any free tools let alone a useful one. I'd write one myself but the market would be tiny :-(

For a dynamic call graph investigate your compiler options. I use the Intel Fortran Compiler which can generate a mound of useful information about an executing program. The TotalView debugger can also visualise the call graph of an executing program. You should also look at gprof2dot which makes a DOT file out of a GPROF call 'graph'. This is free and OK.

And I should also add, though it's not something I've ever used, that Callgrind may be of use.

like image 44
High Performance Mark Avatar answered Nov 14 '22 15:11

High Performance Mark


You can use callgrind from within Valgrind:

valgrind --tool=callgrind [your program]

This will produce a callgrind.out.[pid] file. This works best if you compile your program without optimisations, and with debug flags.

You then have a couple of options for viewing the data:

  1. Convert the callgrind output to a .dot file with grof2dot, and then view it with xdot, or convert it to a static graph with GraphViz.
  2. View it directly with Kcachegrind (includes source analysis, and call graphs).
like image 3
naught101 Avatar answered Nov 14 '22 16:11

naught101