| 1 | #include "exception.h"
 | 
|---|
| 2 | 
 | 
|---|
| 3 | // Implementation of the secret header.
 | 
|---|
| 4 | 
 | 
|---|
| 5 | #include <stdlib.h>
 | 
|---|
| 6 | #include <stdio.h>
 | 
|---|
| 7 | #include <unwind.h>
 | 
|---|
| 8 | 
 | 
|---|
| 9 | #include "lsda.h"
 | 
|---|
| 10 | 
 | 
|---|
| 11 | struct shared_stack_t shared_stack;
 | 
|---|
| 12 | 
 | 
|---|
| 13 | 
 | 
|---|
| 14 | // This macro should be the only thing that needs to change across machines.
 | 
|---|
| 15 | // Used in the personality function, way down in termination.
 | 
|---|
| 16 | // struct _Unwind_Context * -> _Unwind_Reason_Code(*)()
 | 
|---|
| 17 | #define MATCHER_FROM_CONTEXT(ptr_to_context) \
 | 
|---|
| 18 |         (*(_Unwind_Reason_Code(**)())(_Unwind_GetCFA(ptr_to_context) + 8))
 | 
|---|
| 19 | 
 | 
|---|
| 20 | 
 | 
|---|
| 21 | // RESUMPTION ================================================================
 | 
|---|
| 22 | 
 | 
|---|
| 23 | void __throw_resume(exception except) {
 | 
|---|
| 24 | 
 | 
|---|
| 25 |         // DEBUG
 | 
|---|
| 26 |         printf("Throwing resumption exception %d\n", except);
 | 
|---|
| 27 | 
 | 
|---|
| 28 |         struct __try_resume_node * original_head = shared_stack.current_resume;
 | 
|---|
| 29 |         struct __try_resume_node * current =
 | 
|---|
| 30 |                 (original_head) ? original_head->next : shared_stack.top_resume;
 | 
|---|
| 31 | 
 | 
|---|
| 32 |         for ( ; current ; current = current->next) {
 | 
|---|
| 33 |                 shared_stack.current_resume = current;
 | 
|---|
| 34 |                 if (current->try_to_handle(except)) {
 | 
|---|
| 35 |                         shared_stack.current_resume = original_head;
 | 
|---|
| 36 |                         return;
 | 
|---|
| 37 |                 }
 | 
|---|
| 38 |         }
 | 
|---|
| 39 | 
 | 
|---|
| 40 |         printf("Unhandled exception %d\n", except);
 | 
|---|
| 41 |         shared_stack.current_resume = original_head;
 | 
|---|
| 42 | 
 | 
|---|
| 43 |         // Fall back to termination:
 | 
|---|
| 44 |         __throw_terminate(except);
 | 
|---|
| 45 |         // TODO: Default handler for resumption.
 | 
|---|
| 46 | }
 | 
|---|
| 47 | 
 | 
|---|
| 48 | /* QUESTION: Could interupts interact with exception handling?
 | 
|---|
| 49 | Ex. could an context switch stop execution, and we get an exception when we
 | 
|---|
| 50 | come back? Is so resumption has to go:
 | 
|---|
| 51 | + create node (init next and handler)
 | 
|---|
| 52 | + prepare cleanup (add a cleanup hook with the ..._cleaup function)
 | 
|---|
| 53 |   also the cleanup has to be the next node, not just a pop from the list.
 | 
|---|
| 54 | + push node on the list (change the existing node)
 | 
|---|
| 55 | Which if an exception can come from anywhere, might just be required to ensure
 | 
|---|
| 56 | the list is valid.
 | 
|---|
| 57 | 
 | 
|---|
| 58 | void __try_resume_setup(struct __try_resume_node * node,
 | 
|---|
| 59 |                         bool (*handler)(exception except) {
 | 
|---|
| 60 |         node->next = shared_stack.top_resume;
 | 
|---|
| 61 |         node->try_to_handle = handler;
 | 
|---|
| 62 |         shared_stack.top_resume = node;
 | 
|---|
| 63 | }*/
 | 
