source: doc/theses/andrew_beach_MMath/code/throw-detor.cfa@ 199894e

ADT ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 199894e was 54651005, checked in by Andrew Beach <ajbeach@…>, 4 years ago

Added asm statements to the exception benchmarks to prevent unwanted optimizations.

  • Property mode set to 100644
File size: 974 bytes
Line 
1// Throw Across Destructor
2#include <clock.hfa>
3#include <exception.hfa>
4#include <fstream.hfa>
5#include <stdlib.hfa>
6
7EHM_EXCEPTION(empty_exception)();
8
9EHM_VIRTUAL_TABLE(empty_exception, empty_vt);
10
11struct WithDestructor {};
12
13void ^?{}(WithDestructor & this) {
14 asm volatile ("# destructor body");
15}
16
17void unwind_destructor(unsigned int frames) {
18 if (frames) {
19 WithDestructor object;
20 unwind_destructor(frames - 1);
21 } else {
22 throw (empty_exception){&empty_vt};
23 }
24}
25
26int main(int argc, char * argv[]) {
27 unsigned int times = 1;
28 unsigned int total_frames = 1;
29 if (1 < argc) {
30 times = strtol(argv[1], 0p, 10);
31 }
32 if (2 < argc) {
33 total_frames = strtol(argv[2], 0p, 10);
34 }
35
36 Time start_time = timeHiRes();
37 for (int count = 0 ; count < times ; ++count) {
38 try {
39 unwind_destructor(total_frames);
40 } catch (empty_exception *) {
41 asm volatile ("# catch block");
42 }
43 }
44 Time end_time = timeHiRes();
45 sout | "Run-Time (ns): " | (end_time - start_time)`ns;
46}
Note: See TracBrowser for help on using the repository browser.