ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change
on this file since c93fd72 was
6e540ea,
checked in by Peter A. Buhr <pabuhr@…>, 5 years ago
|
additional corrections to harmonize with last benchmark update
|
-
Property mode set to
100644
|
File size:
782 bytes
|
Line | |
---|
1 | #include <kernel.hfa> |
---|
2 | #include <monitor.hfa> |
---|
3 | #include <thread.hfa> |
---|
4 | #include <stdio.h> |
---|
5 | |
---|
6 | #include "bench.h" |
---|
7 | |
---|
8 | volatile int go = 0; |
---|
9 | |
---|
10 | condition c; |
---|
11 | monitor M {}; |
---|
12 | M m1, m2, m3, m4; |
---|
13 | |
---|
14 | void __attribute__((noinline)) call( M & mutex a1, M & mutex a2, M & mutex a3, M & mutex a4 ) { |
---|
15 | signal(c); |
---|
16 | } |
---|
17 | |
---|
18 | int __attribute__((noinline)) wait( M & mutex a1, M & mutex a2, M & mutex a3, M & mutex a4 ) { |
---|
19 | go = 1; |
---|
20 | BENCH( |
---|
21 | for ( i; times ) { |
---|
22 | wait(c); |
---|
23 | }, |
---|
24 | result |
---|
25 | ) |
---|
26 | printf( "%g\n", result ); |
---|
27 | go = 0; |
---|
28 | return 0; |
---|
29 | } |
---|
30 | |
---|
31 | thread T {}; |
---|
32 | void ^?{}( T & mutex this ) {} |
---|
33 | void main( T & ) { |
---|
34 | while(go == 0) { yield(); } |
---|
35 | while(go == 1) { call(m1, m2, m3, m4); } |
---|
36 | |
---|
37 | } |
---|
38 | |
---|
39 | int main( int argc, char * argv[] ) { |
---|
40 | BENCH_START() |
---|
41 | T t; |
---|
42 | return wait(m1, m2, m3, m4); |
---|
43 | } |
---|
44 | |
---|
45 | // Local Variables: // |
---|
46 | // tab-width: 4 // |
---|
47 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.