ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since c744563a was 69e398f, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago |
interchange CFA coroutine and generator creation benchmarks
|
-
Property mode
set to
100644
|
File size:
358 bytes
|
Rev | Line | |
---|
[26fd986] | 1 | #include "bench.h"
|
---|
| 2 |
|
---|
[69e398f] | 3 | struct C {
|
---|
| 4 | volatile int restart; // ensure compiler does not optimize away all the code
|
---|
| 5 | };
|
---|
| 6 | void ?{}( C & c ) { c.restart = 0; }
|
---|
| 7 | void main( C & ) {}
|
---|
[26fd986] | 8 |
|
---|
| 9 | int main( int argc, char * argv[] ) {
|
---|
| 10 | BENCH_START()
|
---|
| 11 | BENCH(
|
---|
| 12 | for ( times ) {
|
---|
[69e398f] | 13 | C c;
|
---|
[26fd986] | 14 | },
|
---|
| 15 | result
|
---|
| 16 | )
|
---|
| 17 | printf( "%g\n", result );
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | // Local Variables: //
|
---|
| 21 | // tab-width: 4 //
|
---|
| 22 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.