source: libcfa/src/exception.h @ 69c5c00

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 69c5c00 was 69c5c00, checked in by Andrew Beach <ajbeach@…>, 4 years ago

Rework exceptions mark_exception -> get_exception_vtable and the needed follow up.

  • Property mode set to 100644
File size: 4.0 KB
RevLine 
[fa4805f]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 -- Builtins for exception handling.
8//
9// Author           : Andrew Beach
10// Created On       : Mon Jun 26 15:11:00 2017
[3090127]11// Last Modified By : Andrew Beach
[046a890]12// Last Modified On : Tue May 19 14:17:00 2020
13// Update Count     : 10
[fa4805f]14//
15
[6b0b624]16#pragma once
[fa4805f]17
18
[0cf5b79]19#ifdef __cforall
[0fc9756b]20extern "C" {
[fa4805f]21#endif
22
[3090127]23struct __cfaehm_base_exception_t;
24typedef struct __cfaehm_base_exception_t exception_t;
25struct __cfaehm_base_exception_t_vtable {
26        const struct __cfaehm_base_exception_t_vtable * parent;
[86d5ba7c]27        size_t size;
[3090127]28        void (*copy)(struct __cfaehm_base_exception_t *this,
29                     struct __cfaehm_base_exception_t * other);
30        void (*free)(struct __cfaehm_base_exception_t *this);
31        const char * (*msg)(struct __cfaehm_base_exception_t *this);
[86d5ba7c]32};
[3090127]33struct __cfaehm_base_exception_t {
34        struct __cfaehm_base_exception_t_vtable const * virtual_table;
[86d5ba7c]35};
[3090127]36extern struct __cfaehm_base_exception_t_vtable
37        ___cfaehm_base_exception_t_vtable_instance;
[86d5ba7c]38
39
[979df46]40void __cfaehm_cancel_stack(exception_t * except) __attribute__((noreturn));
41
[fa4805f]42// Used in throw statement translation.
[046a890]43void __cfaehm_throw_terminate(exception_t * except, void (*)(exception_t *));
[3090127]44void __cfaehm_rethrow_terminate() __attribute__((noreturn));
[046a890]45void __cfaehm_throw_resume(exception_t * except, void (*)(exception_t *));
[fa4805f]46
47// Function catches termination exceptions.
[3090127]48void __cfaehm_try_terminate(
[fa4805f]49    void (*try_block)(),
[0304215a]50    void (*catch_block)(int index, exception_t * except),
51    int (*match_block)(exception_t * except));
[fa4805f]52
[86d5ba7c]53// Clean-up the exception in catch blocks.
[3090127]54void __cfaehm_cleanup_terminate(void * except);
[86d5ba7c]55
[fa4805f]56// Data structure creates a list of resume handlers.
[3090127]57struct __cfaehm_try_resume_node {
58    struct __cfaehm_try_resume_node * next;
[0304215a]59    _Bool (*handler)(exception_t * except);
[fa4805f]60};
61
[86d5ba7c]62// These act as constructor and destructor for the resume node.
[3090127]63void __cfaehm_try_resume_setup(
64    struct __cfaehm_try_resume_node * node,
[0304215a]65    _Bool (*handler)(exception_t * except));
[3090127]66void __cfaehm_try_resume_cleanup(
67    struct __cfaehm_try_resume_node * node);
[fa4805f]68
69// Check for a standard way to call fake deconstructors.
[3090127]70struct __cfaehm_cleanup_hook {};
[fa4805f]71
[0cf5b79]72#ifdef __cforall
[fa4805f]73}
[046a890]74
75// Not all the built-ins can be expressed in C. These can't be
76// implemented in the .c file either so they all have to be inline.
77
[69c5c00]78trait is_exception(dtype exceptT, dtype virtualT) {
[046a890]79        /* The first field must be a pointer to a virtual table.
[69c5c00]80         * That virtual table must be a decendent of the base exception virtual table.
[046a890]81         */
[69c5c00]82        virtualT const & get_exception_vtable(exceptT *);
83        // Always returns the virtual table for this type (associated types hack).
[046a890]84};
85
[69c5c00]86trait is_termination_exception(dtype exceptT, dtype virtualT | is_exception(exceptT, virtualT)) {
[1c01c58]87        void defaultTerminationHandler(exceptT &);
[046a890]88};
89
[69c5c00]90trait is_resumption_exception(dtype exceptT, dtype virtualT | is_exception(exceptT, virtualT)) {
[1c01c58]91        void defaultResumptionHandler(exceptT &);
[046a890]92};
93
[69c5c00]94forall(dtype exceptT, dtype virtualT | is_termination_exception(exceptT, virtualT))
[1c01c58]95static inline void $throw(exceptT & except) {
[046a890]96        __cfaehm_throw_terminate(
97                (exception_t *)&except,
98                (void(*)(exception_t *))defaultTerminationHandler
99        );
100}
101
[69c5c00]102forall(dtype exceptT, dtype virtualT | is_resumption_exception(exceptT, virtualT))
[1c01c58]103static inline void $throwResume(exceptT & except) {
[046a890]104        __cfaehm_throw_resume(
105                (exception_t *)&except,
106                (void(*)(exception_t *))defaultResumptionHandler
107        );
108}
109
[69c5c00]110forall(dtype exceptT, dtype virtualT | is_exception(exceptT, virtualT))
[1c01c58]111static inline void cancel_stack(exceptT & except) __attribute__((noreturn)) {
[046a890]112        __cfaehm_cancel_stack( (exception_t *)&except );
113}
114
[69c5c00]115forall(dtype exceptT, dtype virtualT | is_exception(exceptT, virtualT))
[1c01c58]116static inline void defaultTerminationHandler(exceptT & except) {
[046a890]117        return cancel_stack( except );
118}
119
[69c5c00]120forall(dtype exceptT, dtype virtualT | is_exception(exceptT, virtualT))
[1c01c58]121static inline void defaultResumptionHandler(exceptT & except) {
[046a890]122        throw except;
123}
124
[fa4805f]125#endif
Note: See TracBrowser for help on using the repository browser.