1 | // |
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo |
---|
3 | // |
---|
4 | // The contents of this file are covered under the licence agreement in the |
---|
5 | // file "LICENCE" distributed with Cforall. |
---|
6 | // |
---|
7 | // exception.h -- Internal exception handling definitions. |
---|
8 | // |
---|
9 | // Author : Andrew Beach |
---|
10 | // Created On : Mon Jun 26 15:11:00 2017 |
---|
11 | // Last Modified By : Peter A. Buhr |
---|
12 | // Last Modified On : Thu Feb 2 11:20:19 2023 |
---|
13 | // Update Count : 13 |
---|
14 | // |
---|
15 | |
---|
16 | #pragma once |
---|
17 | |
---|
18 | // This could be considered several headers. All are internal to the exception |
---|
19 | // system but needed to depending on whether they are C/Cforall code and |
---|
20 | // whether or not they are part of the builtins. |
---|
21 | |
---|
22 | #ifdef __cforall |
---|
23 | extern "C" { |
---|
24 | #endif |
---|
25 | |
---|
26 | // Included in C code or the built-ins. |
---|
27 | #if !defined(__cforall) || defined(__cforall_builtins__) |
---|
28 | |
---|
29 | struct __cfaehm_base_exception_t; |
---|
30 | typedef struct __cfaehm_base_exception_t exception_t; |
---|
31 | struct __cfavir_type_info; |
---|
32 | struct __cfaehm_base_exception_t_vtable { |
---|
33 | const struct __cfavir_type_info * __cfavir_typeid; |
---|
34 | size_t size; |
---|
35 | void (*copy)(struct __cfaehm_base_exception_t *this, |
---|
36 | struct __cfaehm_base_exception_t * other); |
---|
37 | void (*free)(struct __cfaehm_base_exception_t *this); |
---|
38 | const char * (*msg)(struct __cfaehm_base_exception_t *this); |
---|
39 | }; |
---|
40 | struct __cfaehm_base_exception_t { |
---|
41 | struct __cfaehm_base_exception_t_vtable const * virtual_table; |
---|
42 | }; |
---|
43 | extern struct __cfavir_type_info __cfatid_exception_t; |
---|
44 | |
---|
45 | |
---|
46 | void __cfaehm_cancel_stack(exception_t * except) __attribute__((noreturn)); |
---|
47 | |
---|
48 | // Used in throw statement translation. |
---|
49 | void __cfaehm_throw_terminate(exception_t * except, void (*)(exception_t *)); |
---|
50 | void __cfaehm_rethrow_terminate() __attribute__((noreturn)); |
---|
51 | void __cfaehm_throw_resume(exception_t * except, void (*)(exception_t *)); |
---|
52 | |
---|
53 | // Used in non-local ehm (see coroutine.cfa) |
---|
54 | void __cfaehm_allocate_exception( exception_t * except ); |
---|
55 | void __cfaehm_begin_unwind(void(*defaultHandler)(exception_t *)); |
---|
56 | |
---|
57 | |
---|
58 | // Function catches termination exceptions. |
---|
59 | void __cfaehm_try_terminate( |
---|
60 | void (*try_block)(), |
---|
61 | void (*catch_block)(int index, exception_t * except), |
---|
62 | int (*match_block)(exception_t * except)); |
---|
63 | |
---|
64 | // Clean-up the exception in catch blocks. |
---|
65 | void __cfaehm_cleanup_terminate(void * except); |
---|
66 | |
---|
67 | // Data structure creates a list of resume handlers. |
---|
68 | struct __cfaehm_try_resume_node { |
---|
69 | struct __cfaehm_try_resume_node * next; |
---|
70 | _Bool (*handler)(exception_t * except); |
---|
71 | }; |
---|
72 | |
---|
73 | // These act as constructor and destructor for the resume node. |
---|
74 | void __cfaehm_try_resume_setup( |
---|
75 | struct __cfaehm_try_resume_node * node, |
---|
76 | _Bool (*handler)(exception_t * except)); |
---|
77 | void __cfaehm_try_resume_cleanup( |
---|
78 | struct __cfaehm_try_resume_node * node); |
---|
79 | |
---|
80 | // Check for a standard way to call fake deconstructors. |
---|
81 | struct __cfaehm_cleanup_hook {}; |
---|
82 | |
---|
83 | #endif |
---|
84 | |
---|
85 | // Included in C code and the library. |
---|
86 | #if !defined(__cforall) || !defined(__cforall_builtins__) |
---|
87 | struct __cfaehm_node { |
---|
88 | struct _Unwind_Exception unwind_exception; |
---|
89 | struct __cfaehm_node * next; |
---|
90 | int handler_index; |
---|
91 | }; |
---|
92 | |
---|
93 | static inline exception_t * __cfaehm_cancellation_exception( |
---|
94 | struct _Unwind_Exception * unwind_exception ) { |
---|
95 | return (exception_t *)(1 + (struct __cfaehm_node *)unwind_exception); |
---|
96 | } |
---|
97 | #endif |
---|
98 | |
---|
99 | #ifdef __cforall |
---|
100 | } |
---|
101 | |
---|
102 | // Built-ins not visible in C. |
---|
103 | #if defined(__cforall_builtins__) |
---|
104 | |
---|
105 | // Not all the built-ins can be expressed in C. These can't be |
---|
106 | // implemented in the .c file either so they all have to be inline. |
---|
107 | |
---|
108 | forall( exceptT &, virtualT & ) |
---|
109 | trait is_exception { |
---|
110 | /* The first field must be a pointer to a virtual table. |
---|
111 | * That virtual table must be a decendent of the base exception virtual table. |
---|
112 | * The virtual table must point at the prober type-id. |
---|
113 | * None of these can be enforced in an assertion. |
---|
114 | */ |
---|
115 | }; |
---|
116 | |
---|
117 | forall( exceptT &, virtualT & | is_exception(exceptT, virtualT) ) |
---|
118 | trait is_termination_exception { |
---|
119 | void defaultTerminationHandler(exceptT &); |
---|
120 | }; |
---|
121 | |
---|
122 | forall( exceptT &, virtualT & | is_exception(exceptT, virtualT) ) |
---|
123 | trait is_resumption_exception { |
---|
124 | void defaultResumptionHandler(exceptT &); |
---|
125 | }; |
---|
126 | |
---|
127 | forall(exceptT &, virtualT & | is_termination_exception(exceptT, virtualT)) |
---|
128 | static inline void $throw(exceptT & except) { |
---|
129 | __cfaehm_throw_terminate( |
---|
130 | (exception_t *)&except, |
---|
131 | (void(*)(exception_t *))defaultTerminationHandler |
---|
132 | ); |
---|
133 | } |
---|
134 | |
---|
135 | forall(exceptT &, virtualT & | is_resumption_exception(exceptT, virtualT)) |
---|
136 | static inline void $throwResume(exceptT & except) { |
---|
137 | __cfaehm_throw_resume( |
---|
138 | (exception_t *)&except, |
---|
139 | (void(*)(exception_t *))defaultResumptionHandler |
---|
140 | ); |
---|
141 | } |
---|
142 | |
---|
143 | forall(exceptT &, virtualT & | is_exception(exceptT, virtualT)) |
---|
144 | static inline void cancel_stack(exceptT & except) __attribute__((noreturn)) { |
---|
145 | __cfaehm_cancel_stack( (exception_t *)&except ); |
---|
146 | } |
---|
147 | |
---|
148 | forall(exceptT &, virtualT & | is_exception(exceptT, virtualT)) |
---|
149 | static inline void defaultTerminationHandler(exceptT & except) { |
---|
150 | return cancel_stack( except ); |
---|
151 | } |
---|
152 | |
---|
153 | forall(exceptT &, virtualT & | is_termination_exception(exceptT, virtualT)) |
---|
154 | static inline void defaultResumptionHandler(exceptT & except) { |
---|
155 | throw except; |
---|
156 | } |
---|
157 | |
---|
158 | #endif |
---|
159 | |
---|
160 | #endif |
---|