fe1a7ac9867a9f9113d8099839ed5fb07f166c89
[ghc-hetmet.git] / ghc / utils / mkdependHS / mkdependHS.prl
1 #
2 # perl script expect the following variables to be prepended:
3 #
4 #  RAWCPP TMPDIR TOP_PWD
5 #  libdir libexecdir datadir INSTALLING
6 #  PROJECTVERSION SED 
7 #
8 # tries to work like mkdependC - capable of dealing with:
9 #
10 #  -literate Haskell code (Bird tracks or Glasgow literate style) (.lhs)
11 #  -straight Haskell source (.hs)
12 #  -literate or straight Happy specs    (.ly)
13 #  
14 # ToDo: strip out all the .h junk
15 #
16 ($Pgm = $0) =~ s/.*\/([^\/]+)$/\1/;
17 $Usage  = <<EOUSAGE;
18 Usage: $Pgm [mkdependHS options] [-- GHC options --] srcfile1 [srcfile2 ...]
19
20 Options recognised wherever they occur (mkdependHS or GHC):
21
22     -D<blah>    A cpp #define; usual meaning
23     -i<dirs>    Add <dirs> (colon-separated) to list of directories
24                 to search for "import"ed modules
25     -I<dir>     Add <dir> to list of directories to search for
26                 .h files (i.e., usual meaning)
27     -syslib <blah> This program uses this GHC system library; take
28                 appropriate action (e.g., recognise when they are
29                 "import"ing a module from that library).
30
31 mkdependHS-specific options (not between --'s):
32
33     -v          Be verbose.
34     -v -v       Be very verbose.
35     -f blah     Use "blah" as the makefile, rather than "makefile"
36                 or "Makefile".
37     -o <osuf>   Use <osuf> as the "object file" suffix ( default: o)
38     -s <suf>    Make extra dependencies for files with
39                 suffix <suf><osuf>; thus, "-o hc -s _a" will
40                 make dependencies both for .hc files and for .a_hc
41                 files.  (Useful in conjunction with NoFib "ways".)
42     --exclude-module=<file> 
43                 Regard <file> as "stable"; i.e., eXclude it from having
44                 dependencies on it.
45     -x          same as --exclude-module
46     --exclude-directory=<dirs> 
47                 Regard : separated list of directories as containing stable,
48                 don't generate any dependencies on modules therein.
49     -Xdirs      same as --exclude-directory
50     --include-module=<file> 
51                 Regard <file> as not "stable"; i.e., generate dependencies
52                 on it (if any). This option is normally used in conjunction 
53                 with the --exclude-directory option.
54
55 EOUSAGE
56
57 $Status  = 0; # just used for exit() status
58 $Verbose = 0; # 1 => verbose, 2 => very verbose
59 $Dashdashes_seen = 0;
60
61 # Try to guess how to run gcc's CPP directly -------------
62
63 $OrigCpp = ${RAWCPP};
64 if ( $OrigCpp !~ /(\S+)\s+(.*)/ ) {
65     $Cpp = $OrigCpp;
66 } else {
67     $cmd  = $1;
68     $rest = $2;
69     if ( -x $cmd ) { # cool
70         $Cpp = $OrigCpp;
71     } else { # oops; try to guess
72         $GccV = `gcc -v 2>&1`;
73         if ( $GccV =~ /Reading specs from (.*)\/specs/ ) {
74             $Cpp = "$1/cpp $rest";
75         } else {
76             die "hscpp: don't know how to run cpp: $OrigCpp\n";
77         }
78     }
79 }
80
81 if ( $ENV{'TMPDIR'} ) { # where to make tmp file names
82     $Tmp_prefix = $ENV{'TMPDIR'} . "/mkdependHS$$";
83 } else {
84     $Tmp_prefix ="${TMPDIR}/mkdependHS$$";
85     $ENV{'TMPDIR'} = "${TMPDIR}"; # set the env var as well
86 }
87
88 $TopPwd            = "${TOP_PWD}";
89 $InstLibDirGhc     = "${libdir}";
90 $InstLibExecDirGhc = "${libexecdir}";
91 $InstHsLibDirGhc   = "${libdir}/hslibs";
92 $InstDataDirGhc    = "${datadir}";
93
94 $Unlit = ($INSTALLING) ? "${InstLibExecDirGhc}/unlit" 
95                        : "${TopPwd}/ghc/utils/unlit/unlit";
96
97 $Begin_magic_str = "# DO NOT DELETE: Beginning of Haskell dependencies\n";
98 $End_magic_str = "# DO NOT DELETE: End of Haskell dependencies\n";
99 @Obj_suffix =  ("o");
100 @File_suffix = ();
101 $ghc_version_info = int ( ${PROJECTVERSION} * 100 );
102
103 $Import_dirs = '.';
104 %Syslibs = ();
105 %LibIfaces  = ();  # known prelude/syslib ifaces; read from a file
106
107 %IgnoreMe = ();
108 # directories to considered stable.
109 @Ignore_dirs = ($INSTALLING) ? 
110                    ("$InstLibDirGhc/imports")
111                  : ("$TopPwd/ghc/lib/ghc",
112                     "$TopPwd/ghc/lib/required",
113                     "$TopPwd/ghc/lib/glaExts",
114                     "$TopPwd/ghc/lib/concurrent");
115
116 $Include_dirs = '-I.';
117 $Makefile = '';
118 @Src_files = ();
119
120 &mangle_command_line_args();
121
122 # set up array of ignored modules
123 foreach $lib ( @Syslibs ) {
124     local($dir) = 
125       ($INSTALLING) ? "${InstHsLibDirGhc}/${lib}/imports" 
126                     : "${TopPwd}/hslibs/${lib}/src";
127     push(@Ignore_dirs,$dir);
128 }
129
130 if ( $Status ) {
131     print stderr $Usage;
132     exit(1);
133 }
134
135 push(@Defines,
136      ( #OLD: "-D__HASKELL1__=$Haskell_1",
137       "-D__GLASGOW_HASKELL__=$ghc_version_info"));
138
139 @Import_dirs  = split(/:/,$Import_dirs);
140 @Include_dirs = split(/\s+/,$Include_dirs); # still has -I's in it
141 # NB: We keep the scalar-variable equivalents to use in error messages
142
143 if ( ! $Makefile && -f 'makefile' ) {
144     $Makefile = 'makefile';
145 } elsif ( ! $Makefile && -f 'Makefile') {
146     $Makefile = 'Makefile';
147 } elsif ( ! $Makefile) {
148     die "$Pgm: no makefile or Makefile found\n";
149 }
150
151 print STDERR "CPP defines=@Defines\n" if $Verbose;
152 print STDERR "Import_dirs=@Import_dirs\n" if $Verbose;
153 print STDERR "Include_dirs=@Include_dirs\n" if $Verbose;
154
155 &preprocess_import_dirs();
156
157 @Depend_lines = ();
158
159 foreach $sf (@Src_files) {
160     # just like lit-inputter
161     # except it puts each file through CPP and
162     # a de-commenter (not implemented);
163     # builds up @Depend_lines
164     print STDERR "Here we go for source file: $sf\n" if $Verbose;
165     ($bf = $sf) =~ s/\.l?(hs|y)$//;
166     #push(@Depend_lines, "$bf.$Obj_suffix $bf.hi : $sf\n");
167     #push(@Depend_lines, "$bf.$Obj_suffix : $sf\n");
168     local($str)="";
169     foreach $obj  (@Obj_suffix) {
170         $str .= "$bf.$obj ";
171         foreach $suff (@File_suffix) {
172            $str .= "$bf.${suff}_$obj ";
173         }
174     }
175     push(@Depend_lines, "$str: $sf\n");
176     # if it's a literate file, .lhs or .ly? (happy specs), then we de-literatize it: 
177     if ( $sf !~ /\.l(hs|y)$/ ) {
178         $file_to_read = $sf;
179     } else {
180         $file_to_read = "$Tmp_prefix.hs";
181         local($to_do) = "$Unlit $sf $file_to_read";
182         &run_something($to_do, 'unlit');
183     }
184     &slurp_file_for_imports($file_to_read, $sf);
185
186     if ( $sf =~ /\.l(hs|y)$/ ) {
187         unlink "$Tmp_prefix.hs";
188     }
189 }
190
191 # OK, mangle the Makefile
192 unlink("$Makefile.bak");
193
194 #
195 # If no output file exist as yet, create one.
196
197 if ( ! -f $Makefile.bak ) {
198    system("touch $Makefile.bak");
199
200 if ( -f $Makefile ) {
201    rename($Makefile,"$Makefile.bak");
202 }
203 # now copy Makefile.bak into Makefile, rm'ing old dependencies
204 # and adding the new
205 open(OMKF,"< $Makefile.bak") || die "$Pgm: can't open $Makefile.bak: $!\n";
206 open(NMKF,"> $Makefile") || die "$Pgm: can't open $Makefile: $!\n";
207 select(NMKF);
208 $_ = <OMKF>;
209 while ($_ && $_ ne $Begin_magic_str) { # copy through, 'til Begin_magic_str
210     print $_;
211     $_ = <OMKF>;
212 }
213 while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str
214     $_ = <OMKF>;
215 }
216 # insert dependencies
217 print $Begin_magic_str;
218 print @Depend_lines;
219 print $End_magic_str;
220 while (<OMKF>) { # copy the rest through
221     print $_;
222 }
223 close(NMKF) || exit(1);
224 close(OMKF) || exit(1);
225 exit 0;
226
227 sub mangle_command_line_args {
228     while($_ = $ARGV[0]) {
229         shift(@ARGV);
230
231         if ( /^--$/ ) {
232             $Dashdashes_seen++;
233
234         } elsif ( /^-D(.*)/ ) { # recognized wherever they occur
235             push(@Defines, $_);
236         } elsif ( /^-i(.*)/ ) {
237             $Import_dirs .= ":$1";
238         } elsif ( /^-I/ ) {
239             $Include_dirs .= " $_";
240         } elsif ( /^-syslib$/ ) {
241             push(@Syslibs, &grab_arg_arg($_,''));
242         } elsif ($Dashdashes_seen != 1) { # not between -- ... --
243             if ( /^-v$/ ) {
244                 $Verbose++;
245             } elsif ( /^-f(.*)/ ) {
246                 $Makefile       = &grab_arg_arg('-f',$1);
247             } elsif ( /^-o(.*)/ ) {
248                 local($suff)    = &grab_arg_arg('-o',$1);
249                 # Weed out existing entry .. there must be a better way of doing this
250                 # with arrays (non-assoc) ! -- sof
251                 @Obj_suffix     = grep(!/$suff/,@Obj_suffix);
252                 push(@Obj_suffix, $suff);
253             #
254             # --exclude-module=mod => it's stable, trust me!
255             
256             } elsif ( /^-(x|-exclude-module=)(.*)/ ) { 
257                 local($thing) = &grab_arg_arg($1,$2);
258                 $IgnoreMe{$thing} = 'y';
259             } elsif ( /^-(X|-exclude-directory=)(.*)/ ) { 
260                 foreach $d ( split(/:/,&grab_arg_arg($1, $2)) ) {
261                    push(@Ignore_dirs,"$d");
262                 }
263             } elsif ( /^--include-module=(.*)/ ) { 
264                 local($thing) = &grab_arg_arg($1,$2);
265                 $IgnoreMe{$thing} = 'n';
266             } elsif ( /^-s(.*)/ ) {
267                 local($suff)    =  &grab_arg_arg('-s',$1);
268                 push(@File_suffix, $suff);
269             } elsif ( /^-/ ) {
270                 print STDERR "$Pgm: unknown option ignored: $_\n";
271                 $Status++;
272             } else {
273                 push(@Src_files, $_);
274             }
275
276         } elsif ($Dashdashes_seen == 1) { # where we ignore unknown options
277             push(@Src_files, $_) if ! /^-/;
278         }
279     }
280     @File_suffix = sort (@File_suffix);
281 }
282
283 sub grab_arg_arg {
284     local($option, $rest_of_arg) = @_;
285     
286     if ($rest_of_arg) {
287         return($rest_of_arg);
288     } elsif ($#ARGV >= 0) {
289         local($temp) = $ARGV[0]; shift(@ARGV); 
290         return($temp);
291     } else {
292         print STDERR "$Pgm: no argument following $option option\n";
293         $Status++;
294     }
295 }
296
297 sub preprocess_import_dirs {
298     # it's probably cheaper to find out what's in all
299     # the @Import_dirs before we start processing.
300     local($d, $thing);
301     local($_);
302     %ModuleIn = ();
303
304     foreach $d ( @Import_dirs ) {
305         # Check to see if it can be ignored
306         #print STDERR "Ignore imports from $d\n" if $Verbose && $Ignore_dirs{$d};
307         #next if $Ignore_dirs{$d};
308
309         opendir(DIR, $d) || die "$Pgm: can't open directory $d\n";
310
311         for ($_ = readdir(DIR); $_; $_ = readdir(DIR)) {
312             next unless /(.*)\.hi$/;
313             $thing = $1;
314             if ($ModuleIn{$thing} && $ModuleIn{$thing} ne $d) {
315                 print STDERR "$Pgm: warning: $thing.hi appears in both $ModuleIn{$thing} and $d!\n";
316             } else {
317                 $ModuleIn{$thing} = $d;
318             }
319         }
320         closedir(DIR); # No, don't check the error code
321     }
322
323     # Add all the modules
324     # to the IgnoreMe array before we start scanning for imports.
325     foreach $d (@Ignore_dirs) {
326
327         opendir(DIR, $d) || die "$Pgm: can't open directory $d\n";
328
329         for ($_ = readdir(DIR); $_; $_ = readdir(DIR)) {
330             next unless /(.*)\.(hi|l?hs|l?y)$/;
331             #don't tag it twice or overwrite it with a diff. value
332             next if $IgnoreMe{$1};
333             print STDERR "Module $d/$1.$2 will be ignored\n" if $Verbose;
334
335             $IgnoreMe{$1} = 'y';
336         }
337         closedir(DIR); # No, don't check the error code
338     }
339 }
340
341 sub slurp_file_for_imports {
342     local($file_to_read, $orig_src_file) = @_;
343     local($follow_file);
344
345     local($last_seen_dir) = $orig_src_file;
346     $last_seen_dir =~ s/\/[^\/]+$//; # strip to dir name
347     $last_seen_dir = '.' if ($last_seen_dir eq $orig_src_file);
348
349     # we mangle #include's so they will also leave something
350     # behind to indicate the dependency on _them_
351     
352     print STDERR "${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines |\n" if $Verbose;
353
354     open(SRCFILE, "${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines |")
355         || die "$Pgm: Can't open $file_to_read: $!\n";
356
357     while (<SRCFILE>) {
358         #
359         # import {-# SOURCE #-} Foo (bar) generates dependencies on the source file only,
360         # the compiler will deal with the absence of Foo.hi by consulting the
361         # source for Foo directly. (for dealing with recursive modules).
362         #
363         next unless (/^>?\s*(import)(\s+{-#\s*SOURCE\s*#-})?(\s+qualified)?\s+([A-Z][A-Za-z0-9_']*)/ || /^!(include)(\s+)"(\S+)"/);
364         $todo    = $1;
365         $source  = ( $2 ne '') ? 1 : 0;
366         $modname = $4;
367
368         next if $modname eq '';
369         if ($todo eq 'import') {
370             if ( $ModuleIn{$modname} ) {
371                    $follow_file = "$ModuleIn{$modname}/$modname.hi";
372             } else { # hard way
373                 $follow_file
374                   = &find_in_Import_dirs($orig_src_file, $modname, $last_seen_dir, $source );
375             }
376         } else {
377                 $follow_file
378                   = &find_in_Include_dirs($orig_src_file, $modname, $last_seen_dir);
379         }
380
381         if (! $follow_file) { # it didnae find anything
382             die "$orig_src_file: Couldn't handle: $_\n";
383
384         } else { # it found something
385             if ($follow_file ne '__ignore__') {
386                 local($int_file);
387                 $int_file = $follow_file;
388
389                 if ( $int_file !~ /\.(l?hs|hi|l?y)$/ ) {
390                     local($str) = "";
391                     foreach $obj  (@Obj_suffix) {
392                         $str .= "$bf.$obj ";
393                         foreach $suff (@File_suffix) {
394                            $str .= "$bf.${suff}_$obj ";
395                         }
396                     }
397                     push(@Depend_lines, "$str: $int_file\n");
398                 } else {
399                     $int_file =~ s/\.l?hs$//;
400                     $int_file =~ s/\.l?y$//;
401                     $int_file =~ s/\.hi$//;
402                     local($source_dep);
403
404                     if ( $source ) {
405                         $source_dep = "$int_file.hi-boot";
406                     } else {
407                         local($str)="";
408                         foreach $obj (@Obj_suffix) {
409                            $str .= "$bf.$obj ";
410                         }
411                         push(@Depend_lines, "$str: $int_file.hi\n");
412                     }
413
414                     if ( ! $source ) {
415                        foreach $suff  (@File_suffix) {
416                            local($str) = "";
417                            foreach $obj (@Obj_suffix) {
418                              $str .= "$bf.${suff}_$obj ";
419                            }
420                            push(@Depend_lines, "$str: $int_file.${suff}_hi\n");
421                        }
422                     } else {
423                        local($str) = "";
424                        foreach $obj  (@Obj_suffix) {
425                            $str .= "$bf.$obj ";
426                            foreach $suff (@File_suffix) {
427                              $str .= "$bf.${suff}_$obj ";
428                            }
429                        }
430                        push(@Depend_lines, "$str: $source_dep\n");
431                    }
432                 }
433             }
434         }
435     }
436     close(SRCFILE) || exit(1);
437 }
438
439 # when we see something, we cache that fact ('y').
440 # also, when we get a miss, we cache that (so we don't try later); ('n')
441 %FileExists = ();
442
443 sub find_in_Import_dirs {
444     local($orig_src_file, $modname, $last_seen_dir, $source) = @_;
445     local($import_dir);
446     local($do_magical_check) = 0;
447     local($name_to_check);
448
449     # do it the old hard way: hop along Import_dir list
450     foreach $import_dir (@Import_dirs) {
451         # handle . magically
452         if ($import_dir eq '.') {
453             # record that we should do a SPECIAL try for a file in last_seen_dir (LAST)
454             $do_magical_check = 1;
455         }
456
457         $name_to_check = "$import_dir/$modname.hi";
458         if ( $FileExists{$name_to_check} ne 'n' ) { # either 'y' or nothing
459             print STDERR "trying $name_to_check...\n" if $Verbose >= 2; # very verbose
460             return($name_to_check) if $FileExists{$name_to_check} eq 'y';
461             if (-f $name_to_check) {
462                 $FileExists{$name_to_check} = 'y';
463                 return($name_to_check) ;
464             } else {
465                 $FileExists{$name_to_check} = 'n';
466             }
467         }
468
469         for $suff ('hs', 'lhs', 'ly', 'y') {
470             $name_to_check = "$import_dir/$modname.$suff";
471             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
472             return($name_to_check) if -f $name_to_check;
473         }
474
475         if ( $source ) {
476             $name_to_check = "$import_dir/$modname.hi-boot";
477             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
478             return($name_to_check) if -f $name_to_check;
479         }               
480     }
481     if ($do_magical_check == 1) {
482         $name_to_check = "$last_seen_dir/$modname.hi";
483
484         if ( $FileExists{$name_to_check} ne 'n' ) { # either 'y' or nothing
485             print STDERR "trying $name_to_check...\n" if $Verbose >= 2; # very verbose
486             return($name_to_check) if $FileExists{$name_to_check} eq 'y';
487             if (-f $name_to_check) {
488                 $FileExists{$name_to_check} = 'y';
489                 return($name_to_check) ;
490             } else {
491                 $FileExists{$name_to_check} = 'n';
492             }
493         }
494
495         for $suff ('lhs', 'hs', 'ly', 'y') {
496             $name_to_check = "$last_seen_dir/$modname.$suff";
497             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
498             return($name_to_check) if -f $name_to_check;
499         }
500     }
501
502     # OK, maybe it's referring to something in a system library
503     #foreach $lib ( @Syslibs ) {
504     #   return('__ignore__') if $LibIfaces{"$lib:$modname"};
505     #}
506
507     # Last hope: referring to a Prelude interface
508     return('__ignore__') if ( $IgnoreMe{$modname} eq 'y' );
509
510     die "No file `$modname.hi', `$modname.lhs', `$modname.hs' (reqd from file `$orig_src_file')\namong import directories:\n\t$Import_dirs\n";
511 }
512
513 sub find_in_Include_dirs {
514     local($orig_src_file, $name, $last_seen_dir) = @_;
515     local($include_dir);
516     local($do_magical_check) = 0;
517
518     # no funny name guessing here
519
520     # hop along Include_dir list
521     foreach $include_dir (@Include_dirs) {
522         $include_dir =~ s/^-I//;
523
524         # handle . magically
525         if ($include_dir eq '.') {
526             # record that we should do a SPECIAL try for a file in last_seen_dir (LAST)
527             $do_magical_check = 1;
528         }
529         print STDERR "trying $include_dir/$name...\n" if $Verbose >= 2; # very verbose
530         if (-f "$include_dir/$name") {
531             return("$include_dir/$name");
532         }
533     }
534     if ($do_magical_check == 1) {
535         print STDERR "trying $last_seen_dir/$name...\n" if $Verbose >= 2; # very verbose
536         if (-f "$last_seen_dir/$name") {
537             return("$last_seen_dir/$name");
538         }
539     }
540     die "No file `$name' (reqd from file `$orig_src_file') among include directories: $Include_dirs\n";
541 }
542
543 # out of the driver, actually
544 sub run_something {
545     local($str_to_do, $tidy_name) = @_;
546
547     print STDERR "\n$tidy_name:\n\t" if $Verbose;
548     print STDERR "$str_to_do\n" if $Verbose;
549
550     local($return_val) = system($str_to_do) >> 8;
551
552     if ($return_val != 0) {
553         local($die_msg) = "$Pgm: execution of the $tidy_name had trouble";
554         $die_msg .= " (program not found)" if $return_val == 255;
555         $die_msg .= " ($!)" if $Verbose && $! != 0;
556         $die_msg .= "\n";
557         print STDERR $die_msg;
558         exit $return_val;
559     }
560 }