[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.c --
|
---|
| 8 | //
|
---|
| 9 | // Author : Andrew Beach
|
---|
| 10 | // Created On : Mon Jun 26 15:13:00 2017
|
---|
[381fdee] | 11 | // Last Modified By : Peter A. Buhr
|
---|
[0304215a] | 12 | // Last Modified On : Thu Feb 22 18:17:34 2018
|
---|
| 13 | // Update Count : 11
|
---|
[fa4805f] | 14 | //
|
---|
| 15 |
|
---|
[9640813] | 16 | // Normally we would get this from the CFA prelude.
|
---|
[cbce272] | 17 | #include <stddef.h> // for size_t
|
---|
| 18 |
|
---|
[fa4805f] | 19 | #include "exception.h"
|
---|
| 20 |
|
---|
[9640813] | 21 | // Implementation of the secret header is hardware dependent.
|
---|
| 22 | #if !( defined( __x86_64 ) || defined( __i386 ) )
|
---|
| 23 | #error Exception Handling: No known architecture detected.
|
---|
| 24 | #endif
|
---|
[fa4805f] | 25 |
|
---|
| 26 | #include <stdlib.h>
|
---|
| 27 | #include <stdio.h>
|
---|
| 28 | #include <unwind.h>
|
---|
[73abe95] | 29 | #include <bits/debug.hfa>
|
---|
[fa4805f] | 30 |
|
---|
[b947fb2] | 31 | // FIX ME: temporary hack to keep ARM build working
|
---|
| 32 | #ifndef _URC_FATAL_PHASE1_ERROR
|
---|
| 33 | #define _URC_FATAL_PHASE1_ERROR 2
|
---|
| 34 | #endif // ! _URC_FATAL_PHASE1_ERROR
|
---|
| 35 | #ifndef _URC_FATAL_PHASE2_ERROR
|
---|
| 36 | #define _URC_FATAL_PHASE2_ERROR 2
|
---|
| 37 | #endif // ! _URC_FATAL_PHASE2_ERROR
|
---|
| 38 |
|
---|
[fa4805f] | 39 | #include "lsda.h"
|
---|
| 40 |
|
---|
[cbce272] | 41 |
|
---|
| 42 | // Base exception vtable is abstract, you should not have base exceptions.
|
---|
[36982fc] | 43 | struct __cfaabi_ehm__base_exception_t_vtable
|
---|
| 44 | ___cfaabi_ehm__base_exception_t_vtable_instance = {
|
---|
[cbce272] | 45 | .parent = NULL,
|
---|
| 46 | .size = 0,
|
---|
| 47 | .copy = NULL,
|
---|
| 48 | .free = NULL,
|
---|
| 49 | .msg = NULL
|
---|
| 50 | };
|
---|
| 51 |
|
---|
| 52 |
|
---|
[fa4805f] | 53 | // Temperary global exception context. Does not work with concurency.
|
---|
[86d5ba7c] | 54 | struct exception_context_t {
|
---|
[36982fc] | 55 | struct __cfaabi_ehm__try_resume_node * top_resume;
|
---|
| 56 | struct __cfaabi_ehm__try_resume_node * current_resume;
|
---|
[fa4805f] | 57 |
|
---|
[0304215a] | 58 | exception_t * current_exception;
|
---|
[fa4805f] | 59 | int current_handler_index;
|
---|
[9cb89b87] | 60 | } static shared_stack = {NULL, NULL, NULL, 0};
|
---|
[86d5ba7c] | 61 |
|
---|
| 62 | // Get the current exception context.
|
---|
| 63 | // There can be a single global until multithreading occurs, then each stack
|
---|
| 64 | // needs its own. It will have to be updated to handle that.
|
---|
[9cb89b87] | 65 | struct exception_context_t * this_exception_context() {
|
---|
[86d5ba7c] | 66 | return &shared_stack;
|
---|
| 67 | }
|
---|
[fa4805f] | 68 |
|
---|
| 69 |
|
---|
| 70 | // RESUMPTION ================================================================
|
---|
| 71 |
|
---|
[0304215a] | 72 | void __cfaabi_ehm__throw_resume(exception_t * except) {
|
---|
[2a3b019] | 73 | struct exception_context_t * context = this_exception_context();
|
---|
[fa4805f] | 74 |
|
---|
[36982fc] | 75 | __cfaabi_dbg_print_safe("Throwing resumption exception\n");
|
---|
[fa4805f] | 76 |
|
---|
[2a3b019] | 77 | struct __cfaabi_ehm__try_resume_node * original_head = context->current_resume;
|
---|
[36982fc] | 78 | struct __cfaabi_ehm__try_resume_node * current =
|
---|
[2a3b019] | 79 | (original_head) ? original_head->next : context->top_resume;
|
---|
[fa4805f] | 80 |
|
---|
| 81 | for ( ; current ; current = current->next) {
|
---|
[2a3b019] | 82 | context->current_resume = current;
|
---|
[307a732] | 83 | if (current->handler(except)) {
|
---|
[2a3b019] | 84 | context->current_resume = original_head;
|
---|
[fa4805f] | 85 | return;
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 |
|
---|
[36982fc] | 89 | __cfaabi_dbg_print_safe("Unhandled exception\n");
|
---|
[2a3b019] | 90 | context->current_resume = original_head;
|
---|
[fa4805f] | 91 |
|
---|
| 92 | // Fall back to termination:
|
---|
[36982fc] | 93 | __cfaabi_ehm__throw_terminate(except);
|
---|
[fa4805f] | 94 | // TODO: Default handler for resumption.
|
---|
| 95 | }
|
---|
| 96 |
|
---|
[eb46fdf] | 97 | // Do we control where exceptions get thrown even with concurency?
|
---|
| 98 | // If not these are not quite thread safe, the cleanup hook has to
|
---|
| 99 | // be added after the node is built but before it is made the top node.
|
---|
[b947fb2] | 100 |
|
---|
[36982fc] | 101 | void __cfaabi_ehm__try_resume_setup(struct __cfaabi_ehm__try_resume_node * node,
|
---|
[0304215a] | 102 | _Bool (*handler)(exception_t * except)) {
|
---|
[2a3b019] | 103 | struct exception_context_t * context = this_exception_context();
|
---|
| 104 | node->next = context->top_resume;
|
---|
[307a732] | 105 | node->handler = handler;
|
---|
[2a3b019] | 106 | context->top_resume = node;
|
---|
[fa4805f] | 107 | }
|
---|
| 108 |
|
---|
[36982fc] | 109 | void __cfaabi_ehm__try_resume_cleanup(struct __cfaabi_ehm__try_resume_node * node) {
|
---|
[2a3b019] | 110 | struct exception_context_t * context = this_exception_context();
|
---|
| 111 | context->top_resume = node->next;
|
---|
[fa4805f] | 112 | }
|
---|
| 113 |
|
---|
| 114 |
|
---|
| 115 | // TERMINATION ===============================================================
|
---|
| 116 |
|
---|
[86d5ba7c] | 117 | // MEMORY MANAGEMENT (still for integers)
|
---|
[ff7ff14a] | 118 | // May have to move to cfa for constructors and destructors (references).
|
---|
| 119 |
|
---|
[36982fc] | 120 | struct __cfaabi_ehm__node {
|
---|
| 121 | struct __cfaabi_ehm__node * next;
|
---|
[ff7ff14a] | 122 | };
|
---|
| 123 |
|
---|
[0304215a] | 124 | #define NODE_TO_EXCEPT(node) ((exception_t *)(1 + (node)))
|
---|
[36982fc] | 125 | #define EXCEPT_TO_NODE(except) ((struct __cfaabi_ehm__node *)(except) - 1)
|
---|
[86d5ba7c] | 126 |
|
---|
| 127 | // Creates a copy of the indicated exception and sets current_exception to it.
|
---|
[0304215a] | 128 | static void __cfaabi_ehm__allocate_exception( exception_t * except ) {
|
---|
[86d5ba7c] | 129 | struct exception_context_t * context = this_exception_context();
|
---|
| 130 |
|
---|
[ff7ff14a] | 131 | // Allocate memory for the exception.
|
---|
[36982fc] | 132 | struct __cfaabi_ehm__node * store = malloc(
|
---|
| 133 | sizeof( struct __cfaabi_ehm__node ) + except->virtual_table->size );
|
---|
[ff7ff14a] | 134 |
|
---|
| 135 | if ( ! store ) {
|
---|
| 136 | // Failure: cannot allocate exception. Terminate thread.
|
---|
| 137 | abort(); // <- Although I think it might be the process.
|
---|
[86d5ba7c] | 138 | }
|
---|
| 139 |
|
---|
[ff7ff14a] | 140 | // Add the node to the list:
|
---|
| 141 | store->next = EXCEPT_TO_NODE(context->current_exception);
|
---|
| 142 | context->current_exception = NODE_TO_EXCEPT(store);
|
---|
| 143 |
|
---|
[86d5ba7c] | 144 | // Copy the exception to storage.
|
---|
[cbce272] | 145 | except->virtual_table->copy( context->current_exception, except );
|
---|
[86d5ba7c] | 146 | }
|
---|
| 147 |
|
---|
| 148 | // Delete the provided exception, unsetting current_exception if relivant.
|
---|
[0304215a] | 149 | static void __cfaabi_ehm__delete_exception( exception_t * except ) {
|
---|
[86d5ba7c] | 150 | struct exception_context_t * context = this_exception_context();
|
---|
| 151 |
|
---|
[36982fc] | 152 | __cfaabi_dbg_print_safe("Deleting Exception\n");
|
---|
[ff7ff14a] | 153 |
|
---|
| 154 | // Remove the exception from the list.
|
---|
[36982fc] | 155 | struct __cfaabi_ehm__node * to_free = EXCEPT_TO_NODE(except);
|
---|
| 156 | struct __cfaabi_ehm__node * node;
|
---|
[86d5ba7c] | 157 |
|
---|
| 158 | if ( context->current_exception == except ) {
|
---|
[ff7ff14a] | 159 | node = to_free->next;
|
---|
| 160 | context->current_exception = (node) ? NODE_TO_EXCEPT(node) : 0;
|
---|
[86d5ba7c] | 161 | } else {
|
---|
[ff7ff14a] | 162 | node = EXCEPT_TO_NODE(context->current_exception);
|
---|
| 163 | // It may always be in the first or second position.
|
---|
[9cb89b87] | 164 | while ( to_free != node->next ) {
|
---|
[ff7ff14a] | 165 | node = node->next;
|
---|
| 166 | }
|
---|
| 167 | node->next = to_free->next;
|
---|
[86d5ba7c] | 168 | }
|
---|
[ff7ff14a] | 169 |
|
---|
| 170 | // Free the old exception node.
|
---|
[cbce272] | 171 | except->virtual_table->free( except );
|
---|
[ff7ff14a] | 172 | free( to_free );
|
---|
[86d5ba7c] | 173 | }
|
---|
| 174 |
|
---|
| 175 | // If this isn't a rethrow (*except==0), delete the provided exception.
|
---|
[36982fc] | 176 | void __cfaabi_ehm__cleanup_terminate( void * except ) {
|
---|
[0304215a] | 177 | if ( *(void**)except ) __cfaabi_ehm__delete_exception( *(exception_t **)except );
|
---|
[86d5ba7c] | 178 | }
|
---|
[fa4805f] | 179 |
|
---|
| 180 |
|
---|
| 181 | // We need a piece of storage to raise the exception
|
---|
| 182 | struct _Unwind_Exception this_exception_storage;
|
---|
| 183 |
|
---|
| 184 | // Function needed by force unwind
|
---|
| 185 | // It basically says to unwind the whole stack and then exit when we reach the end of the stack
|
---|
| 186 | static _Unwind_Reason_Code _Stop_Fn(
|
---|
| 187 | int version,
|
---|
| 188 | _Unwind_Action actions,
|
---|
| 189 | _Unwind_Exception_Class exceptionClass,
|
---|
| 190 | struct _Unwind_Exception * unwind_exception,
|
---|
[2a3b019] | 191 | struct _Unwind_Context * unwind_context,
|
---|
| 192 | void * stop_param) {
|
---|
[9cb89b87] | 193 | if ( actions & _UA_END_OF_STACK ) exit(1);
|
---|
| 194 | if ( actions & _UA_CLEANUP_PHASE ) return _URC_NO_REASON;
|
---|
[fa4805f] | 195 |
|
---|
| 196 | return _URC_FATAL_PHASE2_ERROR;
|
---|
| 197 | }
|
---|
| 198 |
|
---|
[86d5ba7c] | 199 | // The exception that is being thrown must already be stored.
|
---|
[36982fc] | 200 | __attribute__((noreturn)) void __cfaabi_ehm__begin_unwind(void) {
|
---|
[86d5ba7c] | 201 | if ( ! this_exception_context()->current_exception ) {
|
---|
| 202 | printf("UNWIND ERROR missing exception in begin unwind\n");
|
---|
| 203 | abort();
|
---|
| 204 | }
|
---|
[fa4805f] | 205 |
|
---|
| 206 |
|
---|
| 207 | // Call stdlibc to raise the exception
|
---|
| 208 | _Unwind_Reason_Code ret = _Unwind_RaiseException( &this_exception_storage );
|
---|
| 209 |
|
---|
[eb46fdf] | 210 | // If we reach here it means something happened. For resumption to work we need to find a way
|
---|
| 211 | // to return back to here. Most of them will probably boil down to setting a global flag and
|
---|
| 212 | // making the phase 1 either stop or fail. Causing an error on purpose may help avoiding
|
---|
| 213 | // unnecessary work but it might have some weird side effects. If we just pretend no handler
|
---|
| 214 | // was found that would work but may be expensive for no reason since we will always search
|
---|
| 215 | // the whole stack.
|
---|
[fa4805f] | 216 |
|
---|
[9cb89b87] | 217 | if ( ret == _URC_END_OF_STACK ) {
|
---|
[eb46fdf] | 218 | // No proper handler was found. This can be handled in many ways, C++ calls std::terminate.
|
---|
| 219 | // Here we force unwind the stack, basically raising a cancellation.
|
---|
[fa4805f] | 220 | printf("Uncaught exception %p\n", &this_exception_storage);
|
---|
| 221 |
|
---|
| 222 | ret = _Unwind_ForcedUnwind( &this_exception_storage, _Stop_Fn, (void*)0x22 );
|
---|
| 223 | printf("UNWIND ERROR %d after force unwind\n", ret);
|
---|
| 224 | abort();
|
---|
| 225 | }
|
---|
| 226 |
|
---|
[eb46fdf] | 227 | // We did not simply reach the end of the stack without finding a handler. This is an error.
|
---|
[fa4805f] | 228 | printf("UNWIND ERROR %d after raise exception\n", ret);
|
---|
| 229 | abort();
|
---|
| 230 | }
|
---|
| 231 |
|
---|
[0304215a] | 232 | void __cfaabi_ehm__throw_terminate( exception_t * val ) {
|
---|
[36982fc] | 233 | __cfaabi_dbg_print_safe("Throwing termination exception\n");
|
---|
[86d5ba7c] | 234 |
|
---|
[36982fc] | 235 | __cfaabi_ehm__allocate_exception( val );
|
---|
| 236 | __cfaabi_ehm__begin_unwind();
|
---|
[86d5ba7c] | 237 | }
|
---|
| 238 |
|
---|
[36982fc] | 239 | void __cfaabi_ehm__rethrow_terminate(void) {
|
---|
| 240 | __cfaabi_dbg_print_safe("Rethrowing termination exception\n");
|
---|
[fa4805f] | 241 |
|
---|
[36982fc] | 242 | __cfaabi_ehm__begin_unwind();
|
---|
[fa4805f] | 243 | }
|
---|
| 244 |
|
---|
[eb46fdf] | 245 | // This is our personality routine. For every stack frame annotated with
|
---|
| 246 | // ".cfi_personality 0x3,__gcfa_personality_v0" this function will be called twice when unwinding.
|
---|
| 247 | // Once in the search phase and once in the cleanup phase.
|
---|
[fa4805f] | 248 | _Unwind_Reason_Code __gcfa_personality_v0 (
|
---|
| 249 | int version, _Unwind_Action actions, unsigned long long exceptionClass,
|
---|
| 250 | struct _Unwind_Exception* unwind_exception,
|
---|
[2a3b019] | 251 | struct _Unwind_Context* unwind_context)
|
---|
[fa4805f] | 252 | {
|
---|
| 253 |
|
---|
[36982fc] | 254 | //__cfaabi_dbg_print_safe("CFA: 0x%lx\n", _Unwind_GetCFA(context));
|
---|
[eb46fdf] | 255 | __cfaabi_dbg_print_safe("Personality function (%d, %x, %llu, %p, %p):",
|
---|
[2a3b019] | 256 | version, actions, exceptionClass, unwind_exception, unwind_context);
|
---|
[fa4805f] | 257 |
|
---|
| 258 | // If we've reached the end of the stack then there is nothing much we can do...
|
---|
[9cb89b87] | 259 | if (actions & _UA_END_OF_STACK) return _URC_END_OF_STACK;
|
---|
[fa4805f] | 260 |
|
---|
| 261 | if (actions & _UA_SEARCH_PHASE) {
|
---|
[36982fc] | 262 | __cfaabi_dbg_print_safe(" lookup phase");
|
---|
[fa4805f] | 263 | }
|
---|
| 264 | else if (actions & _UA_CLEANUP_PHASE) {
|
---|
[36982fc] | 265 | __cfaabi_dbg_print_safe(" cleanup phase");
|
---|
[fa4805f] | 266 | }
|
---|
| 267 | // Just in case, probably can't actually happen
|
---|
| 268 | else {
|
---|
| 269 | printf(" error\n");
|
---|
| 270 | return _URC_FATAL_PHASE1_ERROR;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | // Get a pointer to the language specific data from which we will read what we need
|
---|
[9cb89b87] | 274 | const unsigned char * lsd = _Unwind_GetLanguageSpecificData( unwind_context );
|
---|
[fa4805f] | 275 |
|
---|
[9cb89b87] | 276 | if ( !lsd ) { //Nothing to do, keep unwinding
|
---|
[fa4805f] | 277 | printf(" no LSD");
|
---|
| 278 | goto UNWIND;
|
---|
| 279 | }
|
---|
| 280 |
|
---|
| 281 | // Get the instuction pointer and a reading pointer into the exception table
|
---|
| 282 | lsda_header_info lsd_info;
|
---|
[2a3b019] | 283 | const unsigned char * cur_ptr = parse_lsda_header(unwind_context, lsd, &lsd_info);
|
---|
| 284 | _Unwind_Ptr instruction_ptr = _Unwind_GetIP(unwind_context);
|
---|
| 285 |
|
---|
| 286 | struct exception_context_t * context = this_exception_context();
|
---|
[fa4805f] | 287 |
|
---|
| 288 | // Linearly search the table for stuff to do
|
---|
[9cb89b87] | 289 | while ( cur_ptr < lsd_info.action_table ) {
|
---|
[fa4805f] | 290 | _Unwind_Ptr callsite_start;
|
---|
| 291 | _Unwind_Ptr callsite_len;
|
---|
| 292 | _Unwind_Ptr callsite_landing_pad;
|
---|
| 293 | _uleb128_t callsite_action;
|
---|
| 294 |
|
---|
| 295 | // Decode the common stuff we have in here
|
---|
[eb46fdf] | 296 | cur_ptr = read_encoded_value(0, lsd_info.call_site_encoding, cur_ptr, &callsite_start);
|
---|
| 297 | cur_ptr = read_encoded_value(0, lsd_info.call_site_encoding, cur_ptr, &callsite_len);
|
---|
| 298 | cur_ptr = read_encoded_value(0, lsd_info.call_site_encoding, cur_ptr, &callsite_landing_pad);
|
---|
| 299 | cur_ptr = read_uleb128(cur_ptr, &callsite_action);
|
---|
[fa4805f] | 300 |
|
---|
| 301 | // Have we reach the correct frame info yet?
|
---|
[9cb89b87] | 302 | if ( lsd_info.Start + callsite_start + callsite_len < instruction_ptr ) {
|
---|
[e9145a3] | 303 | #ifdef __CFA_DEBUG_PRINT__
|
---|
[fa4805f] | 304 | void * ls = (void*)lsd_info.Start;
|
---|
| 305 | void * cs = (void*)callsite_start;
|
---|
| 306 | void * cl = (void*)callsite_len;
|
---|
| 307 | void * bp = (void*)lsd_info.Start + callsite_start;
|
---|
| 308 | void * ep = (void*)lsd_info.Start + callsite_start + callsite_len;
|
---|
| 309 | void * ip = (void*)instruction_ptr;
|
---|
[eb46fdf] | 310 | __cfaabi_dbg_print_safe("\nfound %p - %p (%p, %p, %p), looking for %p\n",
|
---|
| 311 | bp, ep, ls, cs, cl, ip);
|
---|
[e9145a3] | 312 | #endif // __CFA_DEBUG_PRINT__
|
---|
[fa4805f] | 313 | continue;
|
---|
| 314 | }
|
---|
| 315 |
|
---|
[eb46fdf] | 316 | // Have we gone too far?
|
---|
[9cb89b87] | 317 | if ( lsd_info.Start + callsite_start > instruction_ptr ) {
|
---|
[fa4805f] | 318 | printf(" gone too far");
|
---|
| 319 | break;
|
---|
| 320 | }
|
---|
| 321 |
|
---|
[9cb89b87] | 322 | // Check for what we must do:
|
---|
[2a3b019] | 323 | if ( 0 == callsite_landing_pad ) {
|
---|
| 324 | // Nothing to do, move along
|
---|
| 325 | __cfaabi_dbg_print_safe(" no landing pad");
|
---|
[9cb89b87] | 326 | } else if (actions & _UA_SEARCH_PHASE) {
|
---|
| 327 | // In search phase, these means we found a potential handler we must check.
|
---|
| 328 |
|
---|
| 329 | // We have arbitrarily decided that 0 means nothing to do and 1 means there is
|
---|
| 330 | // a potential handler. This doesn't seem to conflict the gcc default behavior.
|
---|
| 331 | if (callsite_action != 0) {
|
---|
| 332 | // Now we want to run some code to see if the handler matches
|
---|
| 333 | // This is the tricky part where we want to the power to run arbitrary code
|
---|
| 334 | // However, generating a new exception table entry and try routine every time
|
---|
| 335 | // is way more expansive than we might like
|
---|
| 336 | // The information we have is :
|
---|
| 337 | // - The GR (Series of registers)
|
---|
| 338 | // GR1=GP Global Pointer of frame ref by context
|
---|
| 339 | // - The instruction pointer
|
---|
| 340 | // - The instruction pointer info (???)
|
---|
| 341 | // - The CFA (Canonical Frame Address)
|
---|
| 342 | // - The BSP (Probably the base stack pointer)
|
---|
| 343 |
|
---|
| 344 |
|
---|
| 345 | // The current apprach uses one exception table entry per try block
|
---|
| 346 | _uleb128_t imatcher;
|
---|
| 347 | // Get the relative offset to the {...}?
|
---|
| 348 | cur_ptr = read_uleb128(cur_ptr, &imatcher);
|
---|
| 349 |
|
---|
| 350 | # if defined( __x86_64 )
|
---|
| 351 | _Unwind_Word match_pos = _Unwind_GetCFA(unwind_context) + 8;
|
---|
| 352 | # elif defined( __i386 )
|
---|
| 353 | _Unwind_Word match_pos = _Unwind_GetCFA(unwind_context) + 24;
|
---|
| 354 | # endif
|
---|
| 355 | int (*matcher)(exception_t *) = *(int(**)(exception_t *))match_pos;
|
---|
| 356 |
|
---|
| 357 | int index = matcher(context->current_exception);
|
---|
| 358 | _Unwind_Reason_Code ret = (0 == index)
|
---|
| 359 | ? _URC_CONTINUE_UNWIND : _URC_HANDLER_FOUND;
|
---|
| 360 | context->current_handler_index = index;
|
---|
| 361 |
|
---|
| 362 | // Based on the return value, check if we matched the exception
|
---|
| 363 | if (ret == _URC_HANDLER_FOUND) {
|
---|
| 364 | __cfaabi_dbg_print_safe(" handler found\n");
|
---|
| 365 | } else {
|
---|
| 366 | __cfaabi_dbg_print_safe(" no handler\n");
|
---|
[fa4805f] | 367 | }
|
---|
[9cb89b87] | 368 | return ret;
|
---|
[fa4805f] | 369 | }
|
---|
| 370 |
|
---|
[9cb89b87] | 371 | // This is only a cleanup handler, ignore it
|
---|
| 372 | __cfaabi_dbg_print_safe(" no action");
|
---|
| 373 | } else if (actions & _UA_CLEANUP_PHASE) {
|
---|
| 374 | // In clean-up phase, no destructors here but this could be the handler.
|
---|
| 375 |
|
---|
| 376 | if ( (callsite_action != 0) && !(actions & _UA_HANDLER_FRAME) ){
|
---|
| 377 | // If this is a potential exception handler
|
---|
| 378 | // but not the one that matched the exception in the seach phase,
|
---|
| 379 | // just ignore it
|
---|
| 380 | goto UNWIND;
|
---|
| 381 | }
|
---|
[fa4805f] | 382 |
|
---|
[9cb89b87] | 383 | // We need to run some clean-up or a handler
|
---|
| 384 | // These statment do the right thing but I don't know any specifics at all
|
---|
| 385 | _Unwind_SetGR( unwind_context, __builtin_eh_return_data_regno(0),
|
---|
| 386 | (_Unwind_Ptr)unwind_exception );
|
---|
| 387 | _Unwind_SetGR( unwind_context, __builtin_eh_return_data_regno(1), 0 );
|
---|
[fa4805f] | 388 |
|
---|
[9cb89b87] | 389 | // I assume this sets the instruction pointer to the adress of the landing pad
|
---|
| 390 | // It doesn't actually set it, it only state the value that needs to be set once we
|
---|
| 391 | // return _URC_INSTALL_CONTEXT
|
---|
| 392 | _Unwind_SetIP( unwind_context, ((lsd_info.LPStart) + (callsite_landing_pad)) );
|
---|
[fa4805f] | 393 |
|
---|
[9cb89b87] | 394 | __cfaabi_dbg_print_safe(" action\n");
|
---|
[fa4805f] | 395 |
|
---|
[9cb89b87] | 396 | // Return have some action to run
|
---|
| 397 | return _URC_INSTALL_CONTEXT;
|
---|
[fa4805f] | 398 | }
|
---|
| 399 | }
|
---|
| 400 | // No handling found
|
---|
[36982fc] | 401 | __cfaabi_dbg_print_safe(" table end reached\n");
|
---|
[fa4805f] | 402 |
|
---|
| 403 | UNWIND:
|
---|
[36982fc] | 404 | __cfaabi_dbg_print_safe(" unwind\n");
|
---|
[fa4805f] | 405 |
|
---|
| 406 | // Keep unwinding the stack
|
---|
| 407 | return _URC_CONTINUE_UNWIND;
|
---|
| 408 | }
|
---|
| 409 |
|
---|
[0f6ac828] | 410 | #pragma GCC push_options
|
---|
| 411 | #pragma GCC optimize("O0")
|
---|
| 412 |
|
---|
[eb46fdf] | 413 | // Try statements are hoisted out see comments for details. While this could probably be unique
|
---|
| 414 | // and simply linked from libcfa but there is one problem left, see the exception table for details
|
---|
[fa4805f] | 415 | __attribute__((noinline))
|
---|
[36982fc] | 416 | void __cfaabi_ehm__try_terminate(void (*try_block)(),
|
---|
[0304215a] | 417 | void (*catch_block)(int index, exception_t * except),
|
---|
| 418 | __attribute__((unused)) int (*match_block)(exception_t * except)) {
|
---|
[fa4805f] | 419 | //! volatile int xy = 0;
|
---|
| 420 | //! printf("%p %p %p %p\n", &try_block, &catch_block, &match_block, &xy);
|
---|
| 421 |
|
---|
[eb46fdf] | 422 | // Setup the personality routine and exception table.
|
---|
[9cb89b87] | 423 | // Unforturnately these clobber gcc cancellation support which means we can't get access to
|
---|
| 424 | // the attribute cleanup tables at the same time. We would have to inspect the assembly to
|
---|
| 425 | // create a new set ourselves.
|
---|
[3b9c674] | 426 | #ifdef __PIC__
|
---|
| 427 | asm volatile (".cfi_personality 0x9b,CFA.ref.__gcfa_personality_v0");
|
---|
| 428 | asm volatile (".cfi_lsda 0x1b, .LLSDACFA2");
|
---|
| 429 | #else
|
---|
[fa4805f] | 430 | asm volatile (".cfi_personality 0x3,__gcfa_personality_v0");
|
---|
| 431 | asm volatile (".cfi_lsda 0x3, .LLSDACFA2");
|
---|
[3b9c674] | 432 | #endif
|
---|
[fa4805f] | 433 |
|
---|
[b947fb2] | 434 | // Label which defines the start of the area for which the handler is setup.
|
---|
[fa4805f] | 435 | asm volatile (".TRYSTART:");
|
---|
| 436 |
|
---|
| 437 | // The actual statements of the try blocks
|
---|
| 438 | try_block();
|
---|
| 439 |
|
---|
| 440 | // asm statement to prevent deadcode removal
|
---|
| 441 | asm volatile goto ("" : : : : CATCH );
|
---|
| 442 |
|
---|
[eb46fdf] | 443 | // Normal return for when there is no throw.
|
---|
[fa4805f] | 444 | return;
|
---|
| 445 |
|
---|
| 446 | // Exceptionnal path
|
---|
| 447 | CATCH : __attribute__(( unused ));
|
---|
[b947fb2] | 448 | // Label which defines the end of the area for which the handler is setup.
|
---|
[fa4805f] | 449 | asm volatile (".TRYEND:");
|
---|
[9cb89b87] | 450 | // Label which defines the start of the exception landing pad. Basically what is called when
|
---|
| 451 | // the exception is caught. Note, if multiple handlers are given, the multiplexing should be
|
---|
| 452 | // done by the generated code, not the exception runtime.
|
---|
[fa4805f] | 453 | asm volatile (".CATCH:");
|
---|
| 454 |
|
---|
| 455 | // Exception handler
|
---|
[2a3b019] | 456 | // Note: Saving the exception context on the stack breaks termination exceptions.
|
---|
| 457 | catch_block( this_exception_context()->current_handler_index,
|
---|
| 458 | this_exception_context()->current_exception );
|
---|
[fa4805f] | 459 | }
|
---|
| 460 |
|
---|
[eb46fdf] | 461 | // Exception table data we need to generate. While this is almost generic, the custom data refers
|
---|
| 462 | // to {*}try_terminate, which is no way generic. Some more works need to be done if we want to
|
---|
| 463 | // have a single call to the try routine.
|
---|
[b947fb2] | 464 |
|
---|
[3b9c674] | 465 | #ifdef __PIC__
|
---|
| 466 | asm (
|
---|
| 467 | // HEADER
|
---|
| 468 | ".LFECFA1:\n"
|
---|
| 469 | " .globl __gcfa_personality_v0\n"
|
---|
| 470 | " .section .gcc_except_table,\"a\",@progbits\n"
|
---|
| 471 | // TABLE HEADER (important field is the BODY length at the end)
|
---|
| 472 | ".LLSDACFA2:\n"
|
---|
| 473 | " .byte 0xff\n"
|
---|
| 474 | " .byte 0xff\n"
|
---|
| 475 | " .byte 0x1\n"
|
---|
| 476 | " .uleb128 .LLSDACSECFA2-.LLSDACSBCFA2\n"
|
---|
| 477 | // BODY (language specific data)
|
---|
| 478 | // This uses language specific data and can be modified arbitrarily
|
---|
| 479 | // We use handled area offset, handled area length,
|
---|
| 480 | // handler landing pad offset and 1 (action code, gcc seems to use 0).
|
---|
| 481 | ".LLSDACSBCFA2:\n"
|
---|
| 482 | " .uleb128 .TRYSTART-__cfaabi_ehm__try_terminate\n"
|
---|
| 483 | " .uleb128 .TRYEND-.TRYSTART\n"
|
---|
| 484 | " .uleb128 .CATCH-__cfaabi_ehm__try_terminate\n"
|
---|
| 485 | " .uleb128 1\n"
|
---|
| 486 | ".LLSDACSECFA2:\n"
|
---|
| 487 | // TABLE FOOTER
|
---|
| 488 | " .text\n"
|
---|
| 489 | " .size __cfaabi_ehm__try_terminate, .-__cfaabi_ehm__try_terminate\n"
|
---|
| 490 | );
|
---|
| 491 |
|
---|
| 492 | // Somehow this piece of helps with the resolution of debug symbols.
|
---|
| 493 | __attribute__((unused)) static const int dummy = 0;
|
---|
| 494 |
|
---|
| 495 | asm (
|
---|
| 496 | // Add a hidden symbol which points at the function.
|
---|
| 497 | " .hidden CFA.ref.__gcfa_personality_v0\n"
|
---|
| 498 | " .weak CFA.ref.__gcfa_personality_v0\n"
|
---|
| 499 | // No clue what this does specifically
|
---|
| 500 | " .section .data.rel.local.CFA.ref.__gcfa_personality_v0,\"awG\",@progbits,CFA.ref.__gcfa_personality_v0,comdat\n"
|
---|
| 501 | " .align 8\n"
|
---|
| 502 | " .type CFA.ref.__gcfa_personality_v0, @object\n"
|
---|
| 503 | " .size CFA.ref.__gcfa_personality_v0, 8\n"
|
---|
| 504 | "CFA.ref.__gcfa_personality_v0:\n"
|
---|
| 505 | #if defined( __x86_64 )
|
---|
| 506 | " .quad __gcfa_personality_v0\n"
|
---|
| 507 | #else // then __i386
|
---|
| 508 | " .long __gcfa_personality_v0\n"
|
---|
| 509 | #endif
|
---|
| 510 | );
|
---|
| 511 | #else // __PIC__
|
---|
[fa4805f] | 512 | asm (
|
---|
[eb46fdf] | 513 | // HEADER
|
---|
[fa4805f] | 514 | ".LFECFA1:\n"
|
---|
| 515 | " .globl __gcfa_personality_v0\n"
|
---|
| 516 | " .section .gcc_except_table,\"a\",@progbits\n"
|
---|
[eb46fdf] | 517 | // TABLE HEADER (important field is the BODY length at the end)
|
---|
| 518 | ".LLSDACFA2:\n"
|
---|
[fa4805f] | 519 | " .byte 0xff\n"
|
---|
| 520 | " .byte 0xff\n"
|
---|
| 521 | " .byte 0x1\n"
|
---|
[eb46fdf] | 522 | " .uleb128 .LLSDACSECFA2-.LLSDACSBCFA2\n"
|
---|
| 523 | // BODY (language specific data)
|
---|
| 524 | ".LLSDACSBCFA2:\n"
|
---|
| 525 | // Handled area start (relative to start of function)
|
---|
| 526 | " .uleb128 .TRYSTART-__cfaabi_ehm__try_terminate\n"
|
---|
| 527 | // Handled area length
|
---|
| 528 | " .uleb128 .TRYEND-.TRYSTART\n"
|
---|
| 529 | // Handler landing pad address (relative to start of function)
|
---|
| 530 | " .uleb128 .CATCH-__cfaabi_ehm__try_terminate\n"
|
---|
| 531 | // Action code, gcc seems to always use 0.
|
---|
| 532 | " .uleb128 1\n"
|
---|
| 533 | // TABLE FOOTER
|
---|
| 534 | ".LLSDACSECFA2:\n"
|
---|
| 535 | " .text\n"
|
---|
[36982fc] | 536 | " .size __cfaabi_ehm__try_terminate, .-__cfaabi_ehm__try_terminate\n"
|
---|
[fa4805f] | 537 | " .ident \"GCC: (Ubuntu 6.2.0-3ubuntu11~16.04) 6.2.0 20160901\"\n"
|
---|
[3b9c674] | 538 | " .section .note.GNU-stack,\"x\",@progbits\n"
|
---|
[fa4805f] | 539 | );
|
---|
[3b9c674] | 540 | #endif // __PIC__
|
---|
| 541 |
|
---|
| 542 | #pragma GCC pop_options
|
---|