// Resume Across Empty Function #include #include #include #include EHM_EXCEPTION(empty_exception)(); EHM_VIRTUAL_TABLE(empty_exception, empty_vt); void unwind_empty(unsigned int frames) { if (frames) { unwind_empty(frames - 1); } else { throwResume (empty_exception){&empty_vt}; } } int main(int argc, char * argv[]) { unsigned int times = 1; unsigned int total_frames = 1; if (1 < argc) { times = strtol(argv[1], 0p, 10); } if (2 < argc) { total_frames = strtol(argv[2], 0p, 10); } Time start_time = timeHiRes(); for (int count = 0 ; count < times ; ++count) { try { unwind_empty(total_frames); } catchResume (empty_exception *) { asm volatile ("# fixup block"); } } Time end_time = timeHiRes(); sout | "Run-Time (ns): " | (end_time - start_time)`ns; }