blob: ee8cc7aa2abd15a83988aa549817a1c6cd831edc [file] [log] [blame]
Reid Spencer579b8de2004-12-30 23:07:56 +00001#!/usr/bin/perl -w
2#
3# Program: GenLibDeps.pl
4#
5# Synopsis: Generate HTML output that shows the dependencies between a set of
6# libraries. The output of this script should periodically replace
7# the similar content in the UsingLibraries.html document.
8#
Reid Spencer829bcb12006-05-03 18:16:01 +00009# Syntax: GenLibDeps.pl [-flat] <directory_with_libraries_in_it>
Reid Spencer579b8de2004-12-30 23:07:56 +000010#
11
Reid Spencer0bf11772006-03-19 22:08:01 +000012# Parse arguments...
13while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
14 shift;
15 last if /^--$/; # Stop processing arguments on --
16
17 # List command line options here...
18 if (/^-flat$/) { $FLAT = 1; next; }
19 print "Unknown option: $_ : ignoring!\n";
20}
21
Reid Spencer579b8de2004-12-30 23:07:56 +000022# Give first option a name.
23my $Directory = $ARGV[0];
24
Reid Spencer62345822005-01-05 17:29:29 +000025# Find the "dot" program
Reid Spencerdd73e7f2006-05-13 02:48:45 +000026my $DotPath="";
Reid Spencer44fa6912006-04-20 23:09:57 +000027if (!$FLAT) {
Reid Spencerdd73e7f2006-05-13 02:48:45 +000028 chomp($DotPath = `which dot`);
Reid Spencer44fa6912006-04-20 23:09:57 +000029 die "Can't find 'dot'" if (! -x "$DotPath");
30}
Reid Spencer62345822005-01-05 17:29:29 +000031
Reid Spencerdd73e7f2006-05-13 02:48:45 +000032chomp(my $nmPath=`which nm`);
33die "Can't find 'nm'" if (! -x "$nmPath");
34
Reid Spencer579b8de2004-12-30 23:07:56 +000035# Open the directory and read its contents, sorting by name and differentiating
36# by whether its a library (.a) or an object file (.o)
37opendir DIR,$Directory;
38my @files = readdir DIR;
39closedir DIR;
40@libs = grep(/libLLVM.*\.a$/,sort(@files));
41@objs = grep(/LLVM.*\.o$/,sort(@files));
42
43# Declare the hashes we will use to keep track of the library and object file
44# symbol definitions.
45my %libdefs;
46my %objdefs;
47
48# Gather definitions from the libraries
49foreach $lib (@libs ) {
50 open DEFS,
Reid Spencerdd73e7f2006-05-13 02:48:45 +000051 "$nmPath -g $Directory/$lib | grep ' [ABCDGRST] ' | sed -e 's/^[0-9A-Fa-f]* [ABCDGRST] //' | sort | uniq |";
Reid Spencer579b8de2004-12-30 23:07:56 +000052 while (<DEFS>) {
53 chomp($_);
54 $libdefs{$_} = $lib;
55 }
56 close DEFS;
57}
58
59# Gather definitions from the object files.
60foreach $obj (@objs ) {
61 open DEFS,
Reid Spencerdd73e7f2006-05-13 02:48:45 +000062 "$nmPath -g $Directory/$obj | grep ' [ABCDGRST] ' | sed -e 's/^[0-9A-Fa-f]* [ABCDGRST] //' | sort | uniq |";
Reid Spencer579b8de2004-12-30 23:07:56 +000063 while (<DEFS>) {
64 chomp($_);
65 $objdefs{$_} = $obj;
66 }
67 close DEFS;
68}
69
70# Generate one entry in the <dl> list. This generates the <dt> and <dd> elements
71# for one library or object file. The <dt> provides the name of the library or
72# object. The <dd> provides a list of the libraries/objects it depends on.
73sub gen_one_entry {
74 my $lib = $_[0];
Reid Spencer62345822005-01-05 17:29:29 +000075 my $lib_ns = $lib;
76 $lib_ns =~ s/(.*)\.[oa]/$1/;
Reid Spencer0bf11772006-03-19 22:08:01 +000077 if ($FLAT) {
78 print "$lib:";
79 } else {
80 print " <dt><b>$lib</b</dt><dd><ul>\n";
81 }
Reid Spencer579b8de2004-12-30 23:07:56 +000082 open UNDEFS,
Reid Spencerdd73e7f2006-05-13 02:48:45 +000083 "$nmPath -g -u $Directory/$lib | sed -e 's/^ *U //' | sort | uniq |";
Reid Spencer579b8de2004-12-30 23:07:56 +000084 open DEPENDS,
85 "| sort | uniq > GenLibDeps.out";
86 while (<UNDEFS>) {
87 chomp;
88 if (defined($libdefs{$_}) && $libdefs{$_} ne $lib) {
89 print DEPENDS "$libdefs{$_}\n";
90 } elsif (defined($objdefs{$_}) && $objdefs{$_} ne $lib) {
91 $libroot = $lib;
92 $libroot =~ s/lib(.*).a/$1/;
93 if ($objdefs{$_} ne "$libroot.o") {
94 print DEPENDS "$objdefs{$_}\n";
95 }
96 }
97 }
98 close UNDEFS;
99 close DEPENDS;
100 open DF, "<GenLibDeps.out";
101 while (<DF>) {
102 chomp;
Reid Spencer0bf11772006-03-19 22:08:01 +0000103 if ($FLAT) {
104 print " $_";
105 } else {
106 print " <li>$_</li>\n";
107 }
Reid Spencer62345822005-01-05 17:29:29 +0000108 $suffix = substr($_,length($_)-1,1);
109 $_ =~ s/(.*)\.[oa]/$1/;
110 if ($suffix eq "a") {
Reid Spencer44fa6912006-04-20 23:09:57 +0000111 if (!$FLAT) { print DOT "$lib_ns -> $_ [ weight=0 ];\n" };
Reid Spencer62345822005-01-05 17:29:29 +0000112 } else {
Reid Spencer44fa6912006-04-20 23:09:57 +0000113 if (!$FLAT) { print DOT "$lib_ns -> $_ [ weight=10];\n" };
Reid Spencer62345822005-01-05 17:29:29 +0000114 }
Reid Spencer579b8de2004-12-30 23:07:56 +0000115 }
116 close DF;
Reid Spencer0bf11772006-03-19 22:08:01 +0000117 if ($FLAT) {
118 print "\n";
119 } else {
120 print " </ul></dd>\n";
121 }
Reid Spencer579b8de2004-12-30 23:07:56 +0000122}
123
124# Make sure we flush on write. This is slower but correct based on the way we
125# write I/O in gen_one_entry.
126$| = 1;
127
128# Print the definition list tag
Reid Spencer0bf11772006-03-19 22:08:01 +0000129if (!$FLAT) {
Reid Spencer44fa6912006-04-20 23:09:57 +0000130 print "<dl>\n";
131
132 open DOT, "| $DotPath -Tgif > libdeps.gif";
133
134 print DOT "digraph LibDeps {size=\"40,15\"; ratio=\"1.33333\"; margin=\"0.25\"; rankdir=\"LR\"; mclimit=\"50.0\"; ordering=\"out\"; center=\"1\";\n";
135 print DOT "node [shape=\"box\",color=\"#000088\",fillcolor=\"#FFFACD\",fontcolor=\"#5577DD\",style=\"filled\",fontsize=\"24\"];\n";
136 print DOT "edge [style=\"solid\",color=\"#000088\"];\n";
Reid Spencer0bf11772006-03-19 22:08:01 +0000137}
Reid Spencer579b8de2004-12-30 23:07:56 +0000138
139# Print libraries first
140foreach $lib (@libs) {
141 gen_one_entry($lib);
142}
Reid Spencer44fa6912006-04-20 23:09:57 +0000143
144if (!$FLAT) {
145 print DOT "}\n";
146 close DOT;
147 open DOT, "| $DotPath -Tgif > objdeps.gif";
148 print DOT "digraph ObjDeps {size=\"40,15\"; ratio=\"1.33333\"; margin=\"0.25\"; rankdir=\"LR\"; mclimit=\"50.0\"; ordering=\"out\"; center=\"1\";\n";
149 print DOT "node [shape=\"box\",color=\"#000088\",fillcolor=\"#FFFACD\",fontcolor=\"#5577DD\",style=\"filled\",fontsize=\"24\"];\n";
150 print DOT "edge [style=\"solid\",color=\"#000088\"];\n";
151}
Reid Spencer579b8de2004-12-30 23:07:56 +0000152
153# Print objects second
154foreach $obj (@objs) {
155 gen_one_entry($obj);
156}
157
Reid Spencer44fa6912006-04-20 23:09:57 +0000158if (!$FLAT) {
159 print DOT "}\n";
160 close DOT;
Reid Spencer62345822005-01-05 17:29:29 +0000161
Reid Spencer579b8de2004-12-30 23:07:56 +0000162# Print end tag of definition list element
Reid Spencer0bf11772006-03-19 22:08:01 +0000163 print "</dl>\n";
164}