[llvm-commits] CVS: llvm/test/DSGraphs/generate_report.pl
Chris Lattner
lattner at cs.uiuc.edu
Wed Nov 6 20:20:01 PST 2002
Changes in directory llvm/test/DSGraphs:
generate_report.pl updated: 1.3 -> 1.4
---
Log message:
Add information about total # nodes in graph
---
Diffs of the changes:
Index: llvm/test/DSGraphs/generate_report.pl
diff -u llvm/test/DSGraphs/generate_report.pl:1.3 llvm/test/DSGraphs/generate_report.pl:1.4
--- llvm/test/DSGraphs/generate_report.pl:1.3 Wed Nov 6 20:08:18 2002
+++ llvm/test/DSGraphs/generate_report.pl Wed Nov 6 20:19:04 2002
@@ -21,11 +21,13 @@
# first test.
shift @Records;
-printf("%-30s%-10s%-10s%-10s%-10s%-10s %-10s%-10s%-10s%-10s %-8s%-8s%-8s\n",
+printf("%-30s%-10s%-10s%-10s%-10s%-10s " .
+ "%-10s%-10s%-10s%-10s " .
+ "%-8s%-10s%-8s%-8s\n",
"Name:",
"LocTime:", "BUTime:", "TDTime:", "TotTime:", "AnlzTime:",
"LocSize:", "BUSize:", "TDSize:", "TotSize:",
- "NumFold", "main", "__main");
+ "NumFold", "NumNodes", "main", "__main");
foreach $Record (@Records) {
# Print BM name
@@ -51,7 +53,8 @@
print "| ";
printField("([0-9]+).*completely folded", $Record, 5);
- printField("\.main\.dot.... \\[([+0-9]+)\\]", $Record, 8);
+ printField("Graphs contain \\[([0-9+]+)\\] nodes total", $Record, 10);
+ printField("\.main\.dot.... \\[([0-9+]+)\\]", $Record, 8);
printField("\.__main\.dot.... \\[([0-9+]+)\\]", $Record, 8);
}
print "\n";
More information about the llvm-commits
mailing list