1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
# Copyright (C) 2001-2006, Parrot Foundation.
=head1 NAME
examples/benchmarks/stress.pasm - GC stress-testing
=head1 SYNOPSIS
% time ./parrot examples/benchmarks/stress.pasm
=head1 DESCRIPTION
Creates 50 arrays with 10000 elements each, and then prints out the
total number of GC runs made.
=cut
.pcc_sub :main main:
new P10, 'ResizableIntegerArray'
set I0, 10
new P0, 'ResizablePMCArray'
ol: local_branch P10, buildarray
set P0[I0], P1
dec I0
# print I0
# print "\n"
if I0, ol
set I0, 20
new P2, 'ResizablePMCArray'
ol1: local_branch P10, buildarray
set P2[I0], P1
dec I0
# print I0
# print "\n"
if I0, ol1
set I0, 20
new P3, 'ResizablePMCArray'
ol2: local_branch P10, buildarray
set P3[I0], P1
dec I0
# print I0
# print "\n"
if I0, ol2
interpinfo I1, 2
print "A total of "
print I1
print " GC runs were made\n"
end
# Our inner loop, 10000 times
buildarray:
set I1, 10000
new P1, 'ResizablePMCArray'
loop1: new P9, 'Integer'
set P9, I1
set P1[I1], P9
dec I1
if I1, loop1
local_return P10
=head1 SEE ALSO
F<examples/benchmarks/stress.pl>,
F<examples/benchmarks/stress1.pasm>,
F<examples/benchmarks/stress1.pl>,
F<examples/benchmarks/stress2.pasm>,
F<examples/benchmarks/stress2.pl>,
F<examples/benchmarks/stress3.pasm>.
=cut
# Local Variables:
# mode: pir
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir:
|