source: src/benchmark/schedext/cfa4.c @ 6a5be52

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 6a5be52 was 9f0b975, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

added behcnmarks for signal and waitfor

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