ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/eg/bench
Revision: 1.9
Committed: Sat Aug 11 19:59:19 2001 UTC (22 years, 10 months ago) by root
Branch: MAIN
Changes since 1.8: +9 -9 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/usr/bin/perl
2
3 # ->resume is not exactly cheap (it saves/restores a LOT
4 # of global variables), but shouldn't be slow. just to show
5 # how fast it is, this little proggie compares a normal subroutine
6 # call with two calls of transfer in a loop.
7
8 use Coro;
9 use Benchmark;
10
11 sub a() { }
12
13 $a = bless {}, main::;
14
15 sub b {
16 my ($self) = shift;
17 $self->{b} = shift if @_;
18 $self->{b};
19 }
20
21 $b = async {
22 # do a little unrolling...
23 while() {
24 cede; cede; cede; cede; cede;
25 }
26 };
27
28 cede;
29
30 $main = $Coro::main;
31
32 *transfer = \&Coro::State::transfer;
33
34 sub doit0 {
35 while() {
36 # some unrolling here as well..
37 transfer($c0, $main, 0); transfer($c0, $main, 0);
38 transfer($c0, $main, 0); transfer($c0, $main, 0);
39 transfer($c0, $main, 0); transfer($c0, $main, 0);
40 }
41 }
42
43 sub doit1 {
44 while() {
45 # some unrolling here as well..
46 transfer($c1, $main, -1); transfer($c1, $main, -1);
47 transfer($c1, $main, -1); transfer($c1, $main, -1);
48 transfer($c1, $main, -1); transfer($c1, $main, -1);
49 }
50 }
51
52 $c0 = Coro::State::_newprocess [sub {
53 doit0(1,2,3,4,5,6,7,8,9);
54 }];
55
56 $c1 = Coro::State::_newprocess [sub {
57 doit1(1,2,3,4,5,6,7,8,9);
58 }];
59
60 transfer($main, $c0, 0);
61 transfer($main, $c1, -1);
62
63 timethese 100000, {
64 empty => '&a; &a',
65 method => '$a->b(5); $a->b(6)',
66 cede => 'cede',
67 transfer0=> 'transfer($main, $c0, 0)',
68 transfer1=> 'transfer($main, $c1, -1)',
69 };
70