arm-ehenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-expr
Last change
on this file since b4107c8 was
b4107c8,
checked in by Peter A. Buhr <pabuhr@…>, 3 years ago
|
update existing benchmarks for changes to bench.h, add new benchmarks in new programming languages
|
-
Property mode set to
100644
|
File size:
778 bytes
|
Rev | Line | |
---|
[73abe95] | 1 | #include <kernel.hfa> |
---|
| 2 | #include <monitor.hfa> |
---|
| 3 | #include <thread.hfa> |
---|
[9f0b975] | 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 ) { |
---|
[4cedd9f] | 15 | signal(c); |
---|
[9f0b975] | 16 | } |
---|
| 17 | |
---|
| 18 | int __attribute__((noinline)) wait( M & mutex a1, M & mutex a2, M & mutex a3, M & mutex a4 ) { |
---|
| 19 | go = 1; |
---|
| 20 | BENCH( |
---|
[dc33b5b] | 21 | for ( i; n ) { |
---|
[4cedd9f] | 22 | wait(c); |
---|
[9f0b975] | 23 | }, |
---|
| 24 | result |
---|
| 25 | ) |
---|
[b4107c8] | 26 | printf( "%g\n", result ); |
---|
[9f0b975] | 27 | go = 0; |
---|
| 28 | return 0; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | thread T {}; |
---|
| 32 | void ^?{}( T & mutex this ) {} |
---|
[dc33b5b] | 33 | void main( T & ) { |
---|
[9f0b975] | 34 | while(go == 0) { yield(); } |
---|
| 35 | while(go == 1) { call(m1, m2, m3, m4); } |
---|
| 36 | |
---|
| 37 | } |
---|
| 38 | |
---|
[b4107c8] | 39 | int main( int argc, char * argv[] ) { |
---|
| 40 | BENCH_START() |
---|
[9f0b975] | 41 | T t; |
---|
| 42 | return wait(m1, m2, m3, m4); |
---|
[dc33b5b] | 43 | } |
---|
[b4107c8] | 44 | |
---|
| 45 | // Local Variables: // |
---|
| 46 | // tab-width: 4 // |
---|
| 47 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.