source:
doc/theses/andrew_beach_MMath/code/cond-catch.cfa@
aa882e7e
| Last change on this file since aa882e7e was 54651005, checked in by , 4 years ago | |
|---|---|
|
|
| File size: 928 bytes | |
| Rev | Line | |
|---|---|---|
| [ea593a3] | 1 | // Conditional Match (or Re-Raise) |
| [ee23a8d] | 2 | #include <clock.hfa> |
| [ea593a3] | 3 | #include <exception.hfa> |
| [ee23a8d] | 4 | #include <fstream.hfa> |
| [ea593a3] | 5 | #include <stdlib.h> |
| 6 | ||
| 7 | EHM_EXCEPTION(empty_exception)(); | |
| 8 | ||
| 9 | EHM_VIRTUAL_TABLE(empty_exception, empty_vt); | |
| 10 | ||
| 11 | bool should_catch = false; | |
| 12 | ||
| 13 | void throw_exception() { | |
| 14 | throw (empty_exception){&empty_vt}; | |
| 15 | } | |
| 16 | ||
| 17 | void cond_catch() { | |
| 18 | try { | |
| 19 | throw_exception(); | |
| 20 | } catch (empty_exception * exc ; should_catch) { | |
| [54651005] | 21 | asm volatile ("# catch block (conditional)"); |
| [ea593a3] | 22 | } |
| 23 | } | |
| 24 | ||
| 25 | int main(int argc, char * argv[]) { | |
| 26 | unsigned int times = 1; | |
| [ee23a8d] | 27 | if (1 < argc) { |
| [ea593a3] | 28 | times = strtol(argv[1], 0p, 10); |
| 29 | } | |
| [11ad42f] | 30 | if (2 < argc) { |
| 31 | should_catch = strtol(argv[2], 0p, 10); | |
| 32 | } | |
| [ea593a3] | 33 | |
| [47e413b] | 34 | Time start_time = timeHiRes(); |
| [ea593a3] | 35 | for (unsigned int count = 0 ; count < times ; ++count) { |
| 36 | try { | |
| 37 | cond_catch(); | |
| 38 | } catch (empty_exception * exc) { | |
| [54651005] | 39 | asm volatile ("# catch block (unconditional)"); |
| [ea593a3] | 40 | } |
| 41 | } | |
| [47e413b] | 42 | Time end_time = timeHiRes(); |
| [ee23a8d] | 43 | sout | "Run-Time (ns): " | (end_time - start_time)`ns; |
| [ea593a3] | 44 | } |
Note:
See TracBrowser
for help on using the repository browser.