The CodeEmitterGenerator used to consider ANY uninitialized field as being an
[oota-llvm.git] / utils / NightlyTest.pl
1 #!/usr/dcs/software/supported/bin/perl -w
2 #
3 # Program:  NightlyTest.pl
4 #
5 # Synopsis: Perform a series of tests which are designed to be run nightly.
6 #           This is used to keep track of the status of the LLVM tree, tracking
7 #           regressions and performance changes.  This generates one web page a
8 #           day which can be used to access this information.
9 #
10 # Syntax:   NightlyTest.pl <CVSRootDir> <BuildDir> <WebDir>
11 #
12 use POSIX qw(strftime);
13
14 my $HOME = $ENV{HOME};
15 my $CVSRootDir = "/home/vadve/vadve/Research/DynOpt/CVSRepository";
16 my $BuildDir   = "$HOME/buildtest";
17 my $WebDir     = "$HOME/cvs/testresults-X86";
18
19 # Calculate the date prefix...
20 @TIME = localtime;
21 my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
22 my $DateString = strftime "%B %d, %Y", localtime;
23
24 sub ReadFile {
25   if (open (FILE, $_[0])) {
26     my $Ret = <FILE>;
27     close FILE;
28     return $Ret;
29   } else {
30     print "Could not open file '$_[0]' for reading!";
31     return "";
32   }
33 }
34
35 sub WriteFile {  # (filename, contents)
36   open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!";
37   print FILE $_[1];
38   close FILE;
39 }
40
41 sub GetRegex {   # (Regex with ()'s, value)
42   $_[1] =~ /$_[0]/m;
43   return $1;
44 }
45
46 sub AddPreTag {  # Add pre tags around nonempty list, or convert to "none"
47   $_ = shift;
48   if (length) { return "<ul><pre>$_</pre></ul>"; } else { "<b>none</b><br>"; }
49 }
50
51 sub GetDir {
52   my $Suffix = shift;
53   opendir DH, $WebDir;
54   my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
55   closedir DH;
56   return @Result;
57 }
58
59 # DiffFiles - Diff the current version of the file against the last version of
60 # the file, reporting things added and removed.  This is used to report, for
61 # example, added and removed warnings.  This returns a pair (added, removed)
62 #
63 sub DiffFiles {
64   my $Suffix = shift;
65   my @Others = GetDir $Suffix;
66   if (@Others == 0) {  # No other files?  We added all entries...
67     return (`cat $WebDir/$DATE$Suffix`, "");
68   }
69   # Diff the files now...
70   my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
71   my $Added   = join "\n", grep /^</, @Diffs;
72   my $Removed = join "\n", grep /^>/, @Diffs;
73   $Added =~ s/^< //gm;
74   $Removed =~ s/^> //gm;
75   return ($Added, $Removed);
76 }
77
78
79 # Command line argument settings...
80 my $NOCHECKOUT = 0;
81 my $NOREMOVE   = 0;
82 my $NOTEST     = 0;
83 my $MAKEOPTS   = "";
84
85 # Parse arguments...
86 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
87   shift;
88   last if /^--$/;  # Stop processing arguments on --
89
90   # List command line options here...
91   if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
92   if (/^-noremove$/)   { $NOREMOVE   = 1; next; }
93   if (/^-notest$/)     { $NOTEST     = 1; next; }
94   if (/^-parallel$/)   { $MAKEOPTS   = "-j2 -l3.0"; next; }
95
96   print "Unknown option: $_ : ignoring!\n";
97 }
98
99 die "Must specify 0 or 3 options!" if (@ARGV != 0 and @ARGV != 3);
100
101 if (@ARGV == 3) {
102   $CVSRootDir = $ARGV[0];
103   $BuildDir   = $ARGV[1];
104   $WebDir     = $ARGV[2];
105 }
106
107 my $Template = "$BuildDir/llvm/utils/NightlyTestTemplate.html";
108 my $Prefix = "$WebDir/$DATE";
109
110 if (0) {
111   print "CVS Root = $CVSRootDir\n";
112   print "BuildDir = $BuildDir\n";
113   print "WebDir   = $WebDir\n";
114   print "Prefix   = $Prefix\n";
115 }
116
117
118 #
119 # Create the CVS repository directory
120 #
121 if (!$NOCHECKOUT) {
122   mkdir $BuildDir or die "Could not create CVS checkout directory $BuildDir!";
123 }
124 chdir $BuildDir or die "Could not change to CVS checkout directory $BuildDir!";
125
126
127 #
128 # Check out the llvm tree, saving CVS messages to the cvs log...
129 #
130 system "(time -p cvs -d $CVSRootDir co llvm) > $Prefix-CVS-Log.txt 2>&1"
131   if (!$NOCHECKOUT);
132
133 chdir "llvm" or die "Could not change into llvm directory!";
134
135 system "cvs up -P -d > /dev/null 2>&1" if (!$NOCHECKOUT);
136
137 # Read in the HTML template file...
138 undef $/;
139 my $TemplateContents = ReadFile $Template;
140
141
142 #
143 # Get some static statistics about the current state of CVS
144 #
145 my $CVSCheckoutTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-CVS-Log.txt`;
146 my $NumFilesInCVS = `grep '^U' $Prefix-CVS-Log.txt | wc -l` + 0;
147 my $NumDirsInCVS  = `grep '^cvs checkout' $Prefix-CVS-Log.txt | wc -l` + 0;
148 $LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`;
149
150 #
151 # Build the entire tree, saving build messages to the build log
152 #
153 if (!$NOCHECKOUT) {
154   system "(time -p ./configure --enable-jit --with-objroot=.) > $Prefix-Build-Log.txt 2>&1";
155
156   # Build the entire tree, capturing the output into $Prefix-Build-Log.txt
157   system "(time -p gmake $MAKEOPTS) >> $Prefix-Build-Log.txt 2>&1";
158 }
159
160
161 #
162 # Get some statistics about the build...
163 #
164 my @Linked = split '\n', `grep Linking $Prefix-Build-Log.txt`;
165 my $NumExecutables = scalar(grep(/executable/, @Linked));
166 my $NumLibraries   = scalar(grep(!/executable/, @Linked));
167 my $NumObjects     = `grep '^Compiling' $Prefix-Build-Log.txt | wc -l` + 0;
168 my $BuildTimeU = GetRegex "([0-9.]+)", `grep '^user' $Prefix-Build-Log.txt`;
169 my $BuildTimeS = GetRegex "([0-9.]+)", `grep '^sys' $Prefix-Build-Log.txt`;
170 my $BuildWallTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-Build-Log.txt`;
171 my $BuildTime  = $BuildTimeU+$BuildTimeS;  # BuildTime = User+System
172 my $BuildError = "";
173 if (`grep '^gmake: .*Error' $Prefix-Build-Log.txt | wc -l` + 0) {
174   $BuildError = "<h3>Build error: compilation <a href=\"$DATE-Build-Log.txt\">"
175               . "aborted</a></h3>";
176 }
177
178
179 #
180 # Get warnings from the build
181 #
182 my @Warn = split "\n", `egrep 'warning:|Entering dir' $Prefix-Build-Log.txt`;
183 my @Warnings;
184 my $CurDir = "";
185
186 foreach $Warning (@Warn) {
187   if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
188     $CurDir = $1;                 # Keep track of directory warning is in...
189     if ($CurDir =~ m|$BuildDir/llvm/(.*)|) { # Remove buildir prefix if included
190       $CurDir = $1;
191     }
192   } else {
193     push @Warnings, "$CurDir/$Warning";     # Add directory to warning...
194   }
195 }
196 my $WarningsFile =  join "\n", @Warnings;
197 my $WarningsList = AddPreTag $WarningsFile;
198 $WarningsFile =~ s/:[0-9]+:/::/g;
199
200 # Emit the warnings file, so we can diff...
201 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
202 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
203 $WarningsAdded = AddPreTag $WarningsAdded;
204 $WarningsRemoved = AddPreTag $WarningsRemoved;
205
206
207 #
208 # Get some statistics about CVS commits over the current day...
209 #
210 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
211 #print join "\n", @CVSHistory; print "\n";
212
213 # Extract some information from the CVS history... use a hash so no duplicate
214 # stuff is stored.
215 my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
216
217 my $DateRE = "[-:0-9 ]+\\+[0-9]+";
218
219 # Loop over every record from the CVS history, filling in the hashes.
220 foreach $File (@CVSHistory) {
221   my ($Type, $Date, $UID, $Rev, $Filename);
222   if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([0-9\.]+) +([^ ]+) +([^ ]+)/) {
223     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
224   } elsif ($File =~ /([W]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+)/) {
225     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
226   } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
227     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
228   } else {
229     print "UNMATCHABLE: $File\n";
230   }
231   # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
232
233   if ($Filename =~ /^llvm/) {
234     if ($Type eq 'M') {        # Modified
235       $ModifiedFiles{$Filename} = 1;
236       $UsersCommitted{$UID} = 1;
237     } elsif ($Type eq 'A') {   # Added
238       $AddedFiles{$Filename} = 1;
239       $UsersCommitted{$UID} = 1;
240     } elsif ($Type eq 'R') {   # Removed
241       $RemovedFiles{$Filename} = 1;
242       $UsersCommitted{$UID} = 1;
243     } else {
244       $UsersUpdated{$UID} = 1;
245     }
246   }
247 }
248
249 my $UserCommitList = join "\n", keys %UsersCommitted;
250 my $UserUpdateList = join "\n", keys %UsersUpdated;
251 my $AddedFilesList = AddPreTag join "\n", keys %AddedFiles;
252 my $ModifiedFilesList = AddPreTag join "\n", keys %ModifiedFiles;
253 my $RemovedFilesList = AddPreTag join "\n", keys %RemovedFiles;
254
255 my $TestError = 1;
256 my $ProgramsTable;
257
258 # If we build the tree successfully, the nightly programs tests...
259 if ($BuildError eq "") {
260   chdir "test/Programs" or die "Could not change into programs testdir!";
261
262   # Run the programs tests... creating a report.nightly.html file
263   if (!$NOTEST) {
264     system "gmake $MAKEOPTS report.nightly.html TEST=nightly "
265          . "RUNTIMELIMIT=300 > $Prefix-ProgramTest.txt 2>&1";
266   } else {
267     system "gunzip $Prefix-ProgramTest.txt.gz";
268   }
269
270   if (`grep '^gmake: .*Error' $Prefix-ProgramTest.txt | wc -l` + 0) {
271     $TestError = 1;
272     $ProgramsTable = "<font color=white><h2>Error running tests!</h2></font>";
273   } elsif (`grep '^gmake: .*No rule to make target' $Prefix-ProgramTest.txt | wc -l` + 0) {
274     $TestError = 1;
275     $ProgramsTable =
276       "<font color=white><h2>Makefile error running tests!</h2></font>";
277   } else {
278     $TestError = 0;
279     $ProgramsTable = ReadFile "report.nightly.html";
280
281     #
282     # Create a list of the tests which were run...
283     #
284     system "egrep 'TEST-(PASS|FAIL)' < $Prefix-ProgramTest.txt "
285          . "| sort > $Prefix-Tests.txt";
286   }
287
288   # Compress the test output
289   system "gzip -f $Prefix-ProgramTest.txt";
290 }
291
292 my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
293
294 if ($TestError) {
295   $TestsAdded   = "<b>error testing</b><br>";
296   $TestsRemoved = "<b>error testing</b><br>";
297   $TestsFixed   = "<b>error testing</b><br>";
298   $TestsBroken  = "<b>error testing</b><br>";
299 } else {
300   my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
301
302   my @RawTestsAddedArray = split '\n', $RTestsAdded;
303   my @RawTestsRemovedArray = split '\n', $RTestsRemoved;
304
305   my %OldTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
306     @RawTestsRemovedArray;
307   my %NewTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
308     @RawTestsAddedArray;
309
310   foreach $Test (keys %NewTests) {
311     if (!exists $OldTests{$Test}) {  # TestAdded if in New but not old
312       $TestsAdded = "$TestsAdded$Test\n";
313     } else {
314       if ($OldTests{$Test} =~ /TEST-PASS/) {  # Was the old one a pass?
315         $TestsBroken = "$TestsBroken$Test\n";  # New one must be a failure
316       } else {
317         $TestsFixed = "$TestsFixed$Test\n";    # No, new one is a pass.
318       }
319     }
320   }
321   foreach $Test (keys %OldTests) {  # TestRemoved if in Old but not New
322     $TestsRemoved = "$TestsRemoved$Test\n" if (!exists $NewTests{$Test});
323   }
324
325   $TestsAdded   = AddPreTag $TestsAdded;
326   $TestsRemoved = AddPreTag $TestsRemoved;
327   $TestsFixed   = AddPreTag $TestsFixed;
328   $TestsBroken  = AddPreTag $TestsBroken;
329 }
330
331 #
332 # Get a list of the previous days that we can link to...
333 #
334 my @PrevDays = map {s/.html//; $_} GetDir ".html";
335
336 splice @PrevDays, 20;  # Trim down list to something reasonable...
337
338 my $PrevDaysList =     # Format list for sidebar
339   join "\n  ", map { "<a href=\"$_.html\">$_</a><br>" } @PrevDays;
340
341
342 #
343 # Remove the cvs tree...
344 #
345 chdir $WebDir or die "Could not change into web directory!";
346 system "rm -rf $BuildDir" if (!$NOCHECKOUT and !$NOREMOVE);
347
348
349 #
350 # Print out information...
351 #
352 if (0) {
353   print "DateString: $DateString\n";
354   print "CVS Checkout: $CVSCheckoutTime seconds\n";
355   print "Files/Dirs/LOC in CVS: $NumFilesInCVS/$NumDirsInCVS/$LOC\n";
356
357   print "Build Time: $BuildTime seconds\n";
358   print "Libraries/Executables/Objects built: $NumLibraries/$NumExecutables/$NumObjects\n";
359
360   print "WARNINGS:\n  $WarningsList\n";
361
362
363   print "Users committed: $UserCommitList\n";
364   print "Added Files: \n  $AddedFilesList\n";
365   print "Modified Files: \n  $ModifiedFilesList\n";
366   print "Removed Files: \n  $RemovedFilesList\n";
367
368   print "Previous Days =\n  $PrevDaysList\n";
369 }
370
371
372 #
373 # Output the files...
374 #
375
376 # Main HTML file...
377 my $Output;
378 eval "\$Output = <<ENDOFFILE;$TemplateContents\nENDOFFILE\n";
379 WriteFile "$DATE.html", $Output;
380
381 # Change the index.html symlink...
382 system "ln -sf $DATE.html index.html";
383
384 sub AddRecord {
385   my ($Val, $Filename) = @_;
386   my @Records;
387   if (open FILE, $Filename) {
388     @Records = grep !/$DATE/, split "\n", <FILE>;
389     close FILE;
390   }
391   push @Records, "$DATE: $Val";
392   WriteFile $Filename, (join "\n", @Records) . "\n";
393   return @Records;
394 }
395
396 # Add information to the files which accumulate information for graphs...
397 AddRecord($LOC, "running_loc.txt");
398 AddRecord($BuildTime, "running_build_time.txt");