source: libcfa/src/exception.h@ 4c2fe47

Last change on this file since 4c2fe47 was c40157e, checked in by Andrew Beach <ajbeach@…>, 22 months ago

Minimal change to get exceptions running the old way while a fix is found. Or even more details on the problem.

  • Property mode set to 100644
File size: 4.9 KB
Line 
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
23extern "C" {
24#endif
25
26// Included in C code or the built-ins.
27#if !defined(__cforall) || defined(__cforall_builtins__)
28
29struct __cfaehm_base_exception_t;
30typedef struct __cfaehm_base_exception_t exception_t;
31struct __cfavir_type_info;
32struct __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};
40struct __cfaehm_base_exception_t {
41 struct __cfaehm_base_exception_t_vtable const * virtual_table;
42};
43extern struct __cfavir_type_info __cfatid_exception_t;
44
45struct __cfaehm_base_exception_t * __cfaehm_get_current_exception(void);
46
47void __cfaehm_cancel_stack(exception_t * except) __attribute__((noreturn));
48
49// Used in throw statement translation.
50void __cfaehm_throw_terminate(exception_t * except, void (*)(exception_t *));
51void __cfaehm_rethrow_terminate() __attribute__((noreturn));
52void __cfaehm_throw_resume(exception_t * except, void (*)(exception_t *));
53
54// Used in non-local ehm (see coroutine.cfa)
55void __cfaehm_allocate_exception( exception_t * except );
56void __cfaehm_begin_unwind(void(*defaultHandler)(exception_t *));
57
58
59// Function catches termination exceptions.
60int __cfaehm_try_terminate(
61 void (*try_block)(),
62 void (*catch_block)(int index, exception_t * except),
63 int (*match_block)(exception_t * except));
64
65// Clean-up the exception in catch blocks.
66void __cfaehm_cleanup_terminate(void * except);
67
68// Data structure creates a list of resume handlers.
69struct __cfaehm_try_resume_node {
70 struct __cfaehm_try_resume_node * next;
71 _Bool (*handler)(exception_t * except);
72};
73
74// These act as constructor and destructor for the resume node.
75void __cfaehm_try_resume_setup(
76 struct __cfaehm_try_resume_node * node,
77 _Bool (*handler)(exception_t * except));
78void __cfaehm_try_resume_cleanup(
79 struct __cfaehm_try_resume_node * node);
80
81// Check for a standard way to call fake deconstructors.
82struct __cfaehm_cleanup_hook {};
83
84#endif
85
86// Included in C code and the library.
87#if !defined(__cforall) || !defined(__cforall_builtins__)
88struct __cfaehm_node {
89 struct _Unwind_Exception unwind_exception;
90 struct __cfaehm_node * next;
91 int handler_index;
92};
93
94static inline exception_t * __cfaehm_cancellation_exception(
95 struct _Unwind_Exception * unwind_exception ) {
96 return (exception_t *)(1 + (struct __cfaehm_node *)unwind_exception);
97}
98#endif
99
100#ifdef __cforall
101}
102
103// Built-ins not visible in C.
104#if defined(__cforall_builtins__)
105
106// Not all the built-ins can be expressed in C. These can't be
107// implemented in the .c file either so they all have to be inline.
108
109forall( exceptT &, virtualT & )
110trait is_exception {
111 /* The first field must be a pointer to a virtual table.
112 * That virtual table must be a decendent of the base exception virtual table.
113 * The virtual table must point at the prober type-id.
114 * None of these can be enforced in an assertion.
115 */
116};
117
118forall( exceptT &, virtualT & | is_exception(exceptT, virtualT) )
119trait is_termination_exception {
120 void defaultTerminationHandler(exceptT &);
121};
122
123forall( exceptT &, virtualT & | is_exception(exceptT, virtualT) )
124trait is_resumption_exception {
125 void defaultResumptionHandler(exceptT &);
126};
127
128forall(exceptT &, virtualT & | is_termination_exception(exceptT, virtualT))
129static inline void $throw(exceptT & except) {
130 __cfaehm_throw_terminate(
131 (exception_t *)&except,
132 (void(*)(exception_t *))defaultTerminationHandler
133 );
134}
135
136forall(exceptT &, virtualT & | is_resumption_exception(exceptT, virtualT))
137static inline void $throwResume(exceptT & except) {
138 __cfaehm_throw_resume(
139 (exception_t *)&except,
140 (void(*)(exception_t *))defaultResumptionHandler
141 );
142}
143
144forall(exceptT &, virtualT & | is_exception(exceptT, virtualT))
145static inline void cancel_stack(exceptT & except) __attribute__((noreturn)) {
146 __cfaehm_cancel_stack( (exception_t *)&except );
147}
148
149forall(exceptT &, virtualT & | is_exception(exceptT, virtualT))
150static inline void defaultTerminationHandler(exceptT & except) {
151 return cancel_stack( except );
152}
153
154forall(exceptT &, virtualT & | is_termination_exception(exceptT, virtualT))
155static inline void defaultResumptionHandler(exceptT & except) {
156 throw except;
157}
158
159#endif
160
161#endif
Note: See TracBrowser for help on using the repository browser.