blob: 9b65e900c53e8d0b931fc8eb6c5248e6cd7ef228 [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 Spencer1bc68642006-07-27 23:00:30 +00009# Syntax: GenLibDeps.pl [-flat] <directory_with_libraries_in_it> [path_to_nm_binary]
Reid Spencer579b8de2004-12-30 23:07:56 +000010#
Ted Kremenek8330b0e2007-11-27 19:31:11 +000011use strict;
Torok Edwin18743f42010-02-04 09:31:35 +000012use warnings;
Reid Spencer0bf11772006-03-19 22:08:01 +000013# Parse arguments...
Reid Spencerc152efd2006-07-25 19:12:06 +000014my $FLAT = 0;
15my $WHY = 0;
Torok Edwin18743f42010-02-04 09:31:35 +000016my $PEROBJ = 0;
17my $PEROBJINCL = 0;
Reid Spencer0bf11772006-03-19 22:08:01 +000018while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
19 shift;
20 last if /^--$/; # Stop processing arguments on --
21
22 # List command line options here...
23 if (/^-flat$/) { $FLAT = 1; next; }
Reid Spencerc152efd2006-07-25 19:12:06 +000024 if (/^-why/) { $WHY = 1; $FLAT = 1; next; }
Torok Edwin18743f42010-02-04 09:31:35 +000025 if (/^-perobj$/) { $PEROBJ = 1; next; }
26 if (/^-perobjincl/) { $PEROBJINCL = 1; next;}
Reid Spencer0bf11772006-03-19 22:08:01 +000027 print "Unknown option: $_ : ignoring!\n";
28}
29
Reid Spencer579b8de2004-12-30 23:07:56 +000030# Give first option a name.
31my $Directory = $ARGV[0];
Reid Spencerd0fa46a2006-08-03 19:10:03 +000032if (!defined($Directory) || ! -d "$Directory") {
33 die "First argument must specify the directory containing LLVM libs\n";
Reid Spencer9bf2e7f2006-08-01 08:09:03 +000034}
Reid Spencerd0fa46a2006-08-03 19:10:03 +000035
Reid Spencer1bc68642006-07-27 23:00:30 +000036my $nmPath = $ARGV[1];
Reid Spencer579b8de2004-12-30 23:07:56 +000037
Reid Spencer62345822005-01-05 17:29:29 +000038# Find the "dot" program
Reid Spencerdd73e7f2006-05-13 02:48:45 +000039my $DotPath="";
Reid Spencer44fa6912006-04-20 23:09:57 +000040if (!$FLAT) {
Reid Spencerdd73e7f2006-05-13 02:48:45 +000041 chomp($DotPath = `which dot`);
Reid Spencer44fa6912006-04-20 23:09:57 +000042 die "Can't find 'dot'" if (! -x "$DotPath");
43}
Reid Spencer62345822005-01-05 17:29:29 +000044
Duncan Sands7e0842f2009-06-12 14:23:42 +000045if (defined($ENV{NM})) {
46 chomp($nmPath=$ENV{NM});
47}
48
Reid Spencer9bf2e7f2006-08-01 08:09:03 +000049if (!defined($nmPath) || $nmPath eq "") {
50 chomp($nmPath=`which nm`);
51 die "Can't find 'nm'" if (! -x "$nmPath");
Reid Spencer1bc68642006-07-27 23:00:30 +000052}
Reid Spencerdd73e7f2006-05-13 02:48:45 +000053
Torok Edwin18743f42010-02-04 09:31:35 +000054my $ranlibPath;
55if ($PEROBJ) {
56 $ranlibPath = $ARGV[2];
57 if (defined($ENV{RANLIB})) {
58 chomp($ranlibPath=$ENV{RANLIB});
59 }
60
61 if (!defined($ranlibPath) || $ranlibPath eq "") {
62 chomp($ranlibPath=`which ranlib`);
63 die "Can't find 'ranlib'" if (! -x "$ranlibPath");
64 }
65}
66
Reid Spencer579b8de2004-12-30 23:07:56 +000067# Open the directory and read its contents, sorting by name and differentiating
68# by whether its a library (.a) or an object file (.o)
69opendir DIR,$Directory;
70my @files = readdir DIR;
71closedir DIR;
Oscar Fuentese40db4a2008-11-12 20:39:06 +000072my @libs = grep(/libLLVM.*\.(dylib|so|a)$/,sort(@files));
Jeffrey Yasskinb05942c2010-02-25 01:21:38 +000073# Omit the all-of-llvm shared library.
74@libs = grep(!/libLLVM-\d\.\d(svn)?\.(dylib|so)/, @libs);
Ted Kremenek8330b0e2007-11-27 19:31:11 +000075my @objs = grep(/LLVM.*\.o$/,sort(@files));
Reid Spencer579b8de2004-12-30 23:07:56 +000076
77# Declare the hashes we will use to keep track of the library and object file
78# symbol definitions.
79my %libdefs;
80my %objdefs;
81
Torok Edwin18743f42010-02-04 09:31:35 +000082my %libobjs;
83my %objdeps=();
84# Gather library definitions at object file granularity (optional)
85if ($PEROBJ) {
86 foreach my $lib (@libs ) {
87 `$ranlibPath $Directory/$lib`;
88 my $libpath = $lib;
89 $libpath =~ s/^libLLVM(.*)\.a/$1/;
90 $libpath =~ s/(.+)CodeGen$/Target\/$1/;
91 $libpath =~ s/(.+)AsmPrinter$/Target\/$1\/AsmPrinter/;
92 $libpath =~ s/(.+)AsmParser$/Target\/$1\/AsmParser/;
93 $libpath =~ s/(.+)Info$/Target\/$1\/TargetInfo/;
94 $libpath =~ s/(.+)Disassembler$/Target\/$1\/Disassembler/;
95 $libpath =~ s/SelectionDAG/CodeGen\/SelectionDAG/;
96 $libpath =~ s/^AsmPrinter/CodeGen\/AsmPrinter/;
97 $libpath =~ s/^BitReader/Bitcode\/Reader/;
98 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
Torok Edwin18743f42010-02-04 09:31:35 +000099 $libpath =~ s/^MSIL/Target\/MSIL/;
Chandler Carruthc2c50cd2013-01-02 09:10:48 +0000100 $libpath =~ s/^Core/IR/;
Torok Edwin18743f42010-02-04 09:31:35 +0000101 $libpath =~ s/^Instrumentation/Transforms\/Instrumentation/;
102 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
103 $libpath =~ s/^JIT/ExecutionEngine\/JIT/;
104 $libpath =~ s/^ScalarOpts/Transforms\/Scalar/;
105 $libpath =~ s/^TransformUtils/Transforms\/Utils/;
106 $libpath =~ s/^ipa/Analysis\/IPA/;
107 $libpath =~ s/^ipo/Transforms\/IPO/;
Torok Edwin18743f42010-02-04 09:31:35 +0000108 $libpath = "lib/".$libpath."/";
109 open DEFS, "$nmPath -sg $Directory/$lib|";
110 while (<DEFS>) {
111 chomp;
112 if (/^([^ ]*) in ([^ ]*)/) {
113 my $objfile = $libpath.$2;
114 $objdefs{$1} = $objfile;
115 $objdeps{$objfile} = {};
116 $libobjs{$lib}{$objfile}=1;
117# my $p = "../llvm/".$objfile;
118# $p =~ s/Support\/reg(.*).o/Support\/reg$1.c/;
119# $p =~ s/.o$/.cpp/;
120# unless (-e $p) {
121# die "$p\n"
122# }
123 }
124 }
125 close DEFS or die "nm failed";
126 }
127 foreach my $lib (@libs ) {
128 my $libpath = $lib;
129 $libpath =~ s/^libLLVM(.*)\.a/$1/;
130 $libpath =~ s/(.+)CodeGen$/Target\/$1/;
131 $libpath =~ s/(.+)AsmPrinter$/Target\/$1\/AsmPrinter/;
132 $libpath =~ s/(.+)AsmParser$/Target\/$1\/AsmParser/;
133 $libpath =~ s/(.+)Info$/Target\/$1\/TargetInfo/;
134 $libpath =~ s/(.+)Disassembler$/Target\/$1\/Disassembler/;
135 $libpath =~ s/SelectionDAG/CodeGen\/SelectionDAG/;
136 $libpath =~ s/^AsmPrinter/CodeGen\/AsmPrinter/;
137 $libpath =~ s/^BitReader/Bitcode\/Reader/;
138 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
Torok Edwin18743f42010-02-04 09:31:35 +0000139 $libpath =~ s/^MSIL/Target\/MSIL/;
140 $libpath =~ s/^Core/VMCore/;
141 $libpath =~ s/^Instrumentation/Transforms\/Instrumentation/;
142 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
143 $libpath =~ s/^JIT/ExecutionEngine\/JIT/;
144 $libpath =~ s/^ScalarOpts/Transforms\/Scalar/;
145 $libpath =~ s/^TransformUtils/Transforms\/Utils/;
146 $libpath =~ s/^ipa/Analysis\/IPA/;
147 $libpath =~ s/^ipo/Transforms\/IPO/;
Torok Edwin18743f42010-02-04 09:31:35 +0000148 $libpath = "lib/".$libpath."/";
149 open UDEFS, "$nmPath -Aup $Directory/$lib|";
150 while (<UDEFS>) {
151 chomp;
152 if (/:([^:]+):/) {
153 my $obj = $libpath.$1;
154 s/[^ ]+: *U //;
155 if (defined($objdefs{$_})) {
156 $objdeps{$obj}{$objdefs{$_}}=1;
157 }
158 }
159 }
160 close UDEFS or die "nm failed"
161 }
162} else {
Reid Spencer579b8de2004-12-30 23:07:56 +0000163# Gather definitions from the libraries
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000164foreach my $lib (@libs ) {
165 open DEFS, "$nmPath -g $Directory/$lib|";
Reid Spencer579b8de2004-12-30 23:07:56 +0000166 while (<DEFS>) {
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000167 next if (! / [ABCDGRST] /);
168 s/^[^ ]* [ABCDGRST] //;
Ted Kremenekec9e7162007-12-24 08:04:39 +0000169 s/\015?\012//; # not sure if <DEFS> is in binmode and uses LF or CRLF.
170 # this strips both LF and CRLF.
Reid Spencer579b8de2004-12-30 23:07:56 +0000171 $libdefs{$_} = $lib;
172 }
Anton Korobeynikov8d8fbf22009-04-21 16:04:14 +0000173 close DEFS or die "nm failed";
Reid Spencer579b8de2004-12-30 23:07:56 +0000174}
Torok Edwin18743f42010-02-04 09:31:35 +0000175}
Reid Spencer579b8de2004-12-30 23:07:56 +0000176
177# Gather definitions from the object files.
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000178foreach my $obj (@objs ) {
179 open DEFS, "$nmPath -g $Directory/$obj |";
Reid Spencer579b8de2004-12-30 23:07:56 +0000180 while (<DEFS>) {
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000181 next if (! / [ABCDGRST] /);
182 s/^[^ ]* [ABCDGRST] //;
Ted Kremenekec9e7162007-12-24 08:04:39 +0000183 s/\015?\012//; # not sure if <DEFS> is in binmode and uses LF or CRLF.
184 # this strips both LF and CRLF.
Reid Spencer579b8de2004-12-30 23:07:56 +0000185 $objdefs{$_} = $obj;
186 }
Anton Korobeynikov8d8fbf22009-04-21 16:04:14 +0000187 close DEFS or die "nm failed";
Reid Spencer579b8de2004-12-30 23:07:56 +0000188}
189
190# Generate one entry in the <dl> list. This generates the <dt> and <dd> elements
191# for one library or object file. The <dt> provides the name of the library or
192# object. The <dd> provides a list of the libraries/objects it depends on.
193sub gen_one_entry {
194 my $lib = $_[0];
Reid Spencer62345822005-01-05 17:29:29 +0000195 my $lib_ns = $lib;
196 $lib_ns =~ s/(.*)\.[oa]/$1/;
Reid Spencer0bf11772006-03-19 22:08:01 +0000197 if ($FLAT) {
198 print "$lib:";
Reid Spencerc152efd2006-07-25 19:12:06 +0000199 if ($WHY) { print "\n"; }
Reid Spencer0bf11772006-03-19 22:08:01 +0000200 } else {
Nick Lewycky9cdf3882011-03-31 00:23:57 +0000201 print " <dt><b>$lib</b></dt><dd><ul>\n";
Reid Spencer0bf11772006-03-19 22:08:01 +0000202 }
Reid Spencer579b8de2004-12-30 23:07:56 +0000203 open UNDEFS,
Duncan Sands7e0842f2009-06-12 14:23:42 +0000204 "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |";
Reid Spencerc152efd2006-07-25 19:12:06 +0000205 my %DepLibs;
Reid Spencer579b8de2004-12-30 23:07:56 +0000206 while (<UNDEFS>) {
207 chomp;
Reid Spencerc152efd2006-07-25 19:12:06 +0000208 my $lib_printed = 0;
Reid Spencer579b8de2004-12-30 23:07:56 +0000209 if (defined($libdefs{$_}) && $libdefs{$_} ne $lib) {
Reid Spencerc152efd2006-07-25 19:12:06 +0000210 $DepLibs{$libdefs{$_}} = [] unless exists $DepLibs{$libdefs{$_}};
211 push(@{$DepLibs{$libdefs{$_}}}, $_);
Reid Spencer579b8de2004-12-30 23:07:56 +0000212 } elsif (defined($objdefs{$_}) && $objdefs{$_} ne $lib) {
Torok Edwin18743f42010-02-04 09:31:35 +0000213 if ($PEROBJ && !$PEROBJINCL) {
214 # -perobjincl makes .a files depend on .o files they contain themselves
215 # default is don't depend on these.
216 next if defined $libobjs{$lib}{$objdefs{$_}};
217 }
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000218 my $libroot = $lib;
Reid Spencer579b8de2004-12-30 23:07:56 +0000219 $libroot =~ s/lib(.*).a/$1/;
220 if ($objdefs{$_} ne "$libroot.o") {
Reid Spencerc152efd2006-07-25 19:12:06 +0000221 $DepLibs{$objdefs{$_}} = [] unless exists $DepLibs{$objdefs{$_}};
222 push(@{$DepLibs{$objdefs{$_}}}, $_);
Reid Spencer579b8de2004-12-30 23:07:56 +0000223 }
224 }
225 }
Anton Korobeynikov8d8fbf22009-04-21 16:04:14 +0000226 close UNDEFS or die "nm failed";
Chris Lattner8d59af32008-10-04 18:03:46 +0000227 unless(keys %DepLibs) {
228 # above failed
Duncan Sands7e0842f2009-06-12 14:23:42 +0000229 open UNDEFS, "$nmPath -u $Directory/$lib |";
Chris Lattner8d59af32008-10-04 18:03:46 +0000230 while (<UNDEFS>) {
231 # to bypass non-working sed
232 if (' ' eq substr($_,0,2) and index($_,'U ')) {
233 $_ = substr($_,index($_,'U ')+2)
234 };
235 $_ = substr($_,index($_,' *U ')+5) if -1!=index($_,' *U ');
236
237 chomp;
238 my $lib_printed = 0;
239 if (defined($libdefs{$_}) && $libdefs{$_} ne $lib) {
240 $DepLibs{$libdefs{$_}} = [] unless exists $DepLibs{$libdefs{$_}};
241 push(@{$DepLibs{$libdefs{$_}}}, $_);
242 } elsif (defined($objdefs{$_}) && $objdefs{$_} ne $lib) {
243 my $libroot = $lib;
244 $libroot =~ s/lib(.*).a/$1/;
245 if ($objdefs{$_} ne "$libroot.o") {
246 $DepLibs{$objdefs{$_}} = [] unless exists $DepLibs{$objdefs{$_}};
247 push(@{$DepLibs{$objdefs{$_}}}, $_);
248 }
249 }
250 }
Anton Korobeynikov8d8fbf22009-04-21 16:04:14 +0000251 close UNDEFS or die "nm failed";
Chris Lattner8d59af32008-10-04 18:03:46 +0000252 }
Torok Edwin18743f42010-02-04 09:31:35 +0000253 if ($PEROBJINCL) {
254 # include the .a's objects
255 for my $obj (keys %{$libobjs{$lib}}) {
256 $DepLibs{$obj} = ["<.a object>"] unless exists $DepLibs{$obj};
257 }
258 my $madechange = 1;
259 while($madechange) {
260 $madechange = 0;
261 my %temp = %DepLibs;
262 foreach my $obj (keys %DepLibs) {
263 foreach my $objdeps (keys %{$objdeps{$obj}}) {
264 next if defined $temp{$objdeps};
265 push(@{$temp{$objdeps}}, $obj);
266 $madechange = 1;
267 }
268 }
269 %DepLibs = %temp;
270 }
271 }
Chris Lattner8d59af32008-10-04 18:03:46 +0000272
Reid Spencerc152efd2006-07-25 19:12:06 +0000273 for my $key (sort keys %DepLibs) {
Reid Spencer0bf11772006-03-19 22:08:01 +0000274 if ($FLAT) {
Reid Spencerc152efd2006-07-25 19:12:06 +0000275 print " $key";
276 if ($WHY) {
277 print "\n";
278 my @syms = @{$DepLibs{$key}};
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000279 foreach my $sym (@syms) {
Reid Spencerc152efd2006-07-25 19:12:06 +0000280 print " $sym\n";
281 }
282 }
Reid Spencer0bf11772006-03-19 22:08:01 +0000283 } else {
Reid Spencerc152efd2006-07-25 19:12:06 +0000284 print " <li>$key</li>\n";
Reid Spencer0bf11772006-03-19 22:08:01 +0000285 }
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000286 my $suffix = substr($key,length($key)-1,1);
Reid Spencerc152efd2006-07-25 19:12:06 +0000287 $key =~ s/(.*)\.[oa]/$1/;
Reid Spencer62345822005-01-05 17:29:29 +0000288 if ($suffix eq "a") {
Reid Spencerc152efd2006-07-25 19:12:06 +0000289 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
Reid Spencer62345822005-01-05 17:29:29 +0000290 } else {
Reid Spencerc152efd2006-07-25 19:12:06 +0000291 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
Reid Spencer62345822005-01-05 17:29:29 +0000292 }
Reid Spencer579b8de2004-12-30 23:07:56 +0000293 }
Reid Spencer0bf11772006-03-19 22:08:01 +0000294 if ($FLAT) {
Reid Spencerc152efd2006-07-25 19:12:06 +0000295 if (!$WHY) {
296 print "\n";
297 }
Reid Spencer0bf11772006-03-19 22:08:01 +0000298 } else {
299 print " </ul></dd>\n";
300 }
Reid Spencer579b8de2004-12-30 23:07:56 +0000301}
302
303# Make sure we flush on write. This is slower but correct based on the way we
304# write I/O in gen_one_entry.
305$| = 1;
306
307# Print the definition list tag
Reid Spencer0bf11772006-03-19 22:08:01 +0000308if (!$FLAT) {
Reid Spencer44fa6912006-04-20 23:09:57 +0000309 print "<dl>\n";
310
311 open DOT, "| $DotPath -Tgif > libdeps.gif";
312
Reid Spencer9bf2e7f2006-08-01 08:09:03 +0000313 print DOT "digraph LibDeps {\n";
314 print DOT " size=\"40,15\"; \n";
315 print DOT " ratio=\"1.33333\"; \n";
316 print DOT " margin=\"0.25\"; \n";
317 print DOT " rankdir=\"LR\"; \n";
318 print DOT " mclimit=\"50.0\"; \n";
319 print DOT " ordering=\"out\"; \n";
320 print DOT " center=\"1\";\n";
321 print DOT "node [shape=\"box\",\n";
322 print DOT " color=\"#000088\",\n";
323 print DOT " fillcolor=\"#FFFACD\",\n";
324 print DOT " fontcolor=\"#3355BB\",\n";
325 print DOT " style=\"filled\",\n";
326 print DOT " fontname=\"sans\",\n";
327 print DOT " fontsize=\"24\"\n";
328 print DOT "];\n";
329 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
Reid Spencer0bf11772006-03-19 22:08:01 +0000330}
Reid Spencer579b8de2004-12-30 23:07:56 +0000331
332# Print libraries first
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000333foreach my $lib (@libs) {
Reid Spencer579b8de2004-12-30 23:07:56 +0000334 gen_one_entry($lib);
335}
Reid Spencer44fa6912006-04-20 23:09:57 +0000336
Torok Edwin18743f42010-02-04 09:31:35 +0000337if ($PEROBJ) {
338 foreach my $obj (keys %objdeps) {
339 print "$obj:";
340 if (!$PEROBJINCL) {
341 foreach my $dep (keys %{$objdeps{$obj}}) {
342 print " $dep";
343 }
344 }
345 print "\n";
346 }
347}
348
Reid Spencer44fa6912006-04-20 23:09:57 +0000349if (!$FLAT) {
350 print DOT "}\n";
351 close DOT;
352 open DOT, "| $DotPath -Tgif > objdeps.gif";
Reid Spencer9bf2e7f2006-08-01 08:09:03 +0000353 print DOT "digraph ObjDeps {\n";
354 print DOT " size=\"8,10\";\n";
355 print DOT " margin=\"0.25\";\n";
356 print DOT " rankdir=\"LR\";\n";
357 print DOT " mclimit=\"50.0\";\n";
358 print DOT " ordering=\"out\";\n";
359 print DOT " center=\"1\";\n";
360 print DOT "node [shape=\"box\",\n";
361 print DOT " color=\"#000088\",\n";
362 print DOT " fillcolor=\"#FFFACD\",\n";
363 print DOT " fontcolor=\"#3355BB\",\n";
364 print DOT " fontname=\"sans\",\n";
365 print DOT " style=\"filled\",\n";
366 print DOT " fontsize=\"24\"\n";
367 print DOT "];\n";
368 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
Reid Spencer44fa6912006-04-20 23:09:57 +0000369}
Reid Spencer579b8de2004-12-30 23:07:56 +0000370
371# Print objects second
Ted Kremenek8330b0e2007-11-27 19:31:11 +0000372foreach my $obj (@objs) {
Reid Spencer579b8de2004-12-30 23:07:56 +0000373 gen_one_entry($obj);
374}
375
Reid Spencer44fa6912006-04-20 23:09:57 +0000376if (!$FLAT) {
377 print DOT "}\n";
378 close DOT;
Reid Spencer62345822005-01-05 17:29:29 +0000379
Reid Spencer579b8de2004-12-30 23:07:56 +0000380# Print end tag of definition list element
Reid Spencer0bf11772006-03-19 22:08:01 +0000381 print "</dl>\n";
382}