source: doc/theses/andrew_beach_MMath/code/throw-other.cpp@ d83b266

ADT ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since d83b266 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: 1.1 KB
Line 
1// Throw Across Other Handler
2#include <chrono>
3#include <cstdlib>
4#include <exception>
5#include <iostream>
6
7using namespace std::chrono;
8
9struct EmptyException : public std::exception {};
10
11struct NotRaisedException {};
12
13void unwind_other(unsigned int frames) {
14 if (frames) {
15 try {
16 unwind_other(frames - 1);
17 } catch (NotRaisedException &) {
18 asm volatile ("# catch block (stack)");
19 }
20 } else {
21 throw (EmptyException){};
22 }
23}
24
25int main(int argc, char * argv[]) {
26 unsigned int times = 1;
27 unsigned int total_frames = 1;
28 if (1 < argc) {
29 times = strtol(argv[1], nullptr, 10);
30 }
31 if (2 < argc) {
32 total_frames = strtol(argv[2], nullptr, 10);
33 }
34
35 time_point<steady_clock> start_time = steady_clock::now();
36 for (int count = 0 ; count < times ; ++count) {
37 try {
38 unwind_other(total_frames);
39 } catch (EmptyException &) {
40 asm volatile ("# catch block (base)");
41 }
42 }
43 time_point<steady_clock> end_time = steady_clock::now();
44 nanoseconds duration = duration_cast<nanoseconds>(end_time - start_time);
45 std::cout << "Run-Time (ns): " << duration.count() << std::endl;
46}
Note: See TracBrowser for help on using the repository browser.