ADT
        arm-eh
        ast-experimental
        enum
        forall-pointer-decay
        jacob/cs343-translation
        new-ast
        new-ast-unique-expr
        pthread-emulation
        qualifiedEnum
      
      
        
          | 
            Last change
 on this file since bcadb26 was             2316525, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago           | 
        
        
          | 
             
update benchmarks for concurrency paper 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            505 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | #include <thread.hfa>
 | 
|---|
| 2 | #include <monitor.hfa>
 | 
|---|
| 3 | 
 | 
|---|
| 4 | #include "../bench.h"
 | 
|---|
| 5 | 
 | 
|---|
| 6 | monitor M {} m;
 | 
|---|
| 7 | void __attribute__((noinline)) call( M & mutex ) {}
 | 
|---|
| 8 | 
 | 
|---|
| 9 | volatile bool go = false;
 | 
|---|
| 10 | 
 | 
|---|
| 11 | void call() {
 | 
|---|
| 12 |         go = true;
 | 
|---|
| 13 |         for ( times ) {
 | 
|---|
| 14 |                 call( m );
 | 
|---|
| 15 |         }
 | 
|---|
| 16 |         go = false;
 | 
|---|
| 17 | }
 | 
|---|
| 18 | thread T {};
 | 
|---|
| 19 | void main( T & ) {
 | 
|---|
| 20 |         while ( ! go );
 | 
|---|
| 21 |         while ( go ) { call( m ); }
 | 
|---|
| 22 | }
 | 
|---|
| 23 | int main( int argc, char * argv[] ) {
 | 
|---|
| 24 |         BENCH_START()
 | 
|---|
| 25 |         processor p;
 | 
|---|
| 26 |         T t;
 | 
|---|
| 27 |         BENCH(
 | 
|---|
| 28 |                 call(),
 | 
|---|
| 29 |                 result
 | 
|---|
| 30 |         )
 | 
|---|
| 31 |         printf( "%g\n", result );
 | 
|---|
| 32 | }
 | 
|---|
| 33 | 
 | 
|---|
| 34 | // Local Variables: //
 | 
|---|
| 35 | // tab-width: 4 //
 | 
|---|
| 36 | // End: //
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.