Changeset dfda49f for benchmark/ctxswitch
- Timestamp:
- Mar 10, 2020, 2:22:13 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 28c4f74
- Parents:
- ff489bf
- Location:
- benchmark/ctxswitch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified benchmark/ctxswitch/cfa_cor.cfa ¶
rff489bf rdfda49f 2 2 #include <thread.hfa> 3 3 4 #include " bench.h"4 #include "../bench.h" 5 5 6 coroutine C {} c;6 coroutine C {}; 7 7 void main( __attribute__((unused)) C & ) { 8 while() {8 for () { 9 9 suspend; 10 10 } 11 11 } 12 12 int main( int argc, char * argv[] ) { 13 C c; 13 14 BENCH_START() 14 15 BENCH( -
TabularUnified benchmark/ctxswitch/cfa_gen.cfa ¶
rff489bf rdfda49f 1 1 #include "../bench.h" 2 2 3 typedef struct { 4 void * next; 5 } C; 6 7 void comain( C * c ) { 8 if ( __builtin_expect(c->next != 0, 1) ) goto *(c->next); 9 c->next = &&s1; 3 generator G {}; 4 void main( G & ) { 10 5 for () { 11 return; 12 s1: ; 6 suspend; 13 7 } 14 8 } 15 9 16 10 int main( int argc, char * argv[] ) { 11 G g; 17 12 BENCH_START() 18 C c = { 0 };19 13 BENCH( 20 14 for ( times ) { 21 comain( &c);15 resume( g ); 22 16 }, 23 17 result
Note: See TracChangeset
for help on using the changeset viewer.