source: benchmark/schedext/cfa1.cfa @ dc33b5b

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since dc33b5b was dc33b5b, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

update benchmarks and add benchmarks for qthreads

  • Property mode set to 100644
File size: 640 bytes
Line 
1#include <kernel.hfa>
2#include <monitor.hfa>
3#include <thread.hfa>
4#include <stdio.h>
5
6#include "bench.h"
7
8int argc;
9char** argv;
10volatile int go = 0;
11
12monitor M {};
13M m1;
14
15void __attribute__((noinline)) call( M & mutex a1 ) {}
16
17int  __attribute__((noinline)) wait( M & mutex a1 ) {
18        go = 1;
19        BENCH(
20                for ( i; n ) {
21                        waitfor(call, a1);
22                },
23                result
24        )
25
26        printf("%g\n", result);
27        go = 0;
28        return 0;
29}
30
31thread T {};
32void ^?{}( T & mutex this ) {}
33void main( T & ) {
34        while(go == 0) { yield(); }
35        while(go == 1) { call(m1); }
36
37}
38
39int main(__attribute__((unused)) int argc, __attribute__((unused)) char* argv[]) {
40        T t;
41        return wait(m1);
42}
Note: See TracBrowser for help on using the repository browser.