|---|
| 64 | 
 | 
|---|
| 65 | // We have a single cleanup function
 | 
|---|
| 66 | void __try_resume_cleanup(struct __try_resume_node * node) {
 | 
|---|
| 67 |         shared_stack.top_resume = node->next;
 | 
|---|
| 68 | }
 | 
|---|
| 69 | 
 | 
|---|
| 70 | 
 | 
|---|
| 71 | // TERMINATION ===============================================================
 | 
|---|
| 72 | 
 | 
|---|
| 73 | // Requires -fexceptions to work.
 | 
|---|
| 74 | 
 | 
|---|
| 75 | // Global which defines the current exception
 | 
|---|
| 76 | // Currently an int just to make matching easier
 | 
|---|
| 77 | //int this_exception; (became shared_stack.current_exception)
 | 
|---|
| 78 | 
 | 
|---|
| 79 | // We need a piece of storage to raise the exception
 | 
|---|
| 80 | struct _Unwind_Exception this_exception_storage;
 | 
|---|
| 81 | 
 | 
|---|
| 82 | // Function needed by force unwind
 | 
|---|
| 83 | // It basically says to unwind the whole stack and then exit when we reach the end of the stack
 | 
|---|
| 84 | static _Unwind_Reason_Code _Stop_Fn(
 | 
|---|
| 85 |                 int version,
 | 
|---|
| 86 |                 _Unwind_Action actions,
 | 
|---|
| 87 |                 _Unwind_Exception_Class exceptionClass,
 | 
|---|
| 88 |                 struct _Unwind_Exception * unwind_exception,
 | 
|---|
| 89 |                 struct _Unwind_Context * context,
 | 
|---|
| 90 |                 void * some_param) {
 | 
|---|
| 91 |         if( actions & _UA_END_OF_STACK  ) exit(1);
 | 
|---|
| 92 |         if( actions & _UA_CLEANUP_PHASE ) return _URC_NO_REASON;
 | 
|---|
| 93 | 
 | 
|---|
| 94 |         return _URC_FATAL_PHASE2_ERROR;
 | 
|---|
| 95 | }
 | 
|---|
| 96 | 
 | 
|---|
| 97 | void __throw_terminate( int val ) {
 | 
|---|
| 98 |         // Store the current exception
 | 
|---|
| 99 |         shared_stack.current_exception = val;
 | 
|---|
| 100 | 
 | 
|---|
| 101 |         // DEBUG
 | 
|---|
| 102 |         printf("Throwing termination exception %d\n", val);
 | 
|---|
| 103 | 
 | 
|---|
| 104 |         // Call stdlibc to raise the exception
 | 
|---|
| 105 |         _Unwind_Reason_Code ret = _Unwind_RaiseException( &this_exception_storage );
 | 
|---|
| 106 | 
 | 
|---|
| 107 |         // If we reach here it means something happened
 | 
|---|
| 108 |         // For resumption to work we need to find a way to return back to here
 | 
|---|
| 109 |         // Most of them will probably boil down to setting a global flag and making the phase 1 either stop or fail.
 | 
|---|
| 110 |         // Causing an error on purpose may help avoiding unnecessary work but it might have some weird side effects.
 | 
|---|
| 111 |         // If we just pretend no handler was found that would work but may be expensive for no reason since we will always
 | 
|---|
| 112 |         // search the whole stack
 | 
|---|
| 113 | 
 | 
|---|
| 114 |         if( ret == _URC_END_OF_STACK ) {
 | 
|---|
| 115 |                 // No proper handler was found
 | 
|---|
| 116 |                 // This can be handled in several way
 | 
|---|
| 117 |                 // C++ calls std::terminate
 | 
|---|
| 118 |                 // Here we force unwind the stack, basically raising a cancellation
 | 
|---|
| 119 |                 printf("Uncaught exception %p\n", &this_exception_storage);
 | 
|---|
| 120 | 
 | 
|---|
| 121 |                 ret = _Unwind_ForcedUnwind( &this_exception_storage, _Stop_Fn, (void*)0x22 );
 | 
|---|
| 122 |                 printf("UNWIND ERROR %d after force unwind\n", ret);
 | 
|---|
| 123 |                 abort();
 | 
|---|
| 124 |         }
 | 
|---|
| 125 | 
 | 
|---|
| 126 |         // We did not simply reach the end of the stack without finding a handler,
 | 
|---|
| 127 |         // Something wen't wrong
 | 
|---|
| 128 |         printf("UNWIND ERROR %d after raise exception\n", ret);
 | 
|---|
| 129 |         abort();
 | 
|---|
| 130 | }
 | 
