source: doc/papers/general/evaluation/cfa-bench.c@ f1f8e55

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since f1f8e55 was f1f8e55, checked in by Aaron Moss <a3moss@…>, 8 years ago

Cleanups to CFA benchmark

  • Property mode set to 100644
File size: 658 bytes
Line 
1#include "bench.h"
2#include "cfa-stack.h"
3#include "cfa-pair.h"
4
5int main( int argc, char * argv[] ) {
6 int max = 0, val = 42;
7 stack( int ) si, ti;
8
9 REPEAT_TIMED( "push_int", N, push( si, val ); )
10 TIMED( "copy_int", ti{ si }; )
11 TIMED( "clear_int", clear( si ); )
12 REPEAT_TIMED( "pop_int", N,
13 int x = pop( ti ); if ( x > max ) max = x; )
14
15 pair( short, char ) max = { 0h, '\0' }, val = { 42h, 'a' };
16 stack( pair( short, char ) ) sp, tp;
17
18 REPEAT_TIMED( "push_pair", N, push( sp, val ); )
19 TIMED( "copy_pair", tp{ sp }; )
20 TIMED( "clear_pair", clear( sp ); )
21 REPEAT_TIMED( "pop_pair", N,
22 pair(short, char) x = pop( tp ); if ( x > max ) max = x; )
23}
Note: See TracBrowser for help on using the repository browser.