[llvm-commits] [poolalloc] r125697 - in /poolalloc/trunk/test: TEST.dsgraph.Makefile TEST.dsgraph.report

Arushi Aggarwal aggarwa4 at illinois.edu
Wed Feb 16 17:03:57 PST 2011


Author: aggarwa4
Date: Wed Feb 16 19:03:57 2011
New Revision: 125697

URL: http://llvm.org/viewvc/llvm-project?rev=125697&view=rev
Log:
Remove all type inference data from this, and move to 
separate makefile

Modified:
    poolalloc/trunk/test/TEST.dsgraph.Makefile
    poolalloc/trunk/test/TEST.dsgraph.report

Modified: poolalloc/trunk/test/TEST.dsgraph.Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/TEST.dsgraph.Makefile?rev=125697&r1=125696&r2=125697&view=diff
==============================================================================
--- poolalloc/trunk/test/TEST.dsgraph.Makefile (original)
+++ poolalloc/trunk/test/TEST.dsgraph.Makefile Wed Feb 16 19:03:57 2011
@@ -42,7 +42,6 @@
 Output/%.$(TEST).report.txt: Output/%.base.bc Output/%.LOC.txt $(LOPT)
 	@# Gather data
 	-($(RUNOPT) -dsa-$(PASS) $(ANALYZE_OPTS) $<)> $@.time.1 2>&1
-	-($(RUNOPT) -dsa-$(PASS) -dsa-stdlib-no-fold  $(ANALYZE_OPTS) $<)> $@.time.2 2>&1
 	-($(RUNOPT)  $(MEM) -dsa-$(PASS) -disable-verify  $<)> $@.mem.1 2>&1
 	@# Emit data.
 	@echo "---------------------------------------------------------------" > $@
@@ -69,36 +68,6 @@
 	@/bin/echo -n "SCCSIZE: " >> $@
 	- at grep 'Maximum SCC Size in Call Graph' $@.time.1 >> $@
 	@echo >> $@
-	@/bin/echo -n "ACCESSES TYPED: " >> $@
-	- at grep 'Number of loads/stores which are fully typed' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES UNTYPED: " >> $@
-	- at grep 'Number of loads/stores which are untyped' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES TYPED1: " >> $@
-	- at grep 'Number of loads/stores which are access a DSNode with 1 type' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES TYPED2: " >> $@
-	- at grep 'Number of loads/stores which are access a DSNode with 2 type' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES TYPED3: " >> $@
-	- at grep 'Number of loads/stores which are access a DSNode with 3 type' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES TYPED4: " >> $@
-	- at grep 'Number of loads/stores which are access a DSNode with >3 type' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES I: " >> $@
-	- at grep 'Number of loads/stores which are on incomplete nodes' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES E: " >> $@
-	- at grep 'Number of loads/stores which are on external nodes' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "ACCESSES U: " >> $@
-	- at grep 'Number of loads/stores which are on unknown nodes' $@.time.1 >> $@
-	@echo >> $@
-	@/bin/echo -n "STD_LIB_FOLD: " >> $@
-	- at grep 'Number of nodes folded in std lib' $@.time.1 >> $@
-	@echo >> $@
 	@# Emit timing data.
 	@/bin/echo -n "TIME: " >> $@
 	- at grep '  Local Data Structure' $@.time.1 >> $@

Modified: poolalloc/trunk/test/TEST.dsgraph.report
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/TEST.dsgraph.report?rev=125697&r1=125696&r2=125697&view=diff
==============================================================================
--- poolalloc/trunk/test/TEST.dsgraph.report (original)
+++ poolalloc/trunk/test/TEST.dsgraph.report Wed Feb 16 19:03:57 2011
@@ -156,21 +156,7 @@
             ["GlobGr"   , "GLOBALSGRAPH: *([0-9]+)"],
             ["MaxSCC"   , "SCCSIZE: *([0-9]+)"],
             [],
-            ["TypeSafe", "ACCESSES TYPED: *([0-9]+)"],
-            ["NonType",  "ACCESSES UNTYPED: *([0-9]+)"],
-            ["TS %" , sub { return TypeSafeRatio(@_); }],
-            [],
-            ["Type1", "ACCESSES TYPED1: *([0-9]+)"],
-            ["Type2", "ACCESSES TYPED2: *([0-9]+)"],
-            ["Type3", "ACCESSES TYPED3: *([0-9]+)"],
-            ["Type4", "ACCESSES TYPED4: *([0-9]+)"],
-            ["I", "ACCESSES I: *([0-9]+)"],
-            ["E", "ACCESSES E: *([0-9]+)"],
-            ["U", "ACCESSES U: *([0-9]+)"],
-            ["U", "ACCESSES U: *([0-9]+)"],
-            [],
 # Nodes Folded
-            ["StdLibFold", "STD_LIB_FOLD: *([0-9]+)"],
             ["IndClone", "CLONED_INDCLONE: *([0-9]+)"],
             ["FuncSpec", "CLONED_FUNCSPEC: *([0-9]+)"],
            );





More information about the llvm-commits mailing list