blob: 812eb96b7d8af983fb5ea9e4b4ebbd291ed12518 [file] [log] [blame]
Reid Spencerf2722ca2006-03-22 15:59:55 +00001#!/usr/bin/perl
2#
3# Program: find-cycles.pl
4#
5# Synopsis: Given a list of possibly cyclic dependencies, merge all the
6# cycles. This makes it possible to topologically sort the
7# dependencies between different parts of LLVM.
8#
9# Syntax: find-cycles.pl < LibDeps.txt > FinalLibDeps.txt
10#
11# Input: cycmem1: cycmem2 dep1 dep2
12# cycmem2: cycmem1 dep3 dep4
13# boring: dep4
14#
15# Output: cycmem1 cycmem2: dep1 dep2 dep3 dep4
16# boring: dep4
17#
18# This file was written by Eric Kidd, and is placed into the public domain.
19#
20
Reid Spencerb195d9d2006-03-23 23:21:29 +000021use 5.006;
Reid Spencerf2722ca2006-03-22 15:59:55 +000022use strict;
23use warnings;
24
25my %DEPS;
26my @CYCLES;
27sub find_all_cycles;
28
29# Read our dependency information.
30while (<>) {
31 chomp;
32 my ($module, $dependency_str) = /^([^:]*): ?(.*)$/;
33 die "Malformed data: $_" unless defined $dependency_str;
34 my @dependencies = split(/ /, $dependency_str);
35 $DEPS{$module} = \@dependencies;
36}
37
38# Partition our raw dependencies into sets of cyclically-connected nodes.
39find_all_cycles();
40
41# Print out the finished cycles, with their dependencies.
42my @output;
Reid Spencerdd3f6aa2006-07-26 17:10:54 +000043my $cycles_found = 0;
Reid Spencerf2722ca2006-03-22 15:59:55 +000044foreach my $cycle (@CYCLES) {
45 my @modules = sort keys %{$cycle};
46
47 # Merge the dependencies of all modules in this cycle.
48 my %dependencies;
49 foreach my $module (@modules) {
50 @dependencies{@{$DEPS{$module}}} = 1;
51 }
52
53 # Prune the known cyclic dependencies.
54 foreach my $module (@modules) {
55 delete $dependencies{$module};
56 }
57
58 # Warn about possible linker problems.
59 my @archives = grep(/\.a$/, @modules);
60 if (@archives > 1) {
Reid Spencerdd3f6aa2006-07-26 17:10:54 +000061 $cycles_found = $cycles_found + 1;
Reid Spencerf2722ca2006-03-22 15:59:55 +000062 print STDERR "find-cycles.pl: Circular dependency between *.a files:\n";
63 print STDERR "find-cycles.pl: ", join(' ', @archives), "\n";
64 print STDERR "find-cycles.pl: Some linkers may have problems.\n";
65 push @modules, @archives; # WORKAROUND: Duplicate *.a files. Ick.
66 }
67
68 # Add to our output. (@modules is already as sorted as we need it to be.)
69 push @output, (join(' ', @modules) . ': ' .
70 join(' ', sort keys %dependencies) . "\n");
71}
72print sort @output;
Chris Lattner7686b572006-07-26 21:14:04 +000073
74### FIXME: reenable this after 1.8.
75#exit $cycles_found;
76exit 0;
Reid Spencerf2722ca2006-03-22 15:59:55 +000077
78#==========================================================================
79# Depedency Cycle Support
80#==========================================================================
81# For now, we have cycles in our dependency graph. Ideally, each cycle
82# would be collapsed down to a single *.a file, saving us all this work.
83#
84# To understand this code, you'll need a working knowledge of Perl 5,
85# and possibly some quality time with 'man perlref'.
86
87my %SEEN;
88my %CYCLES;
89sub find_cycles ($@);
90sub found_cycles ($@);
91
92sub find_all_cycles {
93 # Find all multi-item cycles.
94 my @modules = sort keys %DEPS;
95 foreach my $module (@modules) { find_cycles($module); }
96
97 # Build fake one-item "cycles" for the remaining modules, so we can
98 # treat them uniformly.
99 foreach my $module (@modules) {
100 unless (defined $CYCLES{$module}) {
101 my %cycle = ($module, 1);
102 $CYCLES{$module} = \%cycle;
103 }
104 }
105
106 # Find all our unique cycles. We have to do this the hard way because
107 # we apparently can't store hash references as hash keys without making
108 # 'strict refs' sad.
109 my %seen;
110 foreach my $cycle (values %CYCLES) {
111 unless ($seen{$cycle}) {
112 $seen{$cycle} = 1;
113 push @CYCLES, $cycle;
114 }
115 }
116}
117
118# Walk through our graph depth-first (keeping a trail in @path), and report
119# any cycles we find.
120sub find_cycles ($@) {
121 my ($module, @path) = @_;
122 if (str_in_list($module, @path)) {
123 found_cycle($module, @path);
124 } else {
125 return if defined $SEEN{$module};
126 $SEEN{$module} = 1;
127 foreach my $dep (@{$DEPS{$module}}) {
128 find_cycles($dep, @path, $module);
129 }
130 }
131}
132
133# Give a cycle, attempt to merge it with pre-existing cycle data.
134sub found_cycle ($@) {
135 my ($module, @path) = @_;
136
137 # Pop any modules which aren't part of our cycle.
138 while ($path[0] ne $module) { shift @path; }
139 #print join("->", @path, $module) . "\n";
140
141 # Collect the modules in our cycle into a hash.
142 my %cycle;
143 foreach my $item (@path) {
144 $cycle{$item} = 1;
145 if (defined $CYCLES{$item}) {
146 # Looks like we intersect with an existing cycle, so merge
147 # all those in, too.
148 foreach my $old_item (keys %{$CYCLES{$item}}) {
149 $cycle{$old_item} = 1;
150 }
151 }
152 }
153
154 # Update our global cycle table.
155 my $cycle_ref = \%cycle;
156 foreach my $item (keys %cycle) {
157 $CYCLES{$item} = $cycle_ref;
158 }
159 #print join(":", sort keys %cycle) . "\n";
160}
161
162sub str_in_list ($@) {
163 my ($str, @list) = @_;
164 foreach my $item (@list) {
165 return 1 if ($item eq $str);
166 }
167 return 0;
168}