1 //===------------------------- cxa_exception.cpp --------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 // 8 // This file implements the "Exception Handling APIs" 9 // https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html 10 // http://www.intel.com/design/itanium/downloads/245358.htm 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include <assert.h> 15 #include <stdlib.h> 16 #include <string.h> 17 #include <typeinfo> 18 19 #include "__cxxabi_config.h" 20 #include "cxa_exception.h" 21 #include "cxa_handlers.h" 22 #include "private_typeinfo.h" 23 #include "unwind.h" 24 25 #if defined(__SEH__) && !defined(__USING_SJLJ_EXCEPTIONS__) 26 #include <windows.h> 27 #include <winnt.h> 28 29 extern "C" EXCEPTION_DISPOSITION _GCC_specific_handler(PEXCEPTION_RECORD, 30 void *, PCONTEXT, 31 PDISPATCHER_CONTEXT, 32 _Unwind_Personality_Fn); 33 #endif 34 35 /* 36 Exception Header Layout: 37 38 +---------------------------+-----------------------------+---------------+ 39 | __cxa_exception | _Unwind_Exception CLNGC++\0 | thrown object | 40 +---------------------------+-----------------------------+---------------+ 41 ^ 42 | 43 +-------------------------------------------------------+ 44 | 45 +---------------------------+-----------------------------+ 46 | __cxa_dependent_exception | _Unwind_Exception CLNGC++\1 | 47 +---------------------------+-----------------------------+ 48 49 Exception Handling Table Layout: 50 51 +-----------------+--------+ 52 | lpStartEncoding | (char) | 53 +---------+-------+--------+---------------+-----------------------+ 54 | lpStart | (encoded with lpStartEncoding) | defaults to funcStart | 55 +---------+-----+--------+-----------------+---------------+-------+ 56 | ttypeEncoding | (char) | Encoding of the type_info table | 57 +---------------+-+------+----+----------------------------+----------------+ 58 | classInfoOffset | (ULEB128) | Offset to type_info table, defaults to null | 59 +-----------------++--------+-+----------------------------+----------------+ 60 | callSiteEncoding | (char) | Encoding for Call Site Table | 61 +------------------+--+-----+-----+------------------------+--------------------------+ 62 | callSiteTableLength | (ULEB128) | Call Site Table length, used to find Action table | 63 +---------------------+-----------+---------------------------------------------------+ 64 #ifndef __USING_SJLJ_EXCEPTIONS__ 65 +---------------------+-----------+------------------------------------------------+ 66 | Beginning of Call Site Table The current ip lies within the | 67 | ... (start, length) range of one of these | 68 | call sites. There may be action needed. | 69 | +-------------+---------------------------------+------------------------------+ | 70 | | start | (encoded with callSiteEncoding) | offset relative to funcStart | | 71 | | length | (encoded with callSiteEncoding) | length of code fragment | | 72 | | landingPad | (encoded with callSiteEncoding) | offset relative to lpStart | | 73 | | actionEntry | (ULEB128) | Action Table Index 1-based | | 74 | | | | actionEntry == 0 -> cleanup | | 75 | +-------------+---------------------------------+------------------------------+ | 76 | ... | 77 +----------------------------------------------------------------------------------+ 78 #else // __USING_SJLJ_EXCEPTIONS__ 79 +---------------------+-----------+------------------------------------------------+ 80 | Beginning of Call Site Table The current ip is a 1-based index into | 81 | ... this table. Or it is -1 meaning no | 82 | action is needed. Or it is 0 meaning | 83 | terminate. | 84 | +-------------+---------------------------------+------------------------------+ | 85 | | landingPad | (ULEB128) | offset relative to lpStart | | 86 | | actionEntry | (ULEB128) | Action Table Index 1-based | | 87 | | | | actionEntry == 0 -> cleanup | | 88 | +-------------+---------------------------------+------------------------------+ | 89 | ... | 90 +----------------------------------------------------------------------------------+ 91 #endif // __USING_SJLJ_EXCEPTIONS__ 92 +---------------------------------------------------------------------+ 93 | Beginning of Action Table ttypeIndex == 0 : cleanup | 94 | ... ttypeIndex > 0 : catch | 95 | ttypeIndex < 0 : exception spec | 96 | +--------------+-----------+--------------------------------------+ | 97 | | ttypeIndex | (SLEB128) | Index into type_info Table (1-based) | | 98 | | actionOffset | (SLEB128) | Offset into next Action Table entry | | 99 | +--------------+-----------+--------------------------------------+ | 100 | ... | 101 +---------------------------------------------------------------------+-----------------+ 102 | type_info Table, but classInfoOffset does *not* point here! | 103 | +----------------+------------------------------------------------+-----------------+ | 104 | | Nth type_info* | Encoded with ttypeEncoding, 0 means catch(...) | ttypeIndex == N | | 105 | +----------------+------------------------------------------------+-----------------+ | 106 | ... | 107 | +----------------+------------------------------------------------+-----------------+ | 108 | | 1st type_info* | Encoded with ttypeEncoding, 0 means catch(...) | ttypeIndex == 1 | | 109 | +----------------+------------------------------------------------+-----------------+ | 110 | +---------------------------------------+-----------+------------------------------+ | 111 | | 1st ttypeIndex for 1st exception spec | (ULEB128) | classInfoOffset points here! | | 112 | | ... | (ULEB128) | | | 113 | | Mth ttypeIndex for 1st exception spec | (ULEB128) | | | 114 | | 0 | (ULEB128) | | | 115 | +---------------------------------------+------------------------------------------+ | 116 | ... | 117 | +---------------------------------------+------------------------------------------+ | 118 | | 0 | (ULEB128) | throw() | | 119 | +---------------------------------------+------------------------------------------+ | 120 | ... | 121 | +---------------------------------------+------------------------------------------+ | 122 | | 1st ttypeIndex for Nth exception spec | (ULEB128) | | | 123 | | ... | (ULEB128) | | | 124 | | Mth ttypeIndex for Nth exception spec | (ULEB128) | | | 125 | | 0 | (ULEB128) | | | 126 | +---------------------------------------+------------------------------------------+ | 127 +---------------------------------------------------------------------------------------+ 128 129 Notes: 130 131 * ttypeIndex in the Action Table, and in the exception spec table, is an index, 132 not a byte count, if positive. It is a negative index offset of 133 classInfoOffset and the sizeof entry depends on ttypeEncoding. 134 But if ttypeIndex is negative, it is a positive 1-based byte offset into the 135 type_info Table. 136 And if ttypeIndex is zero, it refers to a catch (...). 137 138 * landingPad can be 0, this implies there is nothing to be done. 139 140 * landingPad != 0 and actionEntry == 0 implies a cleanup needs to be done 141 @landingPad. 142 143 * A cleanup can also be found under landingPad != 0 and actionEntry != 0 in 144 the Action Table with ttypeIndex == 0. 145 */ 146 147 namespace __cxxabiv1 148 { 149 150 namespace 151 { 152 153 template <class AsType> 154 uintptr_t readPointerHelper(const uint8_t*& p) { 155 AsType value; 156 memcpy(&value, p, sizeof(AsType)); 157 p += sizeof(AsType); 158 return static_cast<uintptr_t>(value); 159 } 160 161 } // end namespace 162 163 extern "C" 164 { 165 166 // private API 167 168 // Heavily borrowed from llvm/examples/ExceptionDemo/ExceptionDemo.cpp 169 170 // DWARF Constants 171 enum 172 { 173 DW_EH_PE_absptr = 0x00, 174 DW_EH_PE_uleb128 = 0x01, 175 DW_EH_PE_udata2 = 0x02, 176 DW_EH_PE_udata4 = 0x03, 177 DW_EH_PE_udata8 = 0x04, 178 DW_EH_PE_sleb128 = 0x09, 179 DW_EH_PE_sdata2 = 0x0A, 180 DW_EH_PE_sdata4 = 0x0B, 181 DW_EH_PE_sdata8 = 0x0C, 182 DW_EH_PE_pcrel = 0x10, 183 DW_EH_PE_textrel = 0x20, 184 DW_EH_PE_datarel = 0x30, 185 DW_EH_PE_funcrel = 0x40, 186 DW_EH_PE_aligned = 0x50, 187 DW_EH_PE_indirect = 0x80, 188 DW_EH_PE_omit = 0xFF 189 }; 190 191 /// Read a uleb128 encoded value and advance pointer 192 /// See Variable Length Data Appendix C in: 193 /// @link http://dwarfstd.org/Dwarf4.pdf @unlink 194 /// @param data reference variable holding memory pointer to decode from 195 /// @returns decoded value 196 static 197 uintptr_t 198 readULEB128(const uint8_t** data) 199 { 200 uintptr_t result = 0; 201 uintptr_t shift = 0; 202 unsigned char byte; 203 const uint8_t *p = *data; 204 do 205 { 206 byte = *p++; 207 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; 208 shift += 7; 209 } while (byte & 0x80); 210 *data = p; 211 return result; 212 } 213 214 /// Read a sleb128 encoded value and advance pointer 215 /// See Variable Length Data Appendix C in: 216 /// @link http://dwarfstd.org/Dwarf4.pdf @unlink 217 /// @param data reference variable holding memory pointer to decode from 218 /// @returns decoded value 219 static 220 intptr_t 221 readSLEB128(const uint8_t** data) 222 { 223 uintptr_t result = 0; 224 uintptr_t shift = 0; 225 unsigned char byte; 226 const uint8_t *p = *data; 227 do 228 { 229 byte = *p++; 230 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; 231 shift += 7; 232 } while (byte & 0x80); 233 *data = p; 234 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) 235 result |= static_cast<uintptr_t>(~0) << shift; 236 return static_cast<intptr_t>(result); 237 } 238 239 /// Read a pointer encoded value and advance pointer 240 /// See Variable Length Data in: 241 /// @link http://dwarfstd.org/Dwarf3.pdf @unlink 242 /// @param data reference variable holding memory pointer to decode from 243 /// @param encoding dwarf encoding type 244 /// @returns decoded value 245 static 246 uintptr_t 247 readEncodedPointer(const uint8_t** data, uint8_t encoding) 248 { 249 uintptr_t result = 0; 250 if (encoding == DW_EH_PE_omit) 251 return result; 252 const uint8_t* p = *data; 253 // first get value 254 switch (encoding & 0x0F) 255 { 256 case DW_EH_PE_absptr: 257 result = readPointerHelper<uintptr_t>(p); 258 break; 259 case DW_EH_PE_uleb128: 260 result = readULEB128(&p); 261 break; 262 case DW_EH_PE_sleb128: 263 result = static_cast<uintptr_t>(readSLEB128(&p)); 264 break; 265 case DW_EH_PE_udata2: 266 result = readPointerHelper<uint16_t>(p); 267 break; 268 case DW_EH_PE_udata4: 269 result = readPointerHelper<uint32_t>(p); 270 break; 271 case DW_EH_PE_udata8: 272 result = readPointerHelper<uint64_t>(p); 273 break; 274 case DW_EH_PE_sdata2: 275 result = readPointerHelper<int16_t>(p); 276 break; 277 case DW_EH_PE_sdata4: 278 result = readPointerHelper<int32_t>(p); 279 break; 280 case DW_EH_PE_sdata8: 281 result = readPointerHelper<int64_t>(p); 282 break; 283 default: 284 // not supported 285 abort(); 286 break; 287 } 288 // then add relative offset 289 switch (encoding & 0x70) 290 { 291 case DW_EH_PE_absptr: 292 // do nothing 293 break; 294 case DW_EH_PE_pcrel: 295 if (result) 296 result += (uintptr_t)(*data); 297 break; 298 case DW_EH_PE_textrel: 299 case DW_EH_PE_datarel: 300 case DW_EH_PE_funcrel: 301 case DW_EH_PE_aligned: 302 default: 303 // not supported 304 abort(); 305 break; 306 } 307 // then apply indirection 308 if (result && (encoding & DW_EH_PE_indirect)) 309 result = *((uintptr_t*)result); 310 *data = p; 311 return result; 312 } 313 314 static 315 void 316 call_terminate(bool native_exception, _Unwind_Exception* unwind_exception) 317 { 318 __cxa_begin_catch(unwind_exception); 319 if (native_exception) 320 { 321 // Use the stored terminate_handler if possible 322 __cxa_exception* exception_header = (__cxa_exception*)(unwind_exception+1) - 1; 323 std::__terminate(exception_header->terminateHandler); 324 } 325 std::terminate(); 326 } 327 328 #if defined(_LIBCXXABI_ARM_EHABI) 329 static const void* read_target2_value(const void* ptr) 330 { 331 uintptr_t offset = *reinterpret_cast<const uintptr_t*>(ptr); 332 if (!offset) 333 return 0; 334 // "ARM EABI provides a TARGET2 relocation to describe these typeinfo 335 // pointers. The reason being it allows their precise semantics to be 336 // deferred to the linker. For bare-metal they turn into absolute 337 // relocations. For linux they turn into GOT-REL relocations." 338 // https://gcc.gnu.org/ml/gcc-patches/2009-08/msg00264.html 339 #if defined(LIBCXXABI_BAREMETAL) 340 return reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(ptr) + 341 offset); 342 #else 343 return *reinterpret_cast<const void **>(reinterpret_cast<uintptr_t>(ptr) + 344 offset); 345 #endif 346 } 347 348 static const __shim_type_info* 349 get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo, 350 uint8_t ttypeEncoding, bool native_exception, 351 _Unwind_Exception* unwind_exception) 352 { 353 if (classInfo == 0) 354 { 355 // this should not happen. Indicates corrupted eh_table. 356 call_terminate(native_exception, unwind_exception); 357 } 358 359 assert(((ttypeEncoding == DW_EH_PE_absptr) || // LLVM or GCC 4.6 360 (ttypeEncoding == DW_EH_PE_pcrel) || // GCC 4.7 baremetal 361 (ttypeEncoding == (DW_EH_PE_pcrel | DW_EH_PE_indirect))) && // GCC 4.7 linux 362 "Unexpected TTypeEncoding"); 363 (void)ttypeEncoding; 364 365 const uint8_t* ttypePtr = classInfo - ttypeIndex * sizeof(uintptr_t); 366 return reinterpret_cast<const __shim_type_info *>( 367 read_target2_value(ttypePtr)); 368 } 369 #else // !defined(_LIBCXXABI_ARM_EHABI) 370 static 371 const __shim_type_info* 372 get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo, 373 uint8_t ttypeEncoding, bool native_exception, 374 _Unwind_Exception* unwind_exception) 375 { 376 if (classInfo == 0) 377 { 378 // this should not happen. Indicates corrupted eh_table. 379 call_terminate(native_exception, unwind_exception); 380 } 381 switch (ttypeEncoding & 0x0F) 382 { 383 case DW_EH_PE_absptr: 384 ttypeIndex *= sizeof(void*); 385 break; 386 case DW_EH_PE_udata2: 387 case DW_EH_PE_sdata2: 388 ttypeIndex *= 2; 389 break; 390 case DW_EH_PE_udata4: 391 case DW_EH_PE_sdata4: 392 ttypeIndex *= 4; 393 break; 394 case DW_EH_PE_udata8: 395 case DW_EH_PE_sdata8: 396 ttypeIndex *= 8; 397 break; 398 default: 399 // this should not happen. Indicates corrupted eh_table. 400 call_terminate(native_exception, unwind_exception); 401 } 402 classInfo -= ttypeIndex; 403 return (const __shim_type_info*)readEncodedPointer(&classInfo, ttypeEncoding); 404 } 405 #endif // !defined(_LIBCXXABI_ARM_EHABI) 406 407 /* 408 This is checking a thrown exception type, excpType, against a possibly empty 409 list of catchType's which make up an exception spec. 410 411 An exception spec acts like a catch handler, but in reverse. This "catch 412 handler" will catch an excpType if and only if none of the catchType's in 413 the list will catch a excpType. If any catchType in the list can catch an 414 excpType, then this exception spec does not catch the excpType. 415 */ 416 #if defined(_LIBCXXABI_ARM_EHABI) 417 static 418 bool 419 exception_spec_can_catch(int64_t specIndex, const uint8_t* classInfo, 420 uint8_t ttypeEncoding, const __shim_type_info* excpType, 421 void* adjustedPtr, _Unwind_Exception* unwind_exception) 422 { 423 if (classInfo == 0) 424 { 425 // this should not happen. Indicates corrupted eh_table. 426 call_terminate(false, unwind_exception); 427 } 428 429 assert(((ttypeEncoding == DW_EH_PE_absptr) || // LLVM or GCC 4.6 430 (ttypeEncoding == DW_EH_PE_pcrel) || // GCC 4.7 baremetal 431 (ttypeEncoding == (DW_EH_PE_pcrel | DW_EH_PE_indirect))) && // GCC 4.7 linux 432 "Unexpected TTypeEncoding"); 433 (void)ttypeEncoding; 434 435 // specIndex is negative of 1-based byte offset into classInfo; 436 specIndex = -specIndex; 437 --specIndex; 438 const void** temp = reinterpret_cast<const void**>( 439 reinterpret_cast<uintptr_t>(classInfo) + 440 static_cast<uintptr_t>(specIndex) * sizeof(uintptr_t)); 441 // If any type in the spec list can catch excpType, return false, else return true 442 // adjustments to adjustedPtr are ignored. 443 while (true) 444 { 445 // ARM EHABI exception specification table (filter table) consists of 446 // several pointers which will directly point to the type info object 447 // (instead of ttypeIndex). The table will be terminated with 0. 448 const void** ttypePtr = temp++; 449 if (*ttypePtr == 0) 450 break; 451 // We can get the __shim_type_info simply by performing a 452 // R_ARM_TARGET2 relocation, and cast the result to __shim_type_info. 453 const __shim_type_info* catchType = 454 static_cast<const __shim_type_info*>(read_target2_value(ttypePtr)); 455 void* tempPtr = adjustedPtr; 456 if (catchType->can_catch(excpType, tempPtr)) 457 return false; 458 } 459 return true; 460 } 461 #else 462 static 463 bool 464 exception_spec_can_catch(int64_t specIndex, const uint8_t* classInfo, 465 uint8_t ttypeEncoding, const __shim_type_info* excpType, 466 void* adjustedPtr, _Unwind_Exception* unwind_exception) 467 { 468 if (classInfo == 0) 469 { 470 // this should not happen. Indicates corrupted eh_table. 471 call_terminate(false, unwind_exception); 472 } 473 // specIndex is negative of 1-based byte offset into classInfo; 474 specIndex = -specIndex; 475 --specIndex; 476 const uint8_t* temp = classInfo + specIndex; 477 // If any type in the spec list can catch excpType, return false, else return true 478 // adjustments to adjustedPtr are ignored. 479 while (true) 480 { 481 uint64_t ttypeIndex = readULEB128(&temp); 482 if (ttypeIndex == 0) 483 break; 484 const __shim_type_info* catchType = get_shim_type_info(ttypeIndex, 485 classInfo, 486 ttypeEncoding, 487 true, 488 unwind_exception); 489 void* tempPtr = adjustedPtr; 490 if (catchType->can_catch(excpType, tempPtr)) 491 return false; 492 } 493 return true; 494 } 495 #endif 496 497 static 498 void* 499 get_thrown_object_ptr(_Unwind_Exception* unwind_exception) 500 { 501 // Even for foreign exceptions, the exception object is *probably* at unwind_exception + 1 502 // Regardless, this library is prohibited from touching a foreign exception 503 void* adjustedPtr = unwind_exception + 1; 504 if (__getExceptionClass(unwind_exception) == kOurDependentExceptionClass) 505 adjustedPtr = ((__cxa_dependent_exception*)adjustedPtr - 1)->primaryException; 506 return adjustedPtr; 507 } 508 509 namespace 510 { 511 512 struct scan_results 513 { 514 int64_t ttypeIndex; // > 0 catch handler, < 0 exception spec handler, == 0 a cleanup 515 const uint8_t* actionRecord; // Currently unused. Retained to ease future maintenance. 516 const uint8_t* languageSpecificData; // Needed only for __cxa_call_unexpected 517 uintptr_t landingPad; // null -> nothing found, else something found 518 void* adjustedPtr; // Used in cxa_exception.cpp 519 _Unwind_Reason_Code reason; // One of _URC_FATAL_PHASE1_ERROR, 520 // _URC_FATAL_PHASE2_ERROR, 521 // _URC_CONTINUE_UNWIND, 522 // _URC_HANDLER_FOUND 523 }; 524 525 } // unnamed namespace 526 527 static 528 void 529 set_registers(_Unwind_Exception* unwind_exception, _Unwind_Context* context, 530 const scan_results& results) 531 { 532 #if defined(__USING_SJLJ_EXCEPTIONS__) 533 #define __builtin_eh_return_data_regno(regno) regno 534 #endif 535 _Unwind_SetGR(context, __builtin_eh_return_data_regno(0), 536 reinterpret_cast<uintptr_t>(unwind_exception)); 537 _Unwind_SetGR(context, __builtin_eh_return_data_regno(1), 538 static_cast<uintptr_t>(results.ttypeIndex)); 539 _Unwind_SetIP(context, results.landingPad); 540 } 541 542 /* 543 There are 3 types of scans needed: 544 545 1. Scan for handler with native or foreign exception. If handler found, 546 save state and return _URC_HANDLER_FOUND, else return _URC_CONTINUE_UNWIND. 547 May also report an error on invalid input. 548 May terminate for invalid exception table. 549 _UA_SEARCH_PHASE 550 551 2. Scan for handler with foreign exception. Must return _URC_HANDLER_FOUND, 552 or call terminate. 553 _UA_CLEANUP_PHASE && _UA_HANDLER_FRAME && !native_exception 554 555 3. Scan for cleanups. If a handler is found and this isn't forced unwind, 556 then terminate, otherwise ignore the handler and keep looking for cleanup. 557 If a cleanup is found, return _URC_HANDLER_FOUND, else return _URC_CONTINUE_UNWIND. 558 May also report an error on invalid input. 559 May terminate for invalid exception table. 560 _UA_CLEANUP_PHASE && !_UA_HANDLER_FRAME 561 */ 562 563 static void scan_eh_tab(scan_results &results, _Unwind_Action actions, 564 bool native_exception, 565 _Unwind_Exception *unwind_exception, 566 _Unwind_Context *context) { 567 // Initialize results to found nothing but an error 568 results.ttypeIndex = 0; 569 results.actionRecord = 0; 570 results.languageSpecificData = 0; 571 results.landingPad = 0; 572 results.adjustedPtr = 0; 573 results.reason = _URC_FATAL_PHASE1_ERROR; 574 // Check for consistent actions 575 if (actions & _UA_SEARCH_PHASE) 576 { 577 // Do Phase 1 578 if (actions & (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME | _UA_FORCE_UNWIND)) 579 { 580 // None of these flags should be set during Phase 1 581 // Client error 582 results.reason = _URC_FATAL_PHASE1_ERROR; 583 return; 584 } 585 } 586 else if (actions & _UA_CLEANUP_PHASE) 587 { 588 if ((actions & _UA_HANDLER_FRAME) && (actions & _UA_FORCE_UNWIND)) 589 { 590 // _UA_HANDLER_FRAME should only be set if phase 1 found a handler. 591 // If _UA_FORCE_UNWIND is set, phase 1 shouldn't have happened. 592 // Client error 593 results.reason = _URC_FATAL_PHASE2_ERROR; 594 return; 595 } 596 } 597 else // Neither _UA_SEARCH_PHASE nor _UA_CLEANUP_PHASE is set 598 { 599 // One of these should be set. 600 // Client error 601 results.reason = _URC_FATAL_PHASE1_ERROR; 602 return; 603 } 604 // Start scan by getting exception table address 605 const uint8_t *lsda = (const uint8_t *)_Unwind_GetLanguageSpecificData(context); 606 if (lsda == 0) 607 { 608 // There is no exception table 609 results.reason = _URC_CONTINUE_UNWIND; 610 return; 611 } 612 results.languageSpecificData = lsda; 613 // Get the current instruction pointer and offset it before next 614 // instruction in the current frame which threw the exception. 615 uintptr_t ip = _Unwind_GetIP(context) - 1; 616 // Get beginning current frame's code (as defined by the 617 // emitted dwarf code) 618 uintptr_t funcStart = _Unwind_GetRegionStart(context); 619 #ifdef __USING_SJLJ_EXCEPTIONS__ 620 if (ip == uintptr_t(-1)) 621 { 622 // no action 623 results.reason = _URC_CONTINUE_UNWIND; 624 return; 625 } 626 else if (ip == 0) 627 call_terminate(native_exception, unwind_exception); 628 // ip is 1-based index into call site table 629 #else // !__USING_SJLJ_EXCEPTIONS__ 630 uintptr_t ipOffset = ip - funcStart; 631 #endif // !defined(_USING_SLJL_EXCEPTIONS__) 632 const uint8_t* classInfo = NULL; 633 // Note: See JITDwarfEmitter::EmitExceptionTable(...) for corresponding 634 // dwarf emission 635 // Parse LSDA header. 636 uint8_t lpStartEncoding = *lsda++; 637 const uint8_t* lpStart = (const uint8_t*)readEncodedPointer(&lsda, lpStartEncoding); 638 if (lpStart == 0) 639 lpStart = (const uint8_t*)funcStart; 640 uint8_t ttypeEncoding = *lsda++; 641 if (ttypeEncoding != DW_EH_PE_omit) 642 { 643 // Calculate type info locations in emitted dwarf code which 644 // were flagged by type info arguments to llvm.eh.selector 645 // intrinsic 646 uintptr_t classInfoOffset = readULEB128(&lsda); 647 classInfo = lsda + classInfoOffset; 648 } 649 // Walk call-site table looking for range that 650 // includes current PC. 651 uint8_t callSiteEncoding = *lsda++; 652 #ifdef __USING_SJLJ_EXCEPTIONS__ 653 (void)callSiteEncoding; // When using SjLj exceptions, callSiteEncoding is never used 654 #endif 655 uint32_t callSiteTableLength = static_cast<uint32_t>(readULEB128(&lsda)); 656 const uint8_t* callSiteTableStart = lsda; 657 const uint8_t* callSiteTableEnd = callSiteTableStart + callSiteTableLength; 658 const uint8_t* actionTableStart = callSiteTableEnd; 659 const uint8_t* callSitePtr = callSiteTableStart; 660 while (callSitePtr < callSiteTableEnd) 661 { 662 // There is one entry per call site. 663 #ifndef __USING_SJLJ_EXCEPTIONS__ 664 // The call sites are non-overlapping in [start, start+length) 665 // The call sites are ordered in increasing value of start 666 uintptr_t start = readEncodedPointer(&callSitePtr, callSiteEncoding); 667 uintptr_t length = readEncodedPointer(&callSitePtr, callSiteEncoding); 668 uintptr_t landingPad = readEncodedPointer(&callSitePtr, callSiteEncoding); 669 uintptr_t actionEntry = readULEB128(&callSitePtr); 670 if ((start <= ipOffset) && (ipOffset < (start + length))) 671 #else // __USING_SJLJ_EXCEPTIONS__ 672 // ip is 1-based index into this table 673 uintptr_t landingPad = readULEB128(&callSitePtr); 674 uintptr_t actionEntry = readULEB128(&callSitePtr); 675 if (--ip == 0) 676 #endif // __USING_SJLJ_EXCEPTIONS__ 677 { 678 // Found the call site containing ip. 679 #ifndef __USING_SJLJ_EXCEPTIONS__ 680 if (landingPad == 0) 681 { 682 // No handler here 683 results.reason = _URC_CONTINUE_UNWIND; 684 return; 685 } 686 landingPad = (uintptr_t)lpStart + landingPad; 687 results.landingPad = landingPad; 688 #else // __USING_SJLJ_EXCEPTIONS__ 689 ++landingPad; 690 #endif // __USING_SJLJ_EXCEPTIONS__ 691 if (actionEntry == 0) 692 { 693 // Found a cleanup 694 results.reason = actions & _UA_SEARCH_PHASE 695 ? _URC_CONTINUE_UNWIND 696 : _URC_HANDLER_FOUND; 697 return; 698 } 699 // Convert 1-based byte offset into 700 const uint8_t* action = actionTableStart + (actionEntry - 1); 701 bool hasCleanup = false; 702 // Scan action entries until you find a matching handler, cleanup, or the end of action list 703 while (true) 704 { 705 const uint8_t* actionRecord = action; 706 int64_t ttypeIndex = readSLEB128(&action); 707 if (ttypeIndex > 0) 708 { 709 // Found a catch, does it actually catch? 710 // First check for catch (...) 711 const __shim_type_info* catchType = 712 get_shim_type_info(static_cast<uint64_t>(ttypeIndex), 713 classInfo, ttypeEncoding, 714 native_exception, unwind_exception); 715 if (catchType == 0) 716 { 717 // Found catch (...) catches everything, including 718 // foreign exceptions. This is search phase, cleanup 719 // phase with foreign exception, or forced unwinding. 720 assert(actions & (_UA_SEARCH_PHASE | _UA_HANDLER_FRAME | 721 _UA_FORCE_UNWIND)); 722 results.ttypeIndex = ttypeIndex; 723 results.actionRecord = actionRecord; 724 results.adjustedPtr = 725 get_thrown_object_ptr(unwind_exception); 726 results.reason = _URC_HANDLER_FOUND; 727 return; 728 } 729 // Else this is a catch (T) clause and will never 730 // catch a foreign exception 731 else if (native_exception) 732 { 733 __cxa_exception* exception_header = (__cxa_exception*)(unwind_exception+1) - 1; 734 void* adjustedPtr = get_thrown_object_ptr(unwind_exception); 735 const __shim_type_info* excpType = 736 static_cast<const __shim_type_info*>(exception_header->exceptionType); 737 if (adjustedPtr == 0 || excpType == 0) 738 { 739 // Something very bad happened 740 call_terminate(native_exception, unwind_exception); 741 } 742 if (catchType->can_catch(excpType, adjustedPtr)) 743 { 744 // Found a matching handler. This is either search 745 // phase or forced unwinding. 746 assert(actions & 747 (_UA_SEARCH_PHASE | _UA_FORCE_UNWIND)); 748 results.ttypeIndex = ttypeIndex; 749 results.actionRecord = actionRecord; 750 results.adjustedPtr = adjustedPtr; 751 results.reason = _URC_HANDLER_FOUND; 752 return; 753 } 754 } 755 // Scan next action ... 756 } 757 else if (ttypeIndex < 0) 758 { 759 // Found an exception specification. 760 if (actions & _UA_FORCE_UNWIND) { 761 // Skip if forced unwinding. 762 } else if (native_exception) { 763 // Does the exception spec catch this native exception? 764 __cxa_exception* exception_header = (__cxa_exception*)(unwind_exception+1) - 1; 765 void* adjustedPtr = get_thrown_object_ptr(unwind_exception); 766 const __shim_type_info* excpType = 767 static_cast<const __shim_type_info*>(exception_header->exceptionType); 768 if (adjustedPtr == 0 || excpType == 0) 769 { 770 // Something very bad happened 771 call_terminate(native_exception, unwind_exception); 772 } 773 if (exception_spec_can_catch(ttypeIndex, classInfo, 774 ttypeEncoding, excpType, 775 adjustedPtr, unwind_exception)) 776 { 777 // Native exception caught by exception 778 // specification. 779 assert(actions & _UA_SEARCH_PHASE); 780 results.ttypeIndex = ttypeIndex; 781 results.actionRecord = actionRecord; 782 results.adjustedPtr = adjustedPtr; 783 results.reason = _URC_HANDLER_FOUND; 784 return; 785 } 786 } else { 787 // foreign exception caught by exception spec 788 results.ttypeIndex = ttypeIndex; 789 results.actionRecord = actionRecord; 790 results.adjustedPtr = 791 get_thrown_object_ptr(unwind_exception); 792 results.reason = _URC_HANDLER_FOUND; 793 return; 794 } 795 // Scan next action ... 796 } else { 797 hasCleanup = true; 798 } 799 const uint8_t* temp = action; 800 int64_t actionOffset = readSLEB128(&temp); 801 if (actionOffset == 0) 802 { 803 // End of action list. If this is phase 2 and we have found 804 // a cleanup (ttypeIndex=0), return _URC_HANDLER_FOUND; 805 // otherwise return _URC_CONTINUE_UNWIND. 806 results.reason = hasCleanup && actions & _UA_CLEANUP_PHASE 807 ? _URC_HANDLER_FOUND 808 : _URC_CONTINUE_UNWIND; 809 return; 810 } 811 // Go to next action 812 action += actionOffset; 813 } // there is no break out of this loop, only return 814 } 815 #ifndef __USING_SJLJ_EXCEPTIONS__ 816 else if (ipOffset < start) 817 { 818 // There is no call site for this ip 819 // Something bad has happened. We should never get here. 820 // Possible stack corruption. 821 call_terminate(native_exception, unwind_exception); 822 } 823 #endif // !__USING_SJLJ_EXCEPTIONS__ 824 } // there might be some tricky cases which break out of this loop 825 826 // It is possible that no eh table entry specify how to handle 827 // this exception. By spec, terminate it immediately. 828 call_terminate(native_exception, unwind_exception); 829 } 830 831 // public API 832 833 /* 834 The personality function branches on actions like so: 835 836 _UA_SEARCH_PHASE 837 838 If _UA_CLEANUP_PHASE or _UA_HANDLER_FRAME or _UA_FORCE_UNWIND there's 839 an error from above, return _URC_FATAL_PHASE1_ERROR. 840 841 Scan for anything that could stop unwinding: 842 843 1. A catch clause that will catch this exception 844 (will never catch foreign). 845 2. A catch (...) (will always catch foreign). 846 3. An exception spec that will catch this exception 847 (will always catch foreign). 848 If a handler is found 849 If not foreign 850 Save state in header 851 return _URC_HANDLER_FOUND 852 Else a handler not found 853 return _URC_CONTINUE_UNWIND 854 855 _UA_CLEANUP_PHASE 856 857 If _UA_HANDLER_FRAME 858 If _UA_FORCE_UNWIND 859 How did this happen? return _URC_FATAL_PHASE2_ERROR 860 If foreign 861 Do _UA_SEARCH_PHASE to recover state 862 else 863 Recover state from header 864 Transfer control to landing pad. return _URC_INSTALL_CONTEXT 865 866 Else 867 868 This branch handles both normal C++ non-catching handlers (cleanups) 869 and forced unwinding. 870 Scan for anything that can not stop unwinding: 871 872 1. A cleanup. 873 874 If a cleanup is found 875 transfer control to it. return _URC_INSTALL_CONTEXT 876 Else a cleanup is not found: return _URC_CONTINUE_UNWIND 877 */ 878 879 #if !defined(_LIBCXXABI_ARM_EHABI) 880 #if defined(__SEH__) && !defined(__USING_SJLJ_EXCEPTIONS__) 881 static _Unwind_Reason_Code __gxx_personality_imp 882 #else 883 _LIBCXXABI_FUNC_VIS _Unwind_Reason_Code 884 #ifdef __USING_SJLJ_EXCEPTIONS__ 885 __gxx_personality_sj0 886 #else 887 __gxx_personality_v0 888 #endif 889 #endif 890 (int version, _Unwind_Action actions, uint64_t exceptionClass, 891 _Unwind_Exception* unwind_exception, _Unwind_Context* context) 892 { 893 if (version != 1 || unwind_exception == 0 || context == 0) 894 return _URC_FATAL_PHASE1_ERROR; 895 896 bool native_exception = (exceptionClass & get_vendor_and_language) == 897 (kOurExceptionClass & get_vendor_and_language); 898 scan_results results; 899 // Process a catch handler for a native exception first. 900 if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME) && 901 native_exception) { 902 // Reload the results from the phase 1 cache. 903 __cxa_exception* exception_header = 904 (__cxa_exception*)(unwind_exception + 1) - 1; 905 results.ttypeIndex = exception_header->handlerSwitchValue; 906 results.actionRecord = exception_header->actionRecord; 907 results.languageSpecificData = exception_header->languageSpecificData; 908 results.landingPad = 909 reinterpret_cast<uintptr_t>(exception_header->catchTemp); 910 results.adjustedPtr = exception_header->adjustedPtr; 911 912 // Jump to the handler. 913 set_registers(unwind_exception, context, results); 914 return _URC_INSTALL_CONTEXT; 915 } 916 917 // In other cases we need to scan LSDA. 918 scan_eh_tab(results, actions, native_exception, unwind_exception, context); 919 if (results.reason == _URC_CONTINUE_UNWIND || 920 results.reason == _URC_FATAL_PHASE1_ERROR) 921 return results.reason; 922 923 if (actions & _UA_SEARCH_PHASE) 924 { 925 // Phase 1 search: All we're looking for in phase 1 is a handler that 926 // halts unwinding 927 assert(results.reason == _URC_HANDLER_FOUND); 928 if (native_exception) { 929 // For a native exception, cache the LSDA result. 930 __cxa_exception* exc = (__cxa_exception*)(unwind_exception + 1) - 1; 931 exc->handlerSwitchValue = static_cast<int>(results.ttypeIndex); 932 exc->actionRecord = results.actionRecord; 933 exc->languageSpecificData = results.languageSpecificData; 934 exc->catchTemp = reinterpret_cast<void*>(results.landingPad); 935 exc->adjustedPtr = results.adjustedPtr; 936 } 937 return _URC_HANDLER_FOUND; 938 } 939 940 assert(actions & _UA_CLEANUP_PHASE); 941 assert(results.reason == _URC_HANDLER_FOUND); 942 set_registers(unwind_exception, context, results); 943 return _URC_INSTALL_CONTEXT; 944 } 945 946 #if defined(__SEH__) && !defined(__USING_SJLJ_EXCEPTIONS__) 947 extern "C" _LIBCXXABI_FUNC_VIS EXCEPTION_DISPOSITION 948 __gxx_personality_seh0(PEXCEPTION_RECORD ms_exc, void *this_frame, 949 PCONTEXT ms_orig_context, PDISPATCHER_CONTEXT ms_disp) 950 { 951 return _GCC_specific_handler(ms_exc, this_frame, ms_orig_context, ms_disp, 952 __gxx_personality_imp); 953 } 954 #endif 955 956 #else 957 958 extern "C" _Unwind_Reason_Code __gnu_unwind_frame(_Unwind_Exception*, 959 _Unwind_Context*); 960 961 // Helper function to unwind one frame. 962 // ARM EHABI 7.3 and 7.4: If the personality function returns _URC_CONTINUE_UNWIND, the 963 // personality routine should update the virtual register set (VRS) according to the 964 // corresponding frame unwinding instructions (ARM EHABI 9.3.) 965 static _Unwind_Reason_Code continue_unwind(_Unwind_Exception* unwind_exception, 966 _Unwind_Context* context) 967 { 968 if (__gnu_unwind_frame(unwind_exception, context) != _URC_OK) 969 return _URC_FAILURE; 970 return _URC_CONTINUE_UNWIND; 971 } 972 973 // ARM register names 974 #if !defined(LIBCXXABI_USE_LLVM_UNWINDER) 975 static const uint32_t REG_UCB = 12; // Register to save _Unwind_Control_Block 976 #endif 977 static const uint32_t REG_SP = 13; 978 979 static void save_results_to_barrier_cache(_Unwind_Exception* unwind_exception, 980 const scan_results& results) 981 { 982 unwind_exception->barrier_cache.bitpattern[0] = (uint32_t)results.adjustedPtr; 983 unwind_exception->barrier_cache.bitpattern[1] = (uint32_t)results.actionRecord; 984 unwind_exception->barrier_cache.bitpattern[2] = (uint32_t)results.languageSpecificData; 985 unwind_exception->barrier_cache.bitpattern[3] = (uint32_t)results.landingPad; 986 unwind_exception->barrier_cache.bitpattern[4] = (uint32_t)results.ttypeIndex; 987 } 988 989 static void load_results_from_barrier_cache(scan_results& results, 990 const _Unwind_Exception* unwind_exception) 991 { 992 results.adjustedPtr = (void*)unwind_exception->barrier_cache.bitpattern[0]; 993 results.actionRecord = (const uint8_t*)unwind_exception->barrier_cache.bitpattern[1]; 994 results.languageSpecificData = (const uint8_t*)unwind_exception->barrier_cache.bitpattern[2]; 995 results.landingPad = (uintptr_t)unwind_exception->barrier_cache.bitpattern[3]; 996 results.ttypeIndex = (int64_t)(int32_t)unwind_exception->barrier_cache.bitpattern[4]; 997 } 998 999 extern "C" _LIBCXXABI_FUNC_VIS _Unwind_Reason_Code 1000 __gxx_personality_v0(_Unwind_State state, 1001 _Unwind_Exception* unwind_exception, 1002 _Unwind_Context* context) 1003 { 1004 if (unwind_exception == 0 || context == 0) 1005 return _URC_FATAL_PHASE1_ERROR; 1006 1007 bool native_exception = __isOurExceptionClass(unwind_exception); 1008 1009 #if !defined(LIBCXXABI_USE_LLVM_UNWINDER) 1010 // Copy the address of _Unwind_Control_Block to r12 so that 1011 // _Unwind_GetLanguageSpecificData() and _Unwind_GetRegionStart() can 1012 // return correct address. 1013 _Unwind_SetGR(context, REG_UCB, reinterpret_cast<uint32_t>(unwind_exception)); 1014 #endif 1015 1016 // Check the undocumented force unwinding behavior 1017 bool is_force_unwinding = state & _US_FORCE_UNWIND; 1018 state &= ~_US_FORCE_UNWIND; 1019 1020 scan_results results; 1021 switch (state) { 1022 case _US_VIRTUAL_UNWIND_FRAME: 1023 if (is_force_unwinding) 1024 return continue_unwind(unwind_exception, context); 1025 1026 // Phase 1 search: All we're looking for in phase 1 is a handler that halts unwinding 1027 scan_eh_tab(results, _UA_SEARCH_PHASE, native_exception, unwind_exception, context); 1028 if (results.reason == _URC_HANDLER_FOUND) 1029 { 1030 unwind_exception->barrier_cache.sp = _Unwind_GetGR(context, REG_SP); 1031 if (native_exception) 1032 save_results_to_barrier_cache(unwind_exception, results); 1033 return _URC_HANDLER_FOUND; 1034 } 1035 // Did not find the catch handler 1036 if (results.reason == _URC_CONTINUE_UNWIND) 1037 return continue_unwind(unwind_exception, context); 1038 return results.reason; 1039 1040 case _US_UNWIND_FRAME_STARTING: 1041 // TODO: Support force unwinding in the phase 2 search. 1042 // NOTE: In order to call the cleanup functions, _Unwind_ForcedUnwind() 1043 // will call this personality function with (_US_FORCE_UNWIND | 1044 // _US_UNWIND_FRAME_STARTING). 1045 1046 // Phase 2 search 1047 if (unwind_exception->barrier_cache.sp == _Unwind_GetGR(context, REG_SP)) 1048 { 1049 // Found a catching handler in phase 1 1050 if (native_exception) 1051 { 1052 // Load the result from the native exception barrier cache. 1053 load_results_from_barrier_cache(results, unwind_exception); 1054 results.reason = _URC_HANDLER_FOUND; 1055 } 1056 else 1057 { 1058 // Search for the catching handler again for the foreign exception. 1059 scan_eh_tab(results, static_cast<_Unwind_Action>(_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME), 1060 native_exception, unwind_exception, context); 1061 if (results.reason != _URC_HANDLER_FOUND) // phase1 search should guarantee to find one 1062 call_terminate(native_exception, unwind_exception); 1063 } 1064 1065 // Install the context for the catching handler 1066 set_registers(unwind_exception, context, results); 1067 return _URC_INSTALL_CONTEXT; 1068 } 1069 1070 // Either we didn't do a phase 1 search (due to forced unwinding), or 1071 // phase 1 reported no catching-handlers. 1072 // Search for a (non-catching) cleanup 1073 scan_eh_tab(results, _UA_CLEANUP_PHASE, native_exception, unwind_exception, context); 1074 if (results.reason == _URC_HANDLER_FOUND) 1075 { 1076 // Found a non-catching handler 1077 1078 // ARM EHABI 8.4.2: Before we can jump to the cleanup handler, we have to setup some 1079 // internal data structures, so that __cxa_end_cleanup() can get unwind_exception from 1080 // __cxa_get_globals(). 1081 __cxa_begin_cleanup(unwind_exception); 1082 1083 // Install the context for the cleanup handler 1084 set_registers(unwind_exception, context, results); 1085 return _URC_INSTALL_CONTEXT; 1086 } 1087 1088 // Did not find any handler 1089 if (results.reason == _URC_CONTINUE_UNWIND) 1090 return continue_unwind(unwind_exception, context); 1091 return results.reason; 1092 1093 case _US_UNWIND_FRAME_RESUME: 1094 return continue_unwind(unwind_exception, context); 1095 } 1096 1097 // We were called improperly: neither a phase 1 or phase 2 search 1098 return _URC_FATAL_PHASE1_ERROR; 1099 } 1100 #endif 1101 1102 1103 __attribute__((noreturn)) 1104 _LIBCXXABI_FUNC_VIS void 1105 __cxa_call_unexpected(void* arg) 1106 { 1107 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg); 1108 if (unwind_exception == 0) 1109 call_terminate(false, unwind_exception); 1110 __cxa_begin_catch(unwind_exception); 1111 bool native_old_exception = __isOurExceptionClass(unwind_exception); 1112 std::unexpected_handler u_handler; 1113 std::terminate_handler t_handler; 1114 __cxa_exception* old_exception_header = 0; 1115 int64_t ttypeIndex; 1116 const uint8_t* lsda; 1117 if (native_old_exception) 1118 { 1119 old_exception_header = (__cxa_exception*)(unwind_exception+1) - 1; 1120 t_handler = old_exception_header->terminateHandler; 1121 u_handler = old_exception_header->unexpectedHandler; 1122 // If std::__unexpected(u_handler) rethrows the same exception, 1123 // these values get overwritten by the rethrow. So save them now: 1124 #if defined(_LIBCXXABI_ARM_EHABI) 1125 ttypeIndex = (int64_t)(int32_t)unwind_exception->barrier_cache.bitpattern[4]; 1126 lsda = (const uint8_t*)unwind_exception->barrier_cache.bitpattern[2]; 1127 #else 1128 ttypeIndex = old_exception_header->handlerSwitchValue; 1129 lsda = old_exception_header->languageSpecificData; 1130 #endif 1131 } 1132 else 1133 { 1134 t_handler = std::get_terminate(); 1135 u_handler = std::get_unexpected(); 1136 } 1137 try 1138 { 1139 std::__unexpected(u_handler); 1140 } 1141 catch (...) 1142 { 1143 // If the old exception is foreign, then all we can do is terminate. 1144 // We have no way to recover the needed old exception spec. There's 1145 // no way to pass that information here. And the personality routine 1146 // can't call us directly and do anything but terminate() if we throw 1147 // from here. 1148 if (native_old_exception) 1149 { 1150 // Have: 1151 // old_exception_header->languageSpecificData 1152 // old_exception_header->actionRecord 1153 // Need 1154 // const uint8_t* classInfo 1155 // uint8_t ttypeEncoding 1156 uint8_t lpStartEncoding = *lsda++; 1157 const uint8_t* lpStart = (const uint8_t*)readEncodedPointer(&lsda, lpStartEncoding); 1158 (void)lpStart; // purposefully unused. Just needed to increment lsda. 1159 uint8_t ttypeEncoding = *lsda++; 1160 if (ttypeEncoding == DW_EH_PE_omit) 1161 std::__terminate(t_handler); 1162 uintptr_t classInfoOffset = readULEB128(&lsda); 1163 const uint8_t* classInfo = lsda + classInfoOffset; 1164 // Is this new exception catchable by the exception spec at ttypeIndex? 1165 // The answer is obviously yes if the new and old exceptions are the same exception 1166 // If no 1167 // throw; 1168 __cxa_eh_globals* globals = __cxa_get_globals_fast(); 1169 __cxa_exception* new_exception_header = globals->caughtExceptions; 1170 if (new_exception_header == 0) 1171 // This shouldn't be able to happen! 1172 std::__terminate(t_handler); 1173 bool native_new_exception = __isOurExceptionClass(&new_exception_header->unwindHeader); 1174 void* adjustedPtr; 1175 if (native_new_exception && (new_exception_header != old_exception_header)) 1176 { 1177 const __shim_type_info* excpType = 1178 static_cast<const __shim_type_info*>(new_exception_header->exceptionType); 1179 adjustedPtr = 1180 __getExceptionClass(&new_exception_header->unwindHeader) == kOurDependentExceptionClass ? 1181 ((__cxa_dependent_exception*)new_exception_header)->primaryException : 1182 new_exception_header + 1; 1183 if (!exception_spec_can_catch(ttypeIndex, classInfo, ttypeEncoding, 1184 excpType, adjustedPtr, unwind_exception)) 1185 { 1186 // We need to __cxa_end_catch, but for the old exception, 1187 // not the new one. This is a little tricky ... 1188 // Disguise new_exception_header as a rethrown exception, but 1189 // don't actually rethrow it. This means you can temporarily 1190 // end the catch clause enclosing new_exception_header without 1191 // __cxa_end_catch destroying new_exception_header. 1192 new_exception_header->handlerCount = -new_exception_header->handlerCount; 1193 globals->uncaughtExceptions += 1; 1194 // Call __cxa_end_catch for new_exception_header 1195 __cxa_end_catch(); 1196 // Call __cxa_end_catch for old_exception_header 1197 __cxa_end_catch(); 1198 // Renter this catch clause with new_exception_header 1199 __cxa_begin_catch(&new_exception_header->unwindHeader); 1200 // Rethrow new_exception_header 1201 throw; 1202 } 1203 } 1204 // Will a std::bad_exception be catchable by the exception spec at 1205 // ttypeIndex? 1206 // If no 1207 // throw std::bad_exception(); 1208 const __shim_type_info* excpType = 1209 static_cast<const __shim_type_info*>(&typeid(std::bad_exception)); 1210 std::bad_exception be; 1211 adjustedPtr = &be; 1212 if (!exception_spec_can_catch(ttypeIndex, classInfo, ttypeEncoding, 1213 excpType, adjustedPtr, unwind_exception)) 1214 { 1215 // We need to __cxa_end_catch for both the old exception and the 1216 // new exception. Technically we should do it in that order. 1217 // But it is expedient to do it in the opposite order: 1218 // Call __cxa_end_catch for new_exception_header 1219 __cxa_end_catch(); 1220 // Throw std::bad_exception will __cxa_end_catch for 1221 // old_exception_header 1222 throw be; 1223 } 1224 } 1225 } 1226 std::__terminate(t_handler); 1227 } 1228 1229 } // extern "C" 1230 1231 } // __cxxabiv1 1232