|---|
| 131 | 
 | 
|---|
| 132 | // Nesting this the other way would probably be faster.
 | 
|---|
| 133 | void __rethrow_terminate(void) {
 | 
|---|
| 134 |         // DEBUG
 | 
|---|
| 135 |         printf("Rethrowing termination exception\n");
 | 
|---|
| 136 | 
 | 
|---|
| 137 |         __throw_terminate(shared_stack.current_exception);
 | 
|---|
| 138 | }
 | 
|---|
| 139 | 
 | 
|---|
| 140 | // This is our personality routine
 | 
|---|
| 141 | // For every stack frame anotated with ".cfi_personality 0x3,__gcfa_personality_v0"
 | 
|---|
| 142 | // This function will be called twice when unwinding
 | 
|---|
| 143 | // Once in the search phased and once in the cleanup phase
 | 
|---|
| 144 | _Unwind_Reason_Code __gcfa_personality_v0 (
 | 
|---|
| 145 |                 int version, _Unwind_Action actions, unsigned long long exceptionClass,
 | 
|---|
| 146 |                 struct _Unwind_Exception* unwind_exception,
 | 
|---|
| 147 |                 struct _Unwind_Context* context)
 | 
|---|
| 148 | {
 | 
|---|
| 149 | 
 | 
|---|
| 150 |         // DEBUG
 | 
|---|
| 151 |         //printf("CFA: 0x%lx\n", _Unwind_GetCFA(context));
 | 
|---|
| 152 |         printf("Personality function (%d, %x, %llu, %p, %p):", version, actions, exceptionClass, unwind_exception, context);
 | 
|---|
| 153 | 
 | 
|---|
| 154 |         // If we've reached the end of the stack then there is nothing much we can do...
 | 
|---|
| 155 |         if( actions & _UA_END_OF_STACK ) return _URC_END_OF_STACK;
 | 
|---|
| 156 | 
 | 
|---|
| 157 |         // DEBUG
 | 
|---|
| 158 |         if (actions & _UA_SEARCH_PHASE) {
 | 
|---|
| 159 |                 printf(" lookup phase");
 | 
|---|
| 160 |         }
 | 
|---|
| 161 |         // DEBUG
 | 
|---|
| 162 |         else if (actions & _UA_CLEANUP_PHASE) {
 | 
|---|
| 163 |                 printf(" cleanup phase");
 | 
|---|
| 164 |         }
 | 
|---|
| 165 |         // Just in case, probably can't actually happen
 | 
|---|
| 166 |         else {
 | 
|---|
| 167 |                 printf(" error\n");
 | 
|---|
| 168 |                 return _URC_FATAL_PHASE1_ERROR;
 | 
|---|
| 169 |         }
 | 
|---|
| 170 | 
 | 
|---|
| 171 |         // Get a pointer to the language specific data from which we will read what we need
 | 
|---|
| 172 |         const unsigned char * lsd = (const unsigned char*) _Unwind_GetLanguageSpecificData( context );
 | 
|---|
| 173 | 
 | 
|---|
| 174 |         if( !lsd ) {    //Nothing to do, keep unwinding
 | 
|---|
| 175 |                 printf(" no LSD");
 | 
|---|
| 176 |                 goto UNWIND;
 | 
|---|
| 177 |         }
 | 
|---|
| 178 | 
 | 
|---|
| 179 |         // Get the instuction pointer and a reading pointer into the exception table
 | 
|---|
| 180 |         lsda_header_info lsd_info;
 | 
|---|
| 181 |         const unsigned char * cur_ptr = parse_lsda_header( context, lsd, &lsd_info);
 | 
|---|
| 182 |         _Unwind_Ptr instruction_ptr = _Unwind_GetIP( context );
 | 
|---|
| 183 | 
 | 
|---|
| 184 |         // Linearly search the table for stuff to do
 | 
|---|
| 185 |         while( cur_ptr < lsd_info.action_table ) {
 | 
|---|
| 186 |                 _Unwind_Ptr callsite_start;
 | 
|---|
| 187 |                 _Unwind_Ptr callsite_len;
 | 
|---|
| 188 |                 _Unwind_Ptr callsite_landing_pad;
 | 
|---|
| 189 |                 _uleb128_t  callsite_action;
 | 
|---|
| 190 | 
 | 
|---|
| 191 |                 // Decode the common stuff we have in here
 | 
|---|
| 192 |                 cur_ptr = read_encoded_value (0, lsd_info.call_site_encoding, cur_ptr, &callsite_start);
 | 
|---|
| 193 |                 cur_ptr = read_encoded_value (0, lsd_info.call_site_encoding, cur_ptr, &callsite_len);
 | 
|---|
| 194 |                 cur_ptr = read_encoded_value (0, lsd_info.call_site_encoding, cur_ptr, &callsite_landing_pad);
 | 
|---|
| 195 |                 cur_ptr = read_uleb128 (cur_ptr, &callsite_action);
 | 
|---|
| 196 | 
 | 
|---|
| 197 |                 // Have we reach the correct frame info yet?
 | 
|---|
| 198 |                 if( lsd_info.Start + callsite_start + callsite_len < instruction_ptr ) {
 | 
|---|
| 199 |                         //DEBUG BEGIN
 | 
|---|
| 200 |                         void * ls = (void*)lsd_info.Start;
 | 
|---|
| 201 |                         void * cs = (void*)callsite_start;
 | 
|---|
| 202 |                         void * cl = (void*)callsite_len;
 | 
|---|
| 203 |                         void * bp = (void*)lsd_info.Start + callsite_start;
 | 
|---|
| 204 |                         void * ep = (void*)lsd_info.Start + callsite_start + callsite_len;
 | 
|---|
| 205 |                         void * ip = (void*)instruction_ptr;
 | 
|---|
| 206 |                         printf("\nfound %p - %p (%p, %p, %p), looking for %p\n", bp, ep, ls, cs, cl, ip);
 | 
|---|
| 207 |                         //DEBUG END
 | 
|---|
| 208 |                         continue;
 | 
|---|
| 209 |                 }
 | 
|---|
| 210 | 
 | 
|---|
| 211 |                 // Have we gone too far
 | 
|---|
| 212 |                 if( lsd_info.Start + callsite_start > instruction_ptr ) {
 | 
|---|
| 213 |                         printf(" gone too far");
 | 
|---|
| 214 |                         break;
 | 
|---|
| 215 |                 }
 | 
|---|
| 216 | 
 | 
|---|
| 217 |                 // Something to do?
 | 
|---|
| 218 |                 if( callsite_landing_pad ) {
 | 
|---|
| 219 |                         // Which phase are we in
 | 
|---|
| 220 |                         if (actions & _UA_SEARCH_PHASE) {
 | 
|---|
| 221 |                                 // Search phase, this means we probably found a potential handler and must check if it is a match
 | 
|---|
| 222 | 
 | 
|---|
| 223 |                                 // If we have arbitrarily decided that 0 means nothing to do and 1 means there is a potential handler
 | 
|---|
| 224 |                                 // This doesn't seem to conflict the gcc default behavior
 | 
|---|
| 225 |                                 if (callsite_action != 0) {
 | 
|---|
| 226 |                                         // Now we want to run some code to see if the handler matches
 | 
|---|
| 227 |                                         // This is the tricky part where we want to the power to run arbitrary code
 | 
|---|
| 228 |                                         // However, generating a new exception table entry and try routine every time
 | 
|---|
| 229 |                                         // is way more expansive than we might like
 | 
|---|
| 230 |                                         // The information we have is :
 | 
|---|
| 231 |                                         //  - The GR (Series of registers)
 | 
|---|
| 232 |                                         //    GR1=GP Global Pointer of frame ref by context
 | 
|---|
| 233 |                                         //  - The instruction pointer
 | 
|---|
| 234 |                                         //  - The instruction pointer info (???)
 | 
|---|
| 235 |                                         //  - The CFA (Canonical Frame Address)
 | 
|---|
| 236 |                                         //  - The BSP (Probably the base stack pointer)
 | 
|---|
| 237 | 
 | 
|---|
| 238 | 
 | 
|---|
| 239 |                                         // The current apprach uses one exception table entry per try block
 | 
|---|
| 240 |                                         _uleb128_t imatcher;
 | 
|---|
| 241 |                                         // Get the relative offset to the
 | 
|---|
| 242 |                                         cur_ptr = read_uleb128 (cur_ptr, &imatcher);
 | 
|---|
| 243 | 
 | 
|---|
| 244 |                                         // Get a function pointer from the relative offset and call it
 | 
|---|
| 245 |                                         // _Unwind_Reason_Code (*matcher)() = (_Unwind_Reason_Code (*)())lsd_info.LPStart + imatcher;                                   
 | 
|---|
| 246 | 
 | 
|---|
| 247 |                                         _Unwind_Reason_Code (*matcher)() =
 | 
|---|
| 248 |                                                 MATCHER_FROM_CONTEXT(context);
 | 
|---|
| 249 |                                         int index = matcher(shared_stack.current_exception);
 | 
|---|
| 250 |                                         _Unwind_Reason_Code ret = (0 == index)
 | 
|---|
| 251 |                                                 ? _URC_CONTINUE_UNWIND : _URC_HANDLER_FOUND;
 | 
|---|
| 252 |                                         shared_stack.current_handler_index = index;
 | 
|---|
| 253 | 
 | 
|---|
| 254 |                                         // Based on the return value, check if we matched the exception
 | 
|---|
| 255 |                                         if( ret == _URC_HANDLER_FOUND) printf(" handler found\n");
 | 
|---|
| 256 |                                         else printf(" no handler\n");
 | 
|---|
| 257 |                                         return ret;
 | 
|---|
| 258 |                                 }
 | 
|---|
| 259 | 
 | 
|---|
| 260 |                                 // This is only a cleanup handler, ignore it
 | 
|---|
| 261 |                                 printf(" no action");
 | 
|---|
| 262 |                         }
 | 
|---|
| 263 |                         else if (actions & _UA_CLEANUP_PHASE) {
 | 
|---|
| 264 | 
 | 
|---|
| 265 |                                 if( (callsite_action != 0) && !(actions & _UA_HANDLER_FRAME) ){
 | 
|---|
| 266 |                                         // If this is a potential exception handler
 | 
|---|
| 267 |                                         // but not the one that matched the exception in the seach phase,
 | 
|---|
| 268 |                                         // just ignore it
 | 
|---|
| 269 |                                         goto UNWIND;
 | 
|---|
| 270 |                                 }
 | 
|---|
| 271 | 
 | 
|---|
| 272 |                                 // We need to run some clean-up or a handler
 | 
|---|
| 273 |                                 // These statment do the right thing but I don't know any specifics at all
 | 
|---|
| 274 |                                 _Unwind_SetGR( context, __builtin_eh_return_data_regno(0), (_Unwind_Ptr) unwind_exception );
 | 
|---|
| 275 |                                 _Unwind_SetGR( context, __builtin_eh_return_data_regno(1), 0 );
 | 
|---|
| 276 | 
 | 
|---|
| 277 |                                 // I assume this sets the instruction pointer to the adress of the landing pad
 | 
|---|
| 278 |                                 // It doesn't actually set it, it only state the value that needs to be set once we return _URC_INSTALL_CONTEXT
 | 
|---|
| 279 |                                 _Unwind_SetIP( context, lsd_info.LPStart + callsite_landing_pad );
 | 
|---|
| 280 | 
 | 
|---|
| 281 |                                 // DEBUG
 | 
|---|
| 282 |                                 printf(" action\n");
 | 
|---|
| 283 | 
 | 
|---|
| 284 |                                 // Return have some action to run
 | 
|---|
| 285 |                                 return _URC_INSTALL_CONTEXT;
 | 
|---|
| 286 |                         }
 | 
|---|
| 287 |                 }
 | 
|---|
| 288 | 
 | 
|---|
| 289 |                 // Nothing to do, move along
 | 
|---|
| 290 |                 printf(" no landing pad");
 | 
|---|
| 291 |         }
 | 
|---|
| 292 |         // No handling found
 | 
|---|
| 293 |         printf(" table end reached\n");
 | 
|---|
| 294 | 
 | 
|---|
| 295 |         // DEBUG
 | 
|---|
| 296 |         UNWIND:
 | 
|---|
| 297 |         printf(" unwind\n");
 | 
|---|
| 298 | 
 | 
|---|
| 299 |         // Keep unwinding the stack
 | 
|---|
| 300 |         return _URC_CONTINUE_UNWIND;
 | 
|---|
| 301 | }
 | 
