Author: bernhard
Date: Sun Mar 19 06:18:26 2006
New Revision: 11937
Modified:
trunk/examples/benchmarks/gc_header_new.pasm
trunk/examples/benchmarks/gc_waves_headers.pasm
trunk/examples/benchmarks/gc_waves_sizeable_headers.pasm
trunk/t/benchmark/benchmarks.t
Log:
#38061: [TODO] Fix failing benchmark scripts
Fix the examples/benchmark/gc*.pasm scripts.
'pushs' and 'pops' are gone.
Modified: trunk/examples/benchmarks/gc_header_new.pasm
==============================================================================
--- trunk/examples/benchmarks/gc_header_new.pasm (original)
+++ trunk/examples/benchmarks/gc_header_new.pasm Sun Mar 19 06:18:26 2006
@@ -32,6 +32,17 @@
=back
+=head1 SEE ALSO
+
+F<examples/benchmarks/bench_newp.pasm>,
+F<examples/benchmarks/gc_alloc_new.pasm>,
+F<examples/benchmarks/gc_alloc_reuse.pasm>,
+F<examples/benchmarks/gc_generations.pasm>,
+F<examples/benchmarks/gc_header_reuse.pasm>,
+F<examples/benchmarks/gc_waves_headers.pasm>,
+F<examples/benchmarks/gc_waves_sizeable_data.pasm>,
+F<examples/benchmarks/gc_waves_sizeable_headers.pasm>.
+
=cut
set I0, 40000
@@ -71,7 +82,6 @@
concat S29, S0, S0
concat S30, S0, S0
concat S31, S0, S0
- pushs
inc I1
lt I1, I0, loop
@@ -113,16 +123,3 @@
print " total Buffer structs\n"
end
-
-=head1 SEE ALSO
-
-F<examples/benchmarks/bench_newp.pasm>,
-F<examples/benchmarks/gc_alloc_new.pasm>,
-F<examples/benchmarks/gc_alloc_reuse.pasm>,
-F<examples/benchmarks/gc_generations.pasm>,
-F<examples/benchmarks/gc_header_reuse.pasm>,
-F<examples/benchmarks/gc_waves_headers.pasm>,
-F<examples/benchmarks/gc_waves_sizeable_data.pasm>,
-F<examples/benchmarks/gc_waves_sizeable_headers.pasm>.
-
-=cut
Modified: trunk/examples/benchmarks/gc_waves_headers.pasm
==============================================================================
--- trunk/examples/benchmarks/gc_waves_headers.pasm (original)
+++ trunk/examples/benchmarks/gc_waves_headers.pasm Sun Mar 19 06:18:26 2006
@@ -43,7 +43,6 @@
mainloop:
loopup:
- pushs
concat S1, S0, S0
concat S2, S0, S0
concat S3, S0, S0
@@ -57,7 +56,6 @@
lt I1, I0, loopup
loopdown:
- pops
dec I1
gt I1, 0, loopdown
Modified: trunk/examples/benchmarks/gc_waves_sizeable_headers.pasm
==============================================================================
--- trunk/examples/benchmarks/gc_waves_sizeable_headers.pasm (original)
+++ trunk/examples/benchmarks/gc_waves_sizeable_headers.pasm Sun Mar 19
06:18:26 2006
@@ -42,7 +42,6 @@
mainloop:
loopup:
- pushs
concat S1, S0, S0
concat S2, S0, S0
concat S3, S0, S0
@@ -68,7 +67,6 @@
lt I1, I0, loopup
loopdown:
- pops
dec I1
gt I1, 0, loopdown
Modified: trunk/t/benchmark/benchmarks.t
==============================================================================
--- trunk/t/benchmark/benchmarks.t (original)
+++ trunk/t/benchmark/benchmarks.t Sun Mar 19 06:18:26 2006
@@ -208,10 +208,8 @@
);
# These scripts are known to be failing.
-my %todo = ( q{gc_header_new.pasm} => 'syntax error',
- q{gc_waves_headers.pasm} => 'syntax error',
- q{gc_waves_sizeable_headers.pasm} => 'syntax error',
- q{stress3.pasm} => 'Null PMC access in
get_integer()',
+my %todo = (
+ q{stress3.pasm} => 'Null PMC access in
get_integer(), P5 is no longer special',
);
plan tests => scalar keys %outputs;