blob: 8156abd3f053bb069601306f1cb2c3e5395ed578 [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;
Anton Korobeynikovde9c02b2006-08-04 21:52:23 +000032 my ($module, $dependency_str) = /^\s*([^:]+):\s*(.*)\s*$/;
Reid Spencerf2722ca2006-03-22 15:59:55 +000033 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";
Reid Spencerf2722ca2006-03-22 15:59:55 +000064 push @modules, @archives; # WORKAROUND: Duplicate *.a files. Ick.
65 }
66
67 # Add to our output. (@modules is already as sorted as we need it to be.)
68 push @output, (join(' ', @modules) . ': ' .
69 join(' ', sort keys %dependencies) . "\n");
70}
71print sort @output;
Chris Lattner7686b572006-07-26 21:14:04 +000072
Reid Spencerecfe0882006-08-03 21:46:42 +000073exit $cycles_found;
Reid Spencerf2722ca2006-03-22 15:59:55 +000074
75#==========================================================================
76# Depedency Cycle Support
77#==========================================================================
78# For now, we have cycles in our dependency graph. Ideally, each cycle
79# would be collapsed down to a single *.a file, saving us all this work.
80#
81# To understand this code, you'll need a working knowledge of Perl 5,
82# and possibly some quality time with 'man perlref'.
83
84my %SEEN;
85my %CYCLES;
86sub find_cycles ($@);
87sub found_cycles ($@);
88
89sub find_all_cycles {
90 # Find all multi-item cycles.
91 my @modules = sort keys %DEPS;
92 foreach my $module (@modules) { find_cycles($module); }
93
94 # Build fake one-item "cycles" for the remaining modules, so we can
95 # treat them uniformly.
96 foreach my $module (@modules) {
97 unless (defined $CYCLES{$module}) {
98 my %cycle = ($module, 1);
99 $CYCLES{$module} = \%cycle;
100 }
101 }
102
103 # Find all our unique cycles. We have to do this the hard way because
104 # we apparently can't store hash references as hash keys without making
105 # 'strict refs' sad.
106 my %seen;
107 foreach my $cycle (values %CYCLES) {
108 unless ($seen{$cycle}) {
109 $seen{$cycle} = 1;
110 push @CYCLES, $cycle;
111 }
112 }
113}
114
115# Walk through our graph depth-first (keeping a trail in @path), and report
116# any cycles we find.
117sub find_cycles ($@) {
118 my ($module, @path) = @_;
119 if (str_in_list($module, @path)) {
120 found_cycle($module, @path);
121 } else {
122 return if defined $SEEN{$module};
123 $SEEN{$module} = 1;
124 foreach my $dep (@{$DEPS{$module}}) {
125 find_cycles($dep, @path, $module);
126 }
127 }
128}
129
130# Give a cycle, attempt to merge it with pre-existing cycle data.
131sub found_cycle ($@) {
132 my ($module, @path) = @_;
133
134 # Pop any modules which aren't part of our cycle.
135 while ($path[0] ne $module) { shift @path; }
136 #print join("->", @path, $module) . "\n";
137
138 # Collect the modules in our cycle into a hash.
139 my %cycle;
140 foreach my $item (@path) {
141 $cycle{$item} = 1;
142 if (defined $CYCLES{$item}) {
143 # Looks like we intersect with an existing cycle, so merge
144 # all those in, too.
145 foreach my $old_item (keys %{$CYCLES{$item}}) {
146 $cycle{$old_item} = 1;
147 }
148 }
149 }
150
151 # Update our global cycle table.
152 my $cycle_ref = \%cycle;
153 foreach my $item (keys %cycle) {
154 $CYCLES{$item} = $cycle_ref;
155 }
156 #print join(":", sort keys %cycle) . "\n";
157}
158
159sub str_in_list ($@) {
160 my ($str, @list) = @_;
161 foreach my $item (@list) {
162 return 1 if ($item eq $str);
163 }
164 return 0;
165}