|---|
| 302 | 
 | 
|---|
| 303 | // Try statements are hoisted out see comments for details
 | 
|---|
| 304 | // With this could probably be unique and simply linked from
 | 
|---|
| 305 | // libcfa but there is one problem left, see the exception table
 | 
|---|
| 306 | // for details
 | 
|---|
| 307 | __attribute__((noinline))
 | 
|---|
| 308 | void __try_terminate(void (*try_block)(),
 | 
|---|
| 309 |                 void (*catch_block)(int index, exception except),
 | 
|---|
| 310 |                 __attribute__((unused)) int (*match_block)(exception except)) {
 | 
|---|
| 311 |         //! volatile int xy = 0;
 | 
|---|
| 312 |         //! printf("%p %p %p %p\n", &try_block, &catch_block, &match_block, &xy);
 | 
|---|
| 313 | 
 | 
|---|
| 314 |         // Setup statments
 | 
|---|
| 315 |         // These 2 statments won't actually result in any code,
 | 
|---|
| 316 |         // they only setup global tables.
 | 
|---|
| 317 |         // However, they clobber gcc cancellation support from gcc.
 | 
|---|
| 318 |         // We can replace the personality routine but replacing the exception
 | 
|---|
| 319 |         // table gcc generates is not really doable, it generates labels based
 | 
|---|
| 320 |         // on how the assembly works.
 | 
|---|
| 321 |         // Setup the personality routine
 | 
|---|
| 322 |         asm volatile (".cfi_personality 0x3,__gcfa_personality_v0");
 | 
|---|
| 323 |         // Setup the exception table
 | 
|---|
| 324 |         asm volatile (".cfi_lsda 0x3, .LLSDACFA2");
 | 
|---|
| 325 | 
 | 
|---|
| 326 |         // Label which defines the start of the area for which the handler is setup
 | 
|---|
| 327 |         asm volatile (".TRYSTART:");
 | 
|---|
| 328 | 
 | 
|---|
| 329 |         // The actual statements of the try blocks
 | 
|---|
| 330 |         try_block();
 | 
|---|
| 331 | 
 | 
|---|
| 332 |         // asm statement to prevent deadcode removal
 | 
|---|
| 333 |         asm volatile goto ("" : : : : CATCH );
 | 
|---|
| 334 | 
 | 
|---|
| 335 |         // Normal return
 | 
|---|
| 336 |         return;
 | 
|---|
| 337 | 
 | 
|---|
| 338 |         // Exceptionnal path
 | 
|---|
| 339 |         CATCH : __attribute__(( unused ));
 | 
|---|
| 340 |         // Label which defines the end of the area for which the handler is setup
 | 
|---|
| 341 |         asm volatile (".TRYEND:");
 | 
|---|
| 342 |         // Label which defines the start of the exception landing pad
 | 
|---|
| 343 |         // basically what will be called when the exception is caught
 | 
|---|
| 344 |         // Note, if multiple handlers are given, the multiplexing should be done
 | 
|---|
| 345 |         // by the generated code, not the exception runtime
 | 
|---|
| 346 |         asm volatile (".CATCH:");
 | 
|---|
| 347 | 
 | 
|---|
| 348 |         // Exception handler
 | 
|---|
| 349 |         catch_block(shared_stack.current_handler_index,
 | 
|---|
| 350 |                     shared_stack.current_exception);
 | 
|---|
| 351 | }
 | 
|---|
| 352 | 
 | 
|---|
| 353 | // Exception table data we need to generate
 | 
|---|
| 354 | // While this is almost generic, the custom data refers to
 | 
|---|
| 355 | // foo_try_match try match, which is no way generic
 | 
|---|
| 356 | // Some more works need to be done if we want to have a single
 | 
|---|
| 357 | // call to the try routine
 | 
|---|
| 358 | asm (
 | 
|---|
| 359 |         //HEADER
 | 
|---|
| 360 |         ".LFECFA1:\n"
 | 
|---|
| 361 |         "       .globl  __gcfa_personality_v0\n"
 | 
|---|
| 362 |         "       .section        .gcc_except_table,\"a\",@progbits\n"
 | 
|---|
| 363 |         ".LLSDACFA2:\n"                                                 //TABLE header
 | 
|---|
| 364 |         "       .byte   0xff\n"
 | 
|---|
| 365 |         "       .byte   0xff\n"
 | 
|---|
| 366 |         "       .byte   0x1\n"
 | 
|---|
| 367 |         "       .uleb128 .LLSDACSECFA2-.LLSDACSBCFA2\n"         // BODY length
 | 
|---|
| 368 |         // Body uses language specific data and therefore could be modified arbitrarily
 | 
|---|
| 369 |         ".LLSDACSBCFA2:\n"                                              // BODY start
 | 
|---|
| 370 |         "       .uleb128 .TRYSTART-__try_terminate\n"           // Handled area start  (relative to start of function)
 | 
|---|
| 371 |         "       .uleb128 .TRYEND-.TRYSTART\n"                           // Handled area length
 | 
|---|
| 372 |         "       .uleb128 .CATCH-__try_terminate\n"                              // Hanlder landing pad adress  (relative to start of function)
 | 
|---|
| 373 |         "       .uleb128 1\n"                                           // Action code, gcc seems to use always 0
 | 
|---|
| 374 |         ".LLSDACSECFA2:\n"                                              // BODY end
 | 
|---|
| 375 |         "       .text\n"                                                        // TABLE footer
 | 
|---|
| 376 |         "       .size   __try_terminate, .-__try_terminate\n"
 | 
|---|
| 377 |         "       .ident  \"GCC: (Ubuntu 6.2.0-3ubuntu11~16.04) 6.2.0 20160901\"\n"
 | 
|---|
| 378 | //      "       .section        .note.GNU-stack,\"x\",@progbits\n"
 | 
|---|
| 379 | );
 | 
|---|