blob: 6f0b82fd67d4a45f4dc0b22b590bf2c7c49a0922 [file] [log] [blame]
Reid Spencer271ed742004-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 Spencerbf98e9f2006-05-03 18:16:01 +00009# Syntax: GenLibDeps.pl [-flat] <directory_with_libraries_in_it>
Reid Spencer271ed742004-12-30 23:07:56 +000010#
11
Reid Spencer89f33a12006-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 Spencer271ed742004-12-30 23:07:56 +000022# Give first option a name.
23my $Directory = $ARGV[0];
24
Reid Spencere153fb32005-01-05 17:29:29 +000025# Find the "dot" program
Reid Spencer5e6f97b2006-04-20 23:09:57 +000026if (!$FLAT) {
27 chomp(my $DotPath = `which dot`);
28 die "Can't find 'dot'" if (! -x "$DotPath");
29}
Reid Spencere153fb32005-01-05 17:29:29 +000030
Reid Spencer271ed742004-12-30 23:07:56 +000031# Open the directory and read its contents, sorting by name and differentiating
32# by whether its a library (.a) or an object file (.o)
33opendir DIR,$Directory;
34my @files = readdir DIR;
35closedir DIR;
36@libs = grep(/libLLVM.*\.a$/,sort(@files));
37@objs = grep(/LLVM.*\.o$/,sort(@files));
38
39# Declare the hashes we will use to keep track of the library and object file
40# symbol definitions.
41my %libdefs;
42my %objdefs;
43
44# Gather definitions from the libraries
45foreach $lib (@libs ) {
46 open DEFS,
Reid Spencerd835ea42006-04-21 05:29:25 +000047 "nm -g $Directory/$lib | grep ' [ABCDGRST] ' | sed -e 's/^[0-9A-Fa-f]* [ABCDGRST] //' | sort | uniq |";
Reid Spencer271ed742004-12-30 23:07:56 +000048 while (<DEFS>) {
49 chomp($_);
50 $libdefs{$_} = $lib;
51 }
52 close DEFS;
53}
54
55# Gather definitions from the object files.
56foreach $obj (@objs ) {
57 open DEFS,
Reid Spencerd835ea42006-04-21 05:29:25 +000058 "nm -g $Directory/$obj | grep ' [ABCDGRST] ' | sed -e 's/^[0-9A-Fa-f]* [ABCDGRST] //' | sort | uniq |";
Reid Spencer271ed742004-12-30 23:07:56 +000059 while (<DEFS>) {
60 chomp($_);
61 $objdefs{$_} = $obj;
62 }
63 close DEFS;
64}
65
66# Generate one entry in the <dl> list. This generates the <dt> and <dd> elements
67# for one library or object file. The <dt> provides the name of the library or
68# object. The <dd> provides a list of the libraries/objects it depends on.
69sub gen_one_entry {
70 my $lib = $_[0];
Reid Spencere153fb32005-01-05 17:29:29 +000071 my $lib_ns = $lib;
72 $lib_ns =~ s/(.*)\.[oa]/$1/;
Reid Spencer89f33a12006-03-19 22:08:01 +000073 if ($FLAT) {
74 print "$lib:";
75 } else {
76 print " <dt><b>$lib</b</dt><dd><ul>\n";
77 }
Reid Spencer271ed742004-12-30 23:07:56 +000078 open UNDEFS,
Reid Spencerbf98e9f2006-05-03 18:16:01 +000079 "nm -g -u $Directory/$lib | sed -e 's/^ *U //' | sort | uniq |";
Reid Spencer271ed742004-12-30 23:07:56 +000080 open DEPENDS,
81 "| sort | uniq > GenLibDeps.out";
82 while (<UNDEFS>) {
83 chomp;
84 if (defined($libdefs{$_}) && $libdefs{$_} ne $lib) {
85 print DEPENDS "$libdefs{$_}\n";
86 } elsif (defined($objdefs{$_}) && $objdefs{$_} ne $lib) {
87 $libroot = $lib;
88 $libroot =~ s/lib(.*).a/$1/;
89 if ($objdefs{$_} ne "$libroot.o") {
90 print DEPENDS "$objdefs{$_}\n";
91 }
92 }
93 }
94 close UNDEFS;
95 close DEPENDS;
96 open DF, "<GenLibDeps.out";
97 while (<DF>) {
98 chomp;
Reid Spencer89f33a12006-03-19 22:08:01 +000099 if ($FLAT) {
100 print " $_";
101 } else {
102 print " <li>$_</li>\n";
103 }
Reid Spencere153fb32005-01-05 17:29:29 +0000104 $suffix = substr($_,length($_)-1,1);
105 $_ =~ s/(.*)\.[oa]/$1/;
106 if ($suffix eq "a") {
Reid Spencer5e6f97b2006-04-20 23:09:57 +0000107 if (!$FLAT) { print DOT "$lib_ns -> $_ [ weight=0 ];\n" };
Reid Spencere153fb32005-01-05 17:29:29 +0000108 } else {
Reid Spencer5e6f97b2006-04-20 23:09:57 +0000109 if (!$FLAT) { print DOT "$lib_ns -> $_ [ weight=10];\n" };
Reid Spencere153fb32005-01-05 17:29:29 +0000110 }
Reid Spencer271ed742004-12-30 23:07:56 +0000111 }
112 close DF;
Reid Spencer89f33a12006-03-19 22:08:01 +0000113 if ($FLAT) {
114 print "\n";
115 } else {
116 print " </ul></dd>\n";
117 }
Reid Spencer271ed742004-12-30 23:07:56 +0000118}
119
120# Make sure we flush on write. This is slower but correct based on the way we
121# write I/O in gen_one_entry.
122$| = 1;
123
124# Print the definition list tag
Reid Spencer89f33a12006-03-19 22:08:01 +0000125if (!$FLAT) {
Reid Spencer5e6f97b2006-04-20 23:09:57 +0000126 print "<dl>\n";
127
128 open DOT, "| $DotPath -Tgif > libdeps.gif";
129
130 print DOT "digraph LibDeps {size=\"40,15\"; ratio=\"1.33333\"; margin=\"0.25\"; rankdir=\"LR\"; mclimit=\"50.0\"; ordering=\"out\"; center=\"1\";\n";
131 print DOT "node [shape=\"box\",color=\"#000088\",fillcolor=\"#FFFACD\",fontcolor=\"#5577DD\",style=\"filled\",fontsize=\"24\"];\n";
132 print DOT "edge [style=\"solid\",color=\"#000088\"];\n";
Reid Spencer89f33a12006-03-19 22:08:01 +0000133}
Reid Spencer271ed742004-12-30 23:07:56 +0000134
135# Print libraries first
136foreach $lib (@libs) {
137 gen_one_entry($lib);
138}
Reid Spencer5e6f97b2006-04-20 23:09:57 +0000139
140if (!$FLAT) {
141 print DOT "}\n";
142 close DOT;
143 open DOT, "| $DotPath -Tgif > objdeps.gif";
144 print DOT "digraph ObjDeps {size=\"40,15\"; ratio=\"1.33333\"; margin=\"0.25\"; rankdir=\"LR\"; mclimit=\"50.0\"; ordering=\"out\"; center=\"1\";\n";
145 print DOT "node [shape=\"box\",color=\"#000088\",fillcolor=\"#FFFACD\",fontcolor=\"#5577DD\",style=\"filled\",fontsize=\"24\"];\n";
146 print DOT "edge [style=\"solid\",color=\"#000088\"];\n";
147}
Reid Spencer271ed742004-12-30 23:07:56 +0000148
149# Print objects second
150foreach $obj (@objs) {
151 gen_one_entry($obj);
152}
153
Reid Spencer5e6f97b2006-04-20 23:09:57 +0000154if (!$FLAT) {
155 print DOT "}\n";
156 close DOT;
Reid Spencere153fb32005-01-05 17:29:29 +0000157
Reid Spencer271ed742004-12-30 23:07:56 +0000158# Print end tag of definition list element
Reid Spencer89f33a12006-03-19 22:08:01 +0000159 print "</dl>\n";
160}