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

ADTast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since ee23a8d was ee23a8d, checked in by Andrew Beach <ajbeach@…>, 3 years ago

Added duration information (in nanoseconds) to EHM benchmarks.

  • Property mode set to 100644
File size: 1.0 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                        // ...
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                        // ...